FrmCLBJPlan.designer.cs 136 KB

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