FrmMaterialsCRKInfo.designer.cs 126 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172
  1. namespace Core.StlMes.Client.Lims.Resource
  2. {
  3. partial class FrmMaterialsCRKInfo
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
  29. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
  30. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIALNAME");
  31. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("LARGE_SAMPLE_SIZE");
  32. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DW");
  33. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PRICE");
  34. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GS");
  35. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIALCLASS");
  36. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIALID");
  37. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CRGS");
  38. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("COUNT");
  39. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CHECK_TIME");
  40. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FLR");
  41. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("LLR");
  42. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DEPTID");
  43. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("REMARK");
  44. Infragistics.Win.Appearance appearance90 = new Infragistics.Win.Appearance();
  45. Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
  46. Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
  47. Infragistics.Win.Appearance appearance20 = new Infragistics.Win.Appearance();
  48. Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
  49. Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
  50. Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
  51. Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
  52. Infragistics.Win.Appearance appearance25 = new Infragistics.Win.Appearance();
  53. Infragistics.Win.Appearance appearance91 = new Infragistics.Win.Appearance();
  54. Infragistics.Win.Appearance appearance40 = new Infragistics.Win.Appearance();
  55. Infragistics.Win.Appearance appearance63 = new Infragistics.Win.Appearance();
  56. Infragistics.Win.Appearance appearance64 = new Infragistics.Win.Appearance();
  57. Infragistics.Win.Appearance appearance65 = new Infragistics.Win.Appearance();
  58. Infragistics.Win.Appearance appearance66 = new Infragistics.Win.Appearance();
  59. Infragistics.Win.Appearance appearance67 = new Infragistics.Win.Appearance();
  60. Infragistics.Win.Appearance appearance68 = new Infragistics.Win.Appearance();
  61. Infragistics.Win.Appearance appearance69 = new Infragistics.Win.Appearance();
  62. Infragistics.Win.Appearance appearance70 = new Infragistics.Win.Appearance();
  63. Infragistics.Win.Appearance appearance71 = new Infragistics.Win.Appearance();
  64. Infragistics.Win.Appearance appearance72 = new Infragistics.Win.Appearance();
  65. Infragistics.Win.Appearance appearance73 = new Infragistics.Win.Appearance();
  66. Infragistics.Win.Appearance appearance74 = new Infragistics.Win.Appearance();
  67. Infragistics.Win.Appearance appearance75 = new Infragistics.Win.Appearance();
  68. Infragistics.Win.Appearance appearance76 = new Infragistics.Win.Appearance();
  69. Infragistics.Win.Appearance appearance27 = new Infragistics.Win.Appearance();
  70. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table2", -1);
  71. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIALNAME");
  72. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("LARGE_SAMPLE_SIZE");
  73. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DW");
  74. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PRICE");
  75. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GS");
  76. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIALCLASS");
  77. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIALID");
  78. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CRGS");
  79. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("COUNT");
  80. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CHECK_TIME");
  81. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CHECK_NAME");
  82. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DEPTID");
  83. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("REMARK");
  84. Infragistics.Win.Appearance appearance28 = new Infragistics.Win.Appearance();
  85. Infragistics.Win.Appearance appearance29 = new Infragistics.Win.Appearance();
  86. Infragistics.Win.Appearance appearance30 = new Infragistics.Win.Appearance();
  87. Infragistics.Win.Appearance appearance31 = new Infragistics.Win.Appearance();
  88. Infragistics.Win.Appearance appearance32 = new Infragistics.Win.Appearance();
  89. Infragistics.Win.Appearance appearance33 = new Infragistics.Win.Appearance();
  90. Infragistics.Win.Appearance appearance35 = new Infragistics.Win.Appearance();
  91. Infragistics.Win.Appearance appearance36 = new Infragistics.Win.Appearance();
  92. Infragistics.Win.Appearance appearance37 = new Infragistics.Win.Appearance();
  93. Infragistics.Win.Appearance appearance38 = new Infragistics.Win.Appearance();
  94. Infragistics.Win.Appearance appearance39 = new Infragistics.Win.Appearance();
  95. Infragistics.Win.Appearance appearance77 = new Infragistics.Win.Appearance();
  96. Infragistics.Win.Appearance appearance78 = new Infragistics.Win.Appearance();
  97. Infragistics.Win.Appearance appearance79 = new Infragistics.Win.Appearance();
  98. Infragistics.Win.Appearance appearance80 = new Infragistics.Win.Appearance();
  99. Infragistics.Win.Appearance appearance81 = new Infragistics.Win.Appearance();
  100. Infragistics.Win.Appearance appearance82 = new Infragistics.Win.Appearance();
  101. Infragistics.Win.Appearance appearance83 = new Infragistics.Win.Appearance();
  102. Infragistics.Win.Appearance appearance84 = new Infragistics.Win.Appearance();
  103. Infragistics.Win.Appearance appearance85 = new Infragistics.Win.Appearance();
  104. Infragistics.Win.Appearance appearance86 = new Infragistics.Win.Appearance();
  105. Infragistics.Win.Appearance appearance87 = new Infragistics.Win.Appearance();
  106. Infragistics.Win.Appearance appearance88 = new Infragistics.Win.Appearance();
  107. Infragistics.Win.Appearance appearance89 = new Infragistics.Win.Appearance();
  108. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab1 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  109. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab2 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  110. Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
  111. Infragistics.Win.Appearance appearance34 = new Infragistics.Win.Appearance();
  112. Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
  113. Infragistics.Win.Appearance appearance44 = new Infragistics.Win.Appearance();
  114. Infragistics.Win.Appearance appearance45 = new Infragistics.Win.Appearance();
  115. Infragistics.Win.Appearance appearance46 = new Infragistics.Win.Appearance();
  116. Infragistics.Win.Appearance appearance43 = new Infragistics.Win.Appearance();
  117. Infragistics.Win.Appearance appearance42 = new Infragistics.Win.Appearance();
  118. Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
  119. Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
  120. Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
  121. Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
  122. Infragistics.Win.Appearance appearance41 = new Infragistics.Win.Appearance();
  123. Infragistics.Win.Appearance appearance47 = new Infragistics.Win.Appearance();
  124. Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
  125. Infragistics.Win.Appearance appearance48 = new Infragistics.Win.Appearance();
  126. this.ultraTabPageControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  127. this.ultraGrid2 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  128. this.dataSet1 = new System.Data.DataSet();
  129. this.dataTable1 = new System.Data.DataTable();
  130. this.dataColumn1 = new System.Data.DataColumn();
  131. this.dataColumn2 = new System.Data.DataColumn();
  132. this.dataColumn3 = new System.Data.DataColumn();
  133. this.dataColumn4 = new System.Data.DataColumn();
  134. this.dataColumn5 = new System.Data.DataColumn();
  135. this.dataColumn7 = new System.Data.DataColumn();
  136. this.dataColumn9 = new System.Data.DataColumn();
  137. this.dataColumn8 = new System.Data.DataColumn();
  138. this.dataColumn10 = new System.Data.DataColumn();
  139. this.dataColumn11 = new System.Data.DataColumn();
  140. this.dataColumn12 = new System.Data.DataColumn();
  141. this.dataColumn13 = new System.Data.DataColumn();
  142. this.dataColumn14 = new System.Data.DataColumn();
  143. this.dataColumn15 = new System.Data.DataColumn();
  144. this.dataTable2 = new System.Data.DataTable();
  145. this.dataColumn16 = new System.Data.DataColumn();
  146. this.dataColumn17 = new System.Data.DataColumn();
  147. this.dataColumn18 = new System.Data.DataColumn();
  148. this.dataColumn19 = new System.Data.DataColumn();
  149. this.dataColumn20 = new System.Data.DataColumn();
  150. this.dataColumn22 = new System.Data.DataColumn();
  151. this.dataColumn23 = new System.Data.DataColumn();
  152. this.dataColumn24 = new System.Data.DataColumn();
  153. this.dataColumn25 = new System.Data.DataColumn();
  154. this.dataColumn26 = new System.Data.DataColumn();
  155. this.dataColumn27 = new System.Data.DataColumn();
  156. this.dataColumn28 = new System.Data.DataColumn();
  157. this.dataColumn29 = new System.Data.DataColumn();
  158. this.ultraExpandableGroupBox1 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
  159. this.ultraExpandableGroupBoxPanel1 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
  160. this.ultraTextEditor1 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  161. this.ultraComboEditor1 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  162. this.ultraTextEditor2 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  163. this.ultraTextEditor3 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  164. this.ultraDateTimeEditor1 = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
  165. this.ultraComboEditor7 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  166. this.ultraLabel2 = new Infragistics.Win.Misc.UltraLabel();
  167. this.ultraLabel3 = new Infragistics.Win.Misc.UltraLabel();
  168. this.ultraLabel4 = new Infragistics.Win.Misc.UltraLabel();
  169. this.ultraLabel5 = new Infragistics.Win.Misc.UltraLabel();
  170. this.ultraLabel6 = new Infragistics.Win.Misc.UltraLabel();
  171. this.ultraTextEditor4 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  172. this.ultraLabel7 = new Infragistics.Win.Misc.UltraLabel();
  173. this.ultraTextEditor5 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  174. this.ultraTextEditor6 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  175. this.ultraTextEditor12 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  176. this.ultraLabel8 = new Infragistics.Win.Misc.UltraLabel();
  177. this.ultraTextEditor19 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  178. this.ultraLabel9 = new Infragistics.Win.Misc.UltraLabel();
  179. this.ultraLabel10 = new Infragistics.Win.Misc.UltraLabel();
  180. this.ultraLabel14 = new Infragistics.Win.Misc.UltraLabel();
  181. this.ultraLabel25 = new Infragistics.Win.Misc.UltraLabel();
  182. this.ultraTextEditor20 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  183. this.ultraLabel26 = new Infragistics.Win.Misc.UltraLabel();
  184. this.ultraComboEditor8 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  185. this.ultraTextEditor21 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  186. this.ultraLabel27 = new Infragistics.Win.Misc.UltraLabel();
  187. this.ultraLabel28 = new Infragistics.Win.Misc.UltraLabel();
  188. this.ultraTabPageControl2 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  189. this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  190. this.ultraExpandableGroupBox2 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
  191. this.ultraExpandableGroupBoxPanel2 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
  192. this.ultraTextEditor7 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  193. this.ultraComboEditor2 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  194. this.ultraTextEditor10 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  195. this.ultraDateTimeEditor2 = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
  196. this.ultraComboEditor4 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  197. this.ultraLabel1 = new Infragistics.Win.Misc.UltraLabel();
  198. this.ultraLabel12 = new Infragistics.Win.Misc.UltraLabel();
  199. this.ultraLabel13 = new Infragistics.Win.Misc.UltraLabel();
  200. this.ultraLabel15 = new Infragistics.Win.Misc.UltraLabel();
  201. this.ultraTextEditor11 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  202. this.ultraLabel16 = new Infragistics.Win.Misc.UltraLabel();
  203. this.ultraTextEditor13 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  204. this.ultraTextEditor14 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  205. this.ultraTextEditor15 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  206. this.ultraLabel17 = new Infragistics.Win.Misc.UltraLabel();
  207. this.ultraTextEditor16 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  208. this.ultraLabel18 = new Infragistics.Win.Misc.UltraLabel();
  209. this.ultraLabel19 = new Infragistics.Win.Misc.UltraLabel();
  210. this.ultraLabel20 = new Infragistics.Win.Misc.UltraLabel();
  211. this.ultraLabel21 = new Infragistics.Win.Misc.UltraLabel();
  212. this.ultraTextEditor17 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  213. this.ultraLabel22 = new Infragistics.Win.Misc.UltraLabel();
  214. this.ultraComboEditor5 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  215. this.ultraTextEditor18 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  216. this.ultraLabel23 = new Infragistics.Win.Misc.UltraLabel();
  217. this.ultraLabel24 = new Infragistics.Win.Misc.UltraLabel();
  218. this.FrmBase_Fill_Panel_Fill_Panel_Fill_Panel = new System.Windows.Forms.Panel();
  219. this.panel2 = new System.Windows.Forms.Panel();
  220. this.ultraTabControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
  221. this.ultraTabSharedControlsPage1 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
  222. this.panel1 = new System.Windows.Forms.Panel();
  223. this.cbQueryDEPTID = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  224. this.ultraLabel42 = new Infragistics.Win.Misc.UltraLabel();
  225. this.dateEnd = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
  226. this.chkTime = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  227. this.dateBegin = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
  228. this.ultraComboEditor6 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  229. this.ultraCheckEditor2 = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  230. this.ultraCheckEditor1 = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  231. this.ultraComboEditor3 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  232. this.ultraCheckEditor3 = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  233. this.FrmBase_Fill_Panel_Fill_Panel = new System.Windows.Forms.Panel();
  234. this.FrmBase_Fill_Panel = new System.Windows.Forms.Panel();
  235. this.ultraTextEditor9 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  236. this.ultraComboEditor9 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  237. this.ultraTextEditor22 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  238. this.ultraTextEditor23 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  239. this.ultraDateTimeEditor3 = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
  240. this.ultraComboEditor10 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  241. this.ultraLabel11 = new Infragistics.Win.Misc.UltraLabel();
  242. this.ultraLabel29 = new Infragistics.Win.Misc.UltraLabel();
  243. this.ultraLabel30 = new Infragistics.Win.Misc.UltraLabel();
  244. this.ultraLabel31 = new Infragistics.Win.Misc.UltraLabel();
  245. this.ultraLabel32 = new Infragistics.Win.Misc.UltraLabel();
  246. this.ultraTextEditor24 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  247. this.ultraLabel33 = new Infragistics.Win.Misc.UltraLabel();
  248. this.ultraTextEditor25 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  249. this.ultraTextEditor26 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  250. this.ultraTextEditor27 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  251. this.ultraLabel34 = new Infragistics.Win.Misc.UltraLabel();
  252. this.ultraTextEditor28 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  253. this.ultraLabel35 = new Infragistics.Win.Misc.UltraLabel();
  254. this.ultraLabel36 = new Infragistics.Win.Misc.UltraLabel();
  255. this.ultraLabel37 = new Infragistics.Win.Misc.UltraLabel();
  256. this.ultraLabel38 = new Infragistics.Win.Misc.UltraLabel();
  257. this.ultraTextEditor29 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  258. this.ultraLabel39 = new Infragistics.Win.Misc.UltraLabel();
  259. this.ultraComboEditor11 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  260. this.ultraTextEditor30 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  261. this.ultraLabel40 = new Infragistics.Win.Misc.UltraLabel();
  262. this.ultraLabel41 = new Infragistics.Win.Misc.UltraLabel();
  263. this.ultraTabPageControl1.SuspendLayout();
  264. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).BeginInit();
  265. ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
  266. ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
  267. ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).BeginInit();
  268. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).BeginInit();
  269. this.ultraExpandableGroupBox1.SuspendLayout();
  270. this.ultraExpandableGroupBoxPanel1.SuspendLayout();
  271. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).BeginInit();
  272. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor1)).BeginInit();
  273. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor2)).BeginInit();
  274. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor3)).BeginInit();
  275. ((System.ComponentModel.ISupportInitialize)(this.ultraDateTimeEditor1)).BeginInit();
  276. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor7)).BeginInit();
  277. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor4)).BeginInit();
  278. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor5)).BeginInit();
  279. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor6)).BeginInit();
  280. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor12)).BeginInit();
  281. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor19)).BeginInit();
  282. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor20)).BeginInit();
  283. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor8)).BeginInit();
  284. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor21)).BeginInit();
  285. this.ultraTabPageControl2.SuspendLayout();
  286. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
  287. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox2)).BeginInit();
  288. this.ultraExpandableGroupBox2.SuspendLayout();
  289. this.ultraExpandableGroupBoxPanel2.SuspendLayout();
  290. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor7)).BeginInit();
  291. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor2)).BeginInit();
  292. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor10)).BeginInit();
  293. ((System.ComponentModel.ISupportInitialize)(this.ultraDateTimeEditor2)).BeginInit();
  294. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor4)).BeginInit();
  295. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor11)).BeginInit();
  296. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor13)).BeginInit();
  297. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor14)).BeginInit();
  298. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor15)).BeginInit();
  299. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor16)).BeginInit();
  300. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor17)).BeginInit();
  301. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor5)).BeginInit();
  302. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor18)).BeginInit();
  303. this.FrmBase_Fill_Panel_Fill_Panel_Fill_Panel.SuspendLayout();
  304. this.panel2.SuspendLayout();
  305. ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).BeginInit();
  306. this.ultraTabControl1.SuspendLayout();
  307. this.panel1.SuspendLayout();
  308. ((System.ComponentModel.ISupportInitialize)(this.cbQueryDEPTID)).BeginInit();
  309. ((System.ComponentModel.ISupportInitialize)(this.dateEnd)).BeginInit();
  310. ((System.ComponentModel.ISupportInitialize)(this.chkTime)).BeginInit();
  311. ((System.ComponentModel.ISupportInitialize)(this.dateBegin)).BeginInit();
  312. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor6)).BeginInit();
  313. ((System.ComponentModel.ISupportInitialize)(this.ultraCheckEditor2)).BeginInit();
  314. ((System.ComponentModel.ISupportInitialize)(this.ultraCheckEditor1)).BeginInit();
  315. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor3)).BeginInit();
  316. ((System.ComponentModel.ISupportInitialize)(this.ultraCheckEditor3)).BeginInit();
  317. this.FrmBase_Fill_Panel_Fill_Panel.SuspendLayout();
  318. this.FrmBase_Fill_Panel.SuspendLayout();
  319. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor9)).BeginInit();
  320. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor9)).BeginInit();
  321. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor22)).BeginInit();
  322. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor23)).BeginInit();
  323. ((System.ComponentModel.ISupportInitialize)(this.ultraDateTimeEditor3)).BeginInit();
  324. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor10)).BeginInit();
  325. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor24)).BeginInit();
  326. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor25)).BeginInit();
  327. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor26)).BeginInit();
  328. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor27)).BeginInit();
  329. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor28)).BeginInit();
  330. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor29)).BeginInit();
  331. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor11)).BeginInit();
  332. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor30)).BeginInit();
  333. this.SuspendLayout();
  334. //
  335. // ultraTabPageControl1
  336. //
  337. this.ultraTabPageControl1.Controls.Add(this.ultraGrid2);
  338. this.ultraTabPageControl1.Controls.Add(this.ultraExpandableGroupBox1);
  339. this.ultraTabPageControl1.Location = new System.Drawing.Point(-10000, -10000);
  340. this.ultraTabPageControl1.Name = "ultraTabPageControl1";
  341. this.ultraTabPageControl1.Size = new System.Drawing.Size(1322, 406);
  342. //
  343. // ultraGrid2
  344. //
  345. this.ultraGrid2.DataMember = "Table1";
  346. this.ultraGrid2.DataSource = this.dataSet1;
  347. appearance13.BackColor = System.Drawing.SystemColors.Window;
  348. appearance13.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  349. this.ultraGrid2.DisplayLayout.Appearance = appearance13;
  350. ultraGridColumn1.Header.VisiblePosition = 0;
  351. ultraGridColumn1.RowLayoutColumnInfo.OriginX = 1;
  352. ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
  353. ultraGridColumn1.RowLayoutColumnInfo.SpanX = 1;
  354. ultraGridColumn1.RowLayoutColumnInfo.SpanY = 1;
  355. ultraGridColumn2.Header.VisiblePosition = 1;
  356. ultraGridColumn2.RowLayoutColumnInfo.OriginX = 2;
  357. ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
  358. ultraGridColumn2.RowLayoutColumnInfo.SpanX = 1;
  359. ultraGridColumn2.RowLayoutColumnInfo.SpanY = 1;
  360. ultraGridColumn3.Header.VisiblePosition = 2;
  361. ultraGridColumn3.RowLayoutColumnInfo.OriginX = 3;
  362. ultraGridColumn3.RowLayoutColumnInfo.OriginY = 0;
  363. ultraGridColumn3.RowLayoutColumnInfo.SpanX = 1;
  364. ultraGridColumn3.RowLayoutColumnInfo.SpanY = 1;
  365. ultraGridColumn4.Header.VisiblePosition = 3;
  366. ultraGridColumn4.RowLayoutColumnInfo.OriginX = 5;
  367. ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
  368. ultraGridColumn4.RowLayoutColumnInfo.SpanX = 1;
  369. ultraGridColumn4.RowLayoutColumnInfo.SpanY = 1;
  370. ultraGridColumn5.Header.VisiblePosition = 4;
  371. ultraGridColumn5.Hidden = true;
  372. ultraGridColumn5.RowLayoutColumnInfo.OriginX = 13;
  373. ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
  374. ultraGridColumn5.RowLayoutColumnInfo.SpanX = 1;
  375. ultraGridColumn5.RowLayoutColumnInfo.SpanY = 1;
  376. ultraGridColumn6.Header.VisiblePosition = 5;
  377. ultraGridColumn6.RowLayoutColumnInfo.OriginX = 0;
  378. ultraGridColumn6.RowLayoutColumnInfo.OriginY = 0;
  379. ultraGridColumn6.RowLayoutColumnInfo.SpanX = 1;
  380. ultraGridColumn6.RowLayoutColumnInfo.SpanY = 1;
  381. ultraGridColumn7.Header.VisiblePosition = 6;
  382. ultraGridColumn7.Hidden = true;
  383. ultraGridColumn7.RowLayoutColumnInfo.OriginX = 12;
  384. ultraGridColumn7.RowLayoutColumnInfo.OriginY = 0;
  385. ultraGridColumn7.RowLayoutColumnInfo.SpanX = 1;
  386. ultraGridColumn7.RowLayoutColumnInfo.SpanY = 1;
  387. ultraGridColumn8.Header.VisiblePosition = 7;
  388. ultraGridColumn8.RowLayoutColumnInfo.OriginX = 4;
  389. ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
  390. ultraGridColumn8.RowLayoutColumnInfo.SpanX = 1;
  391. ultraGridColumn8.RowLayoutColumnInfo.SpanY = 1;
  392. ultraGridColumn9.Header.VisiblePosition = 8;
  393. ultraGridColumn9.RowLayoutColumnInfo.OriginX = 6;
  394. ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
  395. ultraGridColumn9.RowLayoutColumnInfo.SpanX = 1;
  396. ultraGridColumn9.RowLayoutColumnInfo.SpanY = 1;
  397. ultraGridColumn10.Header.VisiblePosition = 9;
  398. ultraGridColumn10.RowLayoutColumnInfo.OriginX = 7;
  399. ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
  400. ultraGridColumn10.RowLayoutColumnInfo.SpanX = 1;
  401. ultraGridColumn10.RowLayoutColumnInfo.SpanY = 1;
  402. ultraGridColumn11.Header.VisiblePosition = 10;
  403. ultraGridColumn11.RowLayoutColumnInfo.OriginX = 8;
  404. ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
  405. ultraGridColumn11.RowLayoutColumnInfo.SpanX = 1;
  406. ultraGridColumn11.RowLayoutColumnInfo.SpanY = 1;
  407. ultraGridColumn12.Header.VisiblePosition = 11;
  408. ultraGridColumn12.RowLayoutColumnInfo.OriginX = 9;
  409. ultraGridColumn12.RowLayoutColumnInfo.OriginY = 0;
  410. ultraGridColumn12.RowLayoutColumnInfo.SpanX = 1;
  411. ultraGridColumn12.RowLayoutColumnInfo.SpanY = 1;
  412. ultraGridColumn13.Header.VisiblePosition = 12;
  413. ultraGridColumn13.RowLayoutColumnInfo.OriginX = 10;
  414. ultraGridColumn13.RowLayoutColumnInfo.OriginY = 0;
  415. ultraGridColumn13.RowLayoutColumnInfo.SpanX = 1;
  416. ultraGridColumn13.RowLayoutColumnInfo.SpanY = 1;
  417. ultraGridColumn14.Header.VisiblePosition = 13;
  418. ultraGridColumn14.RowLayoutColumnInfo.OriginX = 11;
  419. ultraGridColumn14.RowLayoutColumnInfo.OriginY = 0;
  420. ultraGridColumn14.RowLayoutColumnInfo.SpanX = 1;
  421. ultraGridColumn14.RowLayoutColumnInfo.SpanY = 1;
  422. ultraGridBand1.Columns.AddRange(new object[] {
  423. ultraGridColumn1,
  424. ultraGridColumn2,
  425. ultraGridColumn3,
  426. ultraGridColumn4,
  427. ultraGridColumn5,
  428. ultraGridColumn6,
  429. ultraGridColumn7,
  430. ultraGridColumn8,
  431. ultraGridColumn9,
  432. ultraGridColumn10,
  433. ultraGridColumn11,
  434. ultraGridColumn12,
  435. ultraGridColumn13,
  436. ultraGridColumn14});
  437. ultraGridBand1.Override.SelectedAppearancesEnabled = Infragistics.Win.DefaultableBoolean.False;
  438. ultraGridBand1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
  439. this.ultraGrid2.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
  440. this.ultraGrid2.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  441. this.ultraGrid2.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  442. appearance90.BackColor = System.Drawing.SystemColors.ActiveBorder;
  443. appearance90.BackColor2 = System.Drawing.SystemColors.ControlDark;
  444. appearance90.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  445. appearance90.BorderColor = System.Drawing.SystemColors.Window;
  446. this.ultraGrid2.DisplayLayout.GroupByBox.Appearance = appearance90;
  447. appearance17.ForeColor = System.Drawing.SystemColors.GrayText;
  448. this.ultraGrid2.DisplayLayout.GroupByBox.BandLabelAppearance = appearance17;
  449. this.ultraGrid2.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  450. appearance18.BackColor = System.Drawing.SystemColors.ControlLightLight;
  451. appearance18.BackColor2 = System.Drawing.SystemColors.Control;
  452. appearance18.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  453. appearance18.ForeColor = System.Drawing.SystemColors.GrayText;
  454. this.ultraGrid2.DisplayLayout.GroupByBox.PromptAppearance = appearance18;
  455. this.ultraGrid2.DisplayLayout.MaxColScrollRegions = 1;
  456. this.ultraGrid2.DisplayLayout.MaxRowScrollRegions = 1;
  457. appearance20.BackColor = System.Drawing.SystemColors.Window;
  458. appearance20.ForeColor = System.Drawing.SystemColors.ControlText;
  459. this.ultraGrid2.DisplayLayout.Override.ActiveCellAppearance = appearance20;
  460. appearance21.BackColor = System.Drawing.SystemColors.Highlight;
  461. appearance21.ForeColor = System.Drawing.SystemColors.HighlightText;
  462. this.ultraGrid2.DisplayLayout.Override.ActiveRowAppearance = appearance21;
  463. this.ultraGrid2.DisplayLayout.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.No;
  464. this.ultraGrid2.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
  465. this.ultraGrid2.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  466. this.ultraGrid2.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  467. appearance22.BackColor = System.Drawing.SystemColors.Window;
  468. this.ultraGrid2.DisplayLayout.Override.CardAreaAppearance = appearance22;
  469. appearance23.BorderColor = System.Drawing.Color.Silver;
  470. appearance23.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  471. this.ultraGrid2.DisplayLayout.Override.CellAppearance = appearance23;
  472. this.ultraGrid2.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  473. this.ultraGrid2.DisplayLayout.Override.CellPadding = 0;
  474. appearance24.BackColor = System.Drawing.SystemColors.Control;
  475. appearance24.BackColor2 = System.Drawing.SystemColors.ControlDark;
  476. appearance24.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  477. appearance24.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  478. appearance24.BorderColor = System.Drawing.SystemColors.Window;
  479. this.ultraGrid2.DisplayLayout.Override.GroupByRowAppearance = appearance24;
  480. appearance25.TextHAlignAsString = "Left";
  481. this.ultraGrid2.DisplayLayout.Override.HeaderAppearance = appearance25;
  482. this.ultraGrid2.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  483. this.ultraGrid2.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  484. appearance91.BackColor = System.Drawing.SystemColors.Window;
  485. appearance91.BorderColor = System.Drawing.Color.Silver;
  486. this.ultraGrid2.DisplayLayout.Override.RowAppearance = appearance91;
  487. this.ultraGrid2.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  488. appearance40.BackColor = System.Drawing.SystemColors.ControlLight;
  489. this.ultraGrid2.DisplayLayout.Override.TemplateAddRowAppearance = appearance40;
  490. this.ultraGrid2.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  491. this.ultraGrid2.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  492. this.ultraGrid2.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  493. this.ultraGrid2.Dock = System.Windows.Forms.DockStyle.Fill;
  494. this.ultraGrid2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  495. this.ultraGrid2.Location = new System.Drawing.Point(0, 0);
  496. this.ultraGrid2.Name = "ultraGrid2";
  497. this.ultraGrid2.Size = new System.Drawing.Size(1322, 257);
  498. this.ultraGrid2.TabIndex = 22;
  499. this.ultraGrid2.Text = "ultraGrid1";
  500. //
  501. // dataSet1
  502. //
  503. this.dataSet1.DataSetName = "NewDataSet";
  504. this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
  505. this.dataTable1,
  506. this.dataTable2});
  507. //
  508. // dataTable1
  509. //
  510. this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
  511. this.dataColumn1,
  512. this.dataColumn2,
  513. this.dataColumn3,
  514. this.dataColumn4,
  515. this.dataColumn5,
  516. this.dataColumn7,
  517. this.dataColumn9,
  518. this.dataColumn8,
  519. this.dataColumn10,
  520. this.dataColumn11,
  521. this.dataColumn12,
  522. this.dataColumn13,
  523. this.dataColumn14,
  524. this.dataColumn15});
  525. this.dataTable1.TableName = "Table1";
  526. //
  527. // dataColumn1
  528. //
  529. this.dataColumn1.Caption = "物资名称";
  530. this.dataColumn1.ColumnName = "MATERIALNAME";
  531. //
  532. // dataColumn2
  533. //
  534. this.dataColumn2.Caption = "规格型号";
  535. this.dataColumn2.ColumnName = "LARGE_SAMPLE_SIZE";
  536. //
  537. // dataColumn3
  538. //
  539. this.dataColumn3.Caption = "单位";
  540. this.dataColumn3.ColumnName = "DW";
  541. //
  542. // dataColumn4
  543. //
  544. this.dataColumn4.Caption = "计划价格";
  545. this.dataColumn4.ColumnName = "PRICE";
  546. //
  547. // dataColumn5
  548. //
  549. this.dataColumn5.Caption = "库存量";
  550. this.dataColumn5.ColumnName = "GS";
  551. //
  552. // dataColumn7
  553. //
  554. this.dataColumn7.Caption = "物资大类";
  555. this.dataColumn7.ColumnName = "MATERIALCLASS";
  556. //
  557. // dataColumn9
  558. //
  559. this.dataColumn9.Caption = "物料号";
  560. this.dataColumn9.ColumnName = "MATERIALID";
  561. //
  562. // dataColumn8
  563. //
  564. this.dataColumn8.Caption = "出库数量";
  565. this.dataColumn8.ColumnName = "CRGS";
  566. //
  567. // dataColumn10
  568. //
  569. this.dataColumn10.Caption = "合计金额";
  570. this.dataColumn10.ColumnName = "COUNT";
  571. //
  572. // dataColumn11
  573. //
  574. this.dataColumn11.Caption = "出库日期";
  575. this.dataColumn11.ColumnName = "CHECK_TIME";
  576. //
  577. // dataColumn12
  578. //
  579. this.dataColumn12.Caption = "发料人";
  580. this.dataColumn12.ColumnName = "FLR";
  581. //
  582. // dataColumn13
  583. //
  584. this.dataColumn13.Caption = "领料人";
  585. this.dataColumn13.ColumnName = "LLR";
  586. //
  587. // dataColumn14
  588. //
  589. this.dataColumn14.Caption = "领料科室";
  590. this.dataColumn14.ColumnName = "DEPTID";
  591. //
  592. // dataColumn15
  593. //
  594. this.dataColumn15.Caption = "备注";
  595. this.dataColumn15.ColumnName = "REMARK";
  596. //
  597. // dataTable2
  598. //
  599. this.dataTable2.Columns.AddRange(new System.Data.DataColumn[] {
  600. this.dataColumn16,
  601. this.dataColumn17,
  602. this.dataColumn18,
  603. this.dataColumn19,
  604. this.dataColumn20,
  605. this.dataColumn22,
  606. this.dataColumn23,
  607. this.dataColumn24,
  608. this.dataColumn25,
  609. this.dataColumn26,
  610. this.dataColumn27,
  611. this.dataColumn28,
  612. this.dataColumn29});
  613. this.dataTable2.TableName = "Table2";
  614. //
  615. // dataColumn16
  616. //
  617. this.dataColumn16.Caption = "物资名称";
  618. this.dataColumn16.ColumnName = "MATERIALNAME";
  619. //
  620. // dataColumn17
  621. //
  622. this.dataColumn17.Caption = "规格型号";
  623. this.dataColumn17.ColumnName = "LARGE_SAMPLE_SIZE";
  624. //
  625. // dataColumn18
  626. //
  627. this.dataColumn18.Caption = "单位";
  628. this.dataColumn18.ColumnName = "DW";
  629. //
  630. // dataColumn19
  631. //
  632. this.dataColumn19.Caption = "计划价格";
  633. this.dataColumn19.ColumnName = "PRICE";
  634. //
  635. // dataColumn20
  636. //
  637. this.dataColumn20.Caption = "库存量";
  638. this.dataColumn20.ColumnName = "GS";
  639. //
  640. // dataColumn22
  641. //
  642. this.dataColumn22.Caption = "物资大类";
  643. this.dataColumn22.ColumnName = "MATERIALCLASS";
  644. //
  645. // dataColumn23
  646. //
  647. this.dataColumn23.Caption = "物料号";
  648. this.dataColumn23.ColumnName = "MATERIALID";
  649. //
  650. // dataColumn24
  651. //
  652. this.dataColumn24.Caption = "入库数量";
  653. this.dataColumn24.ColumnName = "CRGS";
  654. //
  655. // dataColumn25
  656. //
  657. this.dataColumn25.Caption = "合计金额";
  658. this.dataColumn25.ColumnName = "COUNT";
  659. //
  660. // dataColumn26
  661. //
  662. this.dataColumn26.Caption = "入库日期";
  663. this.dataColumn26.ColumnName = "CHECK_TIME";
  664. //
  665. // dataColumn27
  666. //
  667. this.dataColumn27.Caption = "入库人";
  668. this.dataColumn27.ColumnName = "CHECK_NAME";
  669. //
  670. // dataColumn28
  671. //
  672. this.dataColumn28.Caption = "科室";
  673. this.dataColumn28.ColumnName = "DEPTID";
  674. //
  675. // dataColumn29
  676. //
  677. this.dataColumn29.Caption = "备注";
  678. this.dataColumn29.ColumnName = "REMARK";
  679. //
  680. // ultraExpandableGroupBox1
  681. //
  682. this.ultraExpandableGroupBox1.Controls.Add(this.ultraExpandableGroupBoxPanel1);
  683. this.ultraExpandableGroupBox1.Dock = System.Windows.Forms.DockStyle.Bottom;
  684. this.ultraExpandableGroupBox1.ExpandedSize = new System.Drawing.Size(1322, 149);
  685. this.ultraExpandableGroupBox1.Location = new System.Drawing.Point(0, 257);
  686. this.ultraExpandableGroupBox1.Name = "ultraExpandableGroupBox1";
  687. this.ultraExpandableGroupBox1.Size = new System.Drawing.Size(1322, 149);
  688. this.ultraExpandableGroupBox1.TabIndex = 18;
  689. this.ultraExpandableGroupBox1.Text = "编辑区域";
  690. //
  691. // ultraExpandableGroupBoxPanel1
  692. //
  693. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraTextEditor1);
  694. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraComboEditor1);
  695. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraTextEditor2);
  696. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraTextEditor3);
  697. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraDateTimeEditor1);
  698. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraComboEditor7);
  699. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel2);
  700. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel3);
  701. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel4);
  702. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel5);
  703. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel6);
  704. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraTextEditor4);
  705. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel7);
  706. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraTextEditor5);
  707. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraTextEditor6);
  708. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraTextEditor12);
  709. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel8);
  710. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraTextEditor19);
  711. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel9);
  712. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel10);
  713. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel14);
  714. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel25);
  715. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraTextEditor20);
  716. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel26);
  717. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraComboEditor8);
  718. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraTextEditor21);
  719. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel27);
  720. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel28);
  721. this.ultraExpandableGroupBoxPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  722. this.ultraExpandableGroupBoxPanel1.Location = new System.Drawing.Point(3, 19);
  723. this.ultraExpandableGroupBoxPanel1.Name = "ultraExpandableGroupBoxPanel1";
  724. this.ultraExpandableGroupBoxPanel1.Size = new System.Drawing.Size(1316, 127);
  725. this.ultraExpandableGroupBoxPanel1.TabIndex = 1;
  726. //
  727. // ultraTextEditor1
  728. //
  729. this.ultraTextEditor1.AutoSize = false;
  730. this.ultraTextEditor1.Location = new System.Drawing.Point(450, 78);
  731. this.ultraTextEditor1.Multiline = true;
  732. this.ultraTextEditor1.Name = "ultraTextEditor1";
  733. this.ultraTextEditor1.Scrollbars = System.Windows.Forms.ScrollBars.Vertical;
  734. this.ultraTextEditor1.Size = new System.Drawing.Size(114, 46);
  735. this.ultraTextEditor1.TabIndex = 7;
  736. //
  737. // ultraComboEditor1
  738. //
  739. this.ultraComboEditor1.Location = new System.Drawing.Point(450, 53);
  740. this.ultraComboEditor1.Name = "ultraComboEditor1";
  741. this.ultraComboEditor1.Size = new System.Drawing.Size(114, 21);
  742. this.ultraComboEditor1.TabIndex = 6;
  743. //
  744. // ultraTextEditor2
  745. //
  746. this.ultraTextEditor2.Location = new System.Drawing.Point(450, 28);
  747. this.ultraTextEditor2.MaxLength = 50;
  748. this.ultraTextEditor2.Name = "ultraTextEditor2";
  749. this.ultraTextEditor2.Size = new System.Drawing.Size(114, 21);
  750. this.ultraTextEditor2.TabIndex = 5;
  751. //
  752. // ultraTextEditor3
  753. //
  754. this.ultraTextEditor3.Location = new System.Drawing.Point(81, 103);
  755. this.ultraTextEditor3.MaxLength = 50;
  756. this.ultraTextEditor3.Name = "ultraTextEditor3";
  757. this.ultraTextEditor3.ReadOnly = true;
  758. this.ultraTextEditor3.Size = new System.Drawing.Size(142, 21);
  759. this.ultraTextEditor3.TabIndex = 0;
  760. //
  761. // ultraDateTimeEditor1
  762. //
  763. this.ultraDateTimeEditor1.Location = new System.Drawing.Point(285, 103);
  764. this.ultraDateTimeEditor1.Name = "ultraDateTimeEditor1";
  765. this.ultraDateTimeEditor1.ReadOnly = true;
  766. this.ultraDateTimeEditor1.Size = new System.Drawing.Size(114, 21);
  767. this.ultraDateTimeEditor1.TabIndex = 0;
  768. //
  769. // ultraComboEditor7
  770. //
  771. this.ultraComboEditor7.Location = new System.Drawing.Point(81, 28);
  772. this.ultraComboEditor7.Name = "ultraComboEditor7";
  773. this.ultraComboEditor7.Size = new System.Drawing.Size(142, 21);
  774. this.ultraComboEditor7.TabIndex = 2;
  775. //
  776. // ultraLabel2
  777. //
  778. appearance63.TextHAlignAsString = "Center";
  779. appearance63.TextVAlignAsString = "Middle";
  780. this.ultraLabel2.Appearance = appearance63;
  781. this.ultraLabel2.AutoSize = true;
  782. this.ultraLabel2.Location = new System.Drawing.Point(418, 56);
  783. this.ultraLabel2.Name = "ultraLabel2";
  784. this.ultraLabel2.Size = new System.Drawing.Size(29, 16);
  785. this.ultraLabel2.TabIndex = 164;
  786. this.ultraLabel2.Text = "科室";
  787. //
  788. // ultraLabel3
  789. //
  790. appearance64.TextHAlignAsString = "Center";
  791. appearance64.TextVAlignAsString = "Middle";
  792. this.ultraLabel3.Appearance = appearance64;
  793. this.ultraLabel3.AutoSize = true;
  794. this.ultraLabel3.Location = new System.Drawing.Point(405, 31);
  795. this.ultraLabel3.Name = "ultraLabel3";
  796. this.ultraLabel3.Size = new System.Drawing.Size(42, 16);
  797. this.ultraLabel3.TabIndex = 163;
  798. this.ultraLabel3.Text = "领料人";
  799. //
  800. // ultraLabel4
  801. //
  802. appearance65.TextHAlignAsString = "Center";
  803. appearance65.TextVAlignAsString = "Middle";
  804. this.ultraLabel4.Appearance = appearance65;
  805. this.ultraLabel4.AutoSize = true;
  806. this.ultraLabel4.Location = new System.Drawing.Point(405, 6);
  807. this.ultraLabel4.Name = "ultraLabel4";
  808. this.ultraLabel4.Size = new System.Drawing.Size(42, 16);
  809. this.ultraLabel4.TabIndex = 162;
  810. this.ultraLabel4.Text = "发料人";
  811. //
  812. // ultraLabel5
  813. //
  814. appearance66.TextHAlignAsString = "Center";
  815. appearance66.TextVAlignAsString = "Middle";
  816. this.ultraLabel5.Appearance = appearance66;
  817. this.ultraLabel5.AutoSize = true;
  818. this.ultraLabel5.Location = new System.Drawing.Point(228, 106);
  819. this.ultraLabel5.Name = "ultraLabel5";
  820. this.ultraLabel5.Size = new System.Drawing.Size(54, 16);
  821. this.ultraLabel5.TabIndex = 161;
  822. this.ultraLabel5.Text = "领料日期";
  823. //
  824. // ultraLabel6
  825. //
  826. appearance67.TextHAlignAsString = "Center";
  827. appearance67.TextVAlignAsString = "Middle";
  828. this.ultraLabel6.Appearance = appearance67;
  829. this.ultraLabel6.AutoSize = true;
  830. this.ultraLabel6.Location = new System.Drawing.Point(229, 81);
  831. this.ultraLabel6.Name = "ultraLabel6";
  832. this.ultraLabel6.Size = new System.Drawing.Size(54, 16);
  833. this.ultraLabel6.TabIndex = 160;
  834. this.ultraLabel6.Text = "合计金额";
  835. //
  836. // ultraTextEditor4
  837. //
  838. this.ultraTextEditor4.Location = new System.Drawing.Point(285, 78);
  839. this.ultraTextEditor4.MaxLength = 50;
  840. this.ultraTextEditor4.Name = "ultraTextEditor4";
  841. this.ultraTextEditor4.ReadOnly = true;
  842. this.ultraTextEditor4.Size = new System.Drawing.Size(114, 21);
  843. this.ultraTextEditor4.TabIndex = 0;
  844. //
  845. // ultraLabel7
  846. //
  847. appearance68.TextHAlignAsString = "Center";
  848. appearance68.TextVAlignAsString = "Middle";
  849. this.ultraLabel7.Appearance = appearance68;
  850. this.ultraLabel7.AutoSize = true;
  851. this.ultraLabel7.Location = new System.Drawing.Point(228, 31);
  852. this.ultraLabel7.Name = "ultraLabel7";
  853. this.ultraLabel7.Size = new System.Drawing.Size(54, 16);
  854. this.ultraLabel7.TabIndex = 158;
  855. this.ultraLabel7.Text = "出库数量";
  856. //
  857. // ultraTextEditor5
  858. //
  859. this.ultraTextEditor5.Location = new System.Drawing.Point(285, 53);
  860. this.ultraTextEditor5.MaxLength = 50;
  861. this.ultraTextEditor5.Name = "ultraTextEditor5";
  862. this.ultraTextEditor5.ReadOnly = true;
  863. this.ultraTextEditor5.Size = new System.Drawing.Size(114, 21);
  864. this.ultraTextEditor5.TabIndex = 0;
  865. //
  866. // ultraTextEditor6
  867. //
  868. this.ultraTextEditor6.Location = new System.Drawing.Point(450, 3);
  869. this.ultraTextEditor6.MaxLength = 50;
  870. this.ultraTextEditor6.Name = "ultraTextEditor6";
  871. this.ultraTextEditor6.Size = new System.Drawing.Size(114, 21);
  872. this.ultraTextEditor6.TabIndex = 4;
  873. //
  874. // ultraTextEditor12
  875. //
  876. this.ultraTextEditor12.Location = new System.Drawing.Point(81, 78);
  877. this.ultraTextEditor12.MaxLength = 50;
  878. this.ultraTextEditor12.Name = "ultraTextEditor12";
  879. this.ultraTextEditor12.ReadOnly = true;
  880. this.ultraTextEditor12.Size = new System.Drawing.Size(142, 21);
  881. this.ultraTextEditor12.TabIndex = 0;
  882. //
  883. // ultraLabel8
  884. //
  885. appearance69.TextHAlignAsString = "Center";
  886. appearance69.TextVAlignAsString = "Middle";
  887. this.ultraLabel8.Appearance = appearance69;
  888. this.ultraLabel8.AutoSize = true;
  889. this.ultraLabel8.Location = new System.Drawing.Point(36, 81);
  890. this.ultraLabel8.Name = "ultraLabel8";
  891. this.ultraLabel8.Size = new System.Drawing.Size(42, 16);
  892. this.ultraLabel8.TabIndex = 153;
  893. this.ultraLabel8.Text = "物料号";
  894. //
  895. // ultraTextEditor19
  896. //
  897. this.ultraTextEditor19.Location = new System.Drawing.Point(81, 53);
  898. this.ultraTextEditor19.MaxLength = 50;
  899. this.ultraTextEditor19.Name = "ultraTextEditor19";
  900. this.ultraTextEditor19.ReadOnly = true;
  901. this.ultraTextEditor19.Size = new System.Drawing.Size(142, 21);
  902. this.ultraTextEditor19.TabIndex = 0;
  903. //
  904. // ultraLabel9
  905. //
  906. appearance70.TextHAlignAsString = "Center";
  907. appearance70.TextVAlignAsString = "Middle";
  908. this.ultraLabel9.Appearance = appearance70;
  909. this.ultraLabel9.AutoSize = true;
  910. this.ultraLabel9.Location = new System.Drawing.Point(25, 56);
  911. this.ultraLabel9.Name = "ultraLabel9";
  912. this.ultraLabel9.Size = new System.Drawing.Size(54, 16);
  913. this.ultraLabel9.TabIndex = 151;
  914. this.ultraLabel9.Text = "规格型号";
  915. //
  916. // ultraLabel10
  917. //
  918. appearance71.TextHAlignAsString = "Center";
  919. appearance71.TextVAlignAsString = "Middle";
  920. this.ultraLabel10.Appearance = appearance71;
  921. this.ultraLabel10.AutoSize = true;
  922. this.ultraLabel10.Location = new System.Drawing.Point(418, 92);
  923. this.ultraLabel10.Name = "ultraLabel10";
  924. this.ultraLabel10.Size = new System.Drawing.Size(29, 16);
  925. this.ultraLabel10.TabIndex = 149;
  926. this.ultraLabel10.Text = "备注";
  927. //
  928. // ultraLabel14
  929. //
  930. appearance72.TextHAlignAsString = "Center";
  931. appearance72.TextVAlignAsString = "Middle";
  932. this.ultraLabel14.Appearance = appearance72;
  933. this.ultraLabel14.AutoSize = true;
  934. this.ultraLabel14.Location = new System.Drawing.Point(240, 6);
  935. this.ultraLabel14.Name = "ultraLabel14";
  936. this.ultraLabel14.Size = new System.Drawing.Size(42, 16);
  937. this.ultraLabel14.TabIndex = 148;
  938. this.ultraLabel14.Text = "库存量";
  939. //
  940. // ultraLabel25
  941. //
  942. appearance73.TextHAlignAsString = "Center";
  943. appearance73.TextVAlignAsString = "Middle";
  944. this.ultraLabel25.Appearance = appearance73;
  945. this.ultraLabel25.AutoSize = true;
  946. this.ultraLabel25.Location = new System.Drawing.Point(229, 56);
  947. this.ultraLabel25.Name = "ultraLabel25";
  948. this.ultraLabel25.Size = new System.Drawing.Size(54, 16);
  949. this.ultraLabel25.TabIndex = 128;
  950. this.ultraLabel25.Text = "计划价格";
  951. //
  952. // ultraTextEditor20
  953. //
  954. this.ultraTextEditor20.Location = new System.Drawing.Point(285, 28);
  955. this.ultraTextEditor20.MaxLength = 50;
  956. this.ultraTextEditor20.Name = "ultraTextEditor20";
  957. this.ultraTextEditor20.Size = new System.Drawing.Size(114, 21);
  958. this.ultraTextEditor20.TabIndex = 3;
  959. //
  960. // ultraLabel26
  961. //
  962. appearance74.TextHAlignAsString = "Center";
  963. appearance74.TextVAlignAsString = "Middle";
  964. this.ultraLabel26.Appearance = appearance74;
  965. this.ultraLabel26.AutoSize = true;
  966. this.ultraLabel26.Location = new System.Drawing.Point(24, 106);
  967. this.ultraLabel26.Name = "ultraLabel26";
  968. this.ultraLabel26.Size = new System.Drawing.Size(54, 16);
  969. this.ultraLabel26.TabIndex = 126;
  970. this.ultraLabel26.Text = "计量单位";
  971. //
  972. // ultraComboEditor8
  973. //
  974. this.ultraComboEditor8.Location = new System.Drawing.Point(81, 3);
  975. this.ultraComboEditor8.Name = "ultraComboEditor8";
  976. this.ultraComboEditor8.Size = new System.Drawing.Size(142, 21);
  977. this.ultraComboEditor8.TabIndex = 1;
  978. //
  979. // ultraTextEditor21
  980. //
  981. this.ultraTextEditor21.Location = new System.Drawing.Point(285, 3);
  982. this.ultraTextEditor21.MaxLength = 50;
  983. this.ultraTextEditor21.Name = "ultraTextEditor21";
  984. this.ultraTextEditor21.ReadOnly = true;
  985. this.ultraTextEditor21.Size = new System.Drawing.Size(114, 21);
  986. this.ultraTextEditor21.TabIndex = 0;
  987. //
  988. // ultraLabel27
  989. //
  990. appearance75.TextHAlignAsString = "Center";
  991. appearance75.TextVAlignAsString = "Middle";
  992. this.ultraLabel27.Appearance = appearance75;
  993. this.ultraLabel27.AutoSize = true;
  994. this.ultraLabel27.Location = new System.Drawing.Point(24, 31);
  995. this.ultraLabel27.Name = "ultraLabel27";
  996. this.ultraLabel27.Size = new System.Drawing.Size(54, 16);
  997. this.ultraLabel27.TabIndex = 6;
  998. this.ultraLabel27.Text = "物资名称";
  999. //
  1000. // ultraLabel28
  1001. //
  1002. appearance76.TextHAlignAsString = "Center";
  1003. appearance76.TextVAlignAsString = "Middle";
  1004. this.ultraLabel28.Appearance = appearance76;
  1005. this.ultraLabel28.AutoSize = true;
  1006. this.ultraLabel28.Location = new System.Drawing.Point(24, 6);
  1007. this.ultraLabel28.Name = "ultraLabel28";
  1008. this.ultraLabel28.Size = new System.Drawing.Size(54, 16);
  1009. this.ultraLabel28.TabIndex = 4;
  1010. this.ultraLabel28.Text = "物资大类";
  1011. //
  1012. // ultraTabPageControl2
  1013. //
  1014. this.ultraTabPageControl2.Controls.Add(this.ultraGrid1);
  1015. this.ultraTabPageControl2.Controls.Add(this.ultraExpandableGroupBox2);
  1016. this.ultraTabPageControl2.Location = new System.Drawing.Point(1, 23);
  1017. this.ultraTabPageControl2.Name = "ultraTabPageControl2";
  1018. this.ultraTabPageControl2.Size = new System.Drawing.Size(1322, 406);
  1019. //
  1020. // ultraGrid1
  1021. //
  1022. this.ultraGrid1.DataMember = "Table2";
  1023. this.ultraGrid1.DataSource = this.dataSet1;
  1024. appearance27.BackColor = System.Drawing.SystemColors.Window;
  1025. appearance27.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  1026. this.ultraGrid1.DisplayLayout.Appearance = appearance27;
  1027. ultraGridColumn15.Header.VisiblePosition = 0;
  1028. ultraGridColumn15.RowLayoutColumnInfo.OriginX = 1;
  1029. ultraGridColumn15.RowLayoutColumnInfo.OriginY = 0;
  1030. ultraGridColumn15.RowLayoutColumnInfo.SpanX = 1;
  1031. ultraGridColumn15.RowLayoutColumnInfo.SpanY = 1;
  1032. ultraGridColumn16.Header.VisiblePosition = 1;
  1033. ultraGridColumn16.RowLayoutColumnInfo.OriginX = 2;
  1034. ultraGridColumn16.RowLayoutColumnInfo.OriginY = 0;
  1035. ultraGridColumn16.RowLayoutColumnInfo.SpanX = 1;
  1036. ultraGridColumn16.RowLayoutColumnInfo.SpanY = 1;
  1037. ultraGridColumn17.Header.VisiblePosition = 2;
  1038. ultraGridColumn17.RowLayoutColumnInfo.OriginX = 3;
  1039. ultraGridColumn17.RowLayoutColumnInfo.OriginY = 0;
  1040. ultraGridColumn17.RowLayoutColumnInfo.SpanX = 1;
  1041. ultraGridColumn17.RowLayoutColumnInfo.SpanY = 1;
  1042. ultraGridColumn18.Header.VisiblePosition = 3;
  1043. ultraGridColumn18.RowLayoutColumnInfo.OriginX = 5;
  1044. ultraGridColumn18.RowLayoutColumnInfo.OriginY = 0;
  1045. ultraGridColumn18.RowLayoutColumnInfo.SpanX = 1;
  1046. ultraGridColumn18.RowLayoutColumnInfo.SpanY = 1;
  1047. ultraGridColumn19.Header.VisiblePosition = 4;
  1048. ultraGridColumn19.Hidden = true;
  1049. ultraGridColumn19.RowLayoutColumnInfo.OriginX = 12;
  1050. ultraGridColumn19.RowLayoutColumnInfo.OriginY = 0;
  1051. ultraGridColumn19.RowLayoutColumnInfo.SpanX = 1;
  1052. ultraGridColumn19.RowLayoutColumnInfo.SpanY = 1;
  1053. ultraGridColumn20.Header.VisiblePosition = 5;
  1054. ultraGridColumn20.RowLayoutColumnInfo.OriginX = 0;
  1055. ultraGridColumn20.RowLayoutColumnInfo.OriginY = 0;
  1056. ultraGridColumn20.RowLayoutColumnInfo.SpanX = 1;
  1057. ultraGridColumn20.RowLayoutColumnInfo.SpanY = 1;
  1058. ultraGridColumn21.Header.VisiblePosition = 6;
  1059. ultraGridColumn21.Hidden = true;
  1060. ultraGridColumn21.RowLayoutColumnInfo.OriginX = 11;
  1061. ultraGridColumn21.RowLayoutColumnInfo.OriginY = 0;
  1062. ultraGridColumn21.RowLayoutColumnInfo.SpanX = 1;
  1063. ultraGridColumn21.RowLayoutColumnInfo.SpanY = 1;
  1064. ultraGridColumn22.Header.VisiblePosition = 7;
  1065. ultraGridColumn22.RowLayoutColumnInfo.OriginX = 4;
  1066. ultraGridColumn22.RowLayoutColumnInfo.OriginY = 0;
  1067. ultraGridColumn22.RowLayoutColumnInfo.SpanX = 1;
  1068. ultraGridColumn22.RowLayoutColumnInfo.SpanY = 1;
  1069. ultraGridColumn23.Header.VisiblePosition = 8;
  1070. ultraGridColumn23.RowLayoutColumnInfo.OriginX = 6;
  1071. ultraGridColumn23.RowLayoutColumnInfo.OriginY = 0;
  1072. ultraGridColumn23.RowLayoutColumnInfo.SpanX = 1;
  1073. ultraGridColumn23.RowLayoutColumnInfo.SpanY = 1;
  1074. ultraGridColumn24.Header.VisiblePosition = 9;
  1075. ultraGridColumn24.RowLayoutColumnInfo.OriginX = 7;
  1076. ultraGridColumn24.RowLayoutColumnInfo.OriginY = 0;
  1077. ultraGridColumn24.RowLayoutColumnInfo.SpanX = 1;
  1078. ultraGridColumn24.RowLayoutColumnInfo.SpanY = 1;
  1079. ultraGridColumn25.Header.VisiblePosition = 10;
  1080. ultraGridColumn25.RowLayoutColumnInfo.OriginX = 8;
  1081. ultraGridColumn25.RowLayoutColumnInfo.OriginY = 0;
  1082. ultraGridColumn25.RowLayoutColumnInfo.SpanX = 1;
  1083. ultraGridColumn25.RowLayoutColumnInfo.SpanY = 1;
  1084. ultraGridColumn26.Header.VisiblePosition = 11;
  1085. ultraGridColumn26.RowLayoutColumnInfo.OriginX = 9;
  1086. ultraGridColumn26.RowLayoutColumnInfo.OriginY = 0;
  1087. ultraGridColumn26.RowLayoutColumnInfo.SpanX = 1;
  1088. ultraGridColumn26.RowLayoutColumnInfo.SpanY = 1;
  1089. ultraGridColumn27.Header.VisiblePosition = 12;
  1090. ultraGridColumn27.RowLayoutColumnInfo.OriginX = 10;
  1091. ultraGridColumn27.RowLayoutColumnInfo.OriginY = 0;
  1092. ultraGridColumn27.RowLayoutColumnInfo.SpanX = 1;
  1093. ultraGridColumn27.RowLayoutColumnInfo.SpanY = 1;
  1094. ultraGridBand2.Columns.AddRange(new object[] {
  1095. ultraGridColumn15,
  1096. ultraGridColumn16,
  1097. ultraGridColumn17,
  1098. ultraGridColumn18,
  1099. ultraGridColumn19,
  1100. ultraGridColumn20,
  1101. ultraGridColumn21,
  1102. ultraGridColumn22,
  1103. ultraGridColumn23,
  1104. ultraGridColumn24,
  1105. ultraGridColumn25,
  1106. ultraGridColumn26,
  1107. ultraGridColumn27});
  1108. ultraGridBand2.Override.SelectedAppearancesEnabled = Infragistics.Win.DefaultableBoolean.False;
  1109. ultraGridBand2.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
  1110. this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
  1111. this.ultraGrid1.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1112. this.ultraGrid1.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  1113. appearance28.BackColor = System.Drawing.SystemColors.ActiveBorder;
  1114. appearance28.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1115. appearance28.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  1116. appearance28.BorderColor = System.Drawing.SystemColors.Window;
  1117. this.ultraGrid1.DisplayLayout.GroupByBox.Appearance = appearance28;
  1118. appearance29.ForeColor = System.Drawing.SystemColors.GrayText;
  1119. this.ultraGrid1.DisplayLayout.GroupByBox.BandLabelAppearance = appearance29;
  1120. this.ultraGrid1.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1121. appearance30.BackColor = System.Drawing.SystemColors.ControlLightLight;
  1122. appearance30.BackColor2 = System.Drawing.SystemColors.Control;
  1123. appearance30.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1124. appearance30.ForeColor = System.Drawing.SystemColors.GrayText;
  1125. this.ultraGrid1.DisplayLayout.GroupByBox.PromptAppearance = appearance30;
  1126. this.ultraGrid1.DisplayLayout.MaxColScrollRegions = 1;
  1127. this.ultraGrid1.DisplayLayout.MaxRowScrollRegions = 1;
  1128. appearance31.BackColor = System.Drawing.SystemColors.Window;
  1129. appearance31.ForeColor = System.Drawing.SystemColors.ControlText;
  1130. this.ultraGrid1.DisplayLayout.Override.ActiveCellAppearance = appearance31;
  1131. appearance32.BackColor = System.Drawing.SystemColors.Highlight;
  1132. appearance32.ForeColor = System.Drawing.SystemColors.HighlightText;
  1133. this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance = appearance32;
  1134. this.ultraGrid1.DisplayLayout.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.No;
  1135. this.ultraGrid1.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
  1136. this.ultraGrid1.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  1137. this.ultraGrid1.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  1138. appearance33.BackColor = System.Drawing.SystemColors.Window;
  1139. this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance33;
  1140. appearance35.BorderColor = System.Drawing.Color.Silver;
  1141. appearance35.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  1142. this.ultraGrid1.DisplayLayout.Override.CellAppearance = appearance35;
  1143. this.ultraGrid1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  1144. this.ultraGrid1.DisplayLayout.Override.CellPadding = 0;
  1145. appearance36.BackColor = System.Drawing.SystemColors.Control;
  1146. appearance36.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1147. appearance36.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  1148. appearance36.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1149. appearance36.BorderColor = System.Drawing.SystemColors.Window;
  1150. this.ultraGrid1.DisplayLayout.Override.GroupByRowAppearance = appearance36;
  1151. appearance37.TextHAlignAsString = "Left";
  1152. this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance37;
  1153. this.ultraGrid1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  1154. this.ultraGrid1.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  1155. appearance38.BackColor = System.Drawing.SystemColors.Window;
  1156. appearance38.BorderColor = System.Drawing.Color.Silver;
  1157. this.ultraGrid1.DisplayLayout.Override.RowAppearance = appearance38;
  1158. this.ultraGrid1.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  1159. appearance39.BackColor = System.Drawing.SystemColors.ControlLight;
  1160. this.ultraGrid1.DisplayLayout.Override.TemplateAddRowAppearance = appearance39;
  1161. this.ultraGrid1.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  1162. this.ultraGrid1.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  1163. this.ultraGrid1.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  1164. this.ultraGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
  1165. this.ultraGrid1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1166. this.ultraGrid1.Location = new System.Drawing.Point(0, 0);
  1167. this.ultraGrid1.Name = "ultraGrid1";
  1168. this.ultraGrid1.Size = new System.Drawing.Size(1322, 257);
  1169. this.ultraGrid1.TabIndex = 22;
  1170. this.ultraGrid1.Text = "ultraGrid1";
  1171. //
  1172. // ultraExpandableGroupBox2
  1173. //
  1174. this.ultraExpandableGroupBox2.Controls.Add(this.ultraExpandableGroupBoxPanel2);
  1175. this.ultraExpandableGroupBox2.Dock = System.Windows.Forms.DockStyle.Bottom;
  1176. this.ultraExpandableGroupBox2.ExpandedSize = new System.Drawing.Size(1322, 149);
  1177. this.ultraExpandableGroupBox2.Location = new System.Drawing.Point(0, 257);
  1178. this.ultraExpandableGroupBox2.Name = "ultraExpandableGroupBox2";
  1179. this.ultraExpandableGroupBox2.Size = new System.Drawing.Size(1322, 149);
  1180. this.ultraExpandableGroupBox2.TabIndex = 18;
  1181. this.ultraExpandableGroupBox2.Text = "编辑区域";
  1182. //
  1183. // ultraExpandableGroupBoxPanel2
  1184. //
  1185. this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraTextEditor7);
  1186. this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraComboEditor2);
  1187. this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraTextEditor10);
  1188. this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraDateTimeEditor2);
  1189. this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraComboEditor4);
  1190. this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraLabel1);
  1191. this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraLabel12);
  1192. this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraLabel13);
  1193. this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraLabel15);
  1194. this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraTextEditor11);
  1195. this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraLabel16);
  1196. this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraTextEditor13);
  1197. this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraTextEditor14);
  1198. this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraTextEditor15);
  1199. this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraLabel17);
  1200. this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraTextEditor16);
  1201. this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraLabel18);
  1202. this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraLabel19);
  1203. this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraLabel20);
  1204. this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraLabel21);
  1205. this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraTextEditor17);
  1206. this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraLabel22);
  1207. this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraComboEditor5);
  1208. this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraTextEditor18);
  1209. this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraLabel23);
  1210. this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraLabel24);
  1211. this.ultraExpandableGroupBoxPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
  1212. this.ultraExpandableGroupBoxPanel2.Location = new System.Drawing.Point(3, 19);
  1213. this.ultraExpandableGroupBoxPanel2.Name = "ultraExpandableGroupBoxPanel2";
  1214. this.ultraExpandableGroupBoxPanel2.Size = new System.Drawing.Size(1316, 127);
  1215. this.ultraExpandableGroupBoxPanel2.TabIndex = 2;
  1216. //
  1217. // ultraTextEditor7
  1218. //
  1219. this.ultraTextEditor7.AutoSize = false;
  1220. this.ultraTextEditor7.Location = new System.Drawing.Point(450, 56);
  1221. this.ultraTextEditor7.Multiline = true;
  1222. this.ultraTextEditor7.Name = "ultraTextEditor7";
  1223. this.ultraTextEditor7.Scrollbars = System.Windows.Forms.ScrollBars.Vertical;
  1224. this.ultraTextEditor7.Size = new System.Drawing.Size(114, 71);
  1225. this.ultraTextEditor7.TabIndex = 6;
  1226. //
  1227. // ultraComboEditor2
  1228. //
  1229. this.ultraComboEditor2.Location = new System.Drawing.Point(450, 31);
  1230. this.ultraComboEditor2.Name = "ultraComboEditor2";
  1231. this.ultraComboEditor2.Size = new System.Drawing.Size(114, 21);
  1232. this.ultraComboEditor2.TabIndex = 5;
  1233. //
  1234. // ultraTextEditor10
  1235. //
  1236. this.ultraTextEditor10.Location = new System.Drawing.Point(81, 103);
  1237. this.ultraTextEditor10.MaxLength = 50;
  1238. this.ultraTextEditor10.Name = "ultraTextEditor10";
  1239. this.ultraTextEditor10.ReadOnly = true;
  1240. this.ultraTextEditor10.Size = new System.Drawing.Size(142, 21);
  1241. this.ultraTextEditor10.TabIndex = 0;
  1242. //
  1243. // ultraDateTimeEditor2
  1244. //
  1245. this.ultraDateTimeEditor2.Location = new System.Drawing.Point(285, 103);
  1246. this.ultraDateTimeEditor2.Name = "ultraDateTimeEditor2";
  1247. this.ultraDateTimeEditor2.ReadOnly = true;
  1248. this.ultraDateTimeEditor2.Size = new System.Drawing.Size(114, 21);
  1249. this.ultraDateTimeEditor2.TabIndex = 0;
  1250. //
  1251. // ultraComboEditor4
  1252. //
  1253. this.ultraComboEditor4.Location = new System.Drawing.Point(81, 28);
  1254. this.ultraComboEditor4.Name = "ultraComboEditor4";
  1255. this.ultraComboEditor4.Size = new System.Drawing.Size(142, 21);
  1256. this.ultraComboEditor4.TabIndex = 2;
  1257. //
  1258. // ultraLabel1
  1259. //
  1260. appearance77.TextHAlignAsString = "Center";
  1261. appearance77.TextVAlignAsString = "Middle";
  1262. this.ultraLabel1.Appearance = appearance77;
  1263. this.ultraLabel1.AutoSize = true;
  1264. this.ultraLabel1.Location = new System.Drawing.Point(418, 34);
  1265. this.ultraLabel1.Name = "ultraLabel1";
  1266. this.ultraLabel1.Size = new System.Drawing.Size(29, 16);
  1267. this.ultraLabel1.TabIndex = 164;
  1268. this.ultraLabel1.Text = "科室";
  1269. //
  1270. // ultraLabel12
  1271. //
  1272. appearance78.TextHAlignAsString = "Center";
  1273. appearance78.TextVAlignAsString = "Middle";
  1274. this.ultraLabel12.Appearance = appearance78;
  1275. this.ultraLabel12.AutoSize = true;
  1276. this.ultraLabel12.Location = new System.Drawing.Point(405, 6);
  1277. this.ultraLabel12.Name = "ultraLabel12";
  1278. this.ultraLabel12.Size = new System.Drawing.Size(42, 16);
  1279. this.ultraLabel12.TabIndex = 162;
  1280. this.ultraLabel12.Text = "入库人";
  1281. //
  1282. // ultraLabel13
  1283. //
  1284. appearance79.TextHAlignAsString = "Center";
  1285. appearance79.TextVAlignAsString = "Middle";
  1286. this.ultraLabel13.Appearance = appearance79;
  1287. this.ultraLabel13.AutoSize = true;
  1288. this.ultraLabel13.Location = new System.Drawing.Point(228, 106);
  1289. this.ultraLabel13.Name = "ultraLabel13";
  1290. this.ultraLabel13.Size = new System.Drawing.Size(54, 16);
  1291. this.ultraLabel13.TabIndex = 161;
  1292. this.ultraLabel13.Text = "入库日期";
  1293. //
  1294. // ultraLabel15
  1295. //
  1296. appearance80.TextHAlignAsString = "Center";
  1297. appearance80.TextVAlignAsString = "Middle";
  1298. this.ultraLabel15.Appearance = appearance80;
  1299. this.ultraLabel15.AutoSize = true;
  1300. this.ultraLabel15.Location = new System.Drawing.Point(229, 81);
  1301. this.ultraLabel15.Name = "ultraLabel15";
  1302. this.ultraLabel15.Size = new System.Drawing.Size(54, 16);
  1303. this.ultraLabel15.TabIndex = 160;
  1304. this.ultraLabel15.Text = "合计金额";
  1305. //
  1306. // ultraTextEditor11
  1307. //
  1308. this.ultraTextEditor11.Location = new System.Drawing.Point(285, 78);
  1309. this.ultraTextEditor11.MaxLength = 50;
  1310. this.ultraTextEditor11.Name = "ultraTextEditor11";
  1311. this.ultraTextEditor11.ReadOnly = true;
  1312. this.ultraTextEditor11.Size = new System.Drawing.Size(114, 21);
  1313. this.ultraTextEditor11.TabIndex = 0;
  1314. //
  1315. // ultraLabel16
  1316. //
  1317. appearance81.TextHAlignAsString = "Center";
  1318. appearance81.TextVAlignAsString = "Middle";
  1319. this.ultraLabel16.Appearance = appearance81;
  1320. this.ultraLabel16.AutoSize = true;
  1321. this.ultraLabel16.Location = new System.Drawing.Point(228, 31);
  1322. this.ultraLabel16.Name = "ultraLabel16";
  1323. this.ultraLabel16.Size = new System.Drawing.Size(54, 16);
  1324. this.ultraLabel16.TabIndex = 158;
  1325. this.ultraLabel16.Text = "入库数量";
  1326. //
  1327. // ultraTextEditor13
  1328. //
  1329. this.ultraTextEditor13.Location = new System.Drawing.Point(285, 53);
  1330. this.ultraTextEditor13.MaxLength = 50;
  1331. this.ultraTextEditor13.Name = "ultraTextEditor13";
  1332. this.ultraTextEditor13.ReadOnly = true;
  1333. this.ultraTextEditor13.Size = new System.Drawing.Size(114, 21);
  1334. this.ultraTextEditor13.TabIndex = 0;
  1335. //
  1336. // ultraTextEditor14
  1337. //
  1338. this.ultraTextEditor14.Location = new System.Drawing.Point(450, 3);
  1339. this.ultraTextEditor14.MaxLength = 50;
  1340. this.ultraTextEditor14.Name = "ultraTextEditor14";
  1341. this.ultraTextEditor14.Size = new System.Drawing.Size(114, 21);
  1342. this.ultraTextEditor14.TabIndex = 4;
  1343. //
  1344. // ultraTextEditor15
  1345. //
  1346. this.ultraTextEditor15.Location = new System.Drawing.Point(81, 78);
  1347. this.ultraTextEditor15.MaxLength = 50;
  1348. this.ultraTextEditor15.Name = "ultraTextEditor15";
  1349. this.ultraTextEditor15.ReadOnly = true;
  1350. this.ultraTextEditor15.Size = new System.Drawing.Size(142, 21);
  1351. this.ultraTextEditor15.TabIndex = 0;
  1352. //
  1353. // ultraLabel17
  1354. //
  1355. appearance82.TextHAlignAsString = "Center";
  1356. appearance82.TextVAlignAsString = "Middle";
  1357. this.ultraLabel17.Appearance = appearance82;
  1358. this.ultraLabel17.AutoSize = true;
  1359. this.ultraLabel17.Location = new System.Drawing.Point(36, 81);
  1360. this.ultraLabel17.Name = "ultraLabel17";
  1361. this.ultraLabel17.Size = new System.Drawing.Size(42, 16);
  1362. this.ultraLabel17.TabIndex = 153;
  1363. this.ultraLabel17.Text = "物料号";
  1364. //
  1365. // ultraTextEditor16
  1366. //
  1367. this.ultraTextEditor16.Location = new System.Drawing.Point(81, 53);
  1368. this.ultraTextEditor16.MaxLength = 50;
  1369. this.ultraTextEditor16.Name = "ultraTextEditor16";
  1370. this.ultraTextEditor16.ReadOnly = true;
  1371. this.ultraTextEditor16.Size = new System.Drawing.Size(142, 21);
  1372. this.ultraTextEditor16.TabIndex = 0;
  1373. //
  1374. // ultraLabel18
  1375. //
  1376. appearance83.TextHAlignAsString = "Center";
  1377. appearance83.TextVAlignAsString = "Middle";
  1378. this.ultraLabel18.Appearance = appearance83;
  1379. this.ultraLabel18.AutoSize = true;
  1380. this.ultraLabel18.Location = new System.Drawing.Point(25, 56);
  1381. this.ultraLabel18.Name = "ultraLabel18";
  1382. this.ultraLabel18.Size = new System.Drawing.Size(54, 16);
  1383. this.ultraLabel18.TabIndex = 151;
  1384. this.ultraLabel18.Text = "规格型号";
  1385. //
  1386. // ultraLabel19
  1387. //
  1388. appearance84.TextHAlignAsString = "Center";
  1389. appearance84.TextVAlignAsString = "Middle";
  1390. this.ultraLabel19.Appearance = appearance84;
  1391. this.ultraLabel19.AutoSize = true;
  1392. this.ultraLabel19.Location = new System.Drawing.Point(418, 81);
  1393. this.ultraLabel19.Name = "ultraLabel19";
  1394. this.ultraLabel19.Size = new System.Drawing.Size(29, 16);
  1395. this.ultraLabel19.TabIndex = 149;
  1396. this.ultraLabel19.Text = "备注";
  1397. //
  1398. // ultraLabel20
  1399. //
  1400. appearance85.TextHAlignAsString = "Center";
  1401. appearance85.TextVAlignAsString = "Middle";
  1402. this.ultraLabel20.Appearance = appearance85;
  1403. this.ultraLabel20.AutoSize = true;
  1404. this.ultraLabel20.Location = new System.Drawing.Point(240, 6);
  1405. this.ultraLabel20.Name = "ultraLabel20";
  1406. this.ultraLabel20.Size = new System.Drawing.Size(42, 16);
  1407. this.ultraLabel20.TabIndex = 148;
  1408. this.ultraLabel20.Text = "库存量";
  1409. //
  1410. // ultraLabel21
  1411. //
  1412. appearance86.TextHAlignAsString = "Center";
  1413. appearance86.TextVAlignAsString = "Middle";
  1414. this.ultraLabel21.Appearance = appearance86;
  1415. this.ultraLabel21.AutoSize = true;
  1416. this.ultraLabel21.Location = new System.Drawing.Point(229, 56);
  1417. this.ultraLabel21.Name = "ultraLabel21";
  1418. this.ultraLabel21.Size = new System.Drawing.Size(54, 16);
  1419. this.ultraLabel21.TabIndex = 128;
  1420. this.ultraLabel21.Text = "计划价格";
  1421. //
  1422. // ultraTextEditor17
  1423. //
  1424. this.ultraTextEditor17.Location = new System.Drawing.Point(285, 28);
  1425. this.ultraTextEditor17.MaxLength = 50;
  1426. this.ultraTextEditor17.Name = "ultraTextEditor17";
  1427. this.ultraTextEditor17.Size = new System.Drawing.Size(114, 21);
  1428. this.ultraTextEditor17.TabIndex = 3;
  1429. //
  1430. // ultraLabel22
  1431. //
  1432. appearance87.TextHAlignAsString = "Center";
  1433. appearance87.TextVAlignAsString = "Middle";
  1434. this.ultraLabel22.Appearance = appearance87;
  1435. this.ultraLabel22.AutoSize = true;
  1436. this.ultraLabel22.Location = new System.Drawing.Point(24, 106);
  1437. this.ultraLabel22.Name = "ultraLabel22";
  1438. this.ultraLabel22.Size = new System.Drawing.Size(54, 16);
  1439. this.ultraLabel22.TabIndex = 126;
  1440. this.ultraLabel22.Text = "计量单位";
  1441. //
  1442. // ultraComboEditor5
  1443. //
  1444. this.ultraComboEditor5.Location = new System.Drawing.Point(81, 3);
  1445. this.ultraComboEditor5.Name = "ultraComboEditor5";
  1446. this.ultraComboEditor5.Size = new System.Drawing.Size(142, 21);
  1447. this.ultraComboEditor5.TabIndex = 1;
  1448. //
  1449. // ultraTextEditor18
  1450. //
  1451. this.ultraTextEditor18.Location = new System.Drawing.Point(285, 3);
  1452. this.ultraTextEditor18.MaxLength = 50;
  1453. this.ultraTextEditor18.Name = "ultraTextEditor18";
  1454. this.ultraTextEditor18.ReadOnly = true;
  1455. this.ultraTextEditor18.Size = new System.Drawing.Size(114, 21);
  1456. this.ultraTextEditor18.TabIndex = 0;
  1457. //
  1458. // ultraLabel23
  1459. //
  1460. appearance88.TextHAlignAsString = "Center";
  1461. appearance88.TextVAlignAsString = "Middle";
  1462. this.ultraLabel23.Appearance = appearance88;
  1463. this.ultraLabel23.AutoSize = true;
  1464. this.ultraLabel23.Location = new System.Drawing.Point(24, 31);
  1465. this.ultraLabel23.Name = "ultraLabel23";
  1466. this.ultraLabel23.Size = new System.Drawing.Size(54, 16);
  1467. this.ultraLabel23.TabIndex = 6;
  1468. this.ultraLabel23.Text = "物资名称";
  1469. //
  1470. // ultraLabel24
  1471. //
  1472. appearance89.TextHAlignAsString = "Center";
  1473. appearance89.TextVAlignAsString = "Middle";
  1474. this.ultraLabel24.Appearance = appearance89;
  1475. this.ultraLabel24.AutoSize = true;
  1476. this.ultraLabel24.Location = new System.Drawing.Point(24, 6);
  1477. this.ultraLabel24.Name = "ultraLabel24";
  1478. this.ultraLabel24.Size = new System.Drawing.Size(54, 16);
  1479. this.ultraLabel24.TabIndex = 4;
  1480. this.ultraLabel24.Text = "物资大类";
  1481. //
  1482. // FrmBase_Fill_Panel_Fill_Panel_Fill_Panel
  1483. //
  1484. this.FrmBase_Fill_Panel_Fill_Panel_Fill_Panel.Controls.Add(this.panel2);
  1485. this.FrmBase_Fill_Panel_Fill_Panel_Fill_Panel.Controls.Add(this.panel1);
  1486. this.FrmBase_Fill_Panel_Fill_Panel_Fill_Panel.Cursor = System.Windows.Forms.Cursors.Default;
  1487. this.FrmBase_Fill_Panel_Fill_Panel_Fill_Panel.Dock = System.Windows.Forms.DockStyle.Fill;
  1488. this.FrmBase_Fill_Panel_Fill_Panel_Fill_Panel.Location = new System.Drawing.Point(0, 0);
  1489. this.FrmBase_Fill_Panel_Fill_Panel_Fill_Panel.Name = "FrmBase_Fill_Panel_Fill_Panel_Fill_Panel";
  1490. this.FrmBase_Fill_Panel_Fill_Panel_Fill_Panel.Size = new System.Drawing.Size(1328, 474);
  1491. this.FrmBase_Fill_Panel_Fill_Panel_Fill_Panel.TabIndex = 0;
  1492. //
  1493. // panel2
  1494. //
  1495. this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1496. this.panel2.Controls.Add(this.ultraTabControl1);
  1497. this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
  1498. this.panel2.Location = new System.Drawing.Point(0, 40);
  1499. this.panel2.Name = "panel2";
  1500. this.panel2.Size = new System.Drawing.Size(1328, 434);
  1501. this.panel2.TabIndex = 16;
  1502. //
  1503. // ultraTabControl1
  1504. //
  1505. this.ultraTabControl1.Controls.Add(this.ultraTabSharedControlsPage1);
  1506. this.ultraTabControl1.Controls.Add(this.ultraTabPageControl1);
  1507. this.ultraTabControl1.Controls.Add(this.ultraTabPageControl2);
  1508. this.ultraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
  1509. this.ultraTabControl1.Location = new System.Drawing.Point(0, 0);
  1510. this.ultraTabControl1.Name = "ultraTabControl1";
  1511. this.ultraTabControl1.SharedControlsPage = this.ultraTabSharedControlsPage1;
  1512. this.ultraTabControl1.Size = new System.Drawing.Size(1326, 432);
  1513. this.ultraTabControl1.TabIndex = 17;
  1514. ultraTab1.Key = "CK";
  1515. ultraTab1.TabPage = this.ultraTabPageControl1;
  1516. ultraTab1.Text = "出库信息";
  1517. ultraTab2.Key = "RK";
  1518. ultraTab2.TabPage = this.ultraTabPageControl2;
  1519. ultraTab2.Text = "入库信息";
  1520. this.ultraTabControl1.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
  1521. ultraTab1,
  1522. ultraTab2});
  1523. //
  1524. // ultraTabSharedControlsPage1
  1525. //
  1526. this.ultraTabSharedControlsPage1.Location = new System.Drawing.Point(-10000, -10000);
  1527. this.ultraTabSharedControlsPage1.Name = "ultraTabSharedControlsPage1";
  1528. this.ultraTabSharedControlsPage1.Size = new System.Drawing.Size(1322, 406);
  1529. //
  1530. // panel1
  1531. //
  1532. this.panel1.Controls.Add(this.cbQueryDEPTID);
  1533. this.panel1.Controls.Add(this.ultraLabel42);
  1534. this.panel1.Controls.Add(this.dateEnd);
  1535. this.panel1.Controls.Add(this.chkTime);
  1536. this.panel1.Controls.Add(this.dateBegin);
  1537. this.panel1.Controls.Add(this.ultraComboEditor6);
  1538. this.panel1.Controls.Add(this.ultraCheckEditor2);
  1539. this.panel1.Controls.Add(this.ultraCheckEditor1);
  1540. this.panel1.Controls.Add(this.ultraComboEditor3);
  1541. this.panel1.Controls.Add(this.ultraCheckEditor3);
  1542. this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
  1543. this.panel1.Location = new System.Drawing.Point(0, 0);
  1544. this.panel1.Name = "panel1";
  1545. this.panel1.Size = new System.Drawing.Size(1328, 40);
  1546. this.panel1.TabIndex = 15;
  1547. //
  1548. // cbQueryDEPTID
  1549. //
  1550. this.cbQueryDEPTID.Location = new System.Drawing.Point(804, 11);
  1551. this.cbQueryDEPTID.Name = "cbQueryDEPTID";
  1552. this.cbQueryDEPTID.Size = new System.Drawing.Size(122, 21);
  1553. this.cbQueryDEPTID.TabIndex = 158;
  1554. //
  1555. // ultraLabel42
  1556. //
  1557. appearance16.TextHAlignAsString = "Center";
  1558. appearance16.TextVAlignAsString = "Middle";
  1559. this.ultraLabel42.Appearance = appearance16;
  1560. this.ultraLabel42.AutoSize = true;
  1561. this.ultraLabel42.Location = new System.Drawing.Point(179, 14);
  1562. this.ultraLabel42.Name = "ultraLabel42";
  1563. this.ultraLabel42.Size = new System.Drawing.Size(17, 16);
  1564. this.ultraLabel42.TabIndex = 157;
  1565. this.ultraLabel42.Text = "至";
  1566. //
  1567. // dateEnd
  1568. //
  1569. this.dateEnd.Location = new System.Drawing.Point(199, 11);
  1570. this.dateEnd.Name = "dateEnd";
  1571. this.dateEnd.Size = new System.Drawing.Size(115, 21);
  1572. this.dateEnd.TabIndex = 156;
  1573. //
  1574. // chkTime
  1575. //
  1576. appearance34.TextHAlignAsString = "Left";
  1577. this.chkTime.Appearance = appearance34;
  1578. this.chkTime.AutoSize = true;
  1579. this.chkTime.Checked = true;
  1580. this.chkTime.CheckState = System.Windows.Forms.CheckState.Checked;
  1581. this.chkTime.Location = new System.Drawing.Point(12, 12);
  1582. this.chkTime.Name = "chkTime";
  1583. this.chkTime.Size = new System.Drawing.Size(46, 19);
  1584. this.chkTime.TabIndex = 155;
  1585. this.chkTime.Text = "时间";
  1586. //
  1587. // dateBegin
  1588. //
  1589. this.dateBegin.Location = new System.Drawing.Point(61, 11);
  1590. this.dateBegin.Name = "dateBegin";
  1591. this.dateBegin.Size = new System.Drawing.Size(115, 21);
  1592. this.dateBegin.TabIndex = 154;
  1593. //
  1594. // ultraComboEditor6
  1595. //
  1596. this.ultraComboEditor6.Location = new System.Drawing.Point(610, 11);
  1597. this.ultraComboEditor6.Name = "ultraComboEditor6";
  1598. this.ultraComboEditor6.Size = new System.Drawing.Size(142, 21);
  1599. this.ultraComboEditor6.TabIndex = 153;
  1600. //
  1601. // ultraCheckEditor2
  1602. //
  1603. this.ultraCheckEditor2.AutoSize = true;
  1604. this.ultraCheckEditor2.Location = new System.Drawing.Point(536, 12);
  1605. this.ultraCheckEditor2.Name = "ultraCheckEditor2";
  1606. this.ultraCheckEditor2.Size = new System.Drawing.Size(71, 19);
  1607. this.ultraCheckEditor2.TabIndex = 128;
  1608. this.ultraCheckEditor2.Text = "物资名称";
  1609. //
  1610. // ultraCheckEditor1
  1611. //
  1612. this.ultraCheckEditor1.AutoSize = true;
  1613. this.ultraCheckEditor1.Location = new System.Drawing.Point(755, 12);
  1614. this.ultraCheckEditor1.Name = "ultraCheckEditor1";
  1615. this.ultraCheckEditor1.Size = new System.Drawing.Size(46, 19);
  1616. this.ultraCheckEditor1.TabIndex = 127;
  1617. this.ultraCheckEditor1.Text = "科室";
  1618. //
  1619. // ultraComboEditor3
  1620. //
  1621. this.ultraComboEditor3.Location = new System.Drawing.Point(391, 11);
  1622. this.ultraComboEditor3.Name = "ultraComboEditor3";
  1623. this.ultraComboEditor3.Size = new System.Drawing.Size(142, 21);
  1624. this.ultraComboEditor3.TabIndex = 126;
  1625. //
  1626. // ultraCheckEditor3
  1627. //
  1628. this.ultraCheckEditor3.AutoSize = true;
  1629. this.ultraCheckEditor3.Location = new System.Drawing.Point(317, 12);
  1630. this.ultraCheckEditor3.Name = "ultraCheckEditor3";
  1631. this.ultraCheckEditor3.Size = new System.Drawing.Size(71, 19);
  1632. this.ultraCheckEditor3.TabIndex = 33;
  1633. this.ultraCheckEditor3.Text = "物资大类";
  1634. //
  1635. // FrmBase_Fill_Panel_Fill_Panel
  1636. //
  1637. this.FrmBase_Fill_Panel_Fill_Panel.Controls.Add(this.FrmBase_Fill_Panel_Fill_Panel_Fill_Panel);
  1638. this.FrmBase_Fill_Panel_Fill_Panel.Cursor = System.Windows.Forms.Cursors.Default;
  1639. this.FrmBase_Fill_Panel_Fill_Panel.Dock = System.Windows.Forms.DockStyle.Fill;
  1640. this.FrmBase_Fill_Panel_Fill_Panel.Location = new System.Drawing.Point(0, 0);
  1641. this.FrmBase_Fill_Panel_Fill_Panel.Name = "FrmBase_Fill_Panel_Fill_Panel";
  1642. this.FrmBase_Fill_Panel_Fill_Panel.Size = new System.Drawing.Size(1328, 474);
  1643. this.FrmBase_Fill_Panel_Fill_Panel.TabIndex = 0;
  1644. //
  1645. // FrmBase_Fill_Panel
  1646. //
  1647. this.FrmBase_Fill_Panel.Controls.Add(this.FrmBase_Fill_Panel_Fill_Panel);
  1648. this.FrmBase_Fill_Panel.Cursor = System.Windows.Forms.Cursors.Default;
  1649. this.FrmBase_Fill_Panel.Dock = System.Windows.Forms.DockStyle.Fill;
  1650. this.FrmBase_Fill_Panel.Location = new System.Drawing.Point(0, 0);
  1651. this.FrmBase_Fill_Panel.Name = "FrmBase_Fill_Panel";
  1652. this.FrmBase_Fill_Panel.Size = new System.Drawing.Size(1328, 474);
  1653. this.FrmBase_Fill_Panel.TabIndex = 3;
  1654. //
  1655. // ultraTextEditor9
  1656. //
  1657. this.ultraTextEditor9.AutoSize = false;
  1658. this.ultraTextEditor9.Location = new System.Drawing.Point(450, 78);
  1659. this.ultraTextEditor9.Multiline = true;
  1660. this.ultraTextEditor9.Name = "ultraTextEditor9";
  1661. this.ultraTextEditor9.Scrollbars = System.Windows.Forms.ScrollBars.Vertical;
  1662. this.ultraTextEditor9.Size = new System.Drawing.Size(114, 46);
  1663. this.ultraTextEditor9.TabIndex = 7;
  1664. //
  1665. // ultraComboEditor9
  1666. //
  1667. this.ultraComboEditor9.DropDownStyle = Infragistics.Win.DropDownStyle.DropDown;
  1668. this.ultraComboEditor9.Location = new System.Drawing.Point(450, 53);
  1669. this.ultraComboEditor9.Name = "ultraComboEditor9";
  1670. this.ultraComboEditor9.Size = new System.Drawing.Size(114, 21);
  1671. this.ultraComboEditor9.TabIndex = 6;
  1672. //
  1673. // ultraTextEditor22
  1674. //
  1675. this.ultraTextEditor22.Location = new System.Drawing.Point(450, 28);
  1676. this.ultraTextEditor22.MaxLength = 50;
  1677. this.ultraTextEditor22.Name = "ultraTextEditor22";
  1678. this.ultraTextEditor22.Size = new System.Drawing.Size(114, 21);
  1679. this.ultraTextEditor22.TabIndex = 5;
  1680. //
  1681. // ultraTextEditor23
  1682. //
  1683. this.ultraTextEditor23.Location = new System.Drawing.Point(81, 103);
  1684. this.ultraTextEditor23.MaxLength = 50;
  1685. this.ultraTextEditor23.Name = "ultraTextEditor23";
  1686. this.ultraTextEditor23.ReadOnly = true;
  1687. this.ultraTextEditor23.Size = new System.Drawing.Size(142, 21);
  1688. this.ultraTextEditor23.TabIndex = 166;
  1689. //
  1690. // ultraDateTimeEditor3
  1691. //
  1692. this.ultraDateTimeEditor3.Location = new System.Drawing.Point(285, 103);
  1693. this.ultraDateTimeEditor3.Name = "ultraDateTimeEditor3";
  1694. this.ultraDateTimeEditor3.ReadOnly = true;
  1695. this.ultraDateTimeEditor3.Size = new System.Drawing.Size(114, 21);
  1696. this.ultraDateTimeEditor3.TabIndex = 0;
  1697. //
  1698. // ultraComboEditor10
  1699. //
  1700. this.ultraComboEditor10.DropDownStyle = Infragistics.Win.DropDownStyle.DropDown;
  1701. this.ultraComboEditor10.Location = new System.Drawing.Point(81, 28);
  1702. this.ultraComboEditor10.Name = "ultraComboEditor10";
  1703. this.ultraComboEditor10.Size = new System.Drawing.Size(142, 21);
  1704. this.ultraComboEditor10.TabIndex = 2;
  1705. //
  1706. // ultraLabel11
  1707. //
  1708. appearance19.TextHAlignAsString = "Center";
  1709. appearance19.TextVAlignAsString = "Middle";
  1710. this.ultraLabel11.Appearance = appearance19;
  1711. this.ultraLabel11.AutoSize = true;
  1712. this.ultraLabel11.Location = new System.Drawing.Point(418, 56);
  1713. this.ultraLabel11.Name = "ultraLabel11";
  1714. this.ultraLabel11.Size = new System.Drawing.Size(29, 16);
  1715. this.ultraLabel11.TabIndex = 164;
  1716. this.ultraLabel11.Text = "科室";
  1717. //
  1718. // ultraLabel29
  1719. //
  1720. appearance44.TextHAlignAsString = "Center";
  1721. appearance44.TextVAlignAsString = "Middle";
  1722. this.ultraLabel29.Appearance = appearance44;
  1723. this.ultraLabel29.AutoSize = true;
  1724. this.ultraLabel29.Location = new System.Drawing.Point(405, 31);
  1725. this.ultraLabel29.Name = "ultraLabel29";
  1726. this.ultraLabel29.Size = new System.Drawing.Size(42, 16);
  1727. this.ultraLabel29.TabIndex = 163;
  1728. this.ultraLabel29.Text = "领料人";
  1729. //
  1730. // ultraLabel30
  1731. //
  1732. appearance45.TextHAlignAsString = "Center";
  1733. appearance45.TextVAlignAsString = "Middle";
  1734. this.ultraLabel30.Appearance = appearance45;
  1735. this.ultraLabel30.AutoSize = true;
  1736. this.ultraLabel30.Location = new System.Drawing.Point(405, 6);
  1737. this.ultraLabel30.Name = "ultraLabel30";
  1738. this.ultraLabel30.Size = new System.Drawing.Size(42, 16);
  1739. this.ultraLabel30.TabIndex = 162;
  1740. this.ultraLabel30.Text = "发料人";
  1741. //
  1742. // ultraLabel31
  1743. //
  1744. appearance46.TextHAlignAsString = "Center";
  1745. appearance46.TextVAlignAsString = "Middle";
  1746. this.ultraLabel31.Appearance = appearance46;
  1747. this.ultraLabel31.AutoSize = true;
  1748. this.ultraLabel31.Location = new System.Drawing.Point(228, 106);
  1749. this.ultraLabel31.Name = "ultraLabel31";
  1750. this.ultraLabel31.Size = new System.Drawing.Size(54, 16);
  1751. this.ultraLabel31.TabIndex = 161;
  1752. this.ultraLabel31.Text = "领料日期";
  1753. //
  1754. // ultraLabel32
  1755. //
  1756. appearance43.TextHAlignAsString = "Center";
  1757. appearance43.TextVAlignAsString = "Middle";
  1758. this.ultraLabel32.Appearance = appearance43;
  1759. this.ultraLabel32.AutoSize = true;
  1760. this.ultraLabel32.Location = new System.Drawing.Point(229, 81);
  1761. this.ultraLabel32.Name = "ultraLabel32";
  1762. this.ultraLabel32.Size = new System.Drawing.Size(54, 16);
  1763. this.ultraLabel32.TabIndex = 160;
  1764. this.ultraLabel32.Text = "合计金额";
  1765. //
  1766. // ultraTextEditor24
  1767. //
  1768. this.ultraTextEditor24.Location = new System.Drawing.Point(285, 78);
  1769. this.ultraTextEditor24.MaxLength = 50;
  1770. this.ultraTextEditor24.Name = "ultraTextEditor24";
  1771. this.ultraTextEditor24.ReadOnly = true;
  1772. this.ultraTextEditor24.Size = new System.Drawing.Size(114, 21);
  1773. this.ultraTextEditor24.TabIndex = 0;
  1774. //
  1775. // ultraLabel33
  1776. //
  1777. appearance42.TextHAlignAsString = "Center";
  1778. appearance42.TextVAlignAsString = "Middle";
  1779. this.ultraLabel33.Appearance = appearance42;
  1780. this.ultraLabel33.AutoSize = true;
  1781. this.ultraLabel33.Location = new System.Drawing.Point(228, 31);
  1782. this.ultraLabel33.Name = "ultraLabel33";
  1783. this.ultraLabel33.Size = new System.Drawing.Size(54, 16);
  1784. this.ultraLabel33.TabIndex = 158;
  1785. this.ultraLabel33.Text = "出库数量";
  1786. //
  1787. // ultraTextEditor25
  1788. //
  1789. this.ultraTextEditor25.Location = new System.Drawing.Point(285, 53);
  1790. this.ultraTextEditor25.MaxLength = 50;
  1791. this.ultraTextEditor25.Name = "ultraTextEditor25";
  1792. this.ultraTextEditor25.ReadOnly = true;
  1793. this.ultraTextEditor25.Size = new System.Drawing.Size(114, 21);
  1794. this.ultraTextEditor25.TabIndex = 157;
  1795. //
  1796. // ultraTextEditor26
  1797. //
  1798. this.ultraTextEditor26.Location = new System.Drawing.Point(450, 3);
  1799. this.ultraTextEditor26.MaxLength = 50;
  1800. this.ultraTextEditor26.Name = "ultraTextEditor26";
  1801. this.ultraTextEditor26.Size = new System.Drawing.Size(114, 21);
  1802. this.ultraTextEditor26.TabIndex = 4;
  1803. //
  1804. // ultraTextEditor27
  1805. //
  1806. this.ultraTextEditor27.Location = new System.Drawing.Point(81, 78);
  1807. this.ultraTextEditor27.MaxLength = 50;
  1808. this.ultraTextEditor27.Name = "ultraTextEditor27";
  1809. this.ultraTextEditor27.ReadOnly = true;
  1810. this.ultraTextEditor27.Size = new System.Drawing.Size(142, 21);
  1811. this.ultraTextEditor27.TabIndex = 0;
  1812. //
  1813. // ultraLabel34
  1814. //
  1815. appearance14.TextHAlignAsString = "Center";
  1816. appearance14.TextVAlignAsString = "Middle";
  1817. this.ultraLabel34.Appearance = appearance14;
  1818. this.ultraLabel34.AutoSize = true;
  1819. this.ultraLabel34.Location = new System.Drawing.Point(36, 81);
  1820. this.ultraLabel34.Name = "ultraLabel34";
  1821. this.ultraLabel34.Size = new System.Drawing.Size(42, 16);
  1822. this.ultraLabel34.TabIndex = 153;
  1823. this.ultraLabel34.Text = "物料号";
  1824. //
  1825. // ultraTextEditor28
  1826. //
  1827. this.ultraTextEditor28.Location = new System.Drawing.Point(81, 53);
  1828. this.ultraTextEditor28.MaxLength = 50;
  1829. this.ultraTextEditor28.Name = "ultraTextEditor28";
  1830. this.ultraTextEditor28.ReadOnly = true;
  1831. this.ultraTextEditor28.Size = new System.Drawing.Size(142, 21);
  1832. this.ultraTextEditor28.TabIndex = 0;
  1833. //
  1834. // ultraLabel35
  1835. //
  1836. appearance4.TextHAlignAsString = "Center";
  1837. appearance4.TextVAlignAsString = "Middle";
  1838. this.ultraLabel35.Appearance = appearance4;
  1839. this.ultraLabel35.AutoSize = true;
  1840. this.ultraLabel35.Location = new System.Drawing.Point(25, 56);
  1841. this.ultraLabel35.Name = "ultraLabel35";
  1842. this.ultraLabel35.Size = new System.Drawing.Size(54, 16);
  1843. this.ultraLabel35.TabIndex = 151;
  1844. this.ultraLabel35.Text = "规格型号";
  1845. //
  1846. // ultraLabel36
  1847. //
  1848. appearance15.TextHAlignAsString = "Center";
  1849. appearance15.TextVAlignAsString = "Middle";
  1850. this.ultraLabel36.Appearance = appearance15;
  1851. this.ultraLabel36.AutoSize = true;
  1852. this.ultraLabel36.Location = new System.Drawing.Point(418, 92);
  1853. this.ultraLabel36.Name = "ultraLabel36";
  1854. this.ultraLabel36.Size = new System.Drawing.Size(29, 16);
  1855. this.ultraLabel36.TabIndex = 149;
  1856. this.ultraLabel36.Text = "备注";
  1857. //
  1858. // ultraLabel37
  1859. //
  1860. appearance1.TextHAlignAsString = "Center";
  1861. appearance1.TextVAlignAsString = "Middle";
  1862. this.ultraLabel37.Appearance = appearance1;
  1863. this.ultraLabel37.AutoSize = true;
  1864. this.ultraLabel37.Location = new System.Drawing.Point(240, 6);
  1865. this.ultraLabel37.Name = "ultraLabel37";
  1866. this.ultraLabel37.Size = new System.Drawing.Size(42, 16);
  1867. this.ultraLabel37.TabIndex = 148;
  1868. this.ultraLabel37.Text = "库存量";
  1869. //
  1870. // ultraLabel38
  1871. //
  1872. appearance41.TextHAlignAsString = "Center";
  1873. appearance41.TextVAlignAsString = "Middle";
  1874. this.ultraLabel38.Appearance = appearance41;
  1875. this.ultraLabel38.AutoSize = true;
  1876. this.ultraLabel38.Location = new System.Drawing.Point(229, 56);
  1877. this.ultraLabel38.Name = "ultraLabel38";
  1878. this.ultraLabel38.Size = new System.Drawing.Size(54, 16);
  1879. this.ultraLabel38.TabIndex = 128;
  1880. this.ultraLabel38.Text = "计划价格";
  1881. //
  1882. // ultraTextEditor29
  1883. //
  1884. this.ultraTextEditor29.Location = new System.Drawing.Point(285, 28);
  1885. this.ultraTextEditor29.MaxLength = 50;
  1886. this.ultraTextEditor29.Name = "ultraTextEditor29";
  1887. this.ultraTextEditor29.Size = new System.Drawing.Size(114, 21);
  1888. this.ultraTextEditor29.TabIndex = 3;
  1889. //
  1890. // ultraLabel39
  1891. //
  1892. appearance47.TextHAlignAsString = "Center";
  1893. appearance47.TextVAlignAsString = "Middle";
  1894. this.ultraLabel39.Appearance = appearance47;
  1895. this.ultraLabel39.AutoSize = true;
  1896. this.ultraLabel39.Location = new System.Drawing.Point(24, 106);
  1897. this.ultraLabel39.Name = "ultraLabel39";
  1898. this.ultraLabel39.Size = new System.Drawing.Size(54, 16);
  1899. this.ultraLabel39.TabIndex = 126;
  1900. this.ultraLabel39.Text = "计量单位";
  1901. //
  1902. // ultraComboEditor11
  1903. //
  1904. this.ultraComboEditor11.DropDownStyle = Infragistics.Win.DropDownStyle.DropDown;
  1905. this.ultraComboEditor11.Location = new System.Drawing.Point(81, 3);
  1906. this.ultraComboEditor11.Name = "ultraComboEditor11";
  1907. this.ultraComboEditor11.Size = new System.Drawing.Size(142, 21);
  1908. this.ultraComboEditor11.TabIndex = 1;
  1909. //
  1910. // ultraTextEditor30
  1911. //
  1912. this.ultraTextEditor30.Location = new System.Drawing.Point(285, 3);
  1913. this.ultraTextEditor30.MaxLength = 50;
  1914. this.ultraTextEditor30.Name = "ultraTextEditor30";
  1915. this.ultraTextEditor30.ReadOnly = true;
  1916. this.ultraTextEditor30.Size = new System.Drawing.Size(114, 21);
  1917. this.ultraTextEditor30.TabIndex = 0;
  1918. //
  1919. // ultraLabel40
  1920. //
  1921. appearance3.TextHAlignAsString = "Center";
  1922. appearance3.TextVAlignAsString = "Middle";
  1923. this.ultraLabel40.Appearance = appearance3;
  1924. this.ultraLabel40.AutoSize = true;
  1925. this.ultraLabel40.Location = new System.Drawing.Point(24, 31);
  1926. this.ultraLabel40.Name = "ultraLabel40";
  1927. this.ultraLabel40.Size = new System.Drawing.Size(54, 16);
  1928. this.ultraLabel40.TabIndex = 6;
  1929. this.ultraLabel40.Text = "物资名称";
  1930. //
  1931. // ultraLabel41
  1932. //
  1933. appearance48.TextHAlignAsString = "Center";
  1934. appearance48.TextVAlignAsString = "Middle";
  1935. this.ultraLabel41.Appearance = appearance48;
  1936. this.ultraLabel41.AutoSize = true;
  1937. this.ultraLabel41.Location = new System.Drawing.Point(24, 6);
  1938. this.ultraLabel41.Name = "ultraLabel41";
  1939. this.ultraLabel41.Size = new System.Drawing.Size(54, 16);
  1940. this.ultraLabel41.TabIndex = 4;
  1941. this.ultraLabel41.Text = "物资大类";
  1942. //
  1943. // FrmMaterialsCRKInfo
  1944. //
  1945. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  1946. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  1947. this.ClientSize = new System.Drawing.Size(1328, 474);
  1948. this.Controls.Add(this.FrmBase_Fill_Panel);
  1949. this.Name = "FrmMaterialsCRKInfo";
  1950. this.Text = "技术中心物资材料出入库信息";
  1951. this.Load += new System.EventHandler(this.FrmMaterialsCRKInfo_Load);
  1952. this.ultraTabPageControl1.ResumeLayout(false);
  1953. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).EndInit();
  1954. ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
  1955. ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
  1956. ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).EndInit();
  1957. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).EndInit();
  1958. this.ultraExpandableGroupBox1.ResumeLayout(false);
  1959. this.ultraExpandableGroupBoxPanel1.ResumeLayout(false);
  1960. this.ultraExpandableGroupBoxPanel1.PerformLayout();
  1961. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).EndInit();
  1962. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor1)).EndInit();
  1963. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor2)).EndInit();
  1964. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor3)).EndInit();
  1965. ((System.ComponentModel.ISupportInitialize)(this.ultraDateTimeEditor1)).EndInit();
  1966. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor7)).EndInit();
  1967. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor4)).EndInit();
  1968. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor5)).EndInit();
  1969. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor6)).EndInit();
  1970. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor12)).EndInit();
  1971. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor19)).EndInit();
  1972. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor20)).EndInit();
  1973. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor8)).EndInit();
  1974. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor21)).EndInit();
  1975. this.ultraTabPageControl2.ResumeLayout(false);
  1976. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
  1977. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox2)).EndInit();
  1978. this.ultraExpandableGroupBox2.ResumeLayout(false);
  1979. this.ultraExpandableGroupBoxPanel2.ResumeLayout(false);
  1980. this.ultraExpandableGroupBoxPanel2.PerformLayout();
  1981. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor7)).EndInit();
  1982. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor2)).EndInit();
  1983. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor10)).EndInit();
  1984. ((System.ComponentModel.ISupportInitialize)(this.ultraDateTimeEditor2)).EndInit();
  1985. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor4)).EndInit();
  1986. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor11)).EndInit();
  1987. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor13)).EndInit();
  1988. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor14)).EndInit();
  1989. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor15)).EndInit();
  1990. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor16)).EndInit();
  1991. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor17)).EndInit();
  1992. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor5)).EndInit();
  1993. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor18)).EndInit();
  1994. this.FrmBase_Fill_Panel_Fill_Panel_Fill_Panel.ResumeLayout(false);
  1995. this.panel2.ResumeLayout(false);
  1996. ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).EndInit();
  1997. this.ultraTabControl1.ResumeLayout(false);
  1998. this.panel1.ResumeLayout(false);
  1999. this.panel1.PerformLayout();
  2000. ((System.ComponentModel.ISupportInitialize)(this.cbQueryDEPTID)).EndInit();
  2001. ((System.ComponentModel.ISupportInitialize)(this.dateEnd)).EndInit();
  2002. ((System.ComponentModel.ISupportInitialize)(this.chkTime)).EndInit();
  2003. ((System.ComponentModel.ISupportInitialize)(this.dateBegin)).EndInit();
  2004. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor6)).EndInit();
  2005. ((System.ComponentModel.ISupportInitialize)(this.ultraCheckEditor2)).EndInit();
  2006. ((System.ComponentModel.ISupportInitialize)(this.ultraCheckEditor1)).EndInit();
  2007. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor3)).EndInit();
  2008. ((System.ComponentModel.ISupportInitialize)(this.ultraCheckEditor3)).EndInit();
  2009. this.FrmBase_Fill_Panel_Fill_Panel.ResumeLayout(false);
  2010. this.FrmBase_Fill_Panel.ResumeLayout(false);
  2011. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor9)).EndInit();
  2012. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor9)).EndInit();
  2013. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor22)).EndInit();
  2014. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor23)).EndInit();
  2015. ((System.ComponentModel.ISupportInitialize)(this.ultraDateTimeEditor3)).EndInit();
  2016. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor10)).EndInit();
  2017. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor24)).EndInit();
  2018. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor25)).EndInit();
  2019. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor26)).EndInit();
  2020. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor27)).EndInit();
  2021. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor28)).EndInit();
  2022. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor29)).EndInit();
  2023. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor11)).EndInit();
  2024. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor30)).EndInit();
  2025. this.ResumeLayout(false);
  2026. }
  2027. #endregion
  2028. private System.Data.DataSet dataSet1;
  2029. private System.Data.DataTable dataTable1;
  2030. private System.Data.DataColumn dataColumn1;
  2031. private System.Data.DataColumn dataColumn2;
  2032. private System.Data.DataColumn dataColumn3;
  2033. private System.Data.DataColumn dataColumn4;
  2034. private System.Data.DataColumn dataColumn5;
  2035. private System.Data.DataColumn dataColumn7;
  2036. private System.Data.DataColumn dataColumn9;
  2037. private System.Windows.Forms.Panel FrmBase_Fill_Panel_Fill_Panel_Fill_Panel;
  2038. private System.Windows.Forms.Panel FrmBase_Fill_Panel_Fill_Panel;
  2039. private System.Windows.Forms.Panel FrmBase_Fill_Panel;
  2040. private System.Windows.Forms.Panel panel1;
  2041. private Infragistics.Win.UltraWinEditors.UltraCheckEditor ultraCheckEditor3;
  2042. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor3;
  2043. private Infragistics.Win.UltraWinEditors.UltraCheckEditor ultraCheckEditor2;
  2044. private Infragistics.Win.UltraWinEditors.UltraCheckEditor ultraCheckEditor1;
  2045. private System.Data.DataColumn dataColumn8;
  2046. private System.Data.DataColumn dataColumn10;
  2047. private System.Data.DataColumn dataColumn11;
  2048. private System.Data.DataColumn dataColumn12;
  2049. private System.Data.DataColumn dataColumn13;
  2050. private System.Data.DataColumn dataColumn14;
  2051. private System.Data.DataColumn dataColumn15;
  2052. private System.Data.DataTable dataTable2;
  2053. private System.Data.DataColumn dataColumn16;
  2054. private System.Data.DataColumn dataColumn17;
  2055. private System.Data.DataColumn dataColumn18;
  2056. private System.Data.DataColumn dataColumn19;
  2057. private System.Data.DataColumn dataColumn20;
  2058. private System.Data.DataColumn dataColumn22;
  2059. private System.Data.DataColumn dataColumn23;
  2060. private System.Data.DataColumn dataColumn24;
  2061. private System.Data.DataColumn dataColumn25;
  2062. private System.Data.DataColumn dataColumn26;
  2063. private System.Data.DataColumn dataColumn27;
  2064. private System.Data.DataColumn dataColumn28;
  2065. private System.Data.DataColumn dataColumn29;
  2066. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor6;
  2067. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor9;
  2068. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor9;
  2069. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor22;
  2070. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor23;
  2071. private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor ultraDateTimeEditor3;
  2072. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor10;
  2073. private Infragistics.Win.Misc.UltraLabel ultraLabel11;
  2074. private Infragistics.Win.Misc.UltraLabel ultraLabel29;
  2075. private Infragistics.Win.Misc.UltraLabel ultraLabel30;
  2076. private Infragistics.Win.Misc.UltraLabel ultraLabel31;
  2077. private Infragistics.Win.Misc.UltraLabel ultraLabel32;
  2078. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor24;
  2079. private Infragistics.Win.Misc.UltraLabel ultraLabel33;
  2080. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor25;
  2081. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor26;
  2082. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor27;
  2083. private Infragistics.Win.Misc.UltraLabel ultraLabel34;
  2084. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor28;
  2085. private Infragistics.Win.Misc.UltraLabel ultraLabel35;
  2086. private Infragistics.Win.Misc.UltraLabel ultraLabel36;
  2087. private Infragistics.Win.Misc.UltraLabel ultraLabel37;
  2088. private Infragistics.Win.Misc.UltraLabel ultraLabel38;
  2089. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor29;
  2090. private Infragistics.Win.Misc.UltraLabel ultraLabel39;
  2091. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor11;
  2092. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor30;
  2093. private Infragistics.Win.Misc.UltraLabel ultraLabel40;
  2094. private Infragistics.Win.Misc.UltraLabel ultraLabel41;
  2095. private Infragistics.Win.Misc.UltraLabel ultraLabel42;
  2096. private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor dateEnd;
  2097. internal Infragistics.Win.UltraWinEditors.UltraCheckEditor chkTime;
  2098. private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor dateBegin;
  2099. private Infragistics.Win.UltraWinEditors.UltraComboEditor cbQueryDEPTID;
  2100. private System.Windows.Forms.Panel panel2;
  2101. private Infragistics.Win.UltraWinTabControl.UltraTabControl ultraTabControl1;
  2102. private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage1;
  2103. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl1;
  2104. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid2;
  2105. private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox1;
  2106. private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel1;
  2107. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor1;
  2108. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor1;
  2109. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor2;
  2110. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor3;
  2111. private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor ultraDateTimeEditor1;
  2112. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor7;
  2113. private Infragistics.Win.Misc.UltraLabel ultraLabel2;
  2114. private Infragistics.Win.Misc.UltraLabel ultraLabel3;
  2115. private Infragistics.Win.Misc.UltraLabel ultraLabel4;
  2116. private Infragistics.Win.Misc.UltraLabel ultraLabel5;
  2117. private Infragistics.Win.Misc.UltraLabel ultraLabel6;
  2118. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor4;
  2119. private Infragistics.Win.Misc.UltraLabel ultraLabel7;
  2120. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor5;
  2121. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor6;
  2122. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor12;
  2123. private Infragistics.Win.Misc.UltraLabel ultraLabel8;
  2124. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor19;
  2125. private Infragistics.Win.Misc.UltraLabel ultraLabel9;
  2126. private Infragistics.Win.Misc.UltraLabel ultraLabel10;
  2127. private Infragistics.Win.Misc.UltraLabel ultraLabel14;
  2128. private Infragistics.Win.Misc.UltraLabel ultraLabel25;
  2129. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor20;
  2130. private Infragistics.Win.Misc.UltraLabel ultraLabel26;
  2131. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor8;
  2132. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor21;
  2133. private Infragistics.Win.Misc.UltraLabel ultraLabel27;
  2134. private Infragistics.Win.Misc.UltraLabel ultraLabel28;
  2135. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl2;
  2136. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid1;
  2137. private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox2;
  2138. private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel2;
  2139. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor7;
  2140. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor2;
  2141. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor10;
  2142. private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor ultraDateTimeEditor2;
  2143. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor4;
  2144. private Infragistics.Win.Misc.UltraLabel ultraLabel1;
  2145. private Infragistics.Win.Misc.UltraLabel ultraLabel12;
  2146. private Infragistics.Win.Misc.UltraLabel ultraLabel13;
  2147. private Infragistics.Win.Misc.UltraLabel ultraLabel15;
  2148. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor11;
  2149. private Infragistics.Win.Misc.UltraLabel ultraLabel16;
  2150. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor13;
  2151. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor14;
  2152. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor15;
  2153. private Infragistics.Win.Misc.UltraLabel ultraLabel17;
  2154. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor16;
  2155. private Infragistics.Win.Misc.UltraLabel ultraLabel18;
  2156. private Infragistics.Win.Misc.UltraLabel ultraLabel19;
  2157. private Infragistics.Win.Misc.UltraLabel ultraLabel20;
  2158. private Infragistics.Win.Misc.UltraLabel ultraLabel21;
  2159. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor17;
  2160. private Infragistics.Win.Misc.UltraLabel ultraLabel22;
  2161. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor5;
  2162. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor18;
  2163. private Infragistics.Win.Misc.UltraLabel ultraLabel23;
  2164. private Infragistics.Win.Misc.UltraLabel ultraLabel24;
  2165. }
  2166. }