| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172 |
- namespace Core.StlMes.Client.Lims.Resource
- {
- partial class FrmMaterialsCRKInfo
- {
- /// <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()
- {
- Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIALNAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("LARGE_SAMPLE_SIZE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DW");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PRICE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GS");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIALCLASS");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIALID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CRGS");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("COUNT");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CHECK_TIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FLR");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("LLR");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DEPTID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("REMARK");
- Infragistics.Win.Appearance appearance90 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance18 = 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.Appearance appearance25 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance91 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance40 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance63 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance64 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance65 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance66 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance67 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance68 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance69 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance70 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance71 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance72 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance73 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance74 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance75 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance76 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance27 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table2", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIALNAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("LARGE_SAMPLE_SIZE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DW");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PRICE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GS");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIALCLASS");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIALID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CRGS");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("COUNT");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CHECK_TIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CHECK_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DEPTID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("REMARK");
- Infragistics.Win.Appearance appearance28 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance29 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance30 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance31 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance32 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance33 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance35 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance36 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance37 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance38 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance39 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance77 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance78 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance79 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance80 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance81 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance82 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance83 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance84 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance85 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance86 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance87 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance88 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance89 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab1 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab2 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance34 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance44 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance45 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance46 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance43 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance42 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance41 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance47 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance48 = new Infragistics.Win.Appearance();
- this.ultraTabPageControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.ultraGrid2 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.dataSet1 = new System.Data.DataSet();
- this.dataTable1 = new System.Data.DataTable();
- this.dataColumn1 = new System.Data.DataColumn();
- this.dataColumn2 = new System.Data.DataColumn();
- this.dataColumn3 = new System.Data.DataColumn();
- this.dataColumn4 = new System.Data.DataColumn();
- this.dataColumn5 = new System.Data.DataColumn();
- this.dataColumn7 = new System.Data.DataColumn();
- this.dataColumn9 = new System.Data.DataColumn();
- this.dataColumn8 = 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.dataColumn15 = new System.Data.DataColumn();
- this.dataTable2 = new System.Data.DataTable();
- this.dataColumn16 = 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.dataColumn22 = new System.Data.DataColumn();
- this.dataColumn23 = new System.Data.DataColumn();
- this.dataColumn24 = new System.Data.DataColumn();
- this.dataColumn25 = new System.Data.DataColumn();
- this.dataColumn26 = new System.Data.DataColumn();
- this.dataColumn27 = new System.Data.DataColumn();
- this.dataColumn28 = new System.Data.DataColumn();
- this.dataColumn29 = new System.Data.DataColumn();
- this.ultraExpandableGroupBox1 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
- this.ultraExpandableGroupBoxPanel1 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
- this.ultraTextEditor1 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraComboEditor1 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraTextEditor2 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTextEditor3 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraDateTimeEditor1 = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
- this.ultraComboEditor7 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel2 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel3 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel4 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel5 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel6 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor4 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel7 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor5 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTextEditor6 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTextEditor12 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel8 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor19 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel9 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel10 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel14 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel25 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor20 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel26 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraComboEditor8 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraTextEditor21 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel27 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel28 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTabPageControl2 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.ultraExpandableGroupBox2 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
- this.ultraExpandableGroupBoxPanel2 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
- this.ultraTextEditor7 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraComboEditor2 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraTextEditor10 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraDateTimeEditor2 = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
- this.ultraComboEditor4 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel1 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel12 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel13 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel15 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor11 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel16 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor13 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTextEditor14 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTextEditor15 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel17 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor16 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel18 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel19 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel20 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel21 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor17 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel22 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraComboEditor5 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraTextEditor18 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel23 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel24 = new Infragistics.Win.Misc.UltraLabel();
- this.FrmBase_Fill_Panel_Fill_Panel_Fill_Panel = new System.Windows.Forms.Panel();
- this.panel2 = new System.Windows.Forms.Panel();
- this.ultraTabControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
- this.ultraTabSharedControlsPage1 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
- this.panel1 = new System.Windows.Forms.Panel();
- this.cbQueryDEPTID = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel42 = new Infragistics.Win.Misc.UltraLabel();
- this.dateEnd = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
- this.chkTime = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.dateBegin = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
- this.ultraComboEditor6 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraCheckEditor2 = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.ultraCheckEditor1 = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.ultraComboEditor3 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraCheckEditor3 = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.FrmBase_Fill_Panel_Fill_Panel = new System.Windows.Forms.Panel();
- this.FrmBase_Fill_Panel = new System.Windows.Forms.Panel();
- this.ultraTextEditor9 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraComboEditor9 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraTextEditor22 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTextEditor23 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraDateTimeEditor3 = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
- this.ultraComboEditor10 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel11 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel29 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel30 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel31 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel32 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor24 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel33 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor25 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTextEditor26 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTextEditor27 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel34 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor28 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel35 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel36 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel37 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel38 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor29 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel39 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraComboEditor11 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraTextEditor30 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel40 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel41 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTabPageControl1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).BeginInit();
- this.ultraExpandableGroupBox1.SuspendLayout();
- this.ultraExpandableGroupBoxPanel1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraDateTimeEditor1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor7)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor4)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor5)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor6)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor12)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor19)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor20)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor8)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor21)).BeginInit();
- this.ultraTabPageControl2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox2)).BeginInit();
- this.ultraExpandableGroupBox2.SuspendLayout();
- this.ultraExpandableGroupBoxPanel2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor7)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor10)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraDateTimeEditor2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor4)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor11)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor13)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor14)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor15)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor16)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor17)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor5)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor18)).BeginInit();
- this.FrmBase_Fill_Panel_Fill_Panel_Fill_Panel.SuspendLayout();
- this.panel2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).BeginInit();
- this.ultraTabControl1.SuspendLayout();
- this.panel1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.cbQueryDEPTID)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dateEnd)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.chkTime)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dateBegin)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor6)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraCheckEditor2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraCheckEditor1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraCheckEditor3)).BeginInit();
- this.FrmBase_Fill_Panel_Fill_Panel.SuspendLayout();
- this.FrmBase_Fill_Panel.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor9)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor9)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor22)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor23)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraDateTimeEditor3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor10)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor24)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor25)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor26)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor27)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor28)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor29)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor11)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor30)).BeginInit();
- this.SuspendLayout();
- //
- // ultraTabPageControl1
- //
- this.ultraTabPageControl1.Controls.Add(this.ultraGrid2);
- this.ultraTabPageControl1.Controls.Add(this.ultraExpandableGroupBox1);
- this.ultraTabPageControl1.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabPageControl1.Name = "ultraTabPageControl1";
- this.ultraTabPageControl1.Size = new System.Drawing.Size(1322, 406);
- //
- // ultraGrid2
- //
- this.ultraGrid2.DataMember = "Table1";
- this.ultraGrid2.DataSource = this.dataSet1;
- appearance13.BackColor = System.Drawing.SystemColors.Window;
- appearance13.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid2.DisplayLayout.Appearance = appearance13;
- ultraGridColumn1.Header.VisiblePosition = 0;
- ultraGridColumn1.RowLayoutColumnInfo.OriginX = 1;
- ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn1.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn1.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn2.Header.VisiblePosition = 1;
- ultraGridColumn2.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn2.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn2.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn3.Header.VisiblePosition = 2;
- ultraGridColumn3.RowLayoutColumnInfo.OriginX = 3;
- ultraGridColumn3.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn3.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn3.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn4.Header.VisiblePosition = 3;
- ultraGridColumn4.RowLayoutColumnInfo.OriginX = 5;
- ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn4.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn4.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn5.Header.VisiblePosition = 4;
- ultraGridColumn5.Hidden = true;
- ultraGridColumn5.RowLayoutColumnInfo.OriginX = 13;
- ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn5.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn5.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn6.Header.VisiblePosition = 5;
- ultraGridColumn6.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn6.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn6.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn6.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn7.Header.VisiblePosition = 6;
- ultraGridColumn7.Hidden = true;
- ultraGridColumn7.RowLayoutColumnInfo.OriginX = 12;
- ultraGridColumn7.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn7.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn7.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn8.Header.VisiblePosition = 7;
- ultraGridColumn8.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn8.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn8.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn9.Header.VisiblePosition = 8;
- ultraGridColumn9.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn9.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn9.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn10.Header.VisiblePosition = 9;
- ultraGridColumn10.RowLayoutColumnInfo.OriginX = 7;
- ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn10.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn10.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn11.Header.VisiblePosition = 10;
- ultraGridColumn11.RowLayoutColumnInfo.OriginX = 8;
- ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn11.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn11.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn12.Header.VisiblePosition = 11;
- ultraGridColumn12.RowLayoutColumnInfo.OriginX = 9;
- ultraGridColumn12.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn12.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn12.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn13.Header.VisiblePosition = 12;
- ultraGridColumn13.RowLayoutColumnInfo.OriginX = 10;
- ultraGridColumn13.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn13.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn13.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn14.Header.VisiblePosition = 13;
- ultraGridColumn14.RowLayoutColumnInfo.OriginX = 11;
- ultraGridColumn14.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn14.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn14.RowLayoutColumnInfo.SpanY = 1;
- ultraGridBand1.Columns.AddRange(new object[] {
- ultraGridColumn1,
- ultraGridColumn2,
- ultraGridColumn3,
- ultraGridColumn4,
- ultraGridColumn5,
- ultraGridColumn6,
- ultraGridColumn7,
- ultraGridColumn8,
- ultraGridColumn9,
- ultraGridColumn10,
- ultraGridColumn11,
- ultraGridColumn12,
- ultraGridColumn13,
- ultraGridColumn14});
- ultraGridBand1.Override.SelectedAppearancesEnabled = Infragistics.Win.DefaultableBoolean.False;
- ultraGridBand1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
- this.ultraGrid2.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
- this.ultraGrid2.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid2.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance90.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance90.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance90.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance90.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid2.DisplayLayout.GroupByBox.Appearance = appearance90;
- appearance17.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid2.DisplayLayout.GroupByBox.BandLabelAppearance = appearance17;
- this.ultraGrid2.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance18.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance18.BackColor2 = System.Drawing.SystemColors.Control;
- appearance18.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance18.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid2.DisplayLayout.GroupByBox.PromptAppearance = appearance18;
- this.ultraGrid2.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid2.DisplayLayout.MaxRowScrollRegions = 1;
- appearance20.BackColor = System.Drawing.SystemColors.Window;
- appearance20.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid2.DisplayLayout.Override.ActiveCellAppearance = appearance20;
- appearance21.BackColor = System.Drawing.SystemColors.Highlight;
- appearance21.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid2.DisplayLayout.Override.ActiveRowAppearance = appearance21;
- this.ultraGrid2.DisplayLayout.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.No;
- this.ultraGrid2.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid2.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid2.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance22.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid2.DisplayLayout.Override.CardAreaAppearance = appearance22;
- appearance23.BorderColor = System.Drawing.Color.Silver;
- appearance23.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid2.DisplayLayout.Override.CellAppearance = appearance23;
- this.ultraGrid2.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid2.DisplayLayout.Override.CellPadding = 0;
- appearance24.BackColor = System.Drawing.SystemColors.Control;
- appearance24.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance24.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance24.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance24.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid2.DisplayLayout.Override.GroupByRowAppearance = appearance24;
- appearance25.TextHAlignAsString = "Left";
- this.ultraGrid2.DisplayLayout.Override.HeaderAppearance = appearance25;
- this.ultraGrid2.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid2.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance91.BackColor = System.Drawing.SystemColors.Window;
- appearance91.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid2.DisplayLayout.Override.RowAppearance = appearance91;
- this.ultraGrid2.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance40.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid2.DisplayLayout.Override.TemplateAddRowAppearance = appearance40;
- 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.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraGrid2.Location = new System.Drawing.Point(0, 0);
- this.ultraGrid2.Name = "ultraGrid2";
- this.ultraGrid2.Size = new System.Drawing.Size(1322, 257);
- this.ultraGrid2.TabIndex = 22;
- this.ultraGrid2.Text = "ultraGrid1";
- //
- // dataSet1
- //
- this.dataSet1.DataSetName = "NewDataSet";
- this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
- this.dataTable1,
- this.dataTable2});
- //
- // dataTable1
- //
- this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn1,
- this.dataColumn2,
- this.dataColumn3,
- this.dataColumn4,
- this.dataColumn5,
- this.dataColumn7,
- this.dataColumn9,
- this.dataColumn8,
- this.dataColumn10,
- this.dataColumn11,
- this.dataColumn12,
- this.dataColumn13,
- this.dataColumn14,
- this.dataColumn15});
- this.dataTable1.TableName = "Table1";
- //
- // dataColumn1
- //
- this.dataColumn1.Caption = "物资名称";
- this.dataColumn1.ColumnName = "MATERIALNAME";
- //
- // dataColumn2
- //
- this.dataColumn2.Caption = "规格型号";
- this.dataColumn2.ColumnName = "LARGE_SAMPLE_SIZE";
- //
- // dataColumn3
- //
- this.dataColumn3.Caption = "单位";
- this.dataColumn3.ColumnName = "DW";
- //
- // dataColumn4
- //
- this.dataColumn4.Caption = "计划价格";
- this.dataColumn4.ColumnName = "PRICE";
- //
- // dataColumn5
- //
- this.dataColumn5.Caption = "库存量";
- this.dataColumn5.ColumnName = "GS";
- //
- // dataColumn7
- //
- this.dataColumn7.Caption = "物资大类";
- this.dataColumn7.ColumnName = "MATERIALCLASS";
- //
- // dataColumn9
- //
- this.dataColumn9.Caption = "物料号";
- this.dataColumn9.ColumnName = "MATERIALID";
- //
- // dataColumn8
- //
- this.dataColumn8.Caption = "出库数量";
- this.dataColumn8.ColumnName = "CRGS";
- //
- // dataColumn10
- //
- this.dataColumn10.Caption = "合计金额";
- this.dataColumn10.ColumnName = "COUNT";
- //
- // dataColumn11
- //
- this.dataColumn11.Caption = "出库日期";
- this.dataColumn11.ColumnName = "CHECK_TIME";
- //
- // dataColumn12
- //
- this.dataColumn12.Caption = "发料人";
- this.dataColumn12.ColumnName = "FLR";
- //
- // dataColumn13
- //
- this.dataColumn13.Caption = "领料人";
- this.dataColumn13.ColumnName = "LLR";
- //
- // dataColumn14
- //
- this.dataColumn14.Caption = "领料科室";
- this.dataColumn14.ColumnName = "DEPTID";
- //
- // dataColumn15
- //
- this.dataColumn15.Caption = "备注";
- this.dataColumn15.ColumnName = "REMARK";
- //
- // dataTable2
- //
- this.dataTable2.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn16,
- this.dataColumn17,
- this.dataColumn18,
- this.dataColumn19,
- this.dataColumn20,
- this.dataColumn22,
- this.dataColumn23,
- this.dataColumn24,
- this.dataColumn25,
- this.dataColumn26,
- this.dataColumn27,
- this.dataColumn28,
- this.dataColumn29});
- this.dataTable2.TableName = "Table2";
- //
- // dataColumn16
- //
- this.dataColumn16.Caption = "物资名称";
- this.dataColumn16.ColumnName = "MATERIALNAME";
- //
- // dataColumn17
- //
- this.dataColumn17.Caption = "规格型号";
- this.dataColumn17.ColumnName = "LARGE_SAMPLE_SIZE";
- //
- // dataColumn18
- //
- this.dataColumn18.Caption = "单位";
- this.dataColumn18.ColumnName = "DW";
- //
- // dataColumn19
- //
- this.dataColumn19.Caption = "计划价格";
- this.dataColumn19.ColumnName = "PRICE";
- //
- // dataColumn20
- //
- this.dataColumn20.Caption = "库存量";
- this.dataColumn20.ColumnName = "GS";
- //
- // dataColumn22
- //
- this.dataColumn22.Caption = "物资大类";
- this.dataColumn22.ColumnName = "MATERIALCLASS";
- //
- // dataColumn23
- //
- this.dataColumn23.Caption = "物料号";
- this.dataColumn23.ColumnName = "MATERIALID";
- //
- // dataColumn24
- //
- this.dataColumn24.Caption = "入库数量";
- this.dataColumn24.ColumnName = "CRGS";
- //
- // dataColumn25
- //
- this.dataColumn25.Caption = "合计金额";
- this.dataColumn25.ColumnName = "COUNT";
- //
- // dataColumn26
- //
- this.dataColumn26.Caption = "入库日期";
- this.dataColumn26.ColumnName = "CHECK_TIME";
- //
- // dataColumn27
- //
- this.dataColumn27.Caption = "入库人";
- this.dataColumn27.ColumnName = "CHECK_NAME";
- //
- // dataColumn28
- //
- this.dataColumn28.Caption = "科室";
- this.dataColumn28.ColumnName = "DEPTID";
- //
- // dataColumn29
- //
- this.dataColumn29.Caption = "备注";
- this.dataColumn29.ColumnName = "REMARK";
- //
- // ultraExpandableGroupBox1
- //
- this.ultraExpandableGroupBox1.Controls.Add(this.ultraExpandableGroupBoxPanel1);
- this.ultraExpandableGroupBox1.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.ultraExpandableGroupBox1.ExpandedSize = new System.Drawing.Size(1322, 149);
- this.ultraExpandableGroupBox1.Location = new System.Drawing.Point(0, 257);
- this.ultraExpandableGroupBox1.Name = "ultraExpandableGroupBox1";
- this.ultraExpandableGroupBox1.Size = new System.Drawing.Size(1322, 149);
- this.ultraExpandableGroupBox1.TabIndex = 18;
- this.ultraExpandableGroupBox1.Text = "编辑区域";
- //
- // ultraExpandableGroupBoxPanel1
- //
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraTextEditor1);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraComboEditor1);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraTextEditor2);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraTextEditor3);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraDateTimeEditor1);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraComboEditor7);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel2);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel3);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel4);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel5);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel6);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraTextEditor4);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel7);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraTextEditor5);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraTextEditor6);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraTextEditor12);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel8);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraTextEditor19);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel9);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel10);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel14);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel25);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraTextEditor20);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel26);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraComboEditor8);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraTextEditor21);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel27);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel28);
- this.ultraExpandableGroupBoxPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraExpandableGroupBoxPanel1.Location = new System.Drawing.Point(3, 19);
- this.ultraExpandableGroupBoxPanel1.Name = "ultraExpandableGroupBoxPanel1";
- this.ultraExpandableGroupBoxPanel1.Size = new System.Drawing.Size(1316, 127);
- this.ultraExpandableGroupBoxPanel1.TabIndex = 1;
- //
- // ultraTextEditor1
- //
- this.ultraTextEditor1.AutoSize = false;
- this.ultraTextEditor1.Location = new System.Drawing.Point(450, 78);
- this.ultraTextEditor1.Multiline = true;
- this.ultraTextEditor1.Name = "ultraTextEditor1";
- this.ultraTextEditor1.Scrollbars = System.Windows.Forms.ScrollBars.Vertical;
- this.ultraTextEditor1.Size = new System.Drawing.Size(114, 46);
- this.ultraTextEditor1.TabIndex = 7;
- //
- // ultraComboEditor1
- //
- this.ultraComboEditor1.Location = new System.Drawing.Point(450, 53);
- this.ultraComboEditor1.Name = "ultraComboEditor1";
- this.ultraComboEditor1.Size = new System.Drawing.Size(114, 21);
- this.ultraComboEditor1.TabIndex = 6;
- //
- // ultraTextEditor2
- //
- this.ultraTextEditor2.Location = new System.Drawing.Point(450, 28);
- this.ultraTextEditor2.MaxLength = 50;
- this.ultraTextEditor2.Name = "ultraTextEditor2";
- this.ultraTextEditor2.Size = new System.Drawing.Size(114, 21);
- this.ultraTextEditor2.TabIndex = 5;
- //
- // ultraTextEditor3
- //
- this.ultraTextEditor3.Location = new System.Drawing.Point(81, 103);
- this.ultraTextEditor3.MaxLength = 50;
- this.ultraTextEditor3.Name = "ultraTextEditor3";
- this.ultraTextEditor3.ReadOnly = true;
- this.ultraTextEditor3.Size = new System.Drawing.Size(142, 21);
- this.ultraTextEditor3.TabIndex = 0;
- //
- // ultraDateTimeEditor1
- //
- this.ultraDateTimeEditor1.Location = new System.Drawing.Point(285, 103);
- this.ultraDateTimeEditor1.Name = "ultraDateTimeEditor1";
- this.ultraDateTimeEditor1.ReadOnly = true;
- this.ultraDateTimeEditor1.Size = new System.Drawing.Size(114, 21);
- this.ultraDateTimeEditor1.TabIndex = 0;
- //
- // ultraComboEditor7
- //
- this.ultraComboEditor7.Location = new System.Drawing.Point(81, 28);
- this.ultraComboEditor7.Name = "ultraComboEditor7";
- this.ultraComboEditor7.Size = new System.Drawing.Size(142, 21);
- this.ultraComboEditor7.TabIndex = 2;
- //
- // ultraLabel2
- //
- appearance63.TextHAlignAsString = "Center";
- appearance63.TextVAlignAsString = "Middle";
- this.ultraLabel2.Appearance = appearance63;
- this.ultraLabel2.AutoSize = true;
- this.ultraLabel2.Location = new System.Drawing.Point(418, 56);
- this.ultraLabel2.Name = "ultraLabel2";
- this.ultraLabel2.Size = new System.Drawing.Size(29, 16);
- this.ultraLabel2.TabIndex = 164;
- this.ultraLabel2.Text = "科室";
- //
- // ultraLabel3
- //
- appearance64.TextHAlignAsString = "Center";
- appearance64.TextVAlignAsString = "Middle";
- this.ultraLabel3.Appearance = appearance64;
- this.ultraLabel3.AutoSize = true;
- this.ultraLabel3.Location = new System.Drawing.Point(405, 31);
- this.ultraLabel3.Name = "ultraLabel3";
- this.ultraLabel3.Size = new System.Drawing.Size(42, 16);
- this.ultraLabel3.TabIndex = 163;
- this.ultraLabel3.Text = "领料人";
- //
- // ultraLabel4
- //
- appearance65.TextHAlignAsString = "Center";
- appearance65.TextVAlignAsString = "Middle";
- this.ultraLabel4.Appearance = appearance65;
- this.ultraLabel4.AutoSize = true;
- this.ultraLabel4.Location = new System.Drawing.Point(405, 6);
- this.ultraLabel4.Name = "ultraLabel4";
- this.ultraLabel4.Size = new System.Drawing.Size(42, 16);
- this.ultraLabel4.TabIndex = 162;
- this.ultraLabel4.Text = "发料人";
- //
- // ultraLabel5
- //
- appearance66.TextHAlignAsString = "Center";
- appearance66.TextVAlignAsString = "Middle";
- this.ultraLabel5.Appearance = appearance66;
- this.ultraLabel5.AutoSize = true;
- this.ultraLabel5.Location = new System.Drawing.Point(228, 106);
- this.ultraLabel5.Name = "ultraLabel5";
- this.ultraLabel5.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel5.TabIndex = 161;
- this.ultraLabel5.Text = "领料日期";
- //
- // ultraLabel6
- //
- appearance67.TextHAlignAsString = "Center";
- appearance67.TextVAlignAsString = "Middle";
- this.ultraLabel6.Appearance = appearance67;
- this.ultraLabel6.AutoSize = true;
- this.ultraLabel6.Location = new System.Drawing.Point(229, 81);
- this.ultraLabel6.Name = "ultraLabel6";
- this.ultraLabel6.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel6.TabIndex = 160;
- this.ultraLabel6.Text = "合计金额";
- //
- // ultraTextEditor4
- //
- this.ultraTextEditor4.Location = new System.Drawing.Point(285, 78);
- this.ultraTextEditor4.MaxLength = 50;
- this.ultraTextEditor4.Name = "ultraTextEditor4";
- this.ultraTextEditor4.ReadOnly = true;
- this.ultraTextEditor4.Size = new System.Drawing.Size(114, 21);
- this.ultraTextEditor4.TabIndex = 0;
- //
- // ultraLabel7
- //
- appearance68.TextHAlignAsString = "Center";
- appearance68.TextVAlignAsString = "Middle";
- this.ultraLabel7.Appearance = appearance68;
- this.ultraLabel7.AutoSize = true;
- this.ultraLabel7.Location = new System.Drawing.Point(228, 31);
- this.ultraLabel7.Name = "ultraLabel7";
- this.ultraLabel7.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel7.TabIndex = 158;
- this.ultraLabel7.Text = "出库数量";
- //
- // ultraTextEditor5
- //
- this.ultraTextEditor5.Location = new System.Drawing.Point(285, 53);
- this.ultraTextEditor5.MaxLength = 50;
- this.ultraTextEditor5.Name = "ultraTextEditor5";
- this.ultraTextEditor5.ReadOnly = true;
- this.ultraTextEditor5.Size = new System.Drawing.Size(114, 21);
- this.ultraTextEditor5.TabIndex = 0;
- //
- // ultraTextEditor6
- //
- this.ultraTextEditor6.Location = new System.Drawing.Point(450, 3);
- this.ultraTextEditor6.MaxLength = 50;
- this.ultraTextEditor6.Name = "ultraTextEditor6";
- this.ultraTextEditor6.Size = new System.Drawing.Size(114, 21);
- this.ultraTextEditor6.TabIndex = 4;
- //
- // ultraTextEditor12
- //
- this.ultraTextEditor12.Location = new System.Drawing.Point(81, 78);
- this.ultraTextEditor12.MaxLength = 50;
- this.ultraTextEditor12.Name = "ultraTextEditor12";
- this.ultraTextEditor12.ReadOnly = true;
- this.ultraTextEditor12.Size = new System.Drawing.Size(142, 21);
- this.ultraTextEditor12.TabIndex = 0;
- //
- // ultraLabel8
- //
- appearance69.TextHAlignAsString = "Center";
- appearance69.TextVAlignAsString = "Middle";
- this.ultraLabel8.Appearance = appearance69;
- this.ultraLabel8.AutoSize = true;
- this.ultraLabel8.Location = new System.Drawing.Point(36, 81);
- this.ultraLabel8.Name = "ultraLabel8";
- this.ultraLabel8.Size = new System.Drawing.Size(42, 16);
- this.ultraLabel8.TabIndex = 153;
- this.ultraLabel8.Text = "物料号";
- //
- // ultraTextEditor19
- //
- this.ultraTextEditor19.Location = new System.Drawing.Point(81, 53);
- this.ultraTextEditor19.MaxLength = 50;
- this.ultraTextEditor19.Name = "ultraTextEditor19";
- this.ultraTextEditor19.ReadOnly = true;
- this.ultraTextEditor19.Size = new System.Drawing.Size(142, 21);
- this.ultraTextEditor19.TabIndex = 0;
- //
- // ultraLabel9
- //
- appearance70.TextHAlignAsString = "Center";
- appearance70.TextVAlignAsString = "Middle";
- this.ultraLabel9.Appearance = appearance70;
- this.ultraLabel9.AutoSize = true;
- this.ultraLabel9.Location = new System.Drawing.Point(25, 56);
- this.ultraLabel9.Name = "ultraLabel9";
- this.ultraLabel9.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel9.TabIndex = 151;
- this.ultraLabel9.Text = "规格型号";
- //
- // ultraLabel10
- //
- appearance71.TextHAlignAsString = "Center";
- appearance71.TextVAlignAsString = "Middle";
- this.ultraLabel10.Appearance = appearance71;
- this.ultraLabel10.AutoSize = true;
- this.ultraLabel10.Location = new System.Drawing.Point(418, 92);
- this.ultraLabel10.Name = "ultraLabel10";
- this.ultraLabel10.Size = new System.Drawing.Size(29, 16);
- this.ultraLabel10.TabIndex = 149;
- this.ultraLabel10.Text = "备注";
- //
- // ultraLabel14
- //
- appearance72.TextHAlignAsString = "Center";
- appearance72.TextVAlignAsString = "Middle";
- this.ultraLabel14.Appearance = appearance72;
- this.ultraLabel14.AutoSize = true;
- this.ultraLabel14.Location = new System.Drawing.Point(240, 6);
- this.ultraLabel14.Name = "ultraLabel14";
- this.ultraLabel14.Size = new System.Drawing.Size(42, 16);
- this.ultraLabel14.TabIndex = 148;
- this.ultraLabel14.Text = "库存量";
- //
- // ultraLabel25
- //
- appearance73.TextHAlignAsString = "Center";
- appearance73.TextVAlignAsString = "Middle";
- this.ultraLabel25.Appearance = appearance73;
- this.ultraLabel25.AutoSize = true;
- this.ultraLabel25.Location = new System.Drawing.Point(229, 56);
- this.ultraLabel25.Name = "ultraLabel25";
- this.ultraLabel25.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel25.TabIndex = 128;
- this.ultraLabel25.Text = "计划价格";
- //
- // ultraTextEditor20
- //
- this.ultraTextEditor20.Location = new System.Drawing.Point(285, 28);
- this.ultraTextEditor20.MaxLength = 50;
- this.ultraTextEditor20.Name = "ultraTextEditor20";
- this.ultraTextEditor20.Size = new System.Drawing.Size(114, 21);
- this.ultraTextEditor20.TabIndex = 3;
- //
- // ultraLabel26
- //
- appearance74.TextHAlignAsString = "Center";
- appearance74.TextVAlignAsString = "Middle";
- this.ultraLabel26.Appearance = appearance74;
- this.ultraLabel26.AutoSize = true;
- this.ultraLabel26.Location = new System.Drawing.Point(24, 106);
- this.ultraLabel26.Name = "ultraLabel26";
- this.ultraLabel26.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel26.TabIndex = 126;
- this.ultraLabel26.Text = "计量单位";
- //
- // ultraComboEditor8
- //
- this.ultraComboEditor8.Location = new System.Drawing.Point(81, 3);
- this.ultraComboEditor8.Name = "ultraComboEditor8";
- this.ultraComboEditor8.Size = new System.Drawing.Size(142, 21);
- this.ultraComboEditor8.TabIndex = 1;
- //
- // ultraTextEditor21
- //
- this.ultraTextEditor21.Location = new System.Drawing.Point(285, 3);
- this.ultraTextEditor21.MaxLength = 50;
- this.ultraTextEditor21.Name = "ultraTextEditor21";
- this.ultraTextEditor21.ReadOnly = true;
- this.ultraTextEditor21.Size = new System.Drawing.Size(114, 21);
- this.ultraTextEditor21.TabIndex = 0;
- //
- // ultraLabel27
- //
- appearance75.TextHAlignAsString = "Center";
- appearance75.TextVAlignAsString = "Middle";
- this.ultraLabel27.Appearance = appearance75;
- this.ultraLabel27.AutoSize = true;
- this.ultraLabel27.Location = new System.Drawing.Point(24, 31);
- this.ultraLabel27.Name = "ultraLabel27";
- this.ultraLabel27.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel27.TabIndex = 6;
- this.ultraLabel27.Text = "物资名称";
- //
- // ultraLabel28
- //
- appearance76.TextHAlignAsString = "Center";
- appearance76.TextVAlignAsString = "Middle";
- this.ultraLabel28.Appearance = appearance76;
- this.ultraLabel28.AutoSize = true;
- this.ultraLabel28.Location = new System.Drawing.Point(24, 6);
- this.ultraLabel28.Name = "ultraLabel28";
- this.ultraLabel28.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel28.TabIndex = 4;
- this.ultraLabel28.Text = "物资大类";
- //
- // ultraTabPageControl2
- //
- this.ultraTabPageControl2.Controls.Add(this.ultraGrid1);
- this.ultraTabPageControl2.Controls.Add(this.ultraExpandableGroupBox2);
- this.ultraTabPageControl2.Location = new System.Drawing.Point(1, 23);
- this.ultraTabPageControl2.Name = "ultraTabPageControl2";
- this.ultraTabPageControl2.Size = new System.Drawing.Size(1322, 406);
- //
- // ultraGrid1
- //
- this.ultraGrid1.DataMember = "Table2";
- this.ultraGrid1.DataSource = this.dataSet1;
- appearance27.BackColor = System.Drawing.SystemColors.Window;
- appearance27.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid1.DisplayLayout.Appearance = appearance27;
- ultraGridColumn15.Header.VisiblePosition = 0;
- ultraGridColumn15.RowLayoutColumnInfo.OriginX = 1;
- ultraGridColumn15.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn15.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn15.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn16.Header.VisiblePosition = 1;
- ultraGridColumn16.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn16.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn16.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn16.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn17.Header.VisiblePosition = 2;
- ultraGridColumn17.RowLayoutColumnInfo.OriginX = 3;
- ultraGridColumn17.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn17.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn17.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn18.Header.VisiblePosition = 3;
- ultraGridColumn18.RowLayoutColumnInfo.OriginX = 5;
- ultraGridColumn18.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn18.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn18.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn19.Header.VisiblePosition = 4;
- ultraGridColumn19.Hidden = true;
- ultraGridColumn19.RowLayoutColumnInfo.OriginX = 12;
- ultraGridColumn19.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn19.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn19.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn20.Header.VisiblePosition = 5;
- ultraGridColumn20.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn20.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn20.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn20.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn21.Header.VisiblePosition = 6;
- ultraGridColumn21.Hidden = true;
- ultraGridColumn21.RowLayoutColumnInfo.OriginX = 11;
- ultraGridColumn21.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn21.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn21.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn22.Header.VisiblePosition = 7;
- ultraGridColumn22.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn22.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn22.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn22.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn23.Header.VisiblePosition = 8;
- ultraGridColumn23.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn23.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn23.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn23.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn24.Header.VisiblePosition = 9;
- ultraGridColumn24.RowLayoutColumnInfo.OriginX = 7;
- ultraGridColumn24.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn24.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn24.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn25.Header.VisiblePosition = 10;
- ultraGridColumn25.RowLayoutColumnInfo.OriginX = 8;
- ultraGridColumn25.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn25.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn25.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn26.Header.VisiblePosition = 11;
- ultraGridColumn26.RowLayoutColumnInfo.OriginX = 9;
- ultraGridColumn26.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn26.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn26.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn27.Header.VisiblePosition = 12;
- ultraGridColumn27.RowLayoutColumnInfo.OriginX = 10;
- ultraGridColumn27.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn27.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn27.RowLayoutColumnInfo.SpanY = 1;
- ultraGridBand2.Columns.AddRange(new object[] {
- ultraGridColumn15,
- ultraGridColumn16,
- ultraGridColumn17,
- ultraGridColumn18,
- ultraGridColumn19,
- ultraGridColumn20,
- ultraGridColumn21,
- ultraGridColumn22,
- ultraGridColumn23,
- ultraGridColumn24,
- ultraGridColumn25,
- ultraGridColumn26,
- ultraGridColumn27});
- ultraGridBand2.Override.SelectedAppearancesEnabled = Infragistics.Win.DefaultableBoolean.False;
- ultraGridBand2.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
- this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
- this.ultraGrid1.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid1.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance28.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance28.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance28.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance28.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid1.DisplayLayout.GroupByBox.Appearance = appearance28;
- appearance29.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid1.DisplayLayout.GroupByBox.BandLabelAppearance = appearance29;
- this.ultraGrid1.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance30.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance30.BackColor2 = System.Drawing.SystemColors.Control;
- appearance30.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance30.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid1.DisplayLayout.GroupByBox.PromptAppearance = appearance30;
- this.ultraGrid1.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid1.DisplayLayout.MaxRowScrollRegions = 1;
- appearance31.BackColor = System.Drawing.SystemColors.Window;
- appearance31.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid1.DisplayLayout.Override.ActiveCellAppearance = appearance31;
- appearance32.BackColor = System.Drawing.SystemColors.Highlight;
- appearance32.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance = appearance32;
- this.ultraGrid1.DisplayLayout.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.No;
- this.ultraGrid1.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid1.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid1.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance33.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance33;
- appearance35.BorderColor = System.Drawing.Color.Silver;
- appearance35.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid1.DisplayLayout.Override.CellAppearance = appearance35;
- this.ultraGrid1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid1.DisplayLayout.Override.CellPadding = 0;
- appearance36.BackColor = System.Drawing.SystemColors.Control;
- appearance36.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance36.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance36.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance36.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid1.DisplayLayout.Override.GroupByRowAppearance = appearance36;
- appearance37.TextHAlignAsString = "Left";
- this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance37;
- this.ultraGrid1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid1.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance38.BackColor = System.Drawing.SystemColors.Window;
- appearance38.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid1.DisplayLayout.Override.RowAppearance = appearance38;
- this.ultraGrid1.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance39.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid1.DisplayLayout.Override.TemplateAddRowAppearance = appearance39;
- 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, 0);
- this.ultraGrid1.Name = "ultraGrid1";
- this.ultraGrid1.Size = new System.Drawing.Size(1322, 257);
- this.ultraGrid1.TabIndex = 22;
- this.ultraGrid1.Text = "ultraGrid1";
- //
- // ultraExpandableGroupBox2
- //
- this.ultraExpandableGroupBox2.Controls.Add(this.ultraExpandableGroupBoxPanel2);
- this.ultraExpandableGroupBox2.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.ultraExpandableGroupBox2.ExpandedSize = new System.Drawing.Size(1322, 149);
- this.ultraExpandableGroupBox2.Location = new System.Drawing.Point(0, 257);
- this.ultraExpandableGroupBox2.Name = "ultraExpandableGroupBox2";
- this.ultraExpandableGroupBox2.Size = new System.Drawing.Size(1322, 149);
- this.ultraExpandableGroupBox2.TabIndex = 18;
- this.ultraExpandableGroupBox2.Text = "编辑区域";
- //
- // ultraExpandableGroupBoxPanel2
- //
- this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraTextEditor7);
- this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraComboEditor2);
- this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraTextEditor10);
- this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraDateTimeEditor2);
- this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraComboEditor4);
- this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraLabel1);
- this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraLabel12);
- this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraLabel13);
- this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraLabel15);
- this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraTextEditor11);
- this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraLabel16);
- this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraTextEditor13);
- this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraTextEditor14);
- this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraTextEditor15);
- this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraLabel17);
- this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraTextEditor16);
- this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraLabel18);
- this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraLabel19);
- this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraLabel20);
- this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraLabel21);
- this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraTextEditor17);
- this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraLabel22);
- this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraComboEditor5);
- this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraTextEditor18);
- this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraLabel23);
- this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraLabel24);
- this.ultraExpandableGroupBoxPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraExpandableGroupBoxPanel2.Location = new System.Drawing.Point(3, 19);
- this.ultraExpandableGroupBoxPanel2.Name = "ultraExpandableGroupBoxPanel2";
- this.ultraExpandableGroupBoxPanel2.Size = new System.Drawing.Size(1316, 127);
- this.ultraExpandableGroupBoxPanel2.TabIndex = 2;
- //
- // ultraTextEditor7
- //
- this.ultraTextEditor7.AutoSize = false;
- this.ultraTextEditor7.Location = new System.Drawing.Point(450, 56);
- this.ultraTextEditor7.Multiline = true;
- this.ultraTextEditor7.Name = "ultraTextEditor7";
- this.ultraTextEditor7.Scrollbars = System.Windows.Forms.ScrollBars.Vertical;
- this.ultraTextEditor7.Size = new System.Drawing.Size(114, 71);
- this.ultraTextEditor7.TabIndex = 6;
- //
- // ultraComboEditor2
- //
- this.ultraComboEditor2.Location = new System.Drawing.Point(450, 31);
- this.ultraComboEditor2.Name = "ultraComboEditor2";
- this.ultraComboEditor2.Size = new System.Drawing.Size(114, 21);
- this.ultraComboEditor2.TabIndex = 5;
- //
- // ultraTextEditor10
- //
- this.ultraTextEditor10.Location = new System.Drawing.Point(81, 103);
- this.ultraTextEditor10.MaxLength = 50;
- this.ultraTextEditor10.Name = "ultraTextEditor10";
- this.ultraTextEditor10.ReadOnly = true;
- this.ultraTextEditor10.Size = new System.Drawing.Size(142, 21);
- this.ultraTextEditor10.TabIndex = 0;
- //
- // ultraDateTimeEditor2
- //
- this.ultraDateTimeEditor2.Location = new System.Drawing.Point(285, 103);
- this.ultraDateTimeEditor2.Name = "ultraDateTimeEditor2";
- this.ultraDateTimeEditor2.ReadOnly = true;
- this.ultraDateTimeEditor2.Size = new System.Drawing.Size(114, 21);
- this.ultraDateTimeEditor2.TabIndex = 0;
- //
- // ultraComboEditor4
- //
- this.ultraComboEditor4.Location = new System.Drawing.Point(81, 28);
- this.ultraComboEditor4.Name = "ultraComboEditor4";
- this.ultraComboEditor4.Size = new System.Drawing.Size(142, 21);
- this.ultraComboEditor4.TabIndex = 2;
- //
- // ultraLabel1
- //
- appearance77.TextHAlignAsString = "Center";
- appearance77.TextVAlignAsString = "Middle";
- this.ultraLabel1.Appearance = appearance77;
- this.ultraLabel1.AutoSize = true;
- this.ultraLabel1.Location = new System.Drawing.Point(418, 34);
- this.ultraLabel1.Name = "ultraLabel1";
- this.ultraLabel1.Size = new System.Drawing.Size(29, 16);
- this.ultraLabel1.TabIndex = 164;
- this.ultraLabel1.Text = "科室";
- //
- // ultraLabel12
- //
- appearance78.TextHAlignAsString = "Center";
- appearance78.TextVAlignAsString = "Middle";
- this.ultraLabel12.Appearance = appearance78;
- this.ultraLabel12.AutoSize = true;
- this.ultraLabel12.Location = new System.Drawing.Point(405, 6);
- this.ultraLabel12.Name = "ultraLabel12";
- this.ultraLabel12.Size = new System.Drawing.Size(42, 16);
- this.ultraLabel12.TabIndex = 162;
- this.ultraLabel12.Text = "入库人";
- //
- // ultraLabel13
- //
- appearance79.TextHAlignAsString = "Center";
- appearance79.TextVAlignAsString = "Middle";
- this.ultraLabel13.Appearance = appearance79;
- this.ultraLabel13.AutoSize = true;
- this.ultraLabel13.Location = new System.Drawing.Point(228, 106);
- this.ultraLabel13.Name = "ultraLabel13";
- this.ultraLabel13.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel13.TabIndex = 161;
- this.ultraLabel13.Text = "入库日期";
- //
- // ultraLabel15
- //
- appearance80.TextHAlignAsString = "Center";
- appearance80.TextVAlignAsString = "Middle";
- this.ultraLabel15.Appearance = appearance80;
- this.ultraLabel15.AutoSize = true;
- this.ultraLabel15.Location = new System.Drawing.Point(229, 81);
- this.ultraLabel15.Name = "ultraLabel15";
- this.ultraLabel15.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel15.TabIndex = 160;
- this.ultraLabel15.Text = "合计金额";
- //
- // ultraTextEditor11
- //
- this.ultraTextEditor11.Location = new System.Drawing.Point(285, 78);
- this.ultraTextEditor11.MaxLength = 50;
- this.ultraTextEditor11.Name = "ultraTextEditor11";
- this.ultraTextEditor11.ReadOnly = true;
- this.ultraTextEditor11.Size = new System.Drawing.Size(114, 21);
- this.ultraTextEditor11.TabIndex = 0;
- //
- // ultraLabel16
- //
- appearance81.TextHAlignAsString = "Center";
- appearance81.TextVAlignAsString = "Middle";
- this.ultraLabel16.Appearance = appearance81;
- this.ultraLabel16.AutoSize = true;
- this.ultraLabel16.Location = new System.Drawing.Point(228, 31);
- this.ultraLabel16.Name = "ultraLabel16";
- this.ultraLabel16.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel16.TabIndex = 158;
- this.ultraLabel16.Text = "入库数量";
- //
- // ultraTextEditor13
- //
- this.ultraTextEditor13.Location = new System.Drawing.Point(285, 53);
- this.ultraTextEditor13.MaxLength = 50;
- this.ultraTextEditor13.Name = "ultraTextEditor13";
- this.ultraTextEditor13.ReadOnly = true;
- this.ultraTextEditor13.Size = new System.Drawing.Size(114, 21);
- this.ultraTextEditor13.TabIndex = 0;
- //
- // ultraTextEditor14
- //
- this.ultraTextEditor14.Location = new System.Drawing.Point(450, 3);
- this.ultraTextEditor14.MaxLength = 50;
- this.ultraTextEditor14.Name = "ultraTextEditor14";
- this.ultraTextEditor14.Size = new System.Drawing.Size(114, 21);
- this.ultraTextEditor14.TabIndex = 4;
- //
- // ultraTextEditor15
- //
- this.ultraTextEditor15.Location = new System.Drawing.Point(81, 78);
- this.ultraTextEditor15.MaxLength = 50;
- this.ultraTextEditor15.Name = "ultraTextEditor15";
- this.ultraTextEditor15.ReadOnly = true;
- this.ultraTextEditor15.Size = new System.Drawing.Size(142, 21);
- this.ultraTextEditor15.TabIndex = 0;
- //
- // ultraLabel17
- //
- appearance82.TextHAlignAsString = "Center";
- appearance82.TextVAlignAsString = "Middle";
- this.ultraLabel17.Appearance = appearance82;
- this.ultraLabel17.AutoSize = true;
- this.ultraLabel17.Location = new System.Drawing.Point(36, 81);
- this.ultraLabel17.Name = "ultraLabel17";
- this.ultraLabel17.Size = new System.Drawing.Size(42, 16);
- this.ultraLabel17.TabIndex = 153;
- this.ultraLabel17.Text = "物料号";
- //
- // ultraTextEditor16
- //
- this.ultraTextEditor16.Location = new System.Drawing.Point(81, 53);
- this.ultraTextEditor16.MaxLength = 50;
- this.ultraTextEditor16.Name = "ultraTextEditor16";
- this.ultraTextEditor16.ReadOnly = true;
- this.ultraTextEditor16.Size = new System.Drawing.Size(142, 21);
- this.ultraTextEditor16.TabIndex = 0;
- //
- // ultraLabel18
- //
- appearance83.TextHAlignAsString = "Center";
- appearance83.TextVAlignAsString = "Middle";
- this.ultraLabel18.Appearance = appearance83;
- this.ultraLabel18.AutoSize = true;
- this.ultraLabel18.Location = new System.Drawing.Point(25, 56);
- this.ultraLabel18.Name = "ultraLabel18";
- this.ultraLabel18.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel18.TabIndex = 151;
- this.ultraLabel18.Text = "规格型号";
- //
- // ultraLabel19
- //
- appearance84.TextHAlignAsString = "Center";
- appearance84.TextVAlignAsString = "Middle";
- this.ultraLabel19.Appearance = appearance84;
- this.ultraLabel19.AutoSize = true;
- this.ultraLabel19.Location = new System.Drawing.Point(418, 81);
- this.ultraLabel19.Name = "ultraLabel19";
- this.ultraLabel19.Size = new System.Drawing.Size(29, 16);
- this.ultraLabel19.TabIndex = 149;
- this.ultraLabel19.Text = "备注";
- //
- // ultraLabel20
- //
- appearance85.TextHAlignAsString = "Center";
- appearance85.TextVAlignAsString = "Middle";
- this.ultraLabel20.Appearance = appearance85;
- this.ultraLabel20.AutoSize = true;
- this.ultraLabel20.Location = new System.Drawing.Point(240, 6);
- this.ultraLabel20.Name = "ultraLabel20";
- this.ultraLabel20.Size = new System.Drawing.Size(42, 16);
- this.ultraLabel20.TabIndex = 148;
- this.ultraLabel20.Text = "库存量";
- //
- // ultraLabel21
- //
- appearance86.TextHAlignAsString = "Center";
- appearance86.TextVAlignAsString = "Middle";
- this.ultraLabel21.Appearance = appearance86;
- this.ultraLabel21.AutoSize = true;
- this.ultraLabel21.Location = new System.Drawing.Point(229, 56);
- this.ultraLabel21.Name = "ultraLabel21";
- this.ultraLabel21.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel21.TabIndex = 128;
- this.ultraLabel21.Text = "计划价格";
- //
- // ultraTextEditor17
- //
- this.ultraTextEditor17.Location = new System.Drawing.Point(285, 28);
- this.ultraTextEditor17.MaxLength = 50;
- this.ultraTextEditor17.Name = "ultraTextEditor17";
- this.ultraTextEditor17.Size = new System.Drawing.Size(114, 21);
- this.ultraTextEditor17.TabIndex = 3;
- //
- // ultraLabel22
- //
- appearance87.TextHAlignAsString = "Center";
- appearance87.TextVAlignAsString = "Middle";
- this.ultraLabel22.Appearance = appearance87;
- this.ultraLabel22.AutoSize = true;
- this.ultraLabel22.Location = new System.Drawing.Point(24, 106);
- this.ultraLabel22.Name = "ultraLabel22";
- this.ultraLabel22.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel22.TabIndex = 126;
- this.ultraLabel22.Text = "计量单位";
- //
- // ultraComboEditor5
- //
- this.ultraComboEditor5.Location = new System.Drawing.Point(81, 3);
- this.ultraComboEditor5.Name = "ultraComboEditor5";
- this.ultraComboEditor5.Size = new System.Drawing.Size(142, 21);
- this.ultraComboEditor5.TabIndex = 1;
- //
- // ultraTextEditor18
- //
- this.ultraTextEditor18.Location = new System.Drawing.Point(285, 3);
- this.ultraTextEditor18.MaxLength = 50;
- this.ultraTextEditor18.Name = "ultraTextEditor18";
- this.ultraTextEditor18.ReadOnly = true;
- this.ultraTextEditor18.Size = new System.Drawing.Size(114, 21);
- this.ultraTextEditor18.TabIndex = 0;
- //
- // ultraLabel23
- //
- appearance88.TextHAlignAsString = "Center";
- appearance88.TextVAlignAsString = "Middle";
- this.ultraLabel23.Appearance = appearance88;
- this.ultraLabel23.AutoSize = true;
- this.ultraLabel23.Location = new System.Drawing.Point(24, 31);
- this.ultraLabel23.Name = "ultraLabel23";
- this.ultraLabel23.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel23.TabIndex = 6;
- this.ultraLabel23.Text = "物资名称";
- //
- // ultraLabel24
- //
- appearance89.TextHAlignAsString = "Center";
- appearance89.TextVAlignAsString = "Middle";
- this.ultraLabel24.Appearance = appearance89;
- this.ultraLabel24.AutoSize = true;
- this.ultraLabel24.Location = new System.Drawing.Point(24, 6);
- this.ultraLabel24.Name = "ultraLabel24";
- this.ultraLabel24.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel24.TabIndex = 4;
- this.ultraLabel24.Text = "物资大类";
- //
- // FrmBase_Fill_Panel_Fill_Panel_Fill_Panel
- //
- this.FrmBase_Fill_Panel_Fill_Panel_Fill_Panel.Controls.Add(this.panel2);
- this.FrmBase_Fill_Panel_Fill_Panel_Fill_Panel.Controls.Add(this.panel1);
- this.FrmBase_Fill_Panel_Fill_Panel_Fill_Panel.Cursor = System.Windows.Forms.Cursors.Default;
- this.FrmBase_Fill_Panel_Fill_Panel_Fill_Panel.Dock = System.Windows.Forms.DockStyle.Fill;
- this.FrmBase_Fill_Panel_Fill_Panel_Fill_Panel.Location = new System.Drawing.Point(0, 0);
- this.FrmBase_Fill_Panel_Fill_Panel_Fill_Panel.Name = "FrmBase_Fill_Panel_Fill_Panel_Fill_Panel";
- this.FrmBase_Fill_Panel_Fill_Panel_Fill_Panel.Size = new System.Drawing.Size(1328, 474);
- this.FrmBase_Fill_Panel_Fill_Panel_Fill_Panel.TabIndex = 0;
- //
- // panel2
- //
- this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panel2.Controls.Add(this.ultraTabControl1);
- this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel2.Location = new System.Drawing.Point(0, 40);
- this.panel2.Name = "panel2";
- this.panel2.Size = new System.Drawing.Size(1328, 434);
- this.panel2.TabIndex = 16;
- //
- // 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.Name = "ultraTabControl1";
- this.ultraTabControl1.SharedControlsPage = this.ultraTabSharedControlsPage1;
- this.ultraTabControl1.Size = new System.Drawing.Size(1326, 432);
- this.ultraTabControl1.TabIndex = 17;
- ultraTab1.Key = "CK";
- ultraTab1.TabPage = this.ultraTabPageControl1;
- ultraTab1.Text = "出库信息";
- ultraTab2.Key = "RK";
- ultraTab2.TabPage = this.ultraTabPageControl2;
- ultraTab2.Text = "入库信息";
- this.ultraTabControl1.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
- ultraTab1,
- ultraTab2});
- //
- // ultraTabSharedControlsPage1
- //
- this.ultraTabSharedControlsPage1.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabSharedControlsPage1.Name = "ultraTabSharedControlsPage1";
- this.ultraTabSharedControlsPage1.Size = new System.Drawing.Size(1322, 406);
- //
- // panel1
- //
- this.panel1.Controls.Add(this.cbQueryDEPTID);
- this.panel1.Controls.Add(this.ultraLabel42);
- this.panel1.Controls.Add(this.dateEnd);
- this.panel1.Controls.Add(this.chkTime);
- this.panel1.Controls.Add(this.dateBegin);
- this.panel1.Controls.Add(this.ultraComboEditor6);
- this.panel1.Controls.Add(this.ultraCheckEditor2);
- this.panel1.Controls.Add(this.ultraCheckEditor1);
- this.panel1.Controls.Add(this.ultraComboEditor3);
- this.panel1.Controls.Add(this.ultraCheckEditor3);
- this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel1.Location = new System.Drawing.Point(0, 0);
- this.panel1.Name = "panel1";
- this.panel1.Size = new System.Drawing.Size(1328, 40);
- this.panel1.TabIndex = 15;
- //
- // cbQueryDEPTID
- //
- this.cbQueryDEPTID.Location = new System.Drawing.Point(804, 11);
- this.cbQueryDEPTID.Name = "cbQueryDEPTID";
- this.cbQueryDEPTID.Size = new System.Drawing.Size(122, 21);
- this.cbQueryDEPTID.TabIndex = 158;
- //
- // ultraLabel42
- //
- appearance16.TextHAlignAsString = "Center";
- appearance16.TextVAlignAsString = "Middle";
- this.ultraLabel42.Appearance = appearance16;
- this.ultraLabel42.AutoSize = true;
- this.ultraLabel42.Location = new System.Drawing.Point(179, 14);
- this.ultraLabel42.Name = "ultraLabel42";
- this.ultraLabel42.Size = new System.Drawing.Size(17, 16);
- this.ultraLabel42.TabIndex = 157;
- this.ultraLabel42.Text = "至";
- //
- // dateEnd
- //
- this.dateEnd.Location = new System.Drawing.Point(199, 11);
- this.dateEnd.Name = "dateEnd";
- this.dateEnd.Size = new System.Drawing.Size(115, 21);
- this.dateEnd.TabIndex = 156;
- //
- // chkTime
- //
- appearance34.TextHAlignAsString = "Left";
- this.chkTime.Appearance = appearance34;
- this.chkTime.AutoSize = true;
- this.chkTime.Checked = true;
- this.chkTime.CheckState = System.Windows.Forms.CheckState.Checked;
- this.chkTime.Location = new System.Drawing.Point(12, 12);
- this.chkTime.Name = "chkTime";
- this.chkTime.Size = new System.Drawing.Size(46, 19);
- this.chkTime.TabIndex = 155;
- this.chkTime.Text = "时间";
- //
- // dateBegin
- //
- this.dateBegin.Location = new System.Drawing.Point(61, 11);
- this.dateBegin.Name = "dateBegin";
- this.dateBegin.Size = new System.Drawing.Size(115, 21);
- this.dateBegin.TabIndex = 154;
- //
- // ultraComboEditor6
- //
- this.ultraComboEditor6.Location = new System.Drawing.Point(610, 11);
- this.ultraComboEditor6.Name = "ultraComboEditor6";
- this.ultraComboEditor6.Size = new System.Drawing.Size(142, 21);
- this.ultraComboEditor6.TabIndex = 153;
- //
- // ultraCheckEditor2
- //
- this.ultraCheckEditor2.AutoSize = true;
- this.ultraCheckEditor2.Location = new System.Drawing.Point(536, 12);
- this.ultraCheckEditor2.Name = "ultraCheckEditor2";
- this.ultraCheckEditor2.Size = new System.Drawing.Size(71, 19);
- this.ultraCheckEditor2.TabIndex = 128;
- this.ultraCheckEditor2.Text = "物资名称";
- //
- // ultraCheckEditor1
- //
- this.ultraCheckEditor1.AutoSize = true;
- this.ultraCheckEditor1.Location = new System.Drawing.Point(755, 12);
- this.ultraCheckEditor1.Name = "ultraCheckEditor1";
- this.ultraCheckEditor1.Size = new System.Drawing.Size(46, 19);
- this.ultraCheckEditor1.TabIndex = 127;
- this.ultraCheckEditor1.Text = "科室";
- //
- // ultraComboEditor3
- //
- this.ultraComboEditor3.Location = new System.Drawing.Point(391, 11);
- this.ultraComboEditor3.Name = "ultraComboEditor3";
- this.ultraComboEditor3.Size = new System.Drawing.Size(142, 21);
- this.ultraComboEditor3.TabIndex = 126;
- //
- // ultraCheckEditor3
- //
- this.ultraCheckEditor3.AutoSize = true;
- this.ultraCheckEditor3.Location = new System.Drawing.Point(317, 12);
- this.ultraCheckEditor3.Name = "ultraCheckEditor3";
- this.ultraCheckEditor3.Size = new System.Drawing.Size(71, 19);
- this.ultraCheckEditor3.TabIndex = 33;
- this.ultraCheckEditor3.Text = "物资大类";
- //
- // FrmBase_Fill_Panel_Fill_Panel
- //
- this.FrmBase_Fill_Panel_Fill_Panel.Controls.Add(this.FrmBase_Fill_Panel_Fill_Panel_Fill_Panel);
- this.FrmBase_Fill_Panel_Fill_Panel.Cursor = System.Windows.Forms.Cursors.Default;
- this.FrmBase_Fill_Panel_Fill_Panel.Dock = System.Windows.Forms.DockStyle.Fill;
- this.FrmBase_Fill_Panel_Fill_Panel.Location = new System.Drawing.Point(0, 0);
- this.FrmBase_Fill_Panel_Fill_Panel.Name = "FrmBase_Fill_Panel_Fill_Panel";
- this.FrmBase_Fill_Panel_Fill_Panel.Size = new System.Drawing.Size(1328, 474);
- this.FrmBase_Fill_Panel_Fill_Panel.TabIndex = 0;
- //
- // FrmBase_Fill_Panel
- //
- this.FrmBase_Fill_Panel.Controls.Add(this.FrmBase_Fill_Panel_Fill_Panel);
- this.FrmBase_Fill_Panel.Cursor = System.Windows.Forms.Cursors.Default;
- this.FrmBase_Fill_Panel.Dock = System.Windows.Forms.DockStyle.Fill;
- this.FrmBase_Fill_Panel.Location = new System.Drawing.Point(0, 0);
- this.FrmBase_Fill_Panel.Name = "FrmBase_Fill_Panel";
- this.FrmBase_Fill_Panel.Size = new System.Drawing.Size(1328, 474);
- this.FrmBase_Fill_Panel.TabIndex = 3;
- //
- // ultraTextEditor9
- //
- this.ultraTextEditor9.AutoSize = false;
- this.ultraTextEditor9.Location = new System.Drawing.Point(450, 78);
- this.ultraTextEditor9.Multiline = true;
- this.ultraTextEditor9.Name = "ultraTextEditor9";
- this.ultraTextEditor9.Scrollbars = System.Windows.Forms.ScrollBars.Vertical;
- this.ultraTextEditor9.Size = new System.Drawing.Size(114, 46);
- this.ultraTextEditor9.TabIndex = 7;
- //
- // ultraComboEditor9
- //
- this.ultraComboEditor9.DropDownStyle = Infragistics.Win.DropDownStyle.DropDown;
- this.ultraComboEditor9.Location = new System.Drawing.Point(450, 53);
- this.ultraComboEditor9.Name = "ultraComboEditor9";
- this.ultraComboEditor9.Size = new System.Drawing.Size(114, 21);
- this.ultraComboEditor9.TabIndex = 6;
- //
- // ultraTextEditor22
- //
- this.ultraTextEditor22.Location = new System.Drawing.Point(450, 28);
- this.ultraTextEditor22.MaxLength = 50;
- this.ultraTextEditor22.Name = "ultraTextEditor22";
- this.ultraTextEditor22.Size = new System.Drawing.Size(114, 21);
- this.ultraTextEditor22.TabIndex = 5;
- //
- // ultraTextEditor23
- //
- this.ultraTextEditor23.Location = new System.Drawing.Point(81, 103);
- this.ultraTextEditor23.MaxLength = 50;
- this.ultraTextEditor23.Name = "ultraTextEditor23";
- this.ultraTextEditor23.ReadOnly = true;
- this.ultraTextEditor23.Size = new System.Drawing.Size(142, 21);
- this.ultraTextEditor23.TabIndex = 166;
- //
- // ultraDateTimeEditor3
- //
- this.ultraDateTimeEditor3.Location = new System.Drawing.Point(285, 103);
- this.ultraDateTimeEditor3.Name = "ultraDateTimeEditor3";
- this.ultraDateTimeEditor3.ReadOnly = true;
- this.ultraDateTimeEditor3.Size = new System.Drawing.Size(114, 21);
- this.ultraDateTimeEditor3.TabIndex = 0;
- //
- // ultraComboEditor10
- //
- this.ultraComboEditor10.DropDownStyle = Infragistics.Win.DropDownStyle.DropDown;
- this.ultraComboEditor10.Location = new System.Drawing.Point(81, 28);
- this.ultraComboEditor10.Name = "ultraComboEditor10";
- this.ultraComboEditor10.Size = new System.Drawing.Size(142, 21);
- this.ultraComboEditor10.TabIndex = 2;
- //
- // ultraLabel11
- //
- appearance19.TextHAlignAsString = "Center";
- appearance19.TextVAlignAsString = "Middle";
- this.ultraLabel11.Appearance = appearance19;
- this.ultraLabel11.AutoSize = true;
- this.ultraLabel11.Location = new System.Drawing.Point(418, 56);
- this.ultraLabel11.Name = "ultraLabel11";
- this.ultraLabel11.Size = new System.Drawing.Size(29, 16);
- this.ultraLabel11.TabIndex = 164;
- this.ultraLabel11.Text = "科室";
- //
- // ultraLabel29
- //
- appearance44.TextHAlignAsString = "Center";
- appearance44.TextVAlignAsString = "Middle";
- this.ultraLabel29.Appearance = appearance44;
- this.ultraLabel29.AutoSize = true;
- this.ultraLabel29.Location = new System.Drawing.Point(405, 31);
- this.ultraLabel29.Name = "ultraLabel29";
- this.ultraLabel29.Size = new System.Drawing.Size(42, 16);
- this.ultraLabel29.TabIndex = 163;
- this.ultraLabel29.Text = "领料人";
- //
- // ultraLabel30
- //
- appearance45.TextHAlignAsString = "Center";
- appearance45.TextVAlignAsString = "Middle";
- this.ultraLabel30.Appearance = appearance45;
- this.ultraLabel30.AutoSize = true;
- this.ultraLabel30.Location = new System.Drawing.Point(405, 6);
- this.ultraLabel30.Name = "ultraLabel30";
- this.ultraLabel30.Size = new System.Drawing.Size(42, 16);
- this.ultraLabel30.TabIndex = 162;
- this.ultraLabel30.Text = "发料人";
- //
- // ultraLabel31
- //
- appearance46.TextHAlignAsString = "Center";
- appearance46.TextVAlignAsString = "Middle";
- this.ultraLabel31.Appearance = appearance46;
- this.ultraLabel31.AutoSize = true;
- this.ultraLabel31.Location = new System.Drawing.Point(228, 106);
- this.ultraLabel31.Name = "ultraLabel31";
- this.ultraLabel31.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel31.TabIndex = 161;
- this.ultraLabel31.Text = "领料日期";
- //
- // ultraLabel32
- //
- appearance43.TextHAlignAsString = "Center";
- appearance43.TextVAlignAsString = "Middle";
- this.ultraLabel32.Appearance = appearance43;
- this.ultraLabel32.AutoSize = true;
- this.ultraLabel32.Location = new System.Drawing.Point(229, 81);
- this.ultraLabel32.Name = "ultraLabel32";
- this.ultraLabel32.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel32.TabIndex = 160;
- this.ultraLabel32.Text = "合计金额";
- //
- // ultraTextEditor24
- //
- this.ultraTextEditor24.Location = new System.Drawing.Point(285, 78);
- this.ultraTextEditor24.MaxLength = 50;
- this.ultraTextEditor24.Name = "ultraTextEditor24";
- this.ultraTextEditor24.ReadOnly = true;
- this.ultraTextEditor24.Size = new System.Drawing.Size(114, 21);
- this.ultraTextEditor24.TabIndex = 0;
- //
- // ultraLabel33
- //
- appearance42.TextHAlignAsString = "Center";
- appearance42.TextVAlignAsString = "Middle";
- this.ultraLabel33.Appearance = appearance42;
- this.ultraLabel33.AutoSize = true;
- this.ultraLabel33.Location = new System.Drawing.Point(228, 31);
- this.ultraLabel33.Name = "ultraLabel33";
- this.ultraLabel33.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel33.TabIndex = 158;
- this.ultraLabel33.Text = "出库数量";
- //
- // ultraTextEditor25
- //
- this.ultraTextEditor25.Location = new System.Drawing.Point(285, 53);
- this.ultraTextEditor25.MaxLength = 50;
- this.ultraTextEditor25.Name = "ultraTextEditor25";
- this.ultraTextEditor25.ReadOnly = true;
- this.ultraTextEditor25.Size = new System.Drawing.Size(114, 21);
- this.ultraTextEditor25.TabIndex = 157;
- //
- // ultraTextEditor26
- //
- this.ultraTextEditor26.Location = new System.Drawing.Point(450, 3);
- this.ultraTextEditor26.MaxLength = 50;
- this.ultraTextEditor26.Name = "ultraTextEditor26";
- this.ultraTextEditor26.Size = new System.Drawing.Size(114, 21);
- this.ultraTextEditor26.TabIndex = 4;
- //
- // ultraTextEditor27
- //
- this.ultraTextEditor27.Location = new System.Drawing.Point(81, 78);
- this.ultraTextEditor27.MaxLength = 50;
- this.ultraTextEditor27.Name = "ultraTextEditor27";
- this.ultraTextEditor27.ReadOnly = true;
- this.ultraTextEditor27.Size = new System.Drawing.Size(142, 21);
- this.ultraTextEditor27.TabIndex = 0;
- //
- // ultraLabel34
- //
- appearance14.TextHAlignAsString = "Center";
- appearance14.TextVAlignAsString = "Middle";
- this.ultraLabel34.Appearance = appearance14;
- this.ultraLabel34.AutoSize = true;
- this.ultraLabel34.Location = new System.Drawing.Point(36, 81);
- this.ultraLabel34.Name = "ultraLabel34";
- this.ultraLabel34.Size = new System.Drawing.Size(42, 16);
- this.ultraLabel34.TabIndex = 153;
- this.ultraLabel34.Text = "物料号";
- //
- // ultraTextEditor28
- //
- this.ultraTextEditor28.Location = new System.Drawing.Point(81, 53);
- this.ultraTextEditor28.MaxLength = 50;
- this.ultraTextEditor28.Name = "ultraTextEditor28";
- this.ultraTextEditor28.ReadOnly = true;
- this.ultraTextEditor28.Size = new System.Drawing.Size(142, 21);
- this.ultraTextEditor28.TabIndex = 0;
- //
- // ultraLabel35
- //
- appearance4.TextHAlignAsString = "Center";
- appearance4.TextVAlignAsString = "Middle";
- this.ultraLabel35.Appearance = appearance4;
- this.ultraLabel35.AutoSize = true;
- this.ultraLabel35.Location = new System.Drawing.Point(25, 56);
- this.ultraLabel35.Name = "ultraLabel35";
- this.ultraLabel35.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel35.TabIndex = 151;
- this.ultraLabel35.Text = "规格型号";
- //
- // ultraLabel36
- //
- appearance15.TextHAlignAsString = "Center";
- appearance15.TextVAlignAsString = "Middle";
- this.ultraLabel36.Appearance = appearance15;
- this.ultraLabel36.AutoSize = true;
- this.ultraLabel36.Location = new System.Drawing.Point(418, 92);
- this.ultraLabel36.Name = "ultraLabel36";
- this.ultraLabel36.Size = new System.Drawing.Size(29, 16);
- this.ultraLabel36.TabIndex = 149;
- this.ultraLabel36.Text = "备注";
- //
- // ultraLabel37
- //
- appearance1.TextHAlignAsString = "Center";
- appearance1.TextVAlignAsString = "Middle";
- this.ultraLabel37.Appearance = appearance1;
- this.ultraLabel37.AutoSize = true;
- this.ultraLabel37.Location = new System.Drawing.Point(240, 6);
- this.ultraLabel37.Name = "ultraLabel37";
- this.ultraLabel37.Size = new System.Drawing.Size(42, 16);
- this.ultraLabel37.TabIndex = 148;
- this.ultraLabel37.Text = "库存量";
- //
- // ultraLabel38
- //
- appearance41.TextHAlignAsString = "Center";
- appearance41.TextVAlignAsString = "Middle";
- this.ultraLabel38.Appearance = appearance41;
- this.ultraLabel38.AutoSize = true;
- this.ultraLabel38.Location = new System.Drawing.Point(229, 56);
- this.ultraLabel38.Name = "ultraLabel38";
- this.ultraLabel38.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel38.TabIndex = 128;
- this.ultraLabel38.Text = "计划价格";
- //
- // ultraTextEditor29
- //
- this.ultraTextEditor29.Location = new System.Drawing.Point(285, 28);
- this.ultraTextEditor29.MaxLength = 50;
- this.ultraTextEditor29.Name = "ultraTextEditor29";
- this.ultraTextEditor29.Size = new System.Drawing.Size(114, 21);
- this.ultraTextEditor29.TabIndex = 3;
- //
- // ultraLabel39
- //
- appearance47.TextHAlignAsString = "Center";
- appearance47.TextVAlignAsString = "Middle";
- this.ultraLabel39.Appearance = appearance47;
- this.ultraLabel39.AutoSize = true;
- this.ultraLabel39.Location = new System.Drawing.Point(24, 106);
- this.ultraLabel39.Name = "ultraLabel39";
- this.ultraLabel39.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel39.TabIndex = 126;
- this.ultraLabel39.Text = "计量单位";
- //
- // ultraComboEditor11
- //
- this.ultraComboEditor11.DropDownStyle = Infragistics.Win.DropDownStyle.DropDown;
- this.ultraComboEditor11.Location = new System.Drawing.Point(81, 3);
- this.ultraComboEditor11.Name = "ultraComboEditor11";
- this.ultraComboEditor11.Size = new System.Drawing.Size(142, 21);
- this.ultraComboEditor11.TabIndex = 1;
- //
- // ultraTextEditor30
- //
- this.ultraTextEditor30.Location = new System.Drawing.Point(285, 3);
- this.ultraTextEditor30.MaxLength = 50;
- this.ultraTextEditor30.Name = "ultraTextEditor30";
- this.ultraTextEditor30.ReadOnly = true;
- this.ultraTextEditor30.Size = new System.Drawing.Size(114, 21);
- this.ultraTextEditor30.TabIndex = 0;
- //
- // ultraLabel40
- //
- appearance3.TextHAlignAsString = "Center";
- appearance3.TextVAlignAsString = "Middle";
- this.ultraLabel40.Appearance = appearance3;
- this.ultraLabel40.AutoSize = true;
- this.ultraLabel40.Location = new System.Drawing.Point(24, 31);
- this.ultraLabel40.Name = "ultraLabel40";
- this.ultraLabel40.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel40.TabIndex = 6;
- this.ultraLabel40.Text = "物资名称";
- //
- // ultraLabel41
- //
- appearance48.TextHAlignAsString = "Center";
- appearance48.TextVAlignAsString = "Middle";
- this.ultraLabel41.Appearance = appearance48;
- this.ultraLabel41.AutoSize = true;
- this.ultraLabel41.Location = new System.Drawing.Point(24, 6);
- this.ultraLabel41.Name = "ultraLabel41";
- this.ultraLabel41.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel41.TabIndex = 4;
- this.ultraLabel41.Text = "物资大类";
- //
- // FrmMaterialsCRKInfo
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(1328, 474);
- this.Controls.Add(this.FrmBase_Fill_Panel);
- this.Name = "FrmMaterialsCRKInfo";
- this.Text = "技术中心物资材料出入库信息";
- this.Load += new System.EventHandler(this.FrmMaterialsCRKInfo_Load);
- this.ultraTabPageControl1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).EndInit();
- this.ultraExpandableGroupBox1.ResumeLayout(false);
- this.ultraExpandableGroupBoxPanel1.ResumeLayout(false);
- this.ultraExpandableGroupBoxPanel1.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraDateTimeEditor1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor7)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor4)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor5)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor6)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor12)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor19)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor20)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor8)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor21)).EndInit();
- this.ultraTabPageControl2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox2)).EndInit();
- this.ultraExpandableGroupBox2.ResumeLayout(false);
- this.ultraExpandableGroupBoxPanel2.ResumeLayout(false);
- this.ultraExpandableGroupBoxPanel2.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor7)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor10)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraDateTimeEditor2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor4)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor11)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor13)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor14)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor15)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor16)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor17)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor5)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor18)).EndInit();
- this.FrmBase_Fill_Panel_Fill_Panel_Fill_Panel.ResumeLayout(false);
- this.panel2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).EndInit();
- this.ultraTabControl1.ResumeLayout(false);
- this.panel1.ResumeLayout(false);
- this.panel1.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.cbQueryDEPTID)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dateEnd)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.chkTime)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dateBegin)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor6)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraCheckEditor2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraCheckEditor1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraCheckEditor3)).EndInit();
- this.FrmBase_Fill_Panel_Fill_Panel.ResumeLayout(false);
- this.FrmBase_Fill_Panel.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor9)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor9)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor22)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor23)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraDateTimeEditor3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor10)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor24)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor25)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor26)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor27)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor28)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor29)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor11)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor30)).EndInit();
- this.ResumeLayout(false);
- }
- #endregion
- private System.Data.DataSet dataSet1;
- private System.Data.DataTable dataTable1;
- private System.Data.DataColumn dataColumn1;
- private System.Data.DataColumn dataColumn2;
- private System.Data.DataColumn dataColumn3;
- private System.Data.DataColumn dataColumn4;
- private System.Data.DataColumn dataColumn5;
- private System.Data.DataColumn dataColumn7;
- private System.Data.DataColumn dataColumn9;
- private System.Windows.Forms.Panel FrmBase_Fill_Panel_Fill_Panel_Fill_Panel;
- private System.Windows.Forms.Panel FrmBase_Fill_Panel_Fill_Panel;
- private System.Windows.Forms.Panel FrmBase_Fill_Panel;
- private System.Windows.Forms.Panel panel1;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor ultraCheckEditor3;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor3;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor ultraCheckEditor2;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor ultraCheckEditor1;
- private System.Data.DataColumn dataColumn8;
- 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 dataColumn15;
- private System.Data.DataTable dataTable2;
- private System.Data.DataColumn dataColumn16;
- private System.Data.DataColumn dataColumn17;
- private System.Data.DataColumn dataColumn18;
- private System.Data.DataColumn dataColumn19;
- private System.Data.DataColumn dataColumn20;
- private System.Data.DataColumn dataColumn22;
- private System.Data.DataColumn dataColumn23;
- private System.Data.DataColumn dataColumn24;
- private System.Data.DataColumn dataColumn25;
- private System.Data.DataColumn dataColumn26;
- private System.Data.DataColumn dataColumn27;
- private System.Data.DataColumn dataColumn28;
- private System.Data.DataColumn dataColumn29;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor6;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor9;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor9;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor22;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor23;
- private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor ultraDateTimeEditor3;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor10;
- private Infragistics.Win.Misc.UltraLabel ultraLabel11;
- private Infragistics.Win.Misc.UltraLabel ultraLabel29;
- private Infragistics.Win.Misc.UltraLabel ultraLabel30;
- private Infragistics.Win.Misc.UltraLabel ultraLabel31;
- private Infragistics.Win.Misc.UltraLabel ultraLabel32;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor24;
- private Infragistics.Win.Misc.UltraLabel ultraLabel33;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor25;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor26;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor27;
- private Infragistics.Win.Misc.UltraLabel ultraLabel34;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor28;
- private Infragistics.Win.Misc.UltraLabel ultraLabel35;
- private Infragistics.Win.Misc.UltraLabel ultraLabel36;
- private Infragistics.Win.Misc.UltraLabel ultraLabel37;
- private Infragistics.Win.Misc.UltraLabel ultraLabel38;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor29;
- private Infragistics.Win.Misc.UltraLabel ultraLabel39;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor11;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor30;
- private Infragistics.Win.Misc.UltraLabel ultraLabel40;
- private Infragistics.Win.Misc.UltraLabel ultraLabel41;
- private Infragistics.Win.Misc.UltraLabel ultraLabel42;
- private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor dateEnd;
- internal Infragistics.Win.UltraWinEditors.UltraCheckEditor chkTime;
- private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor dateBegin;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor cbQueryDEPTID;
- private System.Windows.Forms.Panel panel2;
- private Infragistics.Win.UltraWinTabControl.UltraTabControl ultraTabControl1;
- private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage1;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl1;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid2;
- private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox1;
- private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel1;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor1;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor1;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor2;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor3;
- private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor ultraDateTimeEditor1;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor7;
- private Infragistics.Win.Misc.UltraLabel ultraLabel2;
- private Infragistics.Win.Misc.UltraLabel ultraLabel3;
- private Infragistics.Win.Misc.UltraLabel ultraLabel4;
- private Infragistics.Win.Misc.UltraLabel ultraLabel5;
- private Infragistics.Win.Misc.UltraLabel ultraLabel6;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor4;
- private Infragistics.Win.Misc.UltraLabel ultraLabel7;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor5;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor6;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor12;
- private Infragistics.Win.Misc.UltraLabel ultraLabel8;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor19;
- private Infragistics.Win.Misc.UltraLabel ultraLabel9;
- private Infragistics.Win.Misc.UltraLabel ultraLabel10;
- private Infragistics.Win.Misc.UltraLabel ultraLabel14;
- private Infragistics.Win.Misc.UltraLabel ultraLabel25;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor20;
- private Infragistics.Win.Misc.UltraLabel ultraLabel26;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor8;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor21;
- private Infragistics.Win.Misc.UltraLabel ultraLabel27;
- private Infragistics.Win.Misc.UltraLabel ultraLabel28;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl2;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid1;
- private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox2;
- private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel2;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor7;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor2;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor10;
- private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor ultraDateTimeEditor2;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor4;
- private Infragistics.Win.Misc.UltraLabel ultraLabel1;
- private Infragistics.Win.Misc.UltraLabel ultraLabel12;
- private Infragistics.Win.Misc.UltraLabel ultraLabel13;
- private Infragistics.Win.Misc.UltraLabel ultraLabel15;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor11;
- private Infragistics.Win.Misc.UltraLabel ultraLabel16;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor13;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor14;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor15;
- private Infragistics.Win.Misc.UltraLabel ultraLabel17;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor16;
- private Infragistics.Win.Misc.UltraLabel ultraLabel18;
- private Infragistics.Win.Misc.UltraLabel ultraLabel19;
- private Infragistics.Win.Misc.UltraLabel ultraLabel20;
- private Infragistics.Win.Misc.UltraLabel ultraLabel21;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor17;
- private Infragistics.Win.Misc.UltraLabel ultraLabel22;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor5;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor18;
- private Infragistics.Win.Misc.UltraLabel ultraLabel23;
- private Infragistics.Win.Misc.UltraLabel ultraLabel24;
- }
- }
|