FrmPurOilCardMaintain.Designer.cs 114 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821
  1. namespace Pur.require_plan
  2. {
  3. partial class FrmPurOilCardMaintain
  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. this.components = new System.ComponentModel.Container();
  29. Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
  30. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table2", -1);
  31. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("USERNAME");
  32. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CAR");
  33. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OILCARDID");
  34. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OILCARDMID");
  35. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TYPE");
  36. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATENAME");
  37. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATETIME");
  38. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("remark");
  39. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("id");
  40. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("status");
  41. Infragistics.Win.Appearance appearance31 = new Infragistics.Win.Appearance();
  42. Infragistics.Win.Appearance appearance32 = new Infragistics.Win.Appearance();
  43. Infragistics.Win.UltraWinGrid.SummarySettings summarySettings1 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Count, null, "id", 8, true, "Table2", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "id", 8, true);
  44. Infragistics.Win.Appearance appearance33 = new Infragistics.Win.Appearance();
  45. Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
  46. Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
  47. Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
  48. Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
  49. Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
  50. Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
  51. Infragistics.Win.Appearance appearance20 = new Infragistics.Win.Appearance();
  52. Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
  53. Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
  54. Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
  55. Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
  56. Infragistics.Win.ValueListItem valueListItem3 = new Infragistics.Win.ValueListItem();
  57. Infragistics.Win.ValueListItem valueListItem4 = new Infragistics.Win.ValueListItem();
  58. Infragistics.Win.ValueListItem valueListItem5 = new Infragistics.Win.ValueListItem();
  59. Infragistics.Win.ValueListItem valueListItem6 = new Infragistics.Win.ValueListItem();
  60. Infragistics.Win.ValueListItem valueListItem7 = new Infragistics.Win.ValueListItem();
  61. Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar1");
  62. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool2 = new Infragistics.Win.UltraWinToolbars.ButtonTool("doEdit");
  63. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool3 = new Infragistics.Win.UltraWinToolbars.ButtonTool("doAdd");
  64. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool4 = new Infragistics.Win.UltraWinToolbars.ButtonTool("doSuspend");
  65. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool5 = new Infragistics.Win.UltraWinToolbars.ButtonTool("cancelSuspend");
  66. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool6 = new Infragistics.Win.UltraWinToolbars.ButtonTool("doCancel");
  67. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool7 = new Infragistics.Win.UltraWinToolbars.ButtonTool("doQuery");
  68. Infragistics.Win.Appearance appearance68 = new Infragistics.Win.Appearance();
  69. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmPurOilCardMaintain));
  70. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool8 = new Infragistics.Win.UltraWinToolbars.ButtonTool("doEdit");
  71. Infragistics.Win.Appearance appearance69 = new Infragistics.Win.Appearance();
  72. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool9 = new Infragistics.Win.UltraWinToolbars.ButtonTool("doAdd");
  73. Infragistics.Win.Appearance appearance70 = new Infragistics.Win.Appearance();
  74. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool10 = new Infragistics.Win.UltraWinToolbars.ButtonTool("doSuspend");
  75. Infragistics.Win.Appearance appearance71 = new Infragistics.Win.Appearance();
  76. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool11 = new Infragistics.Win.UltraWinToolbars.ButtonTool("cancelSuspend");
  77. Infragistics.Win.Appearance appearance72 = new Infragistics.Win.Appearance();
  78. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool12 = new Infragistics.Win.UltraWinToolbars.ButtonTool("doCancel");
  79. Infragistics.Win.Appearance appearance73 = new Infragistics.Win.Appearance();
  80. Infragistics.Win.ValueListItem valueListItem12 = new Infragistics.Win.ValueListItem();
  81. Infragistics.Win.ValueListItem valueListItem13 = new Infragistics.Win.ValueListItem();
  82. Infragistics.Win.ValueListItem valueListItem14 = new Infragistics.Win.ValueListItem();
  83. Infragistics.Win.ValueListItem valueListItem15 = new Infragistics.Win.ValueListItem();
  84. Infragistics.Win.Appearance appearance49 = new Infragistics.Win.Appearance();
  85. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
  86. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OILCARDMID");
  87. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("USERORGNAME");
  88. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATENAME");
  89. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATETIME");
  90. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Id");
  91. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("type");
  92. Infragistics.Win.Appearance appearance34 = new Infragistics.Win.Appearance();
  93. Infragistics.Win.Appearance appearance35 = new Infragistics.Win.Appearance();
  94. Infragistics.Win.UltraWinGrid.SummarySettings summarySettings2 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Count, null, "Id", 4, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "Id", 4, true);
  95. Infragistics.Win.Appearance appearance36 = new Infragistics.Win.Appearance();
  96. Infragistics.Win.Appearance appearance53 = new Infragistics.Win.Appearance();
  97. Infragistics.Win.Appearance appearance54 = new Infragistics.Win.Appearance();
  98. Infragistics.Win.Appearance appearance55 = new Infragistics.Win.Appearance();
  99. Infragistics.Win.Appearance appearance56 = new Infragistics.Win.Appearance();
  100. Infragistics.Win.Appearance appearance57 = new Infragistics.Win.Appearance();
  101. Infragistics.Win.Appearance appearance58 = new Infragistics.Win.Appearance();
  102. Infragistics.Win.Appearance appearance59 = new Infragistics.Win.Appearance();
  103. Infragistics.Win.Appearance appearance60 = new Infragistics.Win.Appearance();
  104. Infragistics.Win.Appearance appearance61 = new Infragistics.Win.Appearance();
  105. Infragistics.Win.Appearance appearance62 = new Infragistics.Win.Appearance();
  106. Infragistics.Win.Appearance appearance63 = new Infragistics.Win.Appearance();
  107. Infragistics.Win.ValueListItem valueListItem11 = new Infragistics.Win.ValueListItem();
  108. Infragistics.Win.ValueListItem valueListItem8 = new Infragistics.Win.ValueListItem();
  109. Infragistics.Win.ValueListItem valueListItem9 = new Infragistics.Win.ValueListItem();
  110. Infragistics.Win.ValueListItem valueListItem2 = new Infragistics.Win.ValueListItem();
  111. Infragistics.Win.ValueListItem valueListItem1 = new Infragistics.Win.ValueListItem();
  112. Infragistics.Win.Appearance appearance37 = new Infragistics.Win.Appearance();
  113. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand3 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
  114. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CHANGEID");
  115. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CHANGETYPE");
  116. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OLDVALUE");
  117. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("NEWVALUE");
  118. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATENAME");
  119. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATETIME");
  120. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CARDID");
  121. Infragistics.Win.Appearance appearance38 = new Infragistics.Win.Appearance();
  122. Infragistics.Win.Appearance appearance40 = new Infragistics.Win.Appearance();
  123. Infragistics.Win.Appearance appearance39 = new Infragistics.Win.Appearance();
  124. Infragistics.Win.Appearance appearance43 = new Infragistics.Win.Appearance();
  125. Infragistics.Win.Appearance appearance46 = new Infragistics.Win.Appearance();
  126. Infragistics.Win.Appearance appearance48 = new Infragistics.Win.Appearance();
  127. Infragistics.Win.Appearance appearance44 = new Infragistics.Win.Appearance();
  128. Infragistics.Win.Appearance appearance42 = new Infragistics.Win.Appearance();
  129. Infragistics.Win.Appearance appearance41 = new Infragistics.Win.Appearance();
  130. Infragistics.Win.Appearance appearance47 = new Infragistics.Win.Appearance();
  131. Infragistics.Win.Appearance appearance45 = new Infragistics.Win.Appearance();
  132. Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
  133. Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
  134. Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
  135. Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
  136. Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
  137. Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
  138. Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
  139. Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
  140. Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
  141. Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
  142. Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
  143. Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
  144. Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton1 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
  145. Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton2 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
  146. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab1 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  147. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab2 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  148. this.ultraTabPageControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  149. this.panel2 = new System.Windows.Forms.Panel();
  150. this.panel6 = new System.Windows.Forms.Panel();
  151. this.ultraGrid2 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  152. this.card = new System.Data.DataSet();
  153. this.dataTable1 = new System.Data.DataTable();
  154. this.dataColumn2 = new System.Data.DataColumn();
  155. this.dataColumn3 = new System.Data.DataColumn();
  156. this.dataColumn5 = new System.Data.DataColumn();
  157. this.dataColumn6 = new System.Data.DataColumn();
  158. this.dataColumn4 = new System.Data.DataColumn();
  159. this.dataColumn24 = new System.Data.DataColumn();
  160. this.dataTable2 = new System.Data.DataTable();
  161. this.dataColumn9 = new System.Data.DataColumn();
  162. this.dataColumn10 = new System.Data.DataColumn();
  163. this.dataColumn11 = new System.Data.DataColumn();
  164. this.dataColumn12 = new System.Data.DataColumn();
  165. this.dataColumn13 = new System.Data.DataColumn();
  166. this.dataColumn14 = new System.Data.DataColumn();
  167. this.dataColumn16 = new System.Data.DataColumn();
  168. this.dataColumn1 = new System.Data.DataColumn();
  169. this.dataColumn7 = new System.Data.DataColumn();
  170. this.dataColumn23 = new System.Data.DataColumn();
  171. this.ultraExpandableGroupBox4 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
  172. this.ultraExpandableGroupBoxPanel4 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
  173. this.ultraExpandableGroupBoxPanel4_Fill_Panel = new System.Windows.Forms.Panel();
  174. this.txt_car_add = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  175. this.txt_remark = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  176. this.txt_card_no_add = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  177. this.txt_type2_add = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  178. this.label13 = new System.Windows.Forms.Label();
  179. this.txt_use_name_add = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  180. this.label12 = new System.Windows.Forms.Label();
  181. this.label11 = new System.Windows.Forms.Label();
  182. this.label9 = new System.Windows.Forms.Label();
  183. this.label8 = new System.Windows.Forms.Label();
  184. this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  185. this.ultraToolbarsManager1 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
  186. this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  187. this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Top = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  188. this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  189. this.panel3 = new System.Windows.Forms.Panel();
  190. this.ck_is_all = new System.Windows.Forms.CheckBox();
  191. this.btn_query_d = new System.Windows.Forms.Button();
  192. this.label5 = new System.Windows.Forms.Label();
  193. this.txt_status = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  194. this.label3 = new System.Windows.Forms.Label();
  195. this.label4 = new System.Windows.Forms.Label();
  196. this.txt_useName = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  197. this.txt_card_d_no = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  198. this.ultraExpandableGroupBox1 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
  199. this.ultraExpandableGroupBoxPanel1 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
  200. this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  201. this.ultraExpandableGroupBox2 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
  202. this.ultraExpandableGroupBoxPanel2 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
  203. this.panel1 = new System.Windows.Forms.Panel();
  204. this.label17 = new System.Windows.Forms.Label();
  205. this.txt_User_name1 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  206. this.txt_type1_M = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  207. this.label16 = new System.Windows.Forms.Label();
  208. this.label14 = new System.Windows.Forms.Label();
  209. this.txt_cardMD_no = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  210. this.label2 = new System.Windows.Forms.Label();
  211. this.label1 = new System.Windows.Forms.Label();
  212. this.txt_org_name = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  213. this.txt_Card_No_M = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  214. this.ultraExpandableGroupBox3 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
  215. this.ultraExpandableGroupBoxPanel3 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
  216. this.label6 = new System.Windows.Forms.Label();
  217. this.txt_card_m_add = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  218. this.txt_org_add = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  219. this.label7 = new System.Windows.Forms.Label();
  220. this.txt_type1_add = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  221. this.label10 = new System.Windows.Forms.Label();
  222. this.ultraTabPageControl2 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  223. this.panel5 = new System.Windows.Forms.Panel();
  224. this.ultraGrid4 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  225. this.changeRecord = new System.Data.DataSet();
  226. this.dataTable3 = new System.Data.DataTable();
  227. this.dataColumn8 = new System.Data.DataColumn();
  228. this.dataColumn17 = new System.Data.DataColumn();
  229. this.dataColumn18 = new System.Data.DataColumn();
  230. this.dataColumn19 = new System.Data.DataColumn();
  231. this.dataColumn20 = new System.Data.DataColumn();
  232. this.dataColumn21 = new System.Data.DataColumn();
  233. this.dataColumn22 = new System.Data.DataColumn();
  234. this.ultraGrid3 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  235. this.panel4 = new System.Windows.Forms.Panel();
  236. this.ultraLabel1 = new Infragistics.Win.Misc.UltraLabel();
  237. this.ck_ctime = new System.Windows.Forms.CheckBox();
  238. this.ultraLabel26 = new Infragistics.Win.Misc.UltraLabel();
  239. this.txtCreateTimeEnd = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
  240. this.txtCreateTimeStart = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
  241. this.label15 = new System.Windows.Forms.Label();
  242. this.txt_card_change_d = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  243. this.ultraTabControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
  244. this.ultraTabSharedControlsPage1 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
  245. this.ultraTabPageControl1.SuspendLayout();
  246. this.panel2.SuspendLayout();
  247. this.panel6.SuspendLayout();
  248. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).BeginInit();
  249. ((System.ComponentModel.ISupportInitialize)(this.card)).BeginInit();
  250. ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
  251. ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).BeginInit();
  252. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox4)).BeginInit();
  253. this.ultraExpandableGroupBox4.SuspendLayout();
  254. this.ultraExpandableGroupBoxPanel4.SuspendLayout();
  255. this.ultraExpandableGroupBoxPanel4_Fill_Panel.SuspendLayout();
  256. ((System.ComponentModel.ISupportInitialize)(this.txt_car_add)).BeginInit();
  257. ((System.ComponentModel.ISupportInitialize)(this.txt_remark)).BeginInit();
  258. ((System.ComponentModel.ISupportInitialize)(this.txt_card_no_add)).BeginInit();
  259. ((System.ComponentModel.ISupportInitialize)(this.txt_type2_add)).BeginInit();
  260. ((System.ComponentModel.ISupportInitialize)(this.txt_use_name_add)).BeginInit();
  261. ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).BeginInit();
  262. this.panel3.SuspendLayout();
  263. ((System.ComponentModel.ISupportInitialize)(this.txt_status)).BeginInit();
  264. ((System.ComponentModel.ISupportInitialize)(this.txt_useName)).BeginInit();
  265. ((System.ComponentModel.ISupportInitialize)(this.txt_card_d_no)).BeginInit();
  266. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).BeginInit();
  267. this.ultraExpandableGroupBox1.SuspendLayout();
  268. this.ultraExpandableGroupBoxPanel1.SuspendLayout();
  269. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
  270. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox2)).BeginInit();
  271. this.ultraExpandableGroupBox2.SuspendLayout();
  272. this.ultraExpandableGroupBoxPanel2.SuspendLayout();
  273. this.panel1.SuspendLayout();
  274. ((System.ComponentModel.ISupportInitialize)(this.txt_User_name1)).BeginInit();
  275. ((System.ComponentModel.ISupportInitialize)(this.txt_type1_M)).BeginInit();
  276. ((System.ComponentModel.ISupportInitialize)(this.txt_cardMD_no)).BeginInit();
  277. ((System.ComponentModel.ISupportInitialize)(this.txt_org_name)).BeginInit();
  278. ((System.ComponentModel.ISupportInitialize)(this.txt_Card_No_M)).BeginInit();
  279. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox3)).BeginInit();
  280. this.ultraExpandableGroupBox3.SuspendLayout();
  281. this.ultraExpandableGroupBoxPanel3.SuspendLayout();
  282. ((System.ComponentModel.ISupportInitialize)(this.txt_card_m_add)).BeginInit();
  283. ((System.ComponentModel.ISupportInitialize)(this.txt_org_add)).BeginInit();
  284. ((System.ComponentModel.ISupportInitialize)(this.txt_type1_add)).BeginInit();
  285. this.ultraTabPageControl2.SuspendLayout();
  286. this.panel5.SuspendLayout();
  287. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid4)).BeginInit();
  288. ((System.ComponentModel.ISupportInitialize)(this.changeRecord)).BeginInit();
  289. ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).BeginInit();
  290. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).BeginInit();
  291. this.panel4.SuspendLayout();
  292. ((System.ComponentModel.ISupportInitialize)(this.txtCreateTimeEnd)).BeginInit();
  293. ((System.ComponentModel.ISupportInitialize)(this.txtCreateTimeStart)).BeginInit();
  294. ((System.ComponentModel.ISupportInitialize)(this.txt_card_change_d)).BeginInit();
  295. ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).BeginInit();
  296. this.ultraTabControl1.SuspendLayout();
  297. this.SuspendLayout();
  298. //
  299. // ultraTabPageControl1
  300. //
  301. this.ultraTabPageControl1.Controls.Add(this.panel2);
  302. this.ultraTabPageControl1.Controls.Add(this.ultraExpandableGroupBox3);
  303. this.ultraTabPageControl1.Location = new System.Drawing.Point(1, 1);
  304. this.ultraTabPageControl1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  305. this.ultraTabPageControl1.Name = "ultraTabPageControl1";
  306. this.ultraTabPageControl1.Size = new System.Drawing.Size(1603, 552);
  307. //
  308. // panel2
  309. //
  310. this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  311. this.panel2.Controls.Add(this.panel6);
  312. this.panel2.Controls.Add(this.ultraExpandableGroupBox1);
  313. this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
  314. this.panel2.Location = new System.Drawing.Point(0, 0);
  315. this.panel2.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  316. this.panel2.Name = "panel2";
  317. this.panel2.Size = new System.Drawing.Size(1603, 494);
  318. this.panel2.TabIndex = 183;
  319. //
  320. // panel6
  321. //
  322. this.panel6.Controls.Add(this.ultraGrid2);
  323. this.panel6.Controls.Add(this.ultraExpandableGroupBox4);
  324. this.panel6.Controls.Add(this.panel3);
  325. this.panel6.Dock = System.Windows.Forms.DockStyle.Fill;
  326. this.panel6.Location = new System.Drawing.Point(552, 0);
  327. this.panel6.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  328. this.panel6.Name = "panel6";
  329. this.panel6.Size = new System.Drawing.Size(1049, 492);
  330. this.panel6.TabIndex = 183;
  331. //
  332. // ultraGrid2
  333. //
  334. this.ultraGrid2.DataMember = "Table2";
  335. this.ultraGrid2.DataSource = this.card;
  336. appearance13.BackColor = System.Drawing.SystemColors.Window;
  337. appearance13.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  338. this.ultraGrid2.DisplayLayout.Appearance = appearance13;
  339. ultraGridColumn1.Header.VisiblePosition = 0;
  340. ultraGridColumn1.RowLayoutColumnInfo.OriginX = 4;
  341. ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
  342. ultraGridColumn1.RowLayoutColumnInfo.SpanX = 2;
  343. ultraGridColumn1.RowLayoutColumnInfo.SpanY = 2;
  344. ultraGridColumn2.Header.VisiblePosition = 1;
  345. ultraGridColumn2.RowLayoutColumnInfo.OriginX = 6;
  346. ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
  347. ultraGridColumn2.RowLayoutColumnInfo.SpanX = 2;
  348. ultraGridColumn2.RowLayoutColumnInfo.SpanY = 2;
  349. ultraGridColumn3.Header.VisiblePosition = 3;
  350. ultraGridColumn3.RowLayoutColumnInfo.OriginX = 2;
  351. ultraGridColumn3.RowLayoutColumnInfo.OriginY = 0;
  352. ultraGridColumn3.RowLayoutColumnInfo.SpanX = 2;
  353. ultraGridColumn3.RowLayoutColumnInfo.SpanY = 2;
  354. ultraGridColumn4.Header.VisiblePosition = 2;
  355. ultraGridColumn4.Hidden = true;
  356. ultraGridColumn4.RowLayoutColumnInfo.OriginX = 10;
  357. ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
  358. ultraGridColumn4.RowLayoutColumnInfo.SpanX = 2;
  359. ultraGridColumn4.RowLayoutColumnInfo.SpanY = 2;
  360. ultraGridColumn5.Header.VisiblePosition = 5;
  361. ultraGridColumn5.RowLayoutColumnInfo.OriginX = 10;
  362. ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
  363. ultraGridColumn5.RowLayoutColumnInfo.SpanX = 2;
  364. ultraGridColumn5.RowLayoutColumnInfo.SpanY = 2;
  365. ultraGridColumn6.Header.VisiblePosition = 4;
  366. ultraGridColumn6.RowLayoutColumnInfo.OriginX = 14;
  367. ultraGridColumn6.RowLayoutColumnInfo.OriginY = 0;
  368. ultraGridColumn6.RowLayoutColumnInfo.SpanX = 2;
  369. ultraGridColumn6.RowLayoutColumnInfo.SpanY = 2;
  370. ultraGridColumn7.Header.VisiblePosition = 6;
  371. ultraGridColumn7.RowLayoutColumnInfo.OriginX = 16;
  372. ultraGridColumn7.RowLayoutColumnInfo.OriginY = 0;
  373. ultraGridColumn7.RowLayoutColumnInfo.SpanX = 2;
  374. ultraGridColumn7.RowLayoutColumnInfo.SpanY = 2;
  375. ultraGridColumn8.Header.VisiblePosition = 7;
  376. ultraGridColumn8.RowLayoutColumnInfo.OriginX = 12;
  377. ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
  378. ultraGridColumn8.RowLayoutColumnInfo.SpanX = 2;
  379. ultraGridColumn8.RowLayoutColumnInfo.SpanY = 2;
  380. ultraGridColumn9.Header.VisiblePosition = 8;
  381. ultraGridColumn9.RowLayoutColumnInfo.OriginX = 0;
  382. ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
  383. ultraGridColumn9.RowLayoutColumnInfo.SpanX = 2;
  384. ultraGridColumn9.RowLayoutColumnInfo.SpanY = 2;
  385. ultraGridColumn10.Header.VisiblePosition = 9;
  386. ultraGridColumn10.RowLayoutColumnInfo.OriginX = 8;
  387. ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
  388. ultraGridColumn10.RowLayoutColumnInfo.SpanX = 2;
  389. ultraGridColumn10.RowLayoutColumnInfo.SpanY = 2;
  390. ultraGridBand1.Columns.AddRange(new object[] {
  391. ultraGridColumn1,
  392. ultraGridColumn2,
  393. ultraGridColumn3,
  394. ultraGridColumn4,
  395. ultraGridColumn5,
  396. ultraGridColumn6,
  397. ultraGridColumn7,
  398. ultraGridColumn8,
  399. ultraGridColumn9,
  400. ultraGridColumn10});
  401. appearance31.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
  402. ultraGridBand1.Override.SummaryFooterAppearance = appearance31;
  403. appearance32.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
  404. ultraGridBand1.Override.SummaryValueAppearance = appearance32;
  405. ultraGridBand1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
  406. summarySettings1.DisplayFormat = "共{0}条";
  407. summarySettings1.GroupBySummaryValueAppearance = appearance33;
  408. ultraGridBand1.Summaries.AddRange(new Infragistics.Win.UltraWinGrid.SummarySettings[] {
  409. summarySettings1});
  410. ultraGridBand1.SummaryFooterCaption = "统计";
  411. this.ultraGrid2.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
  412. this.ultraGrid2.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  413. this.ultraGrid2.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  414. appearance14.BackColor = System.Drawing.SystemColors.ActiveBorder;
  415. appearance14.BackColor2 = System.Drawing.SystemColors.ControlDark;
  416. appearance14.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  417. appearance14.BorderColor = System.Drawing.SystemColors.Window;
  418. this.ultraGrid2.DisplayLayout.GroupByBox.Appearance = appearance14;
  419. appearance15.ForeColor = System.Drawing.SystemColors.GrayText;
  420. this.ultraGrid2.DisplayLayout.GroupByBox.BandLabelAppearance = appearance15;
  421. this.ultraGrid2.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  422. this.ultraGrid2.DisplayLayout.GroupByBox.Hidden = true;
  423. appearance16.BackColor = System.Drawing.SystemColors.ControlLightLight;
  424. appearance16.BackColor2 = System.Drawing.SystemColors.Control;
  425. appearance16.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  426. appearance16.ForeColor = System.Drawing.SystemColors.GrayText;
  427. this.ultraGrid2.DisplayLayout.GroupByBox.PromptAppearance = appearance16;
  428. this.ultraGrid2.DisplayLayout.MaxColScrollRegions = 1;
  429. this.ultraGrid2.DisplayLayout.MaxRowScrollRegions = 1;
  430. appearance17.BackColor = System.Drawing.SystemColors.Window;
  431. appearance17.ForeColor = System.Drawing.SystemColors.ControlText;
  432. this.ultraGrid2.DisplayLayout.Override.ActiveCellAppearance = appearance17;
  433. appearance18.BackColor = System.Drawing.SystemColors.Highlight;
  434. appearance18.ForeColor = System.Drawing.SystemColors.HighlightText;
  435. this.ultraGrid2.DisplayLayout.Override.ActiveRowAppearance = appearance18;
  436. this.ultraGrid2.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  437. this.ultraGrid2.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  438. appearance19.BackColor = System.Drawing.SystemColors.Window;
  439. this.ultraGrid2.DisplayLayout.Override.CardAreaAppearance = appearance19;
  440. appearance20.BorderColor = System.Drawing.Color.Silver;
  441. appearance20.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  442. this.ultraGrid2.DisplayLayout.Override.CellAppearance = appearance20;
  443. this.ultraGrid2.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  444. this.ultraGrid2.DisplayLayout.Override.CellPadding = 0;
  445. appearance21.BackColor = System.Drawing.SystemColors.Control;
  446. appearance21.BackColor2 = System.Drawing.SystemColors.ControlDark;
  447. appearance21.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  448. appearance21.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  449. appearance21.BorderColor = System.Drawing.SystemColors.Window;
  450. this.ultraGrid2.DisplayLayout.Override.GroupByRowAppearance = appearance21;
  451. appearance22.TextHAlignAsString = "Left";
  452. this.ultraGrid2.DisplayLayout.Override.HeaderAppearance = appearance22;
  453. this.ultraGrid2.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  454. this.ultraGrid2.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  455. appearance23.BackColor = System.Drawing.SystemColors.Window;
  456. appearance23.BorderColor = System.Drawing.Color.Silver;
  457. this.ultraGrid2.DisplayLayout.Override.RowAppearance = appearance23;
  458. this.ultraGrid2.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  459. appearance24.BackColor = System.Drawing.SystemColors.ControlLight;
  460. this.ultraGrid2.DisplayLayout.Override.TemplateAddRowAppearance = appearance24;
  461. this.ultraGrid2.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  462. this.ultraGrid2.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  463. this.ultraGrid2.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  464. this.ultraGrid2.Dock = System.Windows.Forms.DockStyle.Fill;
  465. this.ultraGrid2.Location = new System.Drawing.Point(0, 38);
  466. this.ultraGrid2.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  467. this.ultraGrid2.Name = "ultraGrid2";
  468. this.ultraGrid2.Size = new System.Drawing.Size(1049, 326);
  469. this.ultraGrid2.TabIndex = 0;
  470. this.ultraGrid2.Text = "ultraGrid2";
  471. this.ultraGrid2.InitializeRow += new Infragistics.Win.UltraWinGrid.InitializeRowEventHandler(this.ultraGrid2_InitializeRow);
  472. this.ultraGrid2.AfterRowActivate += new System.EventHandler(this.ultraGrid2_AfterRowActivate);
  473. //
  474. // card
  475. //
  476. this.card.DataSetName = "NewDataSet";
  477. this.card.Tables.AddRange(new System.Data.DataTable[] {
  478. this.dataTable1,
  479. this.dataTable2});
  480. //
  481. // dataTable1
  482. //
  483. this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
  484. this.dataColumn2,
  485. this.dataColumn3,
  486. this.dataColumn5,
  487. this.dataColumn6,
  488. this.dataColumn4,
  489. this.dataColumn24});
  490. this.dataTable1.TableName = "Table1";
  491. //
  492. // dataColumn2
  493. //
  494. this.dataColumn2.Caption = "主卡号";
  495. this.dataColumn2.ColumnName = "OILCARDMID";
  496. //
  497. // dataColumn3
  498. //
  499. this.dataColumn3.Caption = "部门";
  500. this.dataColumn3.ColumnName = "USERORGNAME";
  501. //
  502. // dataColumn5
  503. //
  504. this.dataColumn5.Caption = "创建人";
  505. this.dataColumn5.ColumnName = "CREATENAME";
  506. //
  507. // dataColumn6
  508. //
  509. this.dataColumn6.Caption = "创建时间";
  510. this.dataColumn6.ColumnName = "CREATETIME";
  511. //
  512. // dataColumn4
  513. //
  514. this.dataColumn4.Caption = "编号";
  515. this.dataColumn4.ColumnName = "Id";
  516. //
  517. // dataColumn24
  518. //
  519. this.dataColumn24.Caption = "类型";
  520. this.dataColumn24.ColumnName = "type";
  521. //
  522. // dataTable2
  523. //
  524. this.dataTable2.Columns.AddRange(new System.Data.DataColumn[] {
  525. this.dataColumn9,
  526. this.dataColumn10,
  527. this.dataColumn11,
  528. this.dataColumn12,
  529. this.dataColumn13,
  530. this.dataColumn14,
  531. this.dataColumn16,
  532. this.dataColumn1,
  533. this.dataColumn7,
  534. this.dataColumn23});
  535. this.dataTable2.TableName = "Table2";
  536. //
  537. // dataColumn9
  538. //
  539. this.dataColumn9.Caption = "用户名";
  540. this.dataColumn9.ColumnName = "USERNAME";
  541. //
  542. // dataColumn10
  543. //
  544. this.dataColumn10.Caption = "车牌";
  545. this.dataColumn10.ColumnName = "CAR";
  546. //
  547. // dataColumn11
  548. //
  549. this.dataColumn11.Caption = "卡号";
  550. this.dataColumn11.ColumnName = "OILCARDID";
  551. //
  552. // dataColumn12
  553. //
  554. this.dataColumn12.Caption = "主卡号";
  555. this.dataColumn12.ColumnName = "OILCARDMID";
  556. //
  557. // dataColumn13
  558. //
  559. this.dataColumn13.Caption = "类型";
  560. this.dataColumn13.ColumnName = "TYPE";
  561. //
  562. // dataColumn14
  563. //
  564. this.dataColumn14.Caption = "创建人";
  565. this.dataColumn14.ColumnName = "CREATENAME";
  566. //
  567. // dataColumn16
  568. //
  569. this.dataColumn16.Caption = "创建时间";
  570. this.dataColumn16.ColumnName = "CREATETIME";
  571. //
  572. // dataColumn1
  573. //
  574. this.dataColumn1.Caption = "备注";
  575. this.dataColumn1.ColumnName = "remark";
  576. //
  577. // dataColumn7
  578. //
  579. this.dataColumn7.Caption = "编号";
  580. this.dataColumn7.ColumnName = "id";
  581. //
  582. // dataColumn23
  583. //
  584. this.dataColumn23.Caption = "状态";
  585. this.dataColumn23.ColumnName = "status";
  586. //
  587. // ultraExpandableGroupBox4
  588. //
  589. this.ultraExpandableGroupBox4.Controls.Add(this.ultraExpandableGroupBoxPanel4);
  590. this.ultraExpandableGroupBox4.Dock = System.Windows.Forms.DockStyle.Bottom;
  591. this.ultraExpandableGroupBox4.ExpandedSize = new System.Drawing.Size(1049, 128);
  592. this.ultraExpandableGroupBox4.Location = new System.Drawing.Point(0, 364);
  593. this.ultraExpandableGroupBox4.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  594. this.ultraExpandableGroupBox4.Name = "ultraExpandableGroupBox4";
  595. this.ultraExpandableGroupBox4.Size = new System.Drawing.Size(1049, 128);
  596. this.ultraExpandableGroupBox4.TabIndex = 185;
  597. this.ultraExpandableGroupBox4.Text = "副卡编辑区";
  598. //
  599. // ultraExpandableGroupBoxPanel4
  600. //
  601. this.ultraExpandableGroupBoxPanel4.Controls.Add(this.ultraExpandableGroupBoxPanel4_Fill_Panel);
  602. this.ultraExpandableGroupBoxPanel4.Controls.Add(this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Left);
  603. this.ultraExpandableGroupBoxPanel4.Controls.Add(this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Right);
  604. this.ultraExpandableGroupBoxPanel4.Controls.Add(this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Top);
  605. this.ultraExpandableGroupBoxPanel4.Controls.Add(this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Bottom);
  606. this.ultraExpandableGroupBoxPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
  607. this.ultraExpandableGroupBoxPanel4.Location = new System.Drawing.Point(3, 21);
  608. this.ultraExpandableGroupBoxPanel4.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  609. this.ultraExpandableGroupBoxPanel4.Name = "ultraExpandableGroupBoxPanel4";
  610. this.ultraExpandableGroupBoxPanel4.Size = new System.Drawing.Size(1043, 104);
  611. this.ultraExpandableGroupBoxPanel4.TabIndex = 0;
  612. //
  613. // ultraExpandableGroupBoxPanel4_Fill_Panel
  614. //
  615. this.ultraExpandableGroupBoxPanel4_Fill_Panel.Controls.Add(this.txt_car_add);
  616. this.ultraExpandableGroupBoxPanel4_Fill_Panel.Controls.Add(this.txt_remark);
  617. this.ultraExpandableGroupBoxPanel4_Fill_Panel.Controls.Add(this.txt_card_no_add);
  618. this.ultraExpandableGroupBoxPanel4_Fill_Panel.Controls.Add(this.txt_type2_add);
  619. this.ultraExpandableGroupBoxPanel4_Fill_Panel.Controls.Add(this.label13);
  620. this.ultraExpandableGroupBoxPanel4_Fill_Panel.Controls.Add(this.txt_use_name_add);
  621. this.ultraExpandableGroupBoxPanel4_Fill_Panel.Controls.Add(this.label12);
  622. this.ultraExpandableGroupBoxPanel4_Fill_Panel.Controls.Add(this.label11);
  623. this.ultraExpandableGroupBoxPanel4_Fill_Panel.Controls.Add(this.label9);
  624. this.ultraExpandableGroupBoxPanel4_Fill_Panel.Controls.Add(this.label8);
  625. this.ultraExpandableGroupBoxPanel4_Fill_Panel.Cursor = System.Windows.Forms.Cursors.Default;
  626. this.ultraExpandableGroupBoxPanel4_Fill_Panel.Dock = System.Windows.Forms.DockStyle.Fill;
  627. this.ultraExpandableGroupBoxPanel4_Fill_Panel.Location = new System.Drawing.Point(0, 28);
  628. this.ultraExpandableGroupBoxPanel4_Fill_Panel.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  629. this.ultraExpandableGroupBoxPanel4_Fill_Panel.Name = "ultraExpandableGroupBoxPanel4_Fill_Panel";
  630. this.ultraExpandableGroupBoxPanel4_Fill_Panel.Size = new System.Drawing.Size(1043, 76);
  631. this.ultraExpandableGroupBoxPanel4_Fill_Panel.TabIndex = 0;
  632. //
  633. // txt_car_add
  634. //
  635. this.txt_car_add.Location = new System.Drawing.Point(707, 8);
  636. this.txt_car_add.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  637. this.txt_car_add.MaxLength = 200;
  638. this.txt_car_add.Name = "txt_car_add";
  639. this.txt_car_add.Size = new System.Drawing.Size(149, 24);
  640. this.txt_car_add.TabIndex = 196;
  641. //
  642. // txt_remark
  643. //
  644. this.txt_remark.Location = new System.Drawing.Point(71, 38);
  645. this.txt_remark.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  646. this.txt_remark.MaxLength = 200;
  647. this.txt_remark.Name = "txt_remark";
  648. this.txt_remark.Size = new System.Drawing.Size(785, 24);
  649. this.txt_remark.TabIndex = 194;
  650. //
  651. // txt_card_no_add
  652. //
  653. this.txt_card_no_add.Location = new System.Drawing.Point(71, 8);
  654. this.txt_card_no_add.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  655. this.txt_card_no_add.MaxLength = 200;
  656. this.txt_card_no_add.Name = "txt_card_no_add";
  657. this.txt_card_no_add.Size = new System.Drawing.Size(149, 24);
  658. this.txt_card_no_add.TabIndex = 187;
  659. //
  660. // txt_type2_add
  661. //
  662. this.txt_type2_add.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  663. valueListItem3.DataValue = "1";
  664. valueListItem3.DisplayText = "处级以上领导";
  665. valueListItem4.DataValue = "2";
  666. valueListItem4.DisplayText = "生产骨干";
  667. valueListItem5.DataValue = "3";
  668. valueListItem5.DisplayText = "办公用车";
  669. valueListItem6.DataValue = "4";
  670. valueListItem6.DisplayText = "生产用车";
  671. valueListItem7.DataValue = "5";
  672. valueListItem7.DisplayText = "员工";
  673. this.txt_type2_add.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  674. valueListItem3,
  675. valueListItem4,
  676. valueListItem5,
  677. valueListItem6,
  678. valueListItem7});
  679. this.txt_type2_add.Location = new System.Drawing.Point(492, 8);
  680. this.txt_type2_add.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  681. this.txt_type2_add.Name = "txt_type2_add";
  682. this.txt_type2_add.Size = new System.Drawing.Size(149, 24);
  683. this.txt_type2_add.TabIndex = 191;
  684. //
  685. // label13
  686. //
  687. this.label13.AutoSize = true;
  688. this.label13.Location = new System.Drawing.Point(647, 12);
  689. this.label13.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  690. this.label13.Name = "label13";
  691. this.label13.Size = new System.Drawing.Size(52, 15);
  692. this.label13.TabIndex = 197;
  693. this.label13.Text = "车牌号";
  694. //
  695. // txt_use_name_add
  696. //
  697. this.txt_use_name_add.Location = new System.Drawing.Point(289, 8);
  698. this.txt_use_name_add.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  699. this.txt_use_name_add.MaxLength = 200;
  700. this.txt_use_name_add.Name = "txt_use_name_add";
  701. this.txt_use_name_add.Size = new System.Drawing.Size(149, 24);
  702. this.txt_use_name_add.TabIndex = 188;
  703. //
  704. // label12
  705. //
  706. this.label12.AutoSize = true;
  707. this.label12.Location = new System.Drawing.Point(11, 42);
  708. this.label12.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  709. this.label12.Name = "label12";
  710. this.label12.Size = new System.Drawing.Size(53, 15);
  711. this.label12.TabIndex = 195;
  712. this.label12.Text = "备 注";
  713. //
  714. // label11
  715. //
  716. this.label11.AutoSize = true;
  717. this.label11.Location = new System.Drawing.Point(448, 14);
  718. this.label11.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  719. this.label11.Name = "label11";
  720. this.label11.Size = new System.Drawing.Size(37, 15);
  721. this.label11.TabIndex = 193;
  722. this.label11.Text = "类型";
  723. //
  724. // label9
  725. //
  726. this.label9.AutoSize = true;
  727. this.label9.Location = new System.Drawing.Point(11, 12);
  728. this.label9.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  729. this.label9.Name = "label9";
  730. this.label9.Size = new System.Drawing.Size(52, 15);
  731. this.label9.TabIndex = 189;
  732. this.label9.Text = "副卡号";
  733. //
  734. // label8
  735. //
  736. this.label8.AutoSize = true;
  737. this.label8.Location = new System.Drawing.Point(229, 12);
  738. this.label8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  739. this.label8.Name = "label8";
  740. this.label8.Size = new System.Drawing.Size(52, 15);
  741. this.label8.TabIndex = 190;
  742. this.label8.Text = "用户名";
  743. //
  744. // _ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Left
  745. //
  746. this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Left.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  747. this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Left.BackColor = System.Drawing.SystemColors.Control;
  748. this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Left.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
  749. this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Left.ForeColor = System.Drawing.SystemColors.ControlText;
  750. this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Left.Location = new System.Drawing.Point(0, 28);
  751. this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Left.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  752. this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Left.Name = "_ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Left";
  753. this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 76);
  754. this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Left.ToolbarsManager = this.ultraToolbarsManager1;
  755. //
  756. // ultraToolbarsManager1
  757. //
  758. this.ultraToolbarsManager1.DesignerFlags = 1;
  759. this.ultraToolbarsManager1.DockWithinContainer = this.ultraExpandableGroupBoxPanel4;
  760. this.ultraToolbarsManager1.ShowQuickCustomizeButton = false;
  761. ultraToolbar1.DockedColumn = 0;
  762. ultraToolbar1.DockedRow = 0;
  763. ultraToolbar1.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
  764. buttonTool2,
  765. buttonTool3,
  766. buttonTool4,
  767. buttonTool5,
  768. buttonTool6});
  769. ultraToolbar1.Text = "UltraToolbar1";
  770. this.ultraToolbarsManager1.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
  771. ultraToolbar1});
  772. appearance68.Image = ((object)(resources.GetObject("appearance68.Image")));
  773. buttonTool7.SharedPropsInternal.AppearancesSmall.Appearance = appearance68;
  774. buttonTool7.SharedPropsInternal.Caption = "查询";
  775. buttonTool7.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  776. appearance69.Image = ((object)(resources.GetObject("appearance69.Image")));
  777. buttonTool8.SharedPropsInternal.AppearancesSmall.Appearance = appearance69;
  778. buttonTool8.SharedPropsInternal.Caption = "修改";
  779. buttonTool8.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  780. appearance70.Image = ((object)(resources.GetObject("appearance70.Image")));
  781. buttonTool9.SharedPropsInternal.AppearancesSmall.Appearance = appearance70;
  782. buttonTool9.SharedPropsInternal.Caption = "新增";
  783. buttonTool9.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  784. appearance71.Image = ((object)(resources.GetObject("appearance71.Image")));
  785. buttonTool10.SharedPropsInternal.AppearancesSmall.Appearance = appearance71;
  786. buttonTool10.SharedPropsInternal.Caption = "暂停";
  787. buttonTool10.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  788. appearance72.Image = ((object)(resources.GetObject("appearance72.Image")));
  789. buttonTool11.SharedPropsInternal.AppearancesSmall.Appearance = appearance72;
  790. buttonTool11.SharedPropsInternal.Caption = "取消暂停";
  791. buttonTool11.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  792. appearance73.Image = ((object)(resources.GetObject("appearance73.Image")));
  793. buttonTool12.SharedPropsInternal.AppearancesSmall.Appearance = appearance73;
  794. buttonTool12.SharedPropsInternal.Caption = "注销";
  795. buttonTool12.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  796. this.ultraToolbarsManager1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
  797. buttonTool7,
  798. buttonTool8,
  799. buttonTool9,
  800. buttonTool10,
  801. buttonTool11,
  802. buttonTool12});
  803. this.ultraToolbarsManager1.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.ultraToolbarsManager1_ToolClick);
  804. //
  805. // _ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Right
  806. //
  807. this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Right.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  808. this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Right.BackColor = System.Drawing.SystemColors.Control;
  809. this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Right.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
  810. this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Right.ForeColor = System.Drawing.SystemColors.ControlText;
  811. this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Right.Location = new System.Drawing.Point(1043, 28);
  812. this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Right.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  813. this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Right.Name = "_ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Right";
  814. this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 76);
  815. this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Right.ToolbarsManager = this.ultraToolbarsManager1;
  816. //
  817. // _ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Top
  818. //
  819. this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Top.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  820. this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Top.BackColor = System.Drawing.SystemColors.Control;
  821. this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Top.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
  822. this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Top.ForeColor = System.Drawing.SystemColors.ControlText;
  823. this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Top.Location = new System.Drawing.Point(0, 0);
  824. this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Top.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  825. this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Top.Name = "_ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Top";
  826. this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(1043, 28);
  827. this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Top.ToolbarsManager = this.ultraToolbarsManager1;
  828. //
  829. // _ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Bottom
  830. //
  831. this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Bottom.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  832. this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Bottom.BackColor = System.Drawing.SystemColors.Control;
  833. this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Bottom.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
  834. this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Bottom.ForeColor = System.Drawing.SystemColors.ControlText;
  835. this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Bottom.Location = new System.Drawing.Point(0, 104);
  836. this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Bottom.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  837. this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Bottom.Name = "_ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Bottom";
  838. this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(1043, 0);
  839. this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.ultraToolbarsManager1;
  840. //
  841. // panel3
  842. //
  843. this.panel3.Controls.Add(this.ck_is_all);
  844. this.panel3.Controls.Add(this.btn_query_d);
  845. this.panel3.Controls.Add(this.label5);
  846. this.panel3.Controls.Add(this.txt_status);
  847. this.panel3.Controls.Add(this.label3);
  848. this.panel3.Controls.Add(this.label4);
  849. this.panel3.Controls.Add(this.txt_useName);
  850. this.panel3.Controls.Add(this.txt_card_d_no);
  851. this.panel3.Dock = System.Windows.Forms.DockStyle.Top;
  852. this.panel3.Location = new System.Drawing.Point(0, 0);
  853. this.panel3.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  854. this.panel3.Name = "panel3";
  855. this.panel3.Size = new System.Drawing.Size(1049, 38);
  856. this.panel3.TabIndex = 179;
  857. //
  858. // ck_is_all
  859. //
  860. this.ck_is_all.AutoSize = true;
  861. this.ck_is_all.Location = new System.Drawing.Point(712, 8);
  862. this.ck_is_all.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  863. this.ck_is_all.Name = "ck_is_all";
  864. this.ck_is_all.Size = new System.Drawing.Size(89, 19);
  865. this.ck_is_all.TabIndex = 182;
  866. this.ck_is_all.Text = "全部副卡";
  867. this.ck_is_all.UseVisualStyleBackColor = true;
  868. //
  869. // btn_query_d
  870. //
  871. this.btn_query_d.Location = new System.Drawing.Point(816, 4);
  872. this.btn_query_d.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  873. this.btn_query_d.Name = "btn_query_d";
  874. this.btn_query_d.Size = new System.Drawing.Size(100, 29);
  875. this.btn_query_d.TabIndex = 181;
  876. this.btn_query_d.Text = "过滤";
  877. this.btn_query_d.UseVisualStyleBackColor = true;
  878. this.btn_query_d.Click += new System.EventHandler(this.btn_query_d_Click);
  879. //
  880. // label5
  881. //
  882. this.label5.AutoSize = true;
  883. this.label5.Location = new System.Drawing.Point(531, 10);
  884. this.label5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  885. this.label5.Name = "label5";
  886. this.label5.Size = new System.Drawing.Size(37, 15);
  887. this.label5.TabIndex = 180;
  888. this.label5.Text = "状态";
  889. //
  890. // txt_status
  891. //
  892. this.txt_status.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  893. valueListItem12.DataValue = " ";
  894. valueListItem12.DisplayText = "全部";
  895. valueListItem13.DataValue = "1";
  896. valueListItem13.DisplayText = "正常";
  897. valueListItem14.DataValue = "2";
  898. valueListItem14.DisplayText = "暂停";
  899. valueListItem15.DataValue = "3";
  900. valueListItem15.DisplayText = "注销";
  901. this.txt_status.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  902. valueListItem12,
  903. valueListItem13,
  904. valueListItem14,
  905. valueListItem15});
  906. this.txt_status.Location = new System.Drawing.Point(573, 5);
  907. this.txt_status.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  908. this.txt_status.Name = "txt_status";
  909. this.txt_status.Size = new System.Drawing.Size(131, 24);
  910. this.txt_status.TabIndex = 179;
  911. //
  912. // label3
  913. //
  914. this.label3.AutoSize = true;
  915. this.label3.Location = new System.Drawing.Point(319, 10);
  916. this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  917. this.label3.Name = "label3";
  918. this.label3.Size = new System.Drawing.Size(37, 15);
  919. this.label3.TabIndex = 178;
  920. this.label3.Text = "人名";
  921. //
  922. // label4
  923. //
  924. this.label4.AutoSize = true;
  925. this.label4.Location = new System.Drawing.Point(7, 10);
  926. this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  927. this.label4.Name = "label4";
  928. this.label4.Size = new System.Drawing.Size(52, 15);
  929. this.label4.TabIndex = 177;
  930. this.label4.Text = "副卡号";
  931. //
  932. // txt_useName
  933. //
  934. this.txt_useName.Location = new System.Drawing.Point(363, 5);
  935. this.txt_useName.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  936. this.txt_useName.MaxLength = 200;
  937. this.txt_useName.Name = "txt_useName";
  938. this.txt_useName.Size = new System.Drawing.Size(149, 24);
  939. this.txt_useName.TabIndex = 176;
  940. //
  941. // txt_card_d_no
  942. //
  943. this.txt_card_d_no.Location = new System.Drawing.Point(65, 5);
  944. this.txt_card_d_no.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  945. this.txt_card_d_no.MaxLength = 200;
  946. this.txt_card_d_no.Name = "txt_card_d_no";
  947. this.txt_card_d_no.Size = new System.Drawing.Size(245, 24);
  948. this.txt_card_d_no.TabIndex = 175;
  949. //
  950. // ultraExpandableGroupBox1
  951. //
  952. this.ultraExpandableGroupBox1.CaptionAlignment = Infragistics.Win.Misc.GroupBoxCaptionAlignment.Far;
  953. this.ultraExpandableGroupBox1.Controls.Add(this.ultraExpandableGroupBoxPanel1);
  954. this.ultraExpandableGroupBox1.Dock = System.Windows.Forms.DockStyle.Left;
  955. this.ultraExpandableGroupBox1.ExpandedSize = new System.Drawing.Size(552, 492);
  956. this.ultraExpandableGroupBox1.HeaderPosition = Infragistics.Win.Misc.GroupBoxHeaderPosition.LeftOnBorder;
  957. this.ultraExpandableGroupBox1.Location = new System.Drawing.Point(0, 0);
  958. this.ultraExpandableGroupBox1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  959. this.ultraExpandableGroupBox1.Name = "ultraExpandableGroupBox1";
  960. this.ultraExpandableGroupBox1.Size = new System.Drawing.Size(552, 492);
  961. this.ultraExpandableGroupBox1.TabIndex = 182;
  962. this.ultraExpandableGroupBox1.Text = "主卡";
  963. //
  964. // ultraExpandableGroupBoxPanel1
  965. //
  966. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraGrid1);
  967. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraExpandableGroupBox2);
  968. this.ultraExpandableGroupBoxPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  969. this.ultraExpandableGroupBoxPanel1.Location = new System.Drawing.Point(22, 3);
  970. this.ultraExpandableGroupBoxPanel1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  971. this.ultraExpandableGroupBoxPanel1.Name = "ultraExpandableGroupBoxPanel1";
  972. this.ultraExpandableGroupBoxPanel1.Size = new System.Drawing.Size(527, 486);
  973. this.ultraExpandableGroupBoxPanel1.TabIndex = 0;
  974. //
  975. // ultraGrid1
  976. //
  977. this.ultraGrid1.DataMember = "Table1";
  978. this.ultraGrid1.DataSource = this.card;
  979. appearance49.BackColor = System.Drawing.SystemColors.Window;
  980. appearance49.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  981. this.ultraGrid1.DisplayLayout.Appearance = appearance49;
  982. ultraGridColumn11.Header.VisiblePosition = 2;
  983. ultraGridColumn12.Header.VisiblePosition = 1;
  984. ultraGridColumn13.Header.VisiblePosition = 4;
  985. ultraGridColumn14.Header.VisiblePosition = 5;
  986. ultraGridColumn15.Header.VisiblePosition = 0;
  987. ultraGridColumn16.Header.VisiblePosition = 3;
  988. ultraGridBand2.Columns.AddRange(new object[] {
  989. ultraGridColumn11,
  990. ultraGridColumn12,
  991. ultraGridColumn13,
  992. ultraGridColumn14,
  993. ultraGridColumn15,
  994. ultraGridColumn16});
  995. appearance34.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
  996. ultraGridBand2.Override.SummaryFooterAppearance = appearance34;
  997. appearance35.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
  998. ultraGridBand2.Override.SummaryValueAppearance = appearance35;
  999. summarySettings2.DisplayFormat = "共{0}条";
  1000. summarySettings2.GroupBySummaryValueAppearance = appearance36;
  1001. ultraGridBand2.Summaries.AddRange(new Infragistics.Win.UltraWinGrid.SummarySettings[] {
  1002. summarySettings2});
  1003. ultraGridBand2.SummaryFooterCaption = "统计";
  1004. this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
  1005. this.ultraGrid1.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1006. this.ultraGrid1.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  1007. appearance53.BackColor = System.Drawing.SystemColors.ActiveBorder;
  1008. appearance53.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1009. appearance53.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  1010. appearance53.BorderColor = System.Drawing.SystemColors.Window;
  1011. this.ultraGrid1.DisplayLayout.GroupByBox.Appearance = appearance53;
  1012. appearance54.ForeColor = System.Drawing.SystemColors.GrayText;
  1013. this.ultraGrid1.DisplayLayout.GroupByBox.BandLabelAppearance = appearance54;
  1014. this.ultraGrid1.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1015. this.ultraGrid1.DisplayLayout.GroupByBox.Hidden = true;
  1016. appearance55.BackColor = System.Drawing.SystemColors.ControlLightLight;
  1017. appearance55.BackColor2 = System.Drawing.SystemColors.Control;
  1018. appearance55.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1019. appearance55.ForeColor = System.Drawing.SystemColors.GrayText;
  1020. this.ultraGrid1.DisplayLayout.GroupByBox.PromptAppearance = appearance55;
  1021. this.ultraGrid1.DisplayLayout.MaxColScrollRegions = 1;
  1022. this.ultraGrid1.DisplayLayout.MaxRowScrollRegions = 1;
  1023. appearance56.BackColor = System.Drawing.SystemColors.Window;
  1024. appearance56.ForeColor = System.Drawing.SystemColors.ControlText;
  1025. this.ultraGrid1.DisplayLayout.Override.ActiveCellAppearance = appearance56;
  1026. appearance57.BackColor = System.Drawing.SystemColors.Highlight;
  1027. appearance57.ForeColor = System.Drawing.SystemColors.HighlightText;
  1028. this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance = appearance57;
  1029. this.ultraGrid1.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  1030. this.ultraGrid1.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  1031. appearance58.BackColor = System.Drawing.SystemColors.Window;
  1032. this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance58;
  1033. appearance59.BorderColor = System.Drawing.Color.Silver;
  1034. appearance59.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  1035. this.ultraGrid1.DisplayLayout.Override.CellAppearance = appearance59;
  1036. this.ultraGrid1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  1037. this.ultraGrid1.DisplayLayout.Override.CellPadding = 0;
  1038. appearance60.BackColor = System.Drawing.SystemColors.Control;
  1039. appearance60.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1040. appearance60.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  1041. appearance60.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1042. appearance60.BorderColor = System.Drawing.SystemColors.Window;
  1043. this.ultraGrid1.DisplayLayout.Override.GroupByRowAppearance = appearance60;
  1044. appearance61.TextHAlignAsString = "Left";
  1045. this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance61;
  1046. this.ultraGrid1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  1047. this.ultraGrid1.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  1048. appearance62.BackColor = System.Drawing.SystemColors.Window;
  1049. appearance62.BorderColor = System.Drawing.Color.Silver;
  1050. this.ultraGrid1.DisplayLayout.Override.RowAppearance = appearance62;
  1051. this.ultraGrid1.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  1052. appearance63.BackColor = System.Drawing.SystemColors.ControlLight;
  1053. this.ultraGrid1.DisplayLayout.Override.TemplateAddRowAppearance = appearance63;
  1054. this.ultraGrid1.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  1055. this.ultraGrid1.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  1056. this.ultraGrid1.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  1057. this.ultraGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
  1058. this.ultraGrid1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1059. this.ultraGrid1.Location = new System.Drawing.Point(0, 126);
  1060. this.ultraGrid1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1061. this.ultraGrid1.Name = "ultraGrid1";
  1062. this.ultraGrid1.Size = new System.Drawing.Size(527, 360);
  1063. this.ultraGrid1.TabIndex = 0;
  1064. this.ultraGrid1.Text = "ultraGrid1";
  1065. this.ultraGrid1.AfterRowActivate += new System.EventHandler(this.ultraGrid1_AfterRowActivate);
  1066. //
  1067. // ultraExpandableGroupBox2
  1068. //
  1069. this.ultraExpandableGroupBox2.Controls.Add(this.ultraExpandableGroupBoxPanel2);
  1070. this.ultraExpandableGroupBox2.Dock = System.Windows.Forms.DockStyle.Top;
  1071. this.ultraExpandableGroupBox2.ExpandedSize = new System.Drawing.Size(527, 126);
  1072. this.ultraExpandableGroupBox2.Location = new System.Drawing.Point(0, 0);
  1073. this.ultraExpandableGroupBox2.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1074. this.ultraExpandableGroupBox2.Name = "ultraExpandableGroupBox2";
  1075. this.ultraExpandableGroupBox2.Size = new System.Drawing.Size(527, 126);
  1076. this.ultraExpandableGroupBox2.TabIndex = 1;
  1077. this.ultraExpandableGroupBox2.Text = "查询条件";
  1078. //
  1079. // ultraExpandableGroupBoxPanel2
  1080. //
  1081. this.ultraExpandableGroupBoxPanel2.Controls.Add(this.panel1);
  1082. this.ultraExpandableGroupBoxPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
  1083. this.ultraExpandableGroupBoxPanel2.Location = new System.Drawing.Point(3, 21);
  1084. this.ultraExpandableGroupBoxPanel2.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1085. this.ultraExpandableGroupBoxPanel2.Name = "ultraExpandableGroupBoxPanel2";
  1086. this.ultraExpandableGroupBoxPanel2.Size = new System.Drawing.Size(521, 102);
  1087. this.ultraExpandableGroupBoxPanel2.TabIndex = 0;
  1088. //
  1089. // panel1
  1090. //
  1091. this.panel1.Controls.Add(this.label17);
  1092. this.panel1.Controls.Add(this.txt_User_name1);
  1093. this.panel1.Controls.Add(this.txt_type1_M);
  1094. this.panel1.Controls.Add(this.label16);
  1095. this.panel1.Controls.Add(this.label14);
  1096. this.panel1.Controls.Add(this.txt_cardMD_no);
  1097. this.panel1.Controls.Add(this.label2);
  1098. this.panel1.Controls.Add(this.label1);
  1099. this.panel1.Controls.Add(this.txt_org_name);
  1100. this.panel1.Controls.Add(this.txt_Card_No_M);
  1101. this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
  1102. this.panel1.Location = new System.Drawing.Point(0, 0);
  1103. this.panel1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1104. this.panel1.Name = "panel1";
  1105. this.panel1.Size = new System.Drawing.Size(521, 102);
  1106. this.panel1.TabIndex = 3;
  1107. //
  1108. // label17
  1109. //
  1110. this.label17.AutoSize = true;
  1111. this.label17.Location = new System.Drawing.Point(8, 70);
  1112. this.label17.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1113. this.label17.Name = "label17";
  1114. this.label17.Size = new System.Drawing.Size(52, 15);
  1115. this.label17.TabIndex = 184;
  1116. this.label17.Text = "使用者";
  1117. //
  1118. // txt_User_name1
  1119. //
  1120. this.txt_User_name1.Location = new System.Drawing.Point(67, 65);
  1121. this.txt_User_name1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1122. this.txt_User_name1.MaxLength = 200;
  1123. this.txt_User_name1.Name = "txt_User_name1";
  1124. this.txt_User_name1.Size = new System.Drawing.Size(217, 24);
  1125. this.txt_User_name1.TabIndex = 183;
  1126. //
  1127. // txt_type1_M
  1128. //
  1129. this.txt_type1_M.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1130. valueListItem11.DataValue = " ";
  1131. valueListItem11.DisplayText = "全部";
  1132. valueListItem8.DataValue = "1";
  1133. valueListItem8.DisplayText = "员工油卡";
  1134. valueListItem9.DataValue = "2";
  1135. valueListItem9.DisplayText = "骨干油卡";
  1136. this.txt_type1_M.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  1137. valueListItem11,
  1138. valueListItem8,
  1139. valueListItem9});
  1140. this.txt_type1_M.Location = new System.Drawing.Point(347, 36);
  1141. this.txt_type1_M.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1142. this.txt_type1_M.Name = "txt_type1_M";
  1143. this.txt_type1_M.Size = new System.Drawing.Size(152, 24);
  1144. this.txt_type1_M.TabIndex = 182;
  1145. //
  1146. // label16
  1147. //
  1148. this.label16.AutoSize = true;
  1149. this.label16.Location = new System.Drawing.Point(304, 40);
  1150. this.label16.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1151. this.label16.Name = "label16";
  1152. this.label16.Size = new System.Drawing.Size(37, 15);
  1153. this.label16.TabIndex = 182;
  1154. this.label16.Text = "类型";
  1155. //
  1156. // label14
  1157. //
  1158. this.label14.AutoSize = true;
  1159. this.label14.Location = new System.Drawing.Point(8, 41);
  1160. this.label14.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1161. this.label14.Name = "label14";
  1162. this.label14.Size = new System.Drawing.Size(52, 15);
  1163. this.label14.TabIndex = 180;
  1164. this.label14.Text = "副卡号";
  1165. //
  1166. // txt_cardMD_no
  1167. //
  1168. this.txt_cardMD_no.Location = new System.Drawing.Point(67, 36);
  1169. this.txt_cardMD_no.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1170. this.txt_cardMD_no.MaxLength = 200;
  1171. this.txt_cardMD_no.Name = "txt_cardMD_no";
  1172. this.txt_cardMD_no.Size = new System.Drawing.Size(217, 24);
  1173. this.txt_cardMD_no.TabIndex = 179;
  1174. //
  1175. // label2
  1176. //
  1177. this.label2.AutoSize = true;
  1178. this.label2.Location = new System.Drawing.Point(304, 12);
  1179. this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1180. this.label2.Name = "label2";
  1181. this.label2.Size = new System.Drawing.Size(37, 15);
  1182. this.label2.TabIndex = 178;
  1183. this.label2.Text = "部门";
  1184. //
  1185. // label1
  1186. //
  1187. this.label1.AutoSize = true;
  1188. this.label1.Location = new System.Drawing.Point(8, 12);
  1189. this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1190. this.label1.Name = "label1";
  1191. this.label1.Size = new System.Drawing.Size(52, 15);
  1192. this.label1.TabIndex = 177;
  1193. this.label1.Text = "主卡号";
  1194. //
  1195. // txt_org_name
  1196. //
  1197. this.txt_org_name.Location = new System.Drawing.Point(347, 8);
  1198. this.txt_org_name.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1199. this.txt_org_name.MaxLength = 200;
  1200. this.txt_org_name.Name = "txt_org_name";
  1201. this.txt_org_name.Size = new System.Drawing.Size(152, 24);
  1202. this.txt_org_name.TabIndex = 176;
  1203. //
  1204. // txt_Card_No_M
  1205. //
  1206. this.txt_Card_No_M.Location = new System.Drawing.Point(67, 8);
  1207. this.txt_Card_No_M.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1208. this.txt_Card_No_M.MaxLength = 200;
  1209. this.txt_Card_No_M.Name = "txt_Card_No_M";
  1210. this.txt_Card_No_M.Size = new System.Drawing.Size(217, 24);
  1211. this.txt_Card_No_M.TabIndex = 175;
  1212. //
  1213. // ultraExpandableGroupBox3
  1214. //
  1215. this.ultraExpandableGroupBox3.Controls.Add(this.ultraExpandableGroupBoxPanel3);
  1216. this.ultraExpandableGroupBox3.Dock = System.Windows.Forms.DockStyle.Bottom;
  1217. this.ultraExpandableGroupBox3.ExpandedSize = new System.Drawing.Size(1603, 58);
  1218. this.ultraExpandableGroupBox3.Location = new System.Drawing.Point(0, 494);
  1219. this.ultraExpandableGroupBox3.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1220. this.ultraExpandableGroupBox3.Name = "ultraExpandableGroupBox3";
  1221. this.ultraExpandableGroupBox3.Size = new System.Drawing.Size(1603, 58);
  1222. this.ultraExpandableGroupBox3.TabIndex = 181;
  1223. this.ultraExpandableGroupBox3.Text = "主卡编辑区";
  1224. //
  1225. // ultraExpandableGroupBoxPanel3
  1226. //
  1227. this.ultraExpandableGroupBoxPanel3.Controls.Add(this.label6);
  1228. this.ultraExpandableGroupBoxPanel3.Controls.Add(this.txt_card_m_add);
  1229. this.ultraExpandableGroupBoxPanel3.Controls.Add(this.txt_org_add);
  1230. this.ultraExpandableGroupBoxPanel3.Controls.Add(this.label7);
  1231. this.ultraExpandableGroupBoxPanel3.Controls.Add(this.txt_type1_add);
  1232. this.ultraExpandableGroupBoxPanel3.Controls.Add(this.label10);
  1233. this.ultraExpandableGroupBoxPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
  1234. this.ultraExpandableGroupBoxPanel3.Location = new System.Drawing.Point(3, 21);
  1235. this.ultraExpandableGroupBoxPanel3.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1236. this.ultraExpandableGroupBoxPanel3.Name = "ultraExpandableGroupBoxPanel3";
  1237. this.ultraExpandableGroupBoxPanel3.Size = new System.Drawing.Size(1597, 34);
  1238. this.ultraExpandableGroupBoxPanel3.TabIndex = 0;
  1239. //
  1240. // label6
  1241. //
  1242. this.label6.AutoSize = true;
  1243. this.label6.Location = new System.Drawing.Point(299, 6);
  1244. this.label6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1245. this.label6.Name = "label6";
  1246. this.label6.Size = new System.Drawing.Size(37, 15);
  1247. this.label6.TabIndex = 182;
  1248. this.label6.Text = "部门";
  1249. //
  1250. // txt_card_m_add
  1251. //
  1252. this.txt_card_m_add.Location = new System.Drawing.Point(81, 1);
  1253. this.txt_card_m_add.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1254. this.txt_card_m_add.MaxLength = 200;
  1255. this.txt_card_m_add.Name = "txt_card_m_add";
  1256. this.txt_card_m_add.Size = new System.Drawing.Size(208, 24);
  1257. this.txt_card_m_add.TabIndex = 179;
  1258. //
  1259. // txt_org_add
  1260. //
  1261. this.txt_org_add.Location = new System.Drawing.Point(341, 1);
  1262. this.txt_org_add.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1263. this.txt_org_add.MaxLength = 200;
  1264. this.txt_org_add.Name = "txt_org_add";
  1265. this.txt_org_add.Size = new System.Drawing.Size(208, 24);
  1266. this.txt_org_add.TabIndex = 180;
  1267. //
  1268. // label7
  1269. //
  1270. this.label7.AutoSize = true;
  1271. this.label7.Location = new System.Drawing.Point(21, 8);
  1272. this.label7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1273. this.label7.Name = "label7";
  1274. this.label7.Size = new System.Drawing.Size(52, 15);
  1275. this.label7.TabIndex = 181;
  1276. this.label7.Text = "主卡号";
  1277. //
  1278. // txt_type1_add
  1279. //
  1280. this.txt_type1_add.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1281. valueListItem2.DataValue = "1";
  1282. valueListItem2.DisplayText = "员工";
  1283. valueListItem1.DataValue = "2";
  1284. valueListItem1.DisplayText = "骨干";
  1285. this.txt_type1_add.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  1286. valueListItem2,
  1287. valueListItem1});
  1288. this.txt_type1_add.Location = new System.Drawing.Point(601, 1);
  1289. this.txt_type1_add.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1290. this.txt_type1_add.Name = "txt_type1_add";
  1291. this.txt_type1_add.Size = new System.Drawing.Size(208, 24);
  1292. this.txt_type1_add.TabIndex = 187;
  1293. //
  1294. // label10
  1295. //
  1296. this.label10.AutoSize = true;
  1297. this.label10.Location = new System.Drawing.Point(559, 6);
  1298. this.label10.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1299. this.label10.Name = "label10";
  1300. this.label10.Size = new System.Drawing.Size(37, 15);
  1301. this.label10.TabIndex = 192;
  1302. this.label10.Text = "类型";
  1303. //
  1304. // ultraTabPageControl2
  1305. //
  1306. this.ultraTabPageControl2.Controls.Add(this.panel5);
  1307. this.ultraTabPageControl2.Controls.Add(this.panel4);
  1308. this.ultraTabPageControl2.Location = new System.Drawing.Point(-13333, -12500);
  1309. this.ultraTabPageControl2.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1310. this.ultraTabPageControl2.Name = "ultraTabPageControl2";
  1311. this.ultraTabPageControl2.Size = new System.Drawing.Size(1603, 552);
  1312. //
  1313. // panel5
  1314. //
  1315. this.panel5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1316. this.panel5.Controls.Add(this.ultraGrid4);
  1317. this.panel5.Controls.Add(this.ultraGrid3);
  1318. this.panel5.Dock = System.Windows.Forms.DockStyle.Fill;
  1319. this.panel5.Location = new System.Drawing.Point(0, 38);
  1320. this.panel5.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1321. this.panel5.Name = "panel5";
  1322. this.panel5.Size = new System.Drawing.Size(1603, 514);
  1323. this.panel5.TabIndex = 6;
  1324. //
  1325. // ultraGrid4
  1326. //
  1327. this.ultraGrid4.DataMember = "Table1";
  1328. this.ultraGrid4.DataSource = this.changeRecord;
  1329. appearance37.BackColor = System.Drawing.SystemColors.Window;
  1330. appearance37.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  1331. this.ultraGrid4.DisplayLayout.Appearance = appearance37;
  1332. ultraGridColumn17.Header.VisiblePosition = 0;
  1333. ultraGridColumn18.Header.VisiblePosition = 2;
  1334. ultraGridColumn19.Header.VisiblePosition = 3;
  1335. ultraGridColumn20.Header.VisiblePosition = 4;
  1336. ultraGridColumn21.Header.VisiblePosition = 5;
  1337. ultraGridColumn22.Header.VisiblePosition = 6;
  1338. ultraGridColumn23.Header.VisiblePosition = 1;
  1339. ultraGridBand3.Columns.AddRange(new object[] {
  1340. ultraGridColumn17,
  1341. ultraGridColumn18,
  1342. ultraGridColumn19,
  1343. ultraGridColumn20,
  1344. ultraGridColumn21,
  1345. ultraGridColumn22,
  1346. ultraGridColumn23});
  1347. this.ultraGrid4.DisplayLayout.BandsSerializer.Add(ultraGridBand3);
  1348. this.ultraGrid4.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1349. this.ultraGrid4.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  1350. appearance38.BackColor = System.Drawing.SystemColors.ActiveBorder;
  1351. appearance38.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1352. appearance38.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  1353. appearance38.BorderColor = System.Drawing.SystemColors.Window;
  1354. this.ultraGrid4.DisplayLayout.GroupByBox.Appearance = appearance38;
  1355. appearance40.ForeColor = System.Drawing.SystemColors.GrayText;
  1356. this.ultraGrid4.DisplayLayout.GroupByBox.BandLabelAppearance = appearance40;
  1357. this.ultraGrid4.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1358. this.ultraGrid4.DisplayLayout.GroupByBox.Hidden = true;
  1359. appearance39.BackColor = System.Drawing.SystemColors.ControlLightLight;
  1360. appearance39.BackColor2 = System.Drawing.SystemColors.Control;
  1361. appearance39.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1362. appearance39.ForeColor = System.Drawing.SystemColors.GrayText;
  1363. this.ultraGrid4.DisplayLayout.GroupByBox.PromptAppearance = appearance39;
  1364. this.ultraGrid4.DisplayLayout.MaxColScrollRegions = 1;
  1365. this.ultraGrid4.DisplayLayout.MaxRowScrollRegions = 1;
  1366. appearance43.BackColor = System.Drawing.SystemColors.Window;
  1367. appearance43.ForeColor = System.Drawing.SystemColors.ControlText;
  1368. this.ultraGrid4.DisplayLayout.Override.ActiveCellAppearance = appearance43;
  1369. appearance46.BackColor = System.Drawing.SystemColors.Highlight;
  1370. appearance46.ForeColor = System.Drawing.SystemColors.HighlightText;
  1371. this.ultraGrid4.DisplayLayout.Override.ActiveRowAppearance = appearance46;
  1372. this.ultraGrid4.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  1373. this.ultraGrid4.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  1374. appearance48.BackColor = System.Drawing.SystemColors.Window;
  1375. this.ultraGrid4.DisplayLayout.Override.CardAreaAppearance = appearance48;
  1376. appearance44.BorderColor = System.Drawing.Color.Silver;
  1377. appearance44.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  1378. this.ultraGrid4.DisplayLayout.Override.CellAppearance = appearance44;
  1379. this.ultraGrid4.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  1380. this.ultraGrid4.DisplayLayout.Override.CellPadding = 0;
  1381. appearance42.BackColor = System.Drawing.SystemColors.Control;
  1382. appearance42.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1383. appearance42.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  1384. appearance42.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1385. appearance42.BorderColor = System.Drawing.SystemColors.Window;
  1386. this.ultraGrid4.DisplayLayout.Override.GroupByRowAppearance = appearance42;
  1387. appearance41.TextHAlignAsString = "Left";
  1388. this.ultraGrid4.DisplayLayout.Override.HeaderAppearance = appearance41;
  1389. this.ultraGrid4.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  1390. this.ultraGrid4.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  1391. appearance47.BackColor = System.Drawing.SystemColors.Window;
  1392. appearance47.BorderColor = System.Drawing.Color.Silver;
  1393. this.ultraGrid4.DisplayLayout.Override.RowAppearance = appearance47;
  1394. this.ultraGrid4.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  1395. appearance45.BackColor = System.Drawing.SystemColors.ControlLight;
  1396. this.ultraGrid4.DisplayLayout.Override.TemplateAddRowAppearance = appearance45;
  1397. this.ultraGrid4.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  1398. this.ultraGrid4.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  1399. this.ultraGrid4.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  1400. this.ultraGrid4.Dock = System.Windows.Forms.DockStyle.Fill;
  1401. this.ultraGrid4.Location = new System.Drawing.Point(0, 0);
  1402. this.ultraGrid4.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1403. this.ultraGrid4.Name = "ultraGrid4";
  1404. this.ultraGrid4.Size = new System.Drawing.Size(1601, 512);
  1405. this.ultraGrid4.TabIndex = 6;
  1406. this.ultraGrid4.Text = "ultraGrid4";
  1407. //
  1408. // changeRecord
  1409. //
  1410. this.changeRecord.DataSetName = "NewDataSet";
  1411. this.changeRecord.Tables.AddRange(new System.Data.DataTable[] {
  1412. this.dataTable3});
  1413. //
  1414. // dataTable3
  1415. //
  1416. this.dataTable3.Columns.AddRange(new System.Data.DataColumn[] {
  1417. this.dataColumn8,
  1418. this.dataColumn17,
  1419. this.dataColumn18,
  1420. this.dataColumn19,
  1421. this.dataColumn20,
  1422. this.dataColumn21,
  1423. this.dataColumn22});
  1424. this.dataTable3.TableName = "Table1";
  1425. //
  1426. // dataColumn8
  1427. //
  1428. this.dataColumn8.Caption = "记录号";
  1429. this.dataColumn8.ColumnName = "CHANGEID";
  1430. //
  1431. // dataColumn17
  1432. //
  1433. this.dataColumn17.Caption = "变更类型";
  1434. this.dataColumn17.ColumnName = "CHANGETYPE";
  1435. //
  1436. // dataColumn18
  1437. //
  1438. this.dataColumn18.Caption = "原值";
  1439. this.dataColumn18.ColumnName = "OLDVALUE";
  1440. //
  1441. // dataColumn19
  1442. //
  1443. this.dataColumn19.Caption = "新值";
  1444. this.dataColumn19.ColumnName = "NEWVALUE";
  1445. //
  1446. // dataColumn20
  1447. //
  1448. this.dataColumn20.Caption = "操作者";
  1449. this.dataColumn20.ColumnName = "CREATENAME";
  1450. //
  1451. // dataColumn21
  1452. //
  1453. this.dataColumn21.Caption = "操作时间";
  1454. this.dataColumn21.ColumnName = "CREATETIME";
  1455. //
  1456. // dataColumn22
  1457. //
  1458. this.dataColumn22.Caption = "卡号";
  1459. this.dataColumn22.ColumnName = "CARDID";
  1460. //
  1461. // ultraGrid3
  1462. //
  1463. appearance1.BackColor = System.Drawing.SystemColors.Window;
  1464. appearance1.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  1465. this.ultraGrid3.DisplayLayout.Appearance = appearance1;
  1466. this.ultraGrid3.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1467. this.ultraGrid3.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  1468. appearance2.BackColor = System.Drawing.SystemColors.ActiveBorder;
  1469. appearance2.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1470. appearance2.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  1471. appearance2.BorderColor = System.Drawing.SystemColors.Window;
  1472. this.ultraGrid3.DisplayLayout.GroupByBox.Appearance = appearance2;
  1473. appearance4.ForeColor = System.Drawing.SystemColors.GrayText;
  1474. this.ultraGrid3.DisplayLayout.GroupByBox.BandLabelAppearance = appearance4;
  1475. this.ultraGrid3.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1476. this.ultraGrid3.DisplayLayout.GroupByBox.Hidden = true;
  1477. appearance3.BackColor = System.Drawing.SystemColors.ControlLightLight;
  1478. appearance3.BackColor2 = System.Drawing.SystemColors.Control;
  1479. appearance3.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1480. appearance3.ForeColor = System.Drawing.SystemColors.GrayText;
  1481. this.ultraGrid3.DisplayLayout.GroupByBox.PromptAppearance = appearance3;
  1482. this.ultraGrid3.DisplayLayout.MaxColScrollRegions = 1;
  1483. this.ultraGrid3.DisplayLayout.MaxRowScrollRegions = 1;
  1484. appearance7.BackColor = System.Drawing.SystemColors.Window;
  1485. appearance7.ForeColor = System.Drawing.SystemColors.ControlText;
  1486. this.ultraGrid3.DisplayLayout.Override.ActiveCellAppearance = appearance7;
  1487. appearance10.BackColor = System.Drawing.SystemColors.Highlight;
  1488. appearance10.ForeColor = System.Drawing.SystemColors.HighlightText;
  1489. this.ultraGrid3.DisplayLayout.Override.ActiveRowAppearance = appearance10;
  1490. this.ultraGrid3.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  1491. this.ultraGrid3.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  1492. appearance12.BackColor = System.Drawing.SystemColors.Window;
  1493. this.ultraGrid3.DisplayLayout.Override.CardAreaAppearance = appearance12;
  1494. appearance8.BorderColor = System.Drawing.Color.Silver;
  1495. appearance8.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  1496. this.ultraGrid3.DisplayLayout.Override.CellAppearance = appearance8;
  1497. this.ultraGrid3.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  1498. this.ultraGrid3.DisplayLayout.Override.CellPadding = 0;
  1499. appearance6.BackColor = System.Drawing.SystemColors.Control;
  1500. appearance6.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1501. appearance6.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  1502. appearance6.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1503. appearance6.BorderColor = System.Drawing.SystemColors.Window;
  1504. this.ultraGrid3.DisplayLayout.Override.GroupByRowAppearance = appearance6;
  1505. appearance5.TextHAlignAsString = "Left";
  1506. this.ultraGrid3.DisplayLayout.Override.HeaderAppearance = appearance5;
  1507. this.ultraGrid3.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  1508. this.ultraGrid3.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  1509. appearance11.BackColor = System.Drawing.SystemColors.Window;
  1510. appearance11.BorderColor = System.Drawing.Color.Silver;
  1511. this.ultraGrid3.DisplayLayout.Override.RowAppearance = appearance11;
  1512. this.ultraGrid3.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  1513. appearance9.BackColor = System.Drawing.SystemColors.ControlLight;
  1514. this.ultraGrid3.DisplayLayout.Override.TemplateAddRowAppearance = appearance9;
  1515. this.ultraGrid3.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  1516. this.ultraGrid3.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  1517. this.ultraGrid3.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  1518. this.ultraGrid3.Dock = System.Windows.Forms.DockStyle.Fill;
  1519. this.ultraGrid3.Location = new System.Drawing.Point(0, 0);
  1520. this.ultraGrid3.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1521. this.ultraGrid3.Name = "ultraGrid3";
  1522. this.ultraGrid3.Size = new System.Drawing.Size(1601, 512);
  1523. this.ultraGrid3.TabIndex = 5;
  1524. this.ultraGrid3.Text = "ultraGrid3";
  1525. //
  1526. // panel4
  1527. //
  1528. this.panel4.Controls.Add(this.ultraLabel1);
  1529. this.panel4.Controls.Add(this.ck_ctime);
  1530. this.panel4.Controls.Add(this.ultraLabel26);
  1531. this.panel4.Controls.Add(this.txtCreateTimeEnd);
  1532. this.panel4.Controls.Add(this.txtCreateTimeStart);
  1533. this.panel4.Controls.Add(this.label15);
  1534. this.panel4.Controls.Add(this.txt_card_change_d);
  1535. this.panel4.Dock = System.Windows.Forms.DockStyle.Top;
  1536. this.panel4.Location = new System.Drawing.Point(0, 0);
  1537. this.panel4.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1538. this.panel4.Name = "panel4";
  1539. this.panel4.Size = new System.Drawing.Size(1603, 38);
  1540. this.panel4.TabIndex = 4;
  1541. //
  1542. // ultraLabel1
  1543. //
  1544. this.ultraLabel1.AutoSize = true;
  1545. this.ultraLabel1.Location = new System.Drawing.Point(477, 8);
  1546. this.ultraLabel1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1547. this.ultraLabel1.Name = "ultraLabel1";
  1548. this.ultraLabel1.Size = new System.Drawing.Size(28, 24);
  1549. this.ultraLabel1.TabIndex = 182;
  1550. this.ultraLabel1.Text = "至";
  1551. //
  1552. // ck_ctime
  1553. //
  1554. this.ck_ctime.AutoSize = true;
  1555. this.ck_ctime.Location = new System.Drawing.Point(219, 9);
  1556. this.ck_ctime.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1557. this.ck_ctime.Name = "ck_ctime";
  1558. this.ck_ctime.Size = new System.Drawing.Size(18, 17);
  1559. this.ck_ctime.TabIndex = 181;
  1560. this.ck_ctime.UseVisualStyleBackColor = true;
  1561. this.ck_ctime.CheckedChanged += new System.EventHandler(this.ck_ctime_CheckedChanged);
  1562. //
  1563. // ultraLabel26
  1564. //
  1565. this.ultraLabel26.AutoSize = true;
  1566. this.ultraLabel26.Location = new System.Drawing.Point(249, 8);
  1567. this.ultraLabel26.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1568. this.ultraLabel26.Name = "ultraLabel26";
  1569. this.ultraLabel26.Size = new System.Drawing.Size(89, 24);
  1570. this.ultraLabel26.TabIndex = 180;
  1571. this.ultraLabel26.Text = "操作时间";
  1572. //
  1573. // txtCreateTimeEnd
  1574. //
  1575. this.txtCreateTimeEnd.DateButtons.Add(dateButton1);
  1576. this.txtCreateTimeEnd.Format = "yyyy/MM/dd";
  1577. this.txtCreateTimeEnd.Location = new System.Drawing.Point(505, 5);
  1578. this.txtCreateTimeEnd.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1579. this.txtCreateTimeEnd.Name = "txtCreateTimeEnd";
  1580. this.txtCreateTimeEnd.NonAutoSizeHeight = 25;
  1581. this.txtCreateTimeEnd.Size = new System.Drawing.Size(143, 25);
  1582. this.txtCreateTimeEnd.TabIndex = 179;
  1583. this.txtCreateTimeEnd.Value = new System.DateTime(2016, 3, 1, 0, 0, 0, 0);
  1584. //
  1585. // txtCreateTimeStart
  1586. //
  1587. dateButton2.Date = new System.DateTime(((long)(0)));
  1588. this.txtCreateTimeStart.DateButtons.Add(dateButton2);
  1589. this.txtCreateTimeStart.Format = "yyyy/MM/dd";
  1590. this.txtCreateTimeStart.Location = new System.Drawing.Point(327, 5);
  1591. this.txtCreateTimeStart.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1592. this.txtCreateTimeStart.Name = "txtCreateTimeStart";
  1593. this.txtCreateTimeStart.NonAutoSizeHeight = 25;
  1594. this.txtCreateTimeStart.Size = new System.Drawing.Size(143, 25);
  1595. this.txtCreateTimeStart.TabIndex = 178;
  1596. this.txtCreateTimeStart.Value = "2015/11/17 0:00:00";
  1597. //
  1598. // label15
  1599. //
  1600. this.label15.AutoSize = true;
  1601. this.label15.Location = new System.Drawing.Point(13, 10);
  1602. this.label15.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1603. this.label15.Name = "label15";
  1604. this.label15.Size = new System.Drawing.Size(37, 15);
  1605. this.label15.TabIndex = 177;
  1606. this.label15.Text = "卡号";
  1607. //
  1608. // txt_card_change_d
  1609. //
  1610. this.txt_card_change_d.Location = new System.Drawing.Point(57, 5);
  1611. this.txt_card_change_d.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1612. this.txt_card_change_d.MaxLength = 200;
  1613. this.txt_card_change_d.Name = "txt_card_change_d";
  1614. this.txt_card_change_d.Size = new System.Drawing.Size(149, 24);
  1615. this.txt_card_change_d.TabIndex = 175;
  1616. //
  1617. // ultraTabControl1
  1618. //
  1619. this.ultraTabControl1.Controls.Add(this.ultraTabSharedControlsPage1);
  1620. this.ultraTabControl1.Controls.Add(this.ultraTabPageControl1);
  1621. this.ultraTabControl1.Controls.Add(this.ultraTabPageControl2);
  1622. this.ultraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
  1623. this.ultraTabControl1.Location = new System.Drawing.Point(0, 0);
  1624. this.ultraTabControl1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1625. this.ultraTabControl1.Name = "ultraTabControl1";
  1626. this.ultraTabControl1.SharedControlsPage = this.ultraTabSharedControlsPage1;
  1627. this.ultraTabControl1.Size = new System.Drawing.Size(1607, 581);
  1628. this.ultraTabControl1.TabIndex = 5;
  1629. this.ultraTabControl1.TabOrientation = Infragistics.Win.UltraWinTabs.TabOrientation.BottomLeft;
  1630. ultraTab1.TabPage = this.ultraTabPageControl1;
  1631. ultraTab1.Text = "油卡维护";
  1632. ultraTab2.TabPage = this.ultraTabPageControl2;
  1633. ultraTab2.Text = "操作记录";
  1634. this.ultraTabControl1.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
  1635. ultraTab1,
  1636. ultraTab2});
  1637. this.ultraTabControl1.SelectedTabChanged += new Infragistics.Win.UltraWinTabControl.SelectedTabChangedEventHandler(this.ultraTabControl1_SelectedTabChanged);
  1638. //
  1639. // ultraTabSharedControlsPage1
  1640. //
  1641. this.ultraTabSharedControlsPage1.Location = new System.Drawing.Point(-10000, -10000);
  1642. this.ultraTabSharedControlsPage1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1643. this.ultraTabSharedControlsPage1.Name = "ultraTabSharedControlsPage1";
  1644. this.ultraTabSharedControlsPage1.Size = new System.Drawing.Size(1603, 552);
  1645. //
  1646. // FrmPurOilCardMaintain
  1647. //
  1648. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  1649. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  1650. this.ClientSize = new System.Drawing.Size(1607, 581);
  1651. this.Controls.Add(this.ultraTabControl1);
  1652. this.Margin = new System.Windows.Forms.Padding(7, 6, 7, 6);
  1653. this.Name = "FrmPurOilCardMaintain";
  1654. this.Text = "油卡维护";
  1655. this.Load += new System.EventHandler(this.FrmPurOilCardMaintain_Load);
  1656. this.Shown += new System.EventHandler(this.FrmPurOilCardMaintain_Shown);
  1657. this.ultraTabPageControl1.ResumeLayout(false);
  1658. this.panel2.ResumeLayout(false);
  1659. this.panel6.ResumeLayout(false);
  1660. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).EndInit();
  1661. ((System.ComponentModel.ISupportInitialize)(this.card)).EndInit();
  1662. ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
  1663. ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).EndInit();
  1664. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox4)).EndInit();
  1665. this.ultraExpandableGroupBox4.ResumeLayout(false);
  1666. this.ultraExpandableGroupBoxPanel4.ResumeLayout(false);
  1667. this.ultraExpandableGroupBoxPanel4_Fill_Panel.ResumeLayout(false);
  1668. this.ultraExpandableGroupBoxPanel4_Fill_Panel.PerformLayout();
  1669. ((System.ComponentModel.ISupportInitialize)(this.txt_car_add)).EndInit();
  1670. ((System.ComponentModel.ISupportInitialize)(this.txt_remark)).EndInit();
  1671. ((System.ComponentModel.ISupportInitialize)(this.txt_card_no_add)).EndInit();
  1672. ((System.ComponentModel.ISupportInitialize)(this.txt_type2_add)).EndInit();
  1673. ((System.ComponentModel.ISupportInitialize)(this.txt_use_name_add)).EndInit();
  1674. ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).EndInit();
  1675. this.panel3.ResumeLayout(false);
  1676. this.panel3.PerformLayout();
  1677. ((System.ComponentModel.ISupportInitialize)(this.txt_status)).EndInit();
  1678. ((System.ComponentModel.ISupportInitialize)(this.txt_useName)).EndInit();
  1679. ((System.ComponentModel.ISupportInitialize)(this.txt_card_d_no)).EndInit();
  1680. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).EndInit();
  1681. this.ultraExpandableGroupBox1.ResumeLayout(false);
  1682. this.ultraExpandableGroupBoxPanel1.ResumeLayout(false);
  1683. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
  1684. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox2)).EndInit();
  1685. this.ultraExpandableGroupBox2.ResumeLayout(false);
  1686. this.ultraExpandableGroupBoxPanel2.ResumeLayout(false);
  1687. this.panel1.ResumeLayout(false);
  1688. this.panel1.PerformLayout();
  1689. ((System.ComponentModel.ISupportInitialize)(this.txt_User_name1)).EndInit();
  1690. ((System.ComponentModel.ISupportInitialize)(this.txt_type1_M)).EndInit();
  1691. ((System.ComponentModel.ISupportInitialize)(this.txt_cardMD_no)).EndInit();
  1692. ((System.ComponentModel.ISupportInitialize)(this.txt_org_name)).EndInit();
  1693. ((System.ComponentModel.ISupportInitialize)(this.txt_Card_No_M)).EndInit();
  1694. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox3)).EndInit();
  1695. this.ultraExpandableGroupBox3.ResumeLayout(false);
  1696. this.ultraExpandableGroupBoxPanel3.ResumeLayout(false);
  1697. this.ultraExpandableGroupBoxPanel3.PerformLayout();
  1698. ((System.ComponentModel.ISupportInitialize)(this.txt_card_m_add)).EndInit();
  1699. ((System.ComponentModel.ISupportInitialize)(this.txt_org_add)).EndInit();
  1700. ((System.ComponentModel.ISupportInitialize)(this.txt_type1_add)).EndInit();
  1701. this.ultraTabPageControl2.ResumeLayout(false);
  1702. this.panel5.ResumeLayout(false);
  1703. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid4)).EndInit();
  1704. ((System.ComponentModel.ISupportInitialize)(this.changeRecord)).EndInit();
  1705. ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).EndInit();
  1706. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).EndInit();
  1707. this.panel4.ResumeLayout(false);
  1708. this.panel4.PerformLayout();
  1709. ((System.ComponentModel.ISupportInitialize)(this.txtCreateTimeEnd)).EndInit();
  1710. ((System.ComponentModel.ISupportInitialize)(this.txtCreateTimeStart)).EndInit();
  1711. ((System.ComponentModel.ISupportInitialize)(this.txt_card_change_d)).EndInit();
  1712. ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).EndInit();
  1713. this.ultraTabControl1.ResumeLayout(false);
  1714. this.ResumeLayout(false);
  1715. }
  1716. #endregion
  1717. private System.Windows.Forms.Panel panel1;
  1718. private System.Windows.Forms.Label label2;
  1719. private System.Windows.Forms.Label label1;
  1720. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_org_name;
  1721. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_Card_No_M;
  1722. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid1;
  1723. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid2;
  1724. private System.Windows.Forms.Panel panel3;
  1725. private System.Windows.Forms.Label label3;
  1726. private System.Windows.Forms.Label label4;
  1727. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_useName;
  1728. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_card_d_no;
  1729. private System.Data.DataSet card;
  1730. private System.Data.DataTable dataTable1;
  1731. private System.Data.DataColumn dataColumn2;
  1732. private System.Data.DataColumn dataColumn3;
  1733. private System.Data.DataColumn dataColumn5;
  1734. private System.Data.DataColumn dataColumn6;
  1735. private System.Data.DataTable dataTable2;
  1736. private System.Data.DataColumn dataColumn9;
  1737. private System.Data.DataColumn dataColumn10;
  1738. private System.Data.DataColumn dataColumn11;
  1739. private System.Data.DataColumn dataColumn12;
  1740. private System.Data.DataColumn dataColumn13;
  1741. private System.Data.DataColumn dataColumn14;
  1742. private System.Data.DataColumn dataColumn16;
  1743. private System.Windows.Forms.Label label5;
  1744. private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_status;
  1745. private System.Windows.Forms.Label label6;
  1746. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_org_add;
  1747. private System.Windows.Forms.Label label7;
  1748. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_card_m_add;
  1749. private System.Windows.Forms.Label label11;
  1750. private System.Windows.Forms.Label label10;
  1751. private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_type2_add;
  1752. private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_type1_add;
  1753. private System.Windows.Forms.Label label8;
  1754. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_card_no_add;
  1755. private System.Windows.Forms.Label label9;
  1756. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_use_name_add;
  1757. private System.Data.DataColumn dataColumn1;
  1758. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_remark;
  1759. private System.Windows.Forms.Label label12;
  1760. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_car_add;
  1761. private System.Windows.Forms.Label label13;
  1762. private System.Data.DataColumn dataColumn4;
  1763. private System.Data.DataColumn dataColumn7;
  1764. private Infragistics.Win.UltraWinTabControl.UltraTabControl ultraTabControl1;
  1765. private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage1;
  1766. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl1;
  1767. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl2;
  1768. private System.Windows.Forms.Panel panel4;
  1769. private System.Windows.Forms.Label label15;
  1770. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_card_change_d;
  1771. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid3;
  1772. private System.Windows.Forms.Panel panel5;
  1773. private Infragistics.Win.Misc.UltraLabel ultraLabel1;
  1774. private System.Windows.Forms.CheckBox ck_ctime;
  1775. private Infragistics.Win.Misc.UltraLabel ultraLabel26;
  1776. private Infragistics.Win.UltraWinSchedule.UltraCalendarCombo txtCreateTimeEnd;
  1777. private Infragistics.Win.UltraWinSchedule.UltraCalendarCombo txtCreateTimeStart;
  1778. private System.Data.DataSet changeRecord;
  1779. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid4;
  1780. private System.Data.DataTable dataTable3;
  1781. private System.Data.DataColumn dataColumn8;
  1782. private System.Data.DataColumn dataColumn17;
  1783. private System.Data.DataColumn dataColumn18;
  1784. private System.Data.DataColumn dataColumn19;
  1785. private System.Data.DataColumn dataColumn20;
  1786. private System.Data.DataColumn dataColumn21;
  1787. private System.Data.DataColumn dataColumn22;
  1788. private System.Data.DataColumn dataColumn23;
  1789. private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox3;
  1790. private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel3;
  1791. private System.Windows.Forms.Panel panel2;
  1792. private System.Windows.Forms.Panel panel6;
  1793. private Infragistics.Win.UltraWinToolbars.UltraToolbarsManager ultraToolbarsManager1;
  1794. private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox1;
  1795. private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel1;
  1796. private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox2;
  1797. private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel2;
  1798. private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox4;
  1799. private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel4;
  1800. private System.Windows.Forms.Panel ultraExpandableGroupBoxPanel4_Fill_Panel;
  1801. private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Left;
  1802. private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Right;
  1803. private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Top;
  1804. private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Bottom;
  1805. private System.Windows.Forms.Button btn_query_d;
  1806. private System.Data.DataColumn dataColumn24;
  1807. private System.Windows.Forms.Label label14;
  1808. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_cardMD_no;
  1809. private System.Windows.Forms.Label label16;
  1810. private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_type1_M;
  1811. private System.Windows.Forms.CheckBox ck_is_all;
  1812. private System.Windows.Forms.Label label17;
  1813. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_User_name1;
  1814. }
  1815. }