| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821 |
- namespace Pur.require_plan
- {
- partial class FrmPurOilCardMaintain
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- this.components = new System.ComponentModel.Container();
- Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table2", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("USERNAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CAR");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OILCARDID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OILCARDMID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TYPE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATENAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATETIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("remark");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("id");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("status");
- Infragistics.Win.Appearance appearance31 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance32 = new Infragistics.Win.Appearance();
- 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);
- Infragistics.Win.Appearance appearance33 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance20 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
- Infragistics.Win.ValueListItem valueListItem3 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem4 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem5 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem6 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem7 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar1");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool2 = new Infragistics.Win.UltraWinToolbars.ButtonTool("doEdit");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool3 = new Infragistics.Win.UltraWinToolbars.ButtonTool("doAdd");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool4 = new Infragistics.Win.UltraWinToolbars.ButtonTool("doSuspend");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool5 = new Infragistics.Win.UltraWinToolbars.ButtonTool("cancelSuspend");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool6 = new Infragistics.Win.UltraWinToolbars.ButtonTool("doCancel");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool7 = new Infragistics.Win.UltraWinToolbars.ButtonTool("doQuery");
- Infragistics.Win.Appearance appearance68 = new Infragistics.Win.Appearance();
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmPurOilCardMaintain));
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool8 = new Infragistics.Win.UltraWinToolbars.ButtonTool("doEdit");
- Infragistics.Win.Appearance appearance69 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool9 = new Infragistics.Win.UltraWinToolbars.ButtonTool("doAdd");
- Infragistics.Win.Appearance appearance70 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool10 = new Infragistics.Win.UltraWinToolbars.ButtonTool("doSuspend");
- Infragistics.Win.Appearance appearance71 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool11 = new Infragistics.Win.UltraWinToolbars.ButtonTool("cancelSuspend");
- Infragistics.Win.Appearance appearance72 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool12 = new Infragistics.Win.UltraWinToolbars.ButtonTool("doCancel");
- Infragistics.Win.Appearance appearance73 = new Infragistics.Win.Appearance();
- Infragistics.Win.ValueListItem valueListItem12 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem13 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem14 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem15 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.Appearance appearance49 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OILCARDMID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("USERORGNAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATENAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATETIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Id");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("type");
- Infragistics.Win.Appearance appearance34 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance35 = new Infragistics.Win.Appearance();
- 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);
- Infragistics.Win.Appearance appearance36 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance53 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance54 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance55 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance56 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance57 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance58 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance59 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance60 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance61 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance62 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance63 = new Infragistics.Win.Appearance();
- Infragistics.Win.ValueListItem valueListItem11 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem8 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem9 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem2 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem1 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.Appearance appearance37 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand3 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CHANGEID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CHANGETYPE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OLDVALUE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("NEWVALUE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATENAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATETIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CARDID");
- Infragistics.Win.Appearance appearance38 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance40 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance39 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance43 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance46 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance48 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance44 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance42 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance41 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance47 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance45 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton1 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
- Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton2 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab1 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab2 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- this.ultraTabPageControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.panel2 = new System.Windows.Forms.Panel();
- this.panel6 = new System.Windows.Forms.Panel();
- this.ultraGrid2 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.card = new System.Data.DataSet();
- this.dataTable1 = new System.Data.DataTable();
- this.dataColumn2 = new System.Data.DataColumn();
- this.dataColumn3 = new System.Data.DataColumn();
- this.dataColumn5 = new System.Data.DataColumn();
- this.dataColumn6 = new System.Data.DataColumn();
- this.dataColumn4 = new System.Data.DataColumn();
- this.dataColumn24 = new System.Data.DataColumn();
- this.dataTable2 = new System.Data.DataTable();
- this.dataColumn9 = new System.Data.DataColumn();
- this.dataColumn10 = new System.Data.DataColumn();
- this.dataColumn11 = new System.Data.DataColumn();
- this.dataColumn12 = new System.Data.DataColumn();
- this.dataColumn13 = new System.Data.DataColumn();
- this.dataColumn14 = new System.Data.DataColumn();
- this.dataColumn16 = new System.Data.DataColumn();
- this.dataColumn1 = new System.Data.DataColumn();
- this.dataColumn7 = new System.Data.DataColumn();
- this.dataColumn23 = new System.Data.DataColumn();
- this.ultraExpandableGroupBox4 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
- this.ultraExpandableGroupBoxPanel4 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
- this.ultraExpandableGroupBoxPanel4_Fill_Panel = new System.Windows.Forms.Panel();
- this.txt_car_add = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_remark = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_card_no_add = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_type2_add = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.label13 = new System.Windows.Forms.Label();
- this.txt_use_name_add = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.label12 = new System.Windows.Forms.Label();
- this.label11 = new System.Windows.Forms.Label();
- this.label9 = new System.Windows.Forms.Label();
- this.label8 = new System.Windows.Forms.Label();
- this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
- this.ultraToolbarsManager1 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
- this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
- this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Top = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
- this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
- this.panel3 = new System.Windows.Forms.Panel();
- this.ck_is_all = new System.Windows.Forms.CheckBox();
- this.btn_query_d = new System.Windows.Forms.Button();
- this.label5 = new System.Windows.Forms.Label();
- this.txt_status = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.label3 = new System.Windows.Forms.Label();
- this.label4 = new System.Windows.Forms.Label();
- this.txt_useName = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_card_d_no = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraExpandableGroupBox1 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
- this.ultraExpandableGroupBoxPanel1 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
- this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.ultraExpandableGroupBox2 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
- this.ultraExpandableGroupBoxPanel2 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
- this.panel1 = new System.Windows.Forms.Panel();
- this.label17 = new System.Windows.Forms.Label();
- this.txt_User_name1 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_type1_M = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.label16 = new System.Windows.Forms.Label();
- this.label14 = new System.Windows.Forms.Label();
- this.txt_cardMD_no = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.label2 = new System.Windows.Forms.Label();
- this.label1 = new System.Windows.Forms.Label();
- this.txt_org_name = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_Card_No_M = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraExpandableGroupBox3 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
- this.ultraExpandableGroupBoxPanel3 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
- this.label6 = new System.Windows.Forms.Label();
- this.txt_card_m_add = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_org_add = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.label7 = new System.Windows.Forms.Label();
- this.txt_type1_add = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.label10 = new System.Windows.Forms.Label();
- this.ultraTabPageControl2 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.panel5 = new System.Windows.Forms.Panel();
- this.ultraGrid4 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.changeRecord = new System.Data.DataSet();
- this.dataTable3 = new System.Data.DataTable();
- this.dataColumn8 = new System.Data.DataColumn();
- this.dataColumn17 = new System.Data.DataColumn();
- this.dataColumn18 = new System.Data.DataColumn();
- this.dataColumn19 = new System.Data.DataColumn();
- this.dataColumn20 = new System.Data.DataColumn();
- this.dataColumn21 = new System.Data.DataColumn();
- this.dataColumn22 = new System.Data.DataColumn();
- this.ultraGrid3 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.panel4 = new System.Windows.Forms.Panel();
- this.ultraLabel1 = new Infragistics.Win.Misc.UltraLabel();
- this.ck_ctime = new System.Windows.Forms.CheckBox();
- this.ultraLabel26 = new Infragistics.Win.Misc.UltraLabel();
- this.txtCreateTimeEnd = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
- this.txtCreateTimeStart = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
- this.label15 = new System.Windows.Forms.Label();
- this.txt_card_change_d = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTabControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
- this.ultraTabSharedControlsPage1 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
- this.ultraTabPageControl1.SuspendLayout();
- this.panel2.SuspendLayout();
- this.panel6.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.card)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox4)).BeginInit();
- this.ultraExpandableGroupBox4.SuspendLayout();
- this.ultraExpandableGroupBoxPanel4.SuspendLayout();
- this.ultraExpandableGroupBoxPanel4_Fill_Panel.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txt_car_add)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_remark)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_card_no_add)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_type2_add)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_use_name_add)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).BeginInit();
- this.panel3.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txt_status)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_useName)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_card_d_no)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).BeginInit();
- this.ultraExpandableGroupBox1.SuspendLayout();
- this.ultraExpandableGroupBoxPanel1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox2)).BeginInit();
- this.ultraExpandableGroupBox2.SuspendLayout();
- this.ultraExpandableGroupBoxPanel2.SuspendLayout();
- this.panel1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txt_User_name1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_type1_M)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_cardMD_no)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_org_name)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_Card_No_M)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox3)).BeginInit();
- this.ultraExpandableGroupBox3.SuspendLayout();
- this.ultraExpandableGroupBoxPanel3.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txt_card_m_add)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_org_add)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_type1_add)).BeginInit();
- this.ultraTabPageControl2.SuspendLayout();
- this.panel5.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid4)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.changeRecord)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).BeginInit();
- this.panel4.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txtCreateTimeEnd)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtCreateTimeStart)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_card_change_d)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).BeginInit();
- this.ultraTabControl1.SuspendLayout();
- this.SuspendLayout();
- //
- // ultraTabPageControl1
- //
- this.ultraTabPageControl1.Controls.Add(this.panel2);
- this.ultraTabPageControl1.Controls.Add(this.ultraExpandableGroupBox3);
- this.ultraTabPageControl1.Location = new System.Drawing.Point(1, 1);
- this.ultraTabPageControl1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.ultraTabPageControl1.Name = "ultraTabPageControl1";
- this.ultraTabPageControl1.Size = new System.Drawing.Size(1603, 552);
- //
- // panel2
- //
- this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panel2.Controls.Add(this.panel6);
- this.panel2.Controls.Add(this.ultraExpandableGroupBox1);
- this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel2.Location = new System.Drawing.Point(0, 0);
- this.panel2.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.panel2.Name = "panel2";
- this.panel2.Size = new System.Drawing.Size(1603, 494);
- this.panel2.TabIndex = 183;
- //
- // panel6
- //
- this.panel6.Controls.Add(this.ultraGrid2);
- this.panel6.Controls.Add(this.ultraExpandableGroupBox4);
- this.panel6.Controls.Add(this.panel3);
- this.panel6.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel6.Location = new System.Drawing.Point(552, 0);
- this.panel6.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.panel6.Name = "panel6";
- this.panel6.Size = new System.Drawing.Size(1049, 492);
- this.panel6.TabIndex = 183;
- //
- // ultraGrid2
- //
- this.ultraGrid2.DataMember = "Table2";
- this.ultraGrid2.DataSource = this.card;
- appearance13.BackColor = System.Drawing.SystemColors.Window;
- appearance13.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid2.DisplayLayout.Appearance = appearance13;
- ultraGridColumn1.Header.VisiblePosition = 0;
- ultraGridColumn1.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn1.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn1.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn2.Header.VisiblePosition = 1;
- ultraGridColumn2.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn2.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn2.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn3.Header.VisiblePosition = 3;
- ultraGridColumn3.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn3.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn3.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn3.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn4.Header.VisiblePosition = 2;
- ultraGridColumn4.Hidden = true;
- ultraGridColumn4.RowLayoutColumnInfo.OriginX = 10;
- ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn4.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn4.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn5.Header.VisiblePosition = 5;
- ultraGridColumn5.RowLayoutColumnInfo.OriginX = 10;
- ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn5.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn5.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn6.Header.VisiblePosition = 4;
- ultraGridColumn6.RowLayoutColumnInfo.OriginX = 14;
- ultraGridColumn6.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn6.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn6.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn7.Header.VisiblePosition = 6;
- ultraGridColumn7.RowLayoutColumnInfo.OriginX = 16;
- ultraGridColumn7.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn7.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn7.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn8.Header.VisiblePosition = 7;
- ultraGridColumn8.RowLayoutColumnInfo.OriginX = 12;
- ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn8.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn8.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn9.Header.VisiblePosition = 8;
- ultraGridColumn9.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn9.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn9.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn10.Header.VisiblePosition = 9;
- ultraGridColumn10.RowLayoutColumnInfo.OriginX = 8;
- ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn10.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn10.RowLayoutColumnInfo.SpanY = 2;
- ultraGridBand1.Columns.AddRange(new object[] {
- ultraGridColumn1,
- ultraGridColumn2,
- ultraGridColumn3,
- ultraGridColumn4,
- ultraGridColumn5,
- ultraGridColumn6,
- ultraGridColumn7,
- ultraGridColumn8,
- ultraGridColumn9,
- ultraGridColumn10});
- appearance31.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
- ultraGridBand1.Override.SummaryFooterAppearance = appearance31;
- appearance32.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
- ultraGridBand1.Override.SummaryValueAppearance = appearance32;
- ultraGridBand1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
- summarySettings1.DisplayFormat = "共{0}条";
- summarySettings1.GroupBySummaryValueAppearance = appearance33;
- ultraGridBand1.Summaries.AddRange(new Infragistics.Win.UltraWinGrid.SummarySettings[] {
- summarySettings1});
- ultraGridBand1.SummaryFooterCaption = "统计";
- this.ultraGrid2.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
- this.ultraGrid2.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid2.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance14.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance14.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance14.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance14.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid2.DisplayLayout.GroupByBox.Appearance = appearance14;
- appearance15.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid2.DisplayLayout.GroupByBox.BandLabelAppearance = appearance15;
- this.ultraGrid2.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid2.DisplayLayout.GroupByBox.Hidden = true;
- appearance16.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance16.BackColor2 = System.Drawing.SystemColors.Control;
- appearance16.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance16.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid2.DisplayLayout.GroupByBox.PromptAppearance = appearance16;
- this.ultraGrid2.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid2.DisplayLayout.MaxRowScrollRegions = 1;
- appearance17.BackColor = System.Drawing.SystemColors.Window;
- appearance17.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid2.DisplayLayout.Override.ActiveCellAppearance = appearance17;
- appearance18.BackColor = System.Drawing.SystemColors.Highlight;
- appearance18.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid2.DisplayLayout.Override.ActiveRowAppearance = appearance18;
- this.ultraGrid2.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid2.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance19.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid2.DisplayLayout.Override.CardAreaAppearance = appearance19;
- appearance20.BorderColor = System.Drawing.Color.Silver;
- appearance20.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid2.DisplayLayout.Override.CellAppearance = appearance20;
- this.ultraGrid2.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid2.DisplayLayout.Override.CellPadding = 0;
- appearance21.BackColor = System.Drawing.SystemColors.Control;
- appearance21.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance21.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance21.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance21.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid2.DisplayLayout.Override.GroupByRowAppearance = appearance21;
- appearance22.TextHAlignAsString = "Left";
- this.ultraGrid2.DisplayLayout.Override.HeaderAppearance = appearance22;
- this.ultraGrid2.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid2.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance23.BackColor = System.Drawing.SystemColors.Window;
- appearance23.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid2.DisplayLayout.Override.RowAppearance = appearance23;
- this.ultraGrid2.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance24.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid2.DisplayLayout.Override.TemplateAddRowAppearance = appearance24;
- this.ultraGrid2.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid2.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid2.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGrid2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid2.Location = new System.Drawing.Point(0, 38);
- this.ultraGrid2.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.ultraGrid2.Name = "ultraGrid2";
- this.ultraGrid2.Size = new System.Drawing.Size(1049, 326);
- this.ultraGrid2.TabIndex = 0;
- this.ultraGrid2.Text = "ultraGrid2";
- this.ultraGrid2.InitializeRow += new Infragistics.Win.UltraWinGrid.InitializeRowEventHandler(this.ultraGrid2_InitializeRow);
- this.ultraGrid2.AfterRowActivate += new System.EventHandler(this.ultraGrid2_AfterRowActivate);
- //
- // card
- //
- this.card.DataSetName = "NewDataSet";
- this.card.Tables.AddRange(new System.Data.DataTable[] {
- this.dataTable1,
- this.dataTable2});
- //
- // dataTable1
- //
- this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn2,
- this.dataColumn3,
- this.dataColumn5,
- this.dataColumn6,
- this.dataColumn4,
- this.dataColumn24});
- this.dataTable1.TableName = "Table1";
- //
- // dataColumn2
- //
- this.dataColumn2.Caption = "主卡号";
- this.dataColumn2.ColumnName = "OILCARDMID";
- //
- // dataColumn3
- //
- this.dataColumn3.Caption = "部门";
- this.dataColumn3.ColumnName = "USERORGNAME";
- //
- // dataColumn5
- //
- this.dataColumn5.Caption = "创建人";
- this.dataColumn5.ColumnName = "CREATENAME";
- //
- // dataColumn6
- //
- this.dataColumn6.Caption = "创建时间";
- this.dataColumn6.ColumnName = "CREATETIME";
- //
- // dataColumn4
- //
- this.dataColumn4.Caption = "编号";
- this.dataColumn4.ColumnName = "Id";
- //
- // dataColumn24
- //
- this.dataColumn24.Caption = "类型";
- this.dataColumn24.ColumnName = "type";
- //
- // dataTable2
- //
- this.dataTable2.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn9,
- this.dataColumn10,
- this.dataColumn11,
- this.dataColumn12,
- this.dataColumn13,
- this.dataColumn14,
- this.dataColumn16,
- this.dataColumn1,
- this.dataColumn7,
- this.dataColumn23});
- this.dataTable2.TableName = "Table2";
- //
- // dataColumn9
- //
- this.dataColumn9.Caption = "用户名";
- this.dataColumn9.ColumnName = "USERNAME";
- //
- // dataColumn10
- //
- this.dataColumn10.Caption = "车牌";
- this.dataColumn10.ColumnName = "CAR";
- //
- // dataColumn11
- //
- this.dataColumn11.Caption = "卡号";
- this.dataColumn11.ColumnName = "OILCARDID";
- //
- // dataColumn12
- //
- this.dataColumn12.Caption = "主卡号";
- this.dataColumn12.ColumnName = "OILCARDMID";
- //
- // dataColumn13
- //
- this.dataColumn13.Caption = "类型";
- this.dataColumn13.ColumnName = "TYPE";
- //
- // dataColumn14
- //
- this.dataColumn14.Caption = "创建人";
- this.dataColumn14.ColumnName = "CREATENAME";
- //
- // dataColumn16
- //
- this.dataColumn16.Caption = "创建时间";
- this.dataColumn16.ColumnName = "CREATETIME";
- //
- // dataColumn1
- //
- this.dataColumn1.Caption = "备注";
- this.dataColumn1.ColumnName = "remark";
- //
- // dataColumn7
- //
- this.dataColumn7.Caption = "编号";
- this.dataColumn7.ColumnName = "id";
- //
- // dataColumn23
- //
- this.dataColumn23.Caption = "状态";
- this.dataColumn23.ColumnName = "status";
- //
- // ultraExpandableGroupBox4
- //
- this.ultraExpandableGroupBox4.Controls.Add(this.ultraExpandableGroupBoxPanel4);
- this.ultraExpandableGroupBox4.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.ultraExpandableGroupBox4.ExpandedSize = new System.Drawing.Size(1049, 128);
- this.ultraExpandableGroupBox4.Location = new System.Drawing.Point(0, 364);
- this.ultraExpandableGroupBox4.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.ultraExpandableGroupBox4.Name = "ultraExpandableGroupBox4";
- this.ultraExpandableGroupBox4.Size = new System.Drawing.Size(1049, 128);
- this.ultraExpandableGroupBox4.TabIndex = 185;
- this.ultraExpandableGroupBox4.Text = "副卡编辑区";
- //
- // ultraExpandableGroupBoxPanel4
- //
- this.ultraExpandableGroupBoxPanel4.Controls.Add(this.ultraExpandableGroupBoxPanel4_Fill_Panel);
- this.ultraExpandableGroupBoxPanel4.Controls.Add(this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Left);
- this.ultraExpandableGroupBoxPanel4.Controls.Add(this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Right);
- this.ultraExpandableGroupBoxPanel4.Controls.Add(this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Top);
- this.ultraExpandableGroupBoxPanel4.Controls.Add(this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Bottom);
- this.ultraExpandableGroupBoxPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraExpandableGroupBoxPanel4.Location = new System.Drawing.Point(3, 21);
- this.ultraExpandableGroupBoxPanel4.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.ultraExpandableGroupBoxPanel4.Name = "ultraExpandableGroupBoxPanel4";
- this.ultraExpandableGroupBoxPanel4.Size = new System.Drawing.Size(1043, 104);
- this.ultraExpandableGroupBoxPanel4.TabIndex = 0;
- //
- // ultraExpandableGroupBoxPanel4_Fill_Panel
- //
- this.ultraExpandableGroupBoxPanel4_Fill_Panel.Controls.Add(this.txt_car_add);
- this.ultraExpandableGroupBoxPanel4_Fill_Panel.Controls.Add(this.txt_remark);
- this.ultraExpandableGroupBoxPanel4_Fill_Panel.Controls.Add(this.txt_card_no_add);
- this.ultraExpandableGroupBoxPanel4_Fill_Panel.Controls.Add(this.txt_type2_add);
- this.ultraExpandableGroupBoxPanel4_Fill_Panel.Controls.Add(this.label13);
- this.ultraExpandableGroupBoxPanel4_Fill_Panel.Controls.Add(this.txt_use_name_add);
- this.ultraExpandableGroupBoxPanel4_Fill_Panel.Controls.Add(this.label12);
- this.ultraExpandableGroupBoxPanel4_Fill_Panel.Controls.Add(this.label11);
- this.ultraExpandableGroupBoxPanel4_Fill_Panel.Controls.Add(this.label9);
- this.ultraExpandableGroupBoxPanel4_Fill_Panel.Controls.Add(this.label8);
- this.ultraExpandableGroupBoxPanel4_Fill_Panel.Cursor = System.Windows.Forms.Cursors.Default;
- this.ultraExpandableGroupBoxPanel4_Fill_Panel.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraExpandableGroupBoxPanel4_Fill_Panel.Location = new System.Drawing.Point(0, 28);
- this.ultraExpandableGroupBoxPanel4_Fill_Panel.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.ultraExpandableGroupBoxPanel4_Fill_Panel.Name = "ultraExpandableGroupBoxPanel4_Fill_Panel";
- this.ultraExpandableGroupBoxPanel4_Fill_Panel.Size = new System.Drawing.Size(1043, 76);
- this.ultraExpandableGroupBoxPanel4_Fill_Panel.TabIndex = 0;
- //
- // txt_car_add
- //
- this.txt_car_add.Location = new System.Drawing.Point(707, 8);
- this.txt_car_add.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.txt_car_add.MaxLength = 200;
- this.txt_car_add.Name = "txt_car_add";
- this.txt_car_add.Size = new System.Drawing.Size(149, 24);
- this.txt_car_add.TabIndex = 196;
- //
- // txt_remark
- //
- this.txt_remark.Location = new System.Drawing.Point(71, 38);
- this.txt_remark.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.txt_remark.MaxLength = 200;
- this.txt_remark.Name = "txt_remark";
- this.txt_remark.Size = new System.Drawing.Size(785, 24);
- this.txt_remark.TabIndex = 194;
- //
- // txt_card_no_add
- //
- this.txt_card_no_add.Location = new System.Drawing.Point(71, 8);
- this.txt_card_no_add.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.txt_card_no_add.MaxLength = 200;
- this.txt_card_no_add.Name = "txt_card_no_add";
- this.txt_card_no_add.Size = new System.Drawing.Size(149, 24);
- this.txt_card_no_add.TabIndex = 187;
- //
- // txt_type2_add
- //
- this.txt_type2_add.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- valueListItem3.DataValue = "1";
- valueListItem3.DisplayText = "处级以上领导";
- valueListItem4.DataValue = "2";
- valueListItem4.DisplayText = "生产骨干";
- valueListItem5.DataValue = "3";
- valueListItem5.DisplayText = "办公用车";
- valueListItem6.DataValue = "4";
- valueListItem6.DisplayText = "生产用车";
- valueListItem7.DataValue = "5";
- valueListItem7.DisplayText = "员工";
- this.txt_type2_add.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem3,
- valueListItem4,
- valueListItem5,
- valueListItem6,
- valueListItem7});
- this.txt_type2_add.Location = new System.Drawing.Point(492, 8);
- this.txt_type2_add.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.txt_type2_add.Name = "txt_type2_add";
- this.txt_type2_add.Size = new System.Drawing.Size(149, 24);
- this.txt_type2_add.TabIndex = 191;
- //
- // label13
- //
- this.label13.AutoSize = true;
- this.label13.Location = new System.Drawing.Point(647, 12);
- this.label13.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label13.Name = "label13";
- this.label13.Size = new System.Drawing.Size(52, 15);
- this.label13.TabIndex = 197;
- this.label13.Text = "车牌号";
- //
- // txt_use_name_add
- //
- this.txt_use_name_add.Location = new System.Drawing.Point(289, 8);
- this.txt_use_name_add.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.txt_use_name_add.MaxLength = 200;
- this.txt_use_name_add.Name = "txt_use_name_add";
- this.txt_use_name_add.Size = new System.Drawing.Size(149, 24);
- this.txt_use_name_add.TabIndex = 188;
- //
- // label12
- //
- this.label12.AutoSize = true;
- this.label12.Location = new System.Drawing.Point(11, 42);
- this.label12.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label12.Name = "label12";
- this.label12.Size = new System.Drawing.Size(53, 15);
- this.label12.TabIndex = 195;
- this.label12.Text = "备 注";
- //
- // label11
- //
- this.label11.AutoSize = true;
- this.label11.Location = new System.Drawing.Point(448, 14);
- this.label11.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label11.Name = "label11";
- this.label11.Size = new System.Drawing.Size(37, 15);
- this.label11.TabIndex = 193;
- this.label11.Text = "类型";
- //
- // label9
- //
- this.label9.AutoSize = true;
- this.label9.Location = new System.Drawing.Point(11, 12);
- this.label9.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label9.Name = "label9";
- this.label9.Size = new System.Drawing.Size(52, 15);
- this.label9.TabIndex = 189;
- this.label9.Text = "副卡号";
- //
- // label8
- //
- this.label8.AutoSize = true;
- this.label8.Location = new System.Drawing.Point(229, 12);
- this.label8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label8.Name = "label8";
- this.label8.Size = new System.Drawing.Size(52, 15);
- this.label8.TabIndex = 190;
- this.label8.Text = "用户名";
- //
- // _ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Left
- //
- this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Left.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
- this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Left.BackColor = System.Drawing.SystemColors.Control;
- this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Left.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
- this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Left.ForeColor = System.Drawing.SystemColors.ControlText;
- this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Left.Location = new System.Drawing.Point(0, 28);
- this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Left.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Left.Name = "_ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Left";
- this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 76);
- this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Left.ToolbarsManager = this.ultraToolbarsManager1;
- //
- // ultraToolbarsManager1
- //
- this.ultraToolbarsManager1.DesignerFlags = 1;
- this.ultraToolbarsManager1.DockWithinContainer = this.ultraExpandableGroupBoxPanel4;
- this.ultraToolbarsManager1.ShowQuickCustomizeButton = false;
- ultraToolbar1.DockedColumn = 0;
- ultraToolbar1.DockedRow = 0;
- ultraToolbar1.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
- buttonTool2,
- buttonTool3,
- buttonTool4,
- buttonTool5,
- buttonTool6});
- ultraToolbar1.Text = "UltraToolbar1";
- this.ultraToolbarsManager1.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
- ultraToolbar1});
- appearance68.Image = ((object)(resources.GetObject("appearance68.Image")));
- buttonTool7.SharedPropsInternal.AppearancesSmall.Appearance = appearance68;
- buttonTool7.SharedPropsInternal.Caption = "查询";
- buttonTool7.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- appearance69.Image = ((object)(resources.GetObject("appearance69.Image")));
- buttonTool8.SharedPropsInternal.AppearancesSmall.Appearance = appearance69;
- buttonTool8.SharedPropsInternal.Caption = "修改";
- buttonTool8.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- appearance70.Image = ((object)(resources.GetObject("appearance70.Image")));
- buttonTool9.SharedPropsInternal.AppearancesSmall.Appearance = appearance70;
- buttonTool9.SharedPropsInternal.Caption = "新增";
- buttonTool9.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- appearance71.Image = ((object)(resources.GetObject("appearance71.Image")));
- buttonTool10.SharedPropsInternal.AppearancesSmall.Appearance = appearance71;
- buttonTool10.SharedPropsInternal.Caption = "暂停";
- buttonTool10.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- appearance72.Image = ((object)(resources.GetObject("appearance72.Image")));
- buttonTool11.SharedPropsInternal.AppearancesSmall.Appearance = appearance72;
- buttonTool11.SharedPropsInternal.Caption = "取消暂停";
- buttonTool11.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- appearance73.Image = ((object)(resources.GetObject("appearance73.Image")));
- buttonTool12.SharedPropsInternal.AppearancesSmall.Appearance = appearance73;
- buttonTool12.SharedPropsInternal.Caption = "注销";
- buttonTool12.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- this.ultraToolbarsManager1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
- buttonTool7,
- buttonTool8,
- buttonTool9,
- buttonTool10,
- buttonTool11,
- buttonTool12});
- this.ultraToolbarsManager1.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.ultraToolbarsManager1_ToolClick);
- //
- // _ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Right
- //
- this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Right.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
- this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Right.BackColor = System.Drawing.SystemColors.Control;
- this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Right.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
- this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Right.ForeColor = System.Drawing.SystemColors.ControlText;
- this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Right.Location = new System.Drawing.Point(1043, 28);
- this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Right.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Right.Name = "_ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Right";
- this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 76);
- this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Right.ToolbarsManager = this.ultraToolbarsManager1;
- //
- // _ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Top
- //
- this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Top.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
- this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Top.BackColor = System.Drawing.SystemColors.Control;
- this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Top.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
- this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Top.ForeColor = System.Drawing.SystemColors.ControlText;
- this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Top.Location = new System.Drawing.Point(0, 0);
- this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Top.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Top.Name = "_ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Top";
- this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(1043, 28);
- this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Top.ToolbarsManager = this.ultraToolbarsManager1;
- //
- // _ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Bottom
- //
- this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Bottom.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
- this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Bottom.BackColor = System.Drawing.SystemColors.Control;
- this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Bottom.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
- this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Bottom.ForeColor = System.Drawing.SystemColors.ControlText;
- this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Bottom.Location = new System.Drawing.Point(0, 104);
- this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Bottom.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Bottom.Name = "_ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Bottom";
- this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(1043, 0);
- this._ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.ultraToolbarsManager1;
- //
- // panel3
- //
- this.panel3.Controls.Add(this.ck_is_all);
- this.panel3.Controls.Add(this.btn_query_d);
- this.panel3.Controls.Add(this.label5);
- this.panel3.Controls.Add(this.txt_status);
- this.panel3.Controls.Add(this.label3);
- this.panel3.Controls.Add(this.label4);
- this.panel3.Controls.Add(this.txt_useName);
- this.panel3.Controls.Add(this.txt_card_d_no);
- this.panel3.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel3.Location = new System.Drawing.Point(0, 0);
- this.panel3.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.panel3.Name = "panel3";
- this.panel3.Size = new System.Drawing.Size(1049, 38);
- this.panel3.TabIndex = 179;
- //
- // ck_is_all
- //
- this.ck_is_all.AutoSize = true;
- this.ck_is_all.Location = new System.Drawing.Point(712, 8);
- this.ck_is_all.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.ck_is_all.Name = "ck_is_all";
- this.ck_is_all.Size = new System.Drawing.Size(89, 19);
- this.ck_is_all.TabIndex = 182;
- this.ck_is_all.Text = "全部副卡";
- this.ck_is_all.UseVisualStyleBackColor = true;
- //
- // btn_query_d
- //
- this.btn_query_d.Location = new System.Drawing.Point(816, 4);
- this.btn_query_d.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.btn_query_d.Name = "btn_query_d";
- this.btn_query_d.Size = new System.Drawing.Size(100, 29);
- this.btn_query_d.TabIndex = 181;
- this.btn_query_d.Text = "过滤";
- this.btn_query_d.UseVisualStyleBackColor = true;
- this.btn_query_d.Click += new System.EventHandler(this.btn_query_d_Click);
- //
- // label5
- //
- this.label5.AutoSize = true;
- this.label5.Location = new System.Drawing.Point(531, 10);
- this.label5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(37, 15);
- this.label5.TabIndex = 180;
- this.label5.Text = "状态";
- //
- // txt_status
- //
- this.txt_status.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- valueListItem12.DataValue = " ";
- valueListItem12.DisplayText = "全部";
- valueListItem13.DataValue = "1";
- valueListItem13.DisplayText = "正常";
- valueListItem14.DataValue = "2";
- valueListItem14.DisplayText = "暂停";
- valueListItem15.DataValue = "3";
- valueListItem15.DisplayText = "注销";
- this.txt_status.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem12,
- valueListItem13,
- valueListItem14,
- valueListItem15});
- this.txt_status.Location = new System.Drawing.Point(573, 5);
- this.txt_status.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.txt_status.Name = "txt_status";
- this.txt_status.Size = new System.Drawing.Size(131, 24);
- this.txt_status.TabIndex = 179;
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.Location = new System.Drawing.Point(319, 10);
- this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(37, 15);
- this.label3.TabIndex = 178;
- this.label3.Text = "人名";
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.Location = new System.Drawing.Point(7, 10);
- this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(52, 15);
- this.label4.TabIndex = 177;
- this.label4.Text = "副卡号";
- //
- // txt_useName
- //
- this.txt_useName.Location = new System.Drawing.Point(363, 5);
- this.txt_useName.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.txt_useName.MaxLength = 200;
- this.txt_useName.Name = "txt_useName";
- this.txt_useName.Size = new System.Drawing.Size(149, 24);
- this.txt_useName.TabIndex = 176;
- //
- // txt_card_d_no
- //
- this.txt_card_d_no.Location = new System.Drawing.Point(65, 5);
- this.txt_card_d_no.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.txt_card_d_no.MaxLength = 200;
- this.txt_card_d_no.Name = "txt_card_d_no";
- this.txt_card_d_no.Size = new System.Drawing.Size(245, 24);
- this.txt_card_d_no.TabIndex = 175;
- //
- // ultraExpandableGroupBox1
- //
- this.ultraExpandableGroupBox1.CaptionAlignment = Infragistics.Win.Misc.GroupBoxCaptionAlignment.Far;
- this.ultraExpandableGroupBox1.Controls.Add(this.ultraExpandableGroupBoxPanel1);
- this.ultraExpandableGroupBox1.Dock = System.Windows.Forms.DockStyle.Left;
- this.ultraExpandableGroupBox1.ExpandedSize = new System.Drawing.Size(552, 492);
- this.ultraExpandableGroupBox1.HeaderPosition = Infragistics.Win.Misc.GroupBoxHeaderPosition.LeftOnBorder;
- this.ultraExpandableGroupBox1.Location = new System.Drawing.Point(0, 0);
- this.ultraExpandableGroupBox1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.ultraExpandableGroupBox1.Name = "ultraExpandableGroupBox1";
- this.ultraExpandableGroupBox1.Size = new System.Drawing.Size(552, 492);
- this.ultraExpandableGroupBox1.TabIndex = 182;
- this.ultraExpandableGroupBox1.Text = "主卡";
- //
- // ultraExpandableGroupBoxPanel1
- //
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraGrid1);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraExpandableGroupBox2);
- this.ultraExpandableGroupBoxPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraExpandableGroupBoxPanel1.Location = new System.Drawing.Point(22, 3);
- this.ultraExpandableGroupBoxPanel1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.ultraExpandableGroupBoxPanel1.Name = "ultraExpandableGroupBoxPanel1";
- this.ultraExpandableGroupBoxPanel1.Size = new System.Drawing.Size(527, 486);
- this.ultraExpandableGroupBoxPanel1.TabIndex = 0;
- //
- // ultraGrid1
- //
- this.ultraGrid1.DataMember = "Table1";
- this.ultraGrid1.DataSource = this.card;
- appearance49.BackColor = System.Drawing.SystemColors.Window;
- appearance49.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid1.DisplayLayout.Appearance = appearance49;
- ultraGridColumn11.Header.VisiblePosition = 2;
- ultraGridColumn12.Header.VisiblePosition = 1;
- ultraGridColumn13.Header.VisiblePosition = 4;
- ultraGridColumn14.Header.VisiblePosition = 5;
- ultraGridColumn15.Header.VisiblePosition = 0;
- ultraGridColumn16.Header.VisiblePosition = 3;
- ultraGridBand2.Columns.AddRange(new object[] {
- ultraGridColumn11,
- ultraGridColumn12,
- ultraGridColumn13,
- ultraGridColumn14,
- ultraGridColumn15,
- ultraGridColumn16});
- appearance34.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
- ultraGridBand2.Override.SummaryFooterAppearance = appearance34;
- appearance35.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
- ultraGridBand2.Override.SummaryValueAppearance = appearance35;
- summarySettings2.DisplayFormat = "共{0}条";
- summarySettings2.GroupBySummaryValueAppearance = appearance36;
- ultraGridBand2.Summaries.AddRange(new Infragistics.Win.UltraWinGrid.SummarySettings[] {
- summarySettings2});
- ultraGridBand2.SummaryFooterCaption = "统计";
- this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
- this.ultraGrid1.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid1.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance53.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance53.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance53.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance53.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid1.DisplayLayout.GroupByBox.Appearance = appearance53;
- appearance54.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid1.DisplayLayout.GroupByBox.BandLabelAppearance = appearance54;
- this.ultraGrid1.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid1.DisplayLayout.GroupByBox.Hidden = true;
- appearance55.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance55.BackColor2 = System.Drawing.SystemColors.Control;
- appearance55.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance55.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid1.DisplayLayout.GroupByBox.PromptAppearance = appearance55;
- this.ultraGrid1.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid1.DisplayLayout.MaxRowScrollRegions = 1;
- appearance56.BackColor = System.Drawing.SystemColors.Window;
- appearance56.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid1.DisplayLayout.Override.ActiveCellAppearance = appearance56;
- appearance57.BackColor = System.Drawing.SystemColors.Highlight;
- appearance57.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance = appearance57;
- this.ultraGrid1.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid1.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance58.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance58;
- appearance59.BorderColor = System.Drawing.Color.Silver;
- appearance59.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid1.DisplayLayout.Override.CellAppearance = appearance59;
- this.ultraGrid1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid1.DisplayLayout.Override.CellPadding = 0;
- appearance60.BackColor = System.Drawing.SystemColors.Control;
- appearance60.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance60.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance60.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance60.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid1.DisplayLayout.Override.GroupByRowAppearance = appearance60;
- appearance61.TextHAlignAsString = "Left";
- this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance61;
- this.ultraGrid1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid1.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance62.BackColor = System.Drawing.SystemColors.Window;
- appearance62.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid1.DisplayLayout.Override.RowAppearance = appearance62;
- this.ultraGrid1.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance63.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid1.DisplayLayout.Override.TemplateAddRowAppearance = appearance63;
- this.ultraGrid1.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid1.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid1.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraGrid1.Location = new System.Drawing.Point(0, 126);
- this.ultraGrid1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.ultraGrid1.Name = "ultraGrid1";
- this.ultraGrid1.Size = new System.Drawing.Size(527, 360);
- this.ultraGrid1.TabIndex = 0;
- this.ultraGrid1.Text = "ultraGrid1";
- this.ultraGrid1.AfterRowActivate += new System.EventHandler(this.ultraGrid1_AfterRowActivate);
- //
- // ultraExpandableGroupBox2
- //
- this.ultraExpandableGroupBox2.Controls.Add(this.ultraExpandableGroupBoxPanel2);
- this.ultraExpandableGroupBox2.Dock = System.Windows.Forms.DockStyle.Top;
- this.ultraExpandableGroupBox2.ExpandedSize = new System.Drawing.Size(527, 126);
- this.ultraExpandableGroupBox2.Location = new System.Drawing.Point(0, 0);
- this.ultraExpandableGroupBox2.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.ultraExpandableGroupBox2.Name = "ultraExpandableGroupBox2";
- this.ultraExpandableGroupBox2.Size = new System.Drawing.Size(527, 126);
- this.ultraExpandableGroupBox2.TabIndex = 1;
- this.ultraExpandableGroupBox2.Text = "查询条件";
- //
- // ultraExpandableGroupBoxPanel2
- //
- this.ultraExpandableGroupBoxPanel2.Controls.Add(this.panel1);
- this.ultraExpandableGroupBoxPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraExpandableGroupBoxPanel2.Location = new System.Drawing.Point(3, 21);
- this.ultraExpandableGroupBoxPanel2.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.ultraExpandableGroupBoxPanel2.Name = "ultraExpandableGroupBoxPanel2";
- this.ultraExpandableGroupBoxPanel2.Size = new System.Drawing.Size(521, 102);
- this.ultraExpandableGroupBoxPanel2.TabIndex = 0;
- //
- // panel1
- //
- this.panel1.Controls.Add(this.label17);
- this.panel1.Controls.Add(this.txt_User_name1);
- this.panel1.Controls.Add(this.txt_type1_M);
- this.panel1.Controls.Add(this.label16);
- this.panel1.Controls.Add(this.label14);
- this.panel1.Controls.Add(this.txt_cardMD_no);
- this.panel1.Controls.Add(this.label2);
- this.panel1.Controls.Add(this.label1);
- this.panel1.Controls.Add(this.txt_org_name);
- this.panel1.Controls.Add(this.txt_Card_No_M);
- this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel1.Location = new System.Drawing.Point(0, 0);
- this.panel1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.panel1.Name = "panel1";
- this.panel1.Size = new System.Drawing.Size(521, 102);
- this.panel1.TabIndex = 3;
- //
- // label17
- //
- this.label17.AutoSize = true;
- this.label17.Location = new System.Drawing.Point(8, 70);
- this.label17.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label17.Name = "label17";
- this.label17.Size = new System.Drawing.Size(52, 15);
- this.label17.TabIndex = 184;
- this.label17.Text = "使用者";
- //
- // txt_User_name1
- //
- this.txt_User_name1.Location = new System.Drawing.Point(67, 65);
- this.txt_User_name1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.txt_User_name1.MaxLength = 200;
- this.txt_User_name1.Name = "txt_User_name1";
- this.txt_User_name1.Size = new System.Drawing.Size(217, 24);
- this.txt_User_name1.TabIndex = 183;
- //
- // txt_type1_M
- //
- this.txt_type1_M.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- valueListItem11.DataValue = " ";
- valueListItem11.DisplayText = "全部";
- valueListItem8.DataValue = "1";
- valueListItem8.DisplayText = "员工油卡";
- valueListItem9.DataValue = "2";
- valueListItem9.DisplayText = "骨干油卡";
- this.txt_type1_M.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem11,
- valueListItem8,
- valueListItem9});
- this.txt_type1_M.Location = new System.Drawing.Point(347, 36);
- this.txt_type1_M.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.txt_type1_M.Name = "txt_type1_M";
- this.txt_type1_M.Size = new System.Drawing.Size(152, 24);
- this.txt_type1_M.TabIndex = 182;
- //
- // label16
- //
- this.label16.AutoSize = true;
- this.label16.Location = new System.Drawing.Point(304, 40);
- this.label16.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label16.Name = "label16";
- this.label16.Size = new System.Drawing.Size(37, 15);
- this.label16.TabIndex = 182;
- this.label16.Text = "类型";
- //
- // label14
- //
- this.label14.AutoSize = true;
- this.label14.Location = new System.Drawing.Point(8, 41);
- this.label14.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label14.Name = "label14";
- this.label14.Size = new System.Drawing.Size(52, 15);
- this.label14.TabIndex = 180;
- this.label14.Text = "副卡号";
- //
- // txt_cardMD_no
- //
- this.txt_cardMD_no.Location = new System.Drawing.Point(67, 36);
- this.txt_cardMD_no.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.txt_cardMD_no.MaxLength = 200;
- this.txt_cardMD_no.Name = "txt_cardMD_no";
- this.txt_cardMD_no.Size = new System.Drawing.Size(217, 24);
- this.txt_cardMD_no.TabIndex = 179;
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.Location = new System.Drawing.Point(304, 12);
- this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(37, 15);
- this.label2.TabIndex = 178;
- this.label2.Text = "部门";
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Location = new System.Drawing.Point(8, 12);
- this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(52, 15);
- this.label1.TabIndex = 177;
- this.label1.Text = "主卡号";
- //
- // txt_org_name
- //
- this.txt_org_name.Location = new System.Drawing.Point(347, 8);
- this.txt_org_name.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.txt_org_name.MaxLength = 200;
- this.txt_org_name.Name = "txt_org_name";
- this.txt_org_name.Size = new System.Drawing.Size(152, 24);
- this.txt_org_name.TabIndex = 176;
- //
- // txt_Card_No_M
- //
- this.txt_Card_No_M.Location = new System.Drawing.Point(67, 8);
- this.txt_Card_No_M.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.txt_Card_No_M.MaxLength = 200;
- this.txt_Card_No_M.Name = "txt_Card_No_M";
- this.txt_Card_No_M.Size = new System.Drawing.Size(217, 24);
- this.txt_Card_No_M.TabIndex = 175;
- //
- // ultraExpandableGroupBox3
- //
- this.ultraExpandableGroupBox3.Controls.Add(this.ultraExpandableGroupBoxPanel3);
- this.ultraExpandableGroupBox3.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.ultraExpandableGroupBox3.ExpandedSize = new System.Drawing.Size(1603, 58);
- this.ultraExpandableGroupBox3.Location = new System.Drawing.Point(0, 494);
- this.ultraExpandableGroupBox3.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.ultraExpandableGroupBox3.Name = "ultraExpandableGroupBox3";
- this.ultraExpandableGroupBox3.Size = new System.Drawing.Size(1603, 58);
- this.ultraExpandableGroupBox3.TabIndex = 181;
- this.ultraExpandableGroupBox3.Text = "主卡编辑区";
- //
- // ultraExpandableGroupBoxPanel3
- //
- this.ultraExpandableGroupBoxPanel3.Controls.Add(this.label6);
- this.ultraExpandableGroupBoxPanel3.Controls.Add(this.txt_card_m_add);
- this.ultraExpandableGroupBoxPanel3.Controls.Add(this.txt_org_add);
- this.ultraExpandableGroupBoxPanel3.Controls.Add(this.label7);
- this.ultraExpandableGroupBoxPanel3.Controls.Add(this.txt_type1_add);
- this.ultraExpandableGroupBoxPanel3.Controls.Add(this.label10);
- this.ultraExpandableGroupBoxPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraExpandableGroupBoxPanel3.Location = new System.Drawing.Point(3, 21);
- this.ultraExpandableGroupBoxPanel3.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.ultraExpandableGroupBoxPanel3.Name = "ultraExpandableGroupBoxPanel3";
- this.ultraExpandableGroupBoxPanel3.Size = new System.Drawing.Size(1597, 34);
- this.ultraExpandableGroupBoxPanel3.TabIndex = 0;
- //
- // label6
- //
- this.label6.AutoSize = true;
- this.label6.Location = new System.Drawing.Point(299, 6);
- this.label6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(37, 15);
- this.label6.TabIndex = 182;
- this.label6.Text = "部门";
- //
- // txt_card_m_add
- //
- this.txt_card_m_add.Location = new System.Drawing.Point(81, 1);
- this.txt_card_m_add.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.txt_card_m_add.MaxLength = 200;
- this.txt_card_m_add.Name = "txt_card_m_add";
- this.txt_card_m_add.Size = new System.Drawing.Size(208, 24);
- this.txt_card_m_add.TabIndex = 179;
- //
- // txt_org_add
- //
- this.txt_org_add.Location = new System.Drawing.Point(341, 1);
- this.txt_org_add.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.txt_org_add.MaxLength = 200;
- this.txt_org_add.Name = "txt_org_add";
- this.txt_org_add.Size = new System.Drawing.Size(208, 24);
- this.txt_org_add.TabIndex = 180;
- //
- // label7
- //
- this.label7.AutoSize = true;
- this.label7.Location = new System.Drawing.Point(21, 8);
- this.label7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label7.Name = "label7";
- this.label7.Size = new System.Drawing.Size(52, 15);
- this.label7.TabIndex = 181;
- this.label7.Text = "主卡号";
- //
- // txt_type1_add
- //
- this.txt_type1_add.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- valueListItem2.DataValue = "1";
- valueListItem2.DisplayText = "员工";
- valueListItem1.DataValue = "2";
- valueListItem1.DisplayText = "骨干";
- this.txt_type1_add.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem2,
- valueListItem1});
- this.txt_type1_add.Location = new System.Drawing.Point(601, 1);
- this.txt_type1_add.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.txt_type1_add.Name = "txt_type1_add";
- this.txt_type1_add.Size = new System.Drawing.Size(208, 24);
- this.txt_type1_add.TabIndex = 187;
- //
- // label10
- //
- this.label10.AutoSize = true;
- this.label10.Location = new System.Drawing.Point(559, 6);
- this.label10.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label10.Name = "label10";
- this.label10.Size = new System.Drawing.Size(37, 15);
- this.label10.TabIndex = 192;
- this.label10.Text = "类型";
- //
- // ultraTabPageControl2
- //
- this.ultraTabPageControl2.Controls.Add(this.panel5);
- this.ultraTabPageControl2.Controls.Add(this.panel4);
- this.ultraTabPageControl2.Location = new System.Drawing.Point(-13333, -12500);
- this.ultraTabPageControl2.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.ultraTabPageControl2.Name = "ultraTabPageControl2";
- this.ultraTabPageControl2.Size = new System.Drawing.Size(1603, 552);
- //
- // panel5
- //
- this.panel5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panel5.Controls.Add(this.ultraGrid4);
- this.panel5.Controls.Add(this.ultraGrid3);
- this.panel5.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel5.Location = new System.Drawing.Point(0, 38);
- this.panel5.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.panel5.Name = "panel5";
- this.panel5.Size = new System.Drawing.Size(1603, 514);
- this.panel5.TabIndex = 6;
- //
- // ultraGrid4
- //
- this.ultraGrid4.DataMember = "Table1";
- this.ultraGrid4.DataSource = this.changeRecord;
- appearance37.BackColor = System.Drawing.SystemColors.Window;
- appearance37.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid4.DisplayLayout.Appearance = appearance37;
- ultraGridColumn17.Header.VisiblePosition = 0;
- ultraGridColumn18.Header.VisiblePosition = 2;
- ultraGridColumn19.Header.VisiblePosition = 3;
- ultraGridColumn20.Header.VisiblePosition = 4;
- ultraGridColumn21.Header.VisiblePosition = 5;
- ultraGridColumn22.Header.VisiblePosition = 6;
- ultraGridColumn23.Header.VisiblePosition = 1;
- ultraGridBand3.Columns.AddRange(new object[] {
- ultraGridColumn17,
- ultraGridColumn18,
- ultraGridColumn19,
- ultraGridColumn20,
- ultraGridColumn21,
- ultraGridColumn22,
- ultraGridColumn23});
- this.ultraGrid4.DisplayLayout.BandsSerializer.Add(ultraGridBand3);
- this.ultraGrid4.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid4.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance38.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance38.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance38.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance38.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid4.DisplayLayout.GroupByBox.Appearance = appearance38;
- appearance40.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid4.DisplayLayout.GroupByBox.BandLabelAppearance = appearance40;
- this.ultraGrid4.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid4.DisplayLayout.GroupByBox.Hidden = true;
- appearance39.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance39.BackColor2 = System.Drawing.SystemColors.Control;
- appearance39.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance39.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid4.DisplayLayout.GroupByBox.PromptAppearance = appearance39;
- this.ultraGrid4.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid4.DisplayLayout.MaxRowScrollRegions = 1;
- appearance43.BackColor = System.Drawing.SystemColors.Window;
- appearance43.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid4.DisplayLayout.Override.ActiveCellAppearance = appearance43;
- appearance46.BackColor = System.Drawing.SystemColors.Highlight;
- appearance46.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid4.DisplayLayout.Override.ActiveRowAppearance = appearance46;
- this.ultraGrid4.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid4.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance48.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid4.DisplayLayout.Override.CardAreaAppearance = appearance48;
- appearance44.BorderColor = System.Drawing.Color.Silver;
- appearance44.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid4.DisplayLayout.Override.CellAppearance = appearance44;
- this.ultraGrid4.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid4.DisplayLayout.Override.CellPadding = 0;
- appearance42.BackColor = System.Drawing.SystemColors.Control;
- appearance42.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance42.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance42.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance42.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid4.DisplayLayout.Override.GroupByRowAppearance = appearance42;
- appearance41.TextHAlignAsString = "Left";
- this.ultraGrid4.DisplayLayout.Override.HeaderAppearance = appearance41;
- this.ultraGrid4.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid4.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance47.BackColor = System.Drawing.SystemColors.Window;
- appearance47.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid4.DisplayLayout.Override.RowAppearance = appearance47;
- this.ultraGrid4.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance45.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid4.DisplayLayout.Override.TemplateAddRowAppearance = appearance45;
- this.ultraGrid4.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid4.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid4.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGrid4.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid4.Location = new System.Drawing.Point(0, 0);
- this.ultraGrid4.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.ultraGrid4.Name = "ultraGrid4";
- this.ultraGrid4.Size = new System.Drawing.Size(1601, 512);
- this.ultraGrid4.TabIndex = 6;
- this.ultraGrid4.Text = "ultraGrid4";
- //
- // changeRecord
- //
- this.changeRecord.DataSetName = "NewDataSet";
- this.changeRecord.Tables.AddRange(new System.Data.DataTable[] {
- this.dataTable3});
- //
- // dataTable3
- //
- this.dataTable3.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn8,
- this.dataColumn17,
- this.dataColumn18,
- this.dataColumn19,
- this.dataColumn20,
- this.dataColumn21,
- this.dataColumn22});
- this.dataTable3.TableName = "Table1";
- //
- // dataColumn8
- //
- this.dataColumn8.Caption = "记录号";
- this.dataColumn8.ColumnName = "CHANGEID";
- //
- // dataColumn17
- //
- this.dataColumn17.Caption = "变更类型";
- this.dataColumn17.ColumnName = "CHANGETYPE";
- //
- // dataColumn18
- //
- this.dataColumn18.Caption = "原值";
- this.dataColumn18.ColumnName = "OLDVALUE";
- //
- // dataColumn19
- //
- this.dataColumn19.Caption = "新值";
- this.dataColumn19.ColumnName = "NEWVALUE";
- //
- // dataColumn20
- //
- this.dataColumn20.Caption = "操作者";
- this.dataColumn20.ColumnName = "CREATENAME";
- //
- // dataColumn21
- //
- this.dataColumn21.Caption = "操作时间";
- this.dataColumn21.ColumnName = "CREATETIME";
- //
- // dataColumn22
- //
- this.dataColumn22.Caption = "卡号";
- this.dataColumn22.ColumnName = "CARDID";
- //
- // ultraGrid3
- //
- appearance1.BackColor = System.Drawing.SystemColors.Window;
- appearance1.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid3.DisplayLayout.Appearance = appearance1;
- this.ultraGrid3.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid3.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance2.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance2.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance2.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance2.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid3.DisplayLayout.GroupByBox.Appearance = appearance2;
- appearance4.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid3.DisplayLayout.GroupByBox.BandLabelAppearance = appearance4;
- this.ultraGrid3.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid3.DisplayLayout.GroupByBox.Hidden = true;
- appearance3.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance3.BackColor2 = System.Drawing.SystemColors.Control;
- appearance3.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance3.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid3.DisplayLayout.GroupByBox.PromptAppearance = appearance3;
- this.ultraGrid3.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid3.DisplayLayout.MaxRowScrollRegions = 1;
- appearance7.BackColor = System.Drawing.SystemColors.Window;
- appearance7.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid3.DisplayLayout.Override.ActiveCellAppearance = appearance7;
- appearance10.BackColor = System.Drawing.SystemColors.Highlight;
- appearance10.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid3.DisplayLayout.Override.ActiveRowAppearance = appearance10;
- this.ultraGrid3.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid3.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance12.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid3.DisplayLayout.Override.CardAreaAppearance = appearance12;
- appearance8.BorderColor = System.Drawing.Color.Silver;
- appearance8.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid3.DisplayLayout.Override.CellAppearance = appearance8;
- this.ultraGrid3.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid3.DisplayLayout.Override.CellPadding = 0;
- appearance6.BackColor = System.Drawing.SystemColors.Control;
- appearance6.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance6.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance6.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance6.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid3.DisplayLayout.Override.GroupByRowAppearance = appearance6;
- appearance5.TextHAlignAsString = "Left";
- this.ultraGrid3.DisplayLayout.Override.HeaderAppearance = appearance5;
- this.ultraGrid3.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid3.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance11.BackColor = System.Drawing.SystemColors.Window;
- appearance11.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid3.DisplayLayout.Override.RowAppearance = appearance11;
- this.ultraGrid3.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance9.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid3.DisplayLayout.Override.TemplateAddRowAppearance = appearance9;
- this.ultraGrid3.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid3.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid3.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGrid3.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid3.Location = new System.Drawing.Point(0, 0);
- this.ultraGrid3.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.ultraGrid3.Name = "ultraGrid3";
- this.ultraGrid3.Size = new System.Drawing.Size(1601, 512);
- this.ultraGrid3.TabIndex = 5;
- this.ultraGrid3.Text = "ultraGrid3";
- //
- // panel4
- //
- this.panel4.Controls.Add(this.ultraLabel1);
- this.panel4.Controls.Add(this.ck_ctime);
- this.panel4.Controls.Add(this.ultraLabel26);
- this.panel4.Controls.Add(this.txtCreateTimeEnd);
- this.panel4.Controls.Add(this.txtCreateTimeStart);
- this.panel4.Controls.Add(this.label15);
- this.panel4.Controls.Add(this.txt_card_change_d);
- this.panel4.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel4.Location = new System.Drawing.Point(0, 0);
- this.panel4.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.panel4.Name = "panel4";
- this.panel4.Size = new System.Drawing.Size(1603, 38);
- this.panel4.TabIndex = 4;
- //
- // ultraLabel1
- //
- this.ultraLabel1.AutoSize = true;
- this.ultraLabel1.Location = new System.Drawing.Point(477, 8);
- this.ultraLabel1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel1.Name = "ultraLabel1";
- this.ultraLabel1.Size = new System.Drawing.Size(28, 24);
- this.ultraLabel1.TabIndex = 182;
- this.ultraLabel1.Text = "至";
- //
- // ck_ctime
- //
- this.ck_ctime.AutoSize = true;
- this.ck_ctime.Location = new System.Drawing.Point(219, 9);
- this.ck_ctime.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.ck_ctime.Name = "ck_ctime";
- this.ck_ctime.Size = new System.Drawing.Size(18, 17);
- this.ck_ctime.TabIndex = 181;
- this.ck_ctime.UseVisualStyleBackColor = true;
- this.ck_ctime.CheckedChanged += new System.EventHandler(this.ck_ctime_CheckedChanged);
- //
- // ultraLabel26
- //
- this.ultraLabel26.AutoSize = true;
- this.ultraLabel26.Location = new System.Drawing.Point(249, 8);
- this.ultraLabel26.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel26.Name = "ultraLabel26";
- this.ultraLabel26.Size = new System.Drawing.Size(89, 24);
- this.ultraLabel26.TabIndex = 180;
- this.ultraLabel26.Text = "操作时间";
- //
- // txtCreateTimeEnd
- //
- this.txtCreateTimeEnd.DateButtons.Add(dateButton1);
- this.txtCreateTimeEnd.Format = "yyyy/MM/dd";
- this.txtCreateTimeEnd.Location = new System.Drawing.Point(505, 5);
- this.txtCreateTimeEnd.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.txtCreateTimeEnd.Name = "txtCreateTimeEnd";
- this.txtCreateTimeEnd.NonAutoSizeHeight = 25;
- this.txtCreateTimeEnd.Size = new System.Drawing.Size(143, 25);
- this.txtCreateTimeEnd.TabIndex = 179;
- this.txtCreateTimeEnd.Value = new System.DateTime(2016, 3, 1, 0, 0, 0, 0);
- //
- // txtCreateTimeStart
- //
- dateButton2.Date = new System.DateTime(((long)(0)));
- this.txtCreateTimeStart.DateButtons.Add(dateButton2);
- this.txtCreateTimeStart.Format = "yyyy/MM/dd";
- this.txtCreateTimeStart.Location = new System.Drawing.Point(327, 5);
- this.txtCreateTimeStart.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.txtCreateTimeStart.Name = "txtCreateTimeStart";
- this.txtCreateTimeStart.NonAutoSizeHeight = 25;
- this.txtCreateTimeStart.Size = new System.Drawing.Size(143, 25);
- this.txtCreateTimeStart.TabIndex = 178;
- this.txtCreateTimeStart.Value = "2015/11/17 0:00:00";
- //
- // label15
- //
- this.label15.AutoSize = true;
- this.label15.Location = new System.Drawing.Point(13, 10);
- this.label15.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label15.Name = "label15";
- this.label15.Size = new System.Drawing.Size(37, 15);
- this.label15.TabIndex = 177;
- this.label15.Text = "卡号";
- //
- // txt_card_change_d
- //
- this.txt_card_change_d.Location = new System.Drawing.Point(57, 5);
- this.txt_card_change_d.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.txt_card_change_d.MaxLength = 200;
- this.txt_card_change_d.Name = "txt_card_change_d";
- this.txt_card_change_d.Size = new System.Drawing.Size(149, 24);
- this.txt_card_change_d.TabIndex = 175;
- //
- // ultraTabControl1
- //
- this.ultraTabControl1.Controls.Add(this.ultraTabSharedControlsPage1);
- this.ultraTabControl1.Controls.Add(this.ultraTabPageControl1);
- this.ultraTabControl1.Controls.Add(this.ultraTabPageControl2);
- this.ultraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraTabControl1.Location = new System.Drawing.Point(0, 0);
- this.ultraTabControl1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.ultraTabControl1.Name = "ultraTabControl1";
- this.ultraTabControl1.SharedControlsPage = this.ultraTabSharedControlsPage1;
- this.ultraTabControl1.Size = new System.Drawing.Size(1607, 581);
- this.ultraTabControl1.TabIndex = 5;
- this.ultraTabControl1.TabOrientation = Infragistics.Win.UltraWinTabs.TabOrientation.BottomLeft;
- ultraTab1.TabPage = this.ultraTabPageControl1;
- ultraTab1.Text = "油卡维护";
- ultraTab2.TabPage = this.ultraTabPageControl2;
- ultraTab2.Text = "操作记录";
- this.ultraTabControl1.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
- ultraTab1,
- ultraTab2});
- this.ultraTabControl1.SelectedTabChanged += new Infragistics.Win.UltraWinTabControl.SelectedTabChangedEventHandler(this.ultraTabControl1_SelectedTabChanged);
- //
- // ultraTabSharedControlsPage1
- //
- this.ultraTabSharedControlsPage1.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabSharedControlsPage1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.ultraTabSharedControlsPage1.Name = "ultraTabSharedControlsPage1";
- this.ultraTabSharedControlsPage1.Size = new System.Drawing.Size(1603, 552);
- //
- // FrmPurOilCardMaintain
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(1607, 581);
- this.Controls.Add(this.ultraTabControl1);
- this.Margin = new System.Windows.Forms.Padding(7, 6, 7, 6);
- this.Name = "FrmPurOilCardMaintain";
- this.Text = "油卡维护";
- this.Load += new System.EventHandler(this.FrmPurOilCardMaintain_Load);
- this.Shown += new System.EventHandler(this.FrmPurOilCardMaintain_Shown);
- this.ultraTabPageControl1.ResumeLayout(false);
- this.panel2.ResumeLayout(false);
- this.panel6.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.card)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox4)).EndInit();
- this.ultraExpandableGroupBox4.ResumeLayout(false);
- this.ultraExpandableGroupBoxPanel4.ResumeLayout(false);
- this.ultraExpandableGroupBoxPanel4_Fill_Panel.ResumeLayout(false);
- this.ultraExpandableGroupBoxPanel4_Fill_Panel.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txt_car_add)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_remark)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_card_no_add)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_type2_add)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_use_name_add)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).EndInit();
- this.panel3.ResumeLayout(false);
- this.panel3.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txt_status)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_useName)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_card_d_no)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).EndInit();
- this.ultraExpandableGroupBox1.ResumeLayout(false);
- this.ultraExpandableGroupBoxPanel1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox2)).EndInit();
- this.ultraExpandableGroupBox2.ResumeLayout(false);
- this.ultraExpandableGroupBoxPanel2.ResumeLayout(false);
- this.panel1.ResumeLayout(false);
- this.panel1.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txt_User_name1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_type1_M)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_cardMD_no)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_org_name)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_Card_No_M)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox3)).EndInit();
- this.ultraExpandableGroupBox3.ResumeLayout(false);
- this.ultraExpandableGroupBoxPanel3.ResumeLayout(false);
- this.ultraExpandableGroupBoxPanel3.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txt_card_m_add)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_org_add)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_type1_add)).EndInit();
- this.ultraTabPageControl2.ResumeLayout(false);
- this.panel5.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid4)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.changeRecord)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).EndInit();
- this.panel4.ResumeLayout(false);
- this.panel4.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txtCreateTimeEnd)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtCreateTimeStart)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_card_change_d)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).EndInit();
- this.ultraTabControl1.ResumeLayout(false);
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.Panel panel1;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.Label label1;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_org_name;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_Card_No_M;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid1;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid2;
- private System.Windows.Forms.Panel panel3;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.Label label4;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_useName;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_card_d_no;
- private System.Data.DataSet card;
- private System.Data.DataTable dataTable1;
- private System.Data.DataColumn dataColumn2;
- private System.Data.DataColumn dataColumn3;
- private System.Data.DataColumn dataColumn5;
- private System.Data.DataColumn dataColumn6;
- private System.Data.DataTable dataTable2;
- private System.Data.DataColumn dataColumn9;
- private System.Data.DataColumn dataColumn10;
- private System.Data.DataColumn dataColumn11;
- private System.Data.DataColumn dataColumn12;
- private System.Data.DataColumn dataColumn13;
- private System.Data.DataColumn dataColumn14;
- private System.Data.DataColumn dataColumn16;
- private System.Windows.Forms.Label label5;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_status;
- private System.Windows.Forms.Label label6;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_org_add;
- private System.Windows.Forms.Label label7;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_card_m_add;
- private System.Windows.Forms.Label label11;
- private System.Windows.Forms.Label label10;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_type2_add;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_type1_add;
- private System.Windows.Forms.Label label8;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_card_no_add;
- private System.Windows.Forms.Label label9;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_use_name_add;
- private System.Data.DataColumn dataColumn1;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_remark;
- private System.Windows.Forms.Label label12;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_car_add;
- private System.Windows.Forms.Label label13;
- private System.Data.DataColumn dataColumn4;
- private System.Data.DataColumn dataColumn7;
- private Infragistics.Win.UltraWinTabControl.UltraTabControl ultraTabControl1;
- private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage1;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl1;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl2;
- private System.Windows.Forms.Panel panel4;
- private System.Windows.Forms.Label label15;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_card_change_d;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid3;
- private System.Windows.Forms.Panel panel5;
- private Infragistics.Win.Misc.UltraLabel ultraLabel1;
- private System.Windows.Forms.CheckBox ck_ctime;
- private Infragistics.Win.Misc.UltraLabel ultraLabel26;
- private Infragistics.Win.UltraWinSchedule.UltraCalendarCombo txtCreateTimeEnd;
- private Infragistics.Win.UltraWinSchedule.UltraCalendarCombo txtCreateTimeStart;
- private System.Data.DataSet changeRecord;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid4;
- private System.Data.DataTable dataTable3;
- private System.Data.DataColumn dataColumn8;
- private System.Data.DataColumn dataColumn17;
- private System.Data.DataColumn dataColumn18;
- private System.Data.DataColumn dataColumn19;
- private System.Data.DataColumn dataColumn20;
- private System.Data.DataColumn dataColumn21;
- private System.Data.DataColumn dataColumn22;
- private System.Data.DataColumn dataColumn23;
- private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox3;
- private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel3;
- private System.Windows.Forms.Panel panel2;
- private System.Windows.Forms.Panel panel6;
- private Infragistics.Win.UltraWinToolbars.UltraToolbarsManager ultraToolbarsManager1;
- private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox1;
- private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel1;
- private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox2;
- private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel2;
- private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox4;
- private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel4;
- private System.Windows.Forms.Panel ultraExpandableGroupBoxPanel4_Fill_Panel;
- private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Left;
- private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Right;
- private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Top;
- private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _ultraExpandableGroupBoxPanel4_Toolbars_Dock_Area_Bottom;
- private System.Windows.Forms.Button btn_query_d;
- private System.Data.DataColumn dataColumn24;
- private System.Windows.Forms.Label label14;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_cardMD_no;
- private System.Windows.Forms.Label label16;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_type1_M;
- private System.Windows.Forms.CheckBox ck_is_all;
- private System.Windows.Forms.Label label17;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_User_name1;
- }
- }
|