| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472 |
- using System;
- using System.Drawing;
- using System.Collections;
- using System.ComponentModel;
- using System.Windows.Forms;
- using Core.Mes.ClientFrameWork;
- using Core.Mes.IBaseInterface;
- using System.Data;
- using System.Runtime.InteropServices;
- using Core.XgMes.Client.JGKC.TurnoffSendManager;
- using Infragistics.Win.UltraWinEditors;
- namespace Core.XgMes.Client.JGKC.MaterialManager
- {
- /// <summary>
- /// FrmDepot的摘要说明。
- /// </summary>
- public class FrmMateriaLB : Mes.ClientFrameWork.FrmBase
- {
- private System.Windows.Forms.Panel panel1;
- private Infragistics.Win.UltraWinToolbars.UltraToolbarsManager ultraToolbarsManager1;
- private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _panel1_Toolbars_Dock_Area_Left;
- private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _panel1_Toolbars_Dock_Area_Right;
- private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _panel1_Toolbars_Dock_Area_Top;
- private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _panel1_Toolbars_Dock_Area_Bottom;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox1;
- private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox1;
- private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel1;
- private System.Windows.Forms.Panel panel2;
- private Infragistics.Win.UltraWinGrid.UltraGrid gd_CK;
- private Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter excelExporter;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_gfmc;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor Chk_CKmc;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_gfdm;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor Chk_CKDM;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_DM;
- private Infragistics.Win.Misc.UltraLabel ultraLabel4;
- private Infragistics.Win.Misc.UltraLabel ultraLabel1;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_MC;
- private Infragistics.Win.Misc.UltraLabel ultraLabel3;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor1;
- private Infragistics.Win.Misc.UltraLabel ultraLabel5;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor2;
- private Infragistics.Win.Misc.UltraLabel ultraLabel6;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor3;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor1;
- private Infragistics.Win.Misc.UltraLabel ultraLabel9;
- private Infragistics.Win.Misc.UltraLabel ultraLabel10;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor4;
- private Infragistics.Win.Misc.UltraLabel ultraLabel11;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor5;
- private Infragistics.Win.Misc.UltraLabel ultraLabel12;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor6;
- private Infragistics.Win.Misc.UltraLabel ultraLabel13;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor7;
- private Infragistics.Win.Misc.UltraLabel ultraLabel18;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor9;
- private Infragistics.Win.Misc.UltraLabel ultraLabel19;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor10;
- private Infragistics.Win.Misc.UltraLabel ultraLabel20;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor11;
- private Infragistics.Win.Misc.UltraLabel ultraLabel21;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor12;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor2;
- private Infragistics.Win.Misc.UltraLabel ultraLabel22;
- private Infragistics.Win.Misc.UltraLabel ultraLabel23;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor13;
- private Infragistics.Win.Misc.UltraLabel ultraLabel24;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor14;
- private Infragistics.Win.Misc.UltraLabel ultraLabel25;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor15;
- private Infragistics.Win.Misc.UltraLabel ultraLabel26;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor16;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_AllowFilter;
- private Infragistics.Win.Misc.UltraLabel ultraLabel16;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor8;
- private Infragistics.Win.Misc.UltraLabel ultraLabel17;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor18;
- private Infragistics.Win.Misc.UltraLabel ultraLabel27;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor19;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor20;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor3;
- private Infragistics.Win.Misc.UltraLabel ultraLabel37;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor4;
- private Infragistics.Win.Misc.UltraLabel ultraLabel38;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor5;
- private Infragistics.Win.Misc.UltraLabel ultraLabel39;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor6;
- private Infragistics.Win.Misc.UltraLabel ultraLabel40;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor7;
- private Infragistics.Win.Misc.UltraLabel ultraLabel41;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor8;
- private Infragistics.Win.Misc.UltraLabel ultraLabel42;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor9;
- private Infragistics.Win.Misc.UltraLabel ultraLabel43;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor10;
- private Infragistics.Win.Misc.UltraLabel ultraLabel44;
- private Infragistics.Win.Misc.UltraLabel ultraLabel45;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor21;
- private Infragistics.Win.Misc.UltraLabel ultraLabel46;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor22;
- private Infragistics.Win.Misc.UltraLabel ultraLabel47;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor23;
- private Infragistics.Win.Misc.UltraLabel ultraLabel48;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor24;
- private Infragistics.Win.Misc.UltraLabel ultraLabel49;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor25;
- private Infragistics.Win.Misc.UltraLabel ultraLabel51;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor26;
- private Infragistics.Win.Misc.UltraLabel ultraLabel52;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor27;
- private Infragistics.Win.Misc.UltraLabel ultraLabel53;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor28;
- private Infragistics.Win.Misc.UltraLabel ultraLabel54;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor29;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor30;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor11;
- private Infragistics.Win.Misc.UltraLabel ultraLabel55;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor12;
- private Infragistics.Win.Misc.UltraLabel ultraLabel56;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor13;
- private Infragistics.Win.Misc.UltraLabel ultraLabel57;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor14;
- private Infragistics.Win.Misc.UltraLabel ultraLabel58;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor15;
- private Infragistics.Win.Misc.UltraLabel ultraLabel59;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor16;
- private Infragistics.Win.Misc.UltraLabel ultraLabel60;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor17;
- private Infragistics.Win.Misc.UltraLabel ultraLabel61;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor18;
- private Infragistics.Win.Misc.UltraLabel ultraLabel62;
- private Infragistics.Win.Misc.UltraLabel ultraLabel63;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor31;
- private Infragistics.Win.Misc.UltraLabel ultraLabel64;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor32;
- private Infragistics.Win.Misc.UltraLabel ultraLabel65;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor33;
- private Infragistics.Win.Misc.UltraLabel ultraLabel66;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor34;
- private Infragistics.Win.Misc.UltraLabel ultraLabel67;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor35;
- private Infragistics.Win.Misc.UltraLabel ultraLabel75;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_Remark;
- private System.ComponentModel.IContainer components;
- public FrmMateriaLB()
- {
- //
- // Windows 窗体设计器支持所必需的
- //
- InitializeComponent();
- //
- // TODO: 在 InitializeComponent 调用后添加任何构造函数代码
- //
- }
- /// <summary>
- /// 清理所有正在使用的资源。
- /// </summary>
- protected override void Dispose( bool disposing )
- {
- if( disposing )
- {
- if(components != null)
- {
- components.Dispose();
- }
- }
- base.Dispose( disposing );
- }
- #region Windows 窗体设计器生成的代码
- /// <summary>
- /// 设计器支持所需的方法 - 不要使用代码编辑器修改
- /// 此方法的内容。
- /// </summary>
- private void InitializeComponent()
- {
- this.components = new System.ComponentModel.Container();
- Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("工具栏");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool1 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Add");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool2 = new Infragistics.Win.UltraWinToolbars.ButtonTool("UPDATE");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool3 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Del");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool4 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool5 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Export");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool6 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Close");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool7 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Add");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool8 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool9 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Close");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool10 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Export");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool11 = new Infragistics.Win.UltraWinToolbars.ButtonTool("UPDATE");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool12 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Del");
- Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Band 0", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL__LB_CODE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL__LB_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("REMARK");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RECODER");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TIME_");
- Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance20 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
- Infragistics.Win.ValueListItem valueListItem1 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem2 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem3 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem4 = new Infragistics.Win.ValueListItem();
- 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 appearance26 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance27 = new Infragistics.Win.Appearance();
- 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.ValueListItem valueListItem5 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem6 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem7 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem8 = new Infragistics.Win.ValueListItem();
- 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 appearance34 = 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.ValueListItem valueListItem9 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem10 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.Appearance appearance40 = new Infragistics.Win.Appearance();
- Infragistics.Win.ValueListItem valueListItem11 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem12 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.Appearance appearance41 = new Infragistics.Win.Appearance();
- Infragistics.Win.ValueListItem valueListItem13 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem14 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.Appearance appearance42 = new Infragistics.Win.Appearance();
- Infragistics.Win.ValueListItem valueListItem15 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem16 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.Appearance appearance43 = new Infragistics.Win.Appearance();
- Infragistics.Win.ValueListItem valueListItem17 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem18 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.Appearance appearance44 = new Infragistics.Win.Appearance();
- Infragistics.Win.ValueListItem valueListItem19 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem20 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.Appearance appearance45 = new Infragistics.Win.Appearance();
- Infragistics.Win.ValueListItem valueListItem21 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem22 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.Appearance appearance46 = new Infragistics.Win.Appearance();
- Infragistics.Win.ValueListItem valueListItem23 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem24 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.Appearance appearance47 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance48 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance49 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance50 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance51 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance52 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance53 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance54 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance55 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance56 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance57 = new Infragistics.Win.Appearance();
- Infragistics.Win.ValueListItem valueListItem25 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem26 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.Appearance appearance58 = new Infragistics.Win.Appearance();
- Infragistics.Win.ValueListItem valueListItem27 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem28 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.Appearance appearance59 = new Infragistics.Win.Appearance();
- Infragistics.Win.ValueListItem valueListItem29 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem30 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.Appearance appearance60 = new Infragistics.Win.Appearance();
- Infragistics.Win.ValueListItem valueListItem31 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem32 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.Appearance appearance61 = new Infragistics.Win.Appearance();
- Infragistics.Win.ValueListItem valueListItem33 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem34 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.Appearance appearance62 = new Infragistics.Win.Appearance();
- Infragistics.Win.ValueListItem valueListItem35 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem36 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.Appearance appearance63 = new Infragistics.Win.Appearance();
- Infragistics.Win.ValueListItem valueListItem37 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem38 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.Appearance appearance64 = new Infragistics.Win.Appearance();
- Infragistics.Win.ValueListItem valueListItem39 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem40 = new Infragistics.Win.ValueListItem();
- 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();
- this.panel1 = new System.Windows.Forms.Panel();
- this._panel1_Toolbars_Dock_Area_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
- this.ultraToolbarsManager1 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
- this._panel1_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
- this._panel1_Toolbars_Dock_Area_Top = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
- this._panel1_Toolbars_Dock_Area_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
- this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
- this.chk_AllowFilter = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.txt_gfmc = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.Chk_CKmc = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.txt_gfdm = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.Chk_CKDM = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.ultraExpandableGroupBox1 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
- this.ultraExpandableGroupBoxPanel1 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
- this.txt_Remark = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel75 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel1 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_MC = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel4 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_DM = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.panel2 = new System.Windows.Forms.Panel();
- this.gd_CK = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.excelExporter = new Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter();
- this.ultraLabel3 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor1 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel5 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor2 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel6 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor3 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraComboEditor1 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel9 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel10 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor4 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel11 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor5 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel12 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor6 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel13 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor7 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel18 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor9 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel19 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor10 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel20 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor11 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel21 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor12 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraComboEditor2 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel22 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel23 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor13 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel24 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor14 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel25 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor15 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel26 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor16 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel16 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor8 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel17 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor18 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel27 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor19 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTextEditor20 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraComboEditor3 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel37 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraComboEditor4 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel38 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraComboEditor5 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel39 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraComboEditor6 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel40 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraComboEditor7 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel41 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraComboEditor8 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel42 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraComboEditor9 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel43 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraComboEditor10 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel44 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel45 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor21 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel46 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor22 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel47 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor23 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel48 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor24 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel49 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor25 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel51 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor26 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel52 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor27 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel53 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor28 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel54 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor29 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTextEditor30 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraComboEditor11 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel55 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraComboEditor12 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel56 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraComboEditor13 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel57 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraComboEditor14 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel58 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraComboEditor15 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel59 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraComboEditor16 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel60 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraComboEditor17 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel61 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraComboEditor18 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel62 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel63 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor31 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel64 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor32 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel65 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor33 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel66 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor34 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel67 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor35 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.panel1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
- this.ultraGroupBox1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txt_gfmc)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_gfdm)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).BeginInit();
- this.ultraExpandableGroupBox1.SuspendLayout();
- this.ultraExpandableGroupBoxPanel1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txt_Remark)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_MC)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_DM)).BeginInit();
- this.panel2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.gd_CK)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor4)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor5)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor6)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor7)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor9)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor10)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor11)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor12)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor2)).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.ultraTextEditor8)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor18)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor19)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor20)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor4)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor5)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor6)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor7)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor8)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor9)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor10)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor21)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor22)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor23)).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.ultraTextEditor30)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor11)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor12)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor13)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor14)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor15)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor16)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor17)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor18)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor31)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor32)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor33)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor34)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor35)).BeginInit();
- this.SuspendLayout();
- //
- // panel1
- //
- this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Left);
- this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Right);
- this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Top);
- this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Bottom);
- 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(1028, 32);
- this.panel1.TabIndex = 0;
- //
- // _panel1_Toolbars_Dock_Area_Left
- //
- this._panel1_Toolbars_Dock_Area_Left.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
- this._panel1_Toolbars_Dock_Area_Left.BackColor = System.Drawing.SystemColors.Control;
- this._panel1_Toolbars_Dock_Area_Left.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
- this._panel1_Toolbars_Dock_Area_Left.ForeColor = System.Drawing.SystemColors.ControlText;
- this._panel1_Toolbars_Dock_Area_Left.Location = new System.Drawing.Point(0, 24);
- this._panel1_Toolbars_Dock_Area_Left.Name = "_panel1_Toolbars_Dock_Area_Left";
- this._panel1_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 8);
- this._panel1_Toolbars_Dock_Area_Left.ToolbarsManager = this.ultraToolbarsManager1;
- //
- // ultraToolbarsManager1
- //
- this.ultraToolbarsManager1.DesignerFlags = 1;
- this.ultraToolbarsManager1.DockWithinContainer = this.panel1;
- this.ultraToolbarsManager1.ShowFullMenusDelay = 500;
- this.ultraToolbarsManager1.Style = Infragistics.Win.UltraWinToolbars.ToolbarStyle.Office2000;
- ultraToolbar1.DockedColumn = 0;
- ultraToolbar1.DockedRow = 0;
- ultraToolbar1.Text = "工具栏";
- buttonTool1.InstanceProps.IsFirstInGroup = true;
- buttonTool4.InstanceProps.IsFirstInGroup = true;
- buttonTool5.InstanceProps.IsFirstInGroup = true;
- buttonTool6.InstanceProps.IsFirstInGroup = true;
- ultraToolbar1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
- buttonTool1,
- buttonTool2,
- buttonTool3,
- buttonTool4,
- buttonTool5,
- buttonTool6});
- this.ultraToolbarsManager1.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
- ultraToolbar1});
- this.ultraToolbarsManager1.ToolbarSettings.AllowCustomize = Infragistics.Win.DefaultableBoolean.False;
- buttonTool7.SharedProps.Caption = "新增";
- buttonTool7.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool8.SharedProps.Caption = "查询";
- buttonTool8.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool9.SharedProps.Caption = "关闭";
- buttonTool9.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool10.SharedProps.Caption = "导出";
- buttonTool10.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool11.SharedProps.Caption = "修改";
- buttonTool11.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool12.SharedProps.Caption = "删除";
- buttonTool12.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- this.ultraToolbarsManager1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
- buttonTool7,
- buttonTool8,
- buttonTool9,
- buttonTool10,
- buttonTool11,
- buttonTool12});
- this.ultraToolbarsManager1.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.ultraToolbarsManager1_ToolClick);
- //
- // _panel1_Toolbars_Dock_Area_Right
- //
- this._panel1_Toolbars_Dock_Area_Right.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
- this._panel1_Toolbars_Dock_Area_Right.BackColor = System.Drawing.SystemColors.Control;
- this._panel1_Toolbars_Dock_Area_Right.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
- this._panel1_Toolbars_Dock_Area_Right.ForeColor = System.Drawing.SystemColors.ControlText;
- this._panel1_Toolbars_Dock_Area_Right.Location = new System.Drawing.Point(1028, 24);
- this._panel1_Toolbars_Dock_Area_Right.Name = "_panel1_Toolbars_Dock_Area_Right";
- this._panel1_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 8);
- this._panel1_Toolbars_Dock_Area_Right.ToolbarsManager = this.ultraToolbarsManager1;
- //
- // _panel1_Toolbars_Dock_Area_Top
- //
- this._panel1_Toolbars_Dock_Area_Top.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
- this._panel1_Toolbars_Dock_Area_Top.BackColor = System.Drawing.SystemColors.Control;
- this._panel1_Toolbars_Dock_Area_Top.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
- this._panel1_Toolbars_Dock_Area_Top.ForeColor = System.Drawing.SystemColors.ControlText;
- this._panel1_Toolbars_Dock_Area_Top.Location = new System.Drawing.Point(0, 0);
- this._panel1_Toolbars_Dock_Area_Top.Name = "_panel1_Toolbars_Dock_Area_Top";
- this._panel1_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(1028, 24);
- this._panel1_Toolbars_Dock_Area_Top.ToolbarsManager = this.ultraToolbarsManager1;
- //
- // _panel1_Toolbars_Dock_Area_Bottom
- //
- this._panel1_Toolbars_Dock_Area_Bottom.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
- this._panel1_Toolbars_Dock_Area_Bottom.BackColor = System.Drawing.SystemColors.Control;
- this._panel1_Toolbars_Dock_Area_Bottom.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
- this._panel1_Toolbars_Dock_Area_Bottom.ForeColor = System.Drawing.SystemColors.ControlText;
- this._panel1_Toolbars_Dock_Area_Bottom.Location = new System.Drawing.Point(0, 32);
- this._panel1_Toolbars_Dock_Area_Bottom.Name = "_panel1_Toolbars_Dock_Area_Bottom";
- this._panel1_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(1028, 0);
- this._panel1_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.ultraToolbarsManager1;
- //
- // ultraGroupBox1
- //
- appearance1.BackColor = System.Drawing.Color.LightCyan;
- this.ultraGroupBox1.Appearance = appearance1;
- this.ultraGroupBox1.Controls.Add(this.chk_AllowFilter);
- this.ultraGroupBox1.Controls.Add(this.txt_gfmc);
- this.ultraGroupBox1.Controls.Add(this.Chk_CKmc);
- this.ultraGroupBox1.Controls.Add(this.txt_gfdm);
- this.ultraGroupBox1.Controls.Add(this.Chk_CKDM);
- this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Top;
- this.ultraGroupBox1.Location = new System.Drawing.Point(0, 32);
- this.ultraGroupBox1.Name = "ultraGroupBox1";
- this.ultraGroupBox1.Size = new System.Drawing.Size(1028, 35);
- this.ultraGroupBox1.SupportThemes = false;
- this.ultraGroupBox1.TabIndex = 1;
- //
- // chk_AllowFilter
- //
- this.chk_AllowFilter.Location = new System.Drawing.Point(919, 8);
- this.chk_AllowFilter.Name = "chk_AllowFilter";
- this.chk_AllowFilter.Size = new System.Drawing.Size(72, 20);
- this.chk_AllowFilter.TabIndex = 131;
- this.chk_AllowFilter.TabStop = false;
- this.chk_AllowFilter.Text = "允许过滤";
- this.chk_AllowFilter.CheckedChanged += new System.EventHandler(this.chk_AllowFilter_CheckedChanged);
- //
- // txt_gfmc
- //
- appearance2.BackColor = System.Drawing.Color.LightCyan;
- this.txt_gfmc.Appearance = appearance2;
- this.txt_gfmc.AutoSize = true;
- this.txt_gfmc.Enabled = false;
- this.txt_gfmc.FlatMode = true;
- this.txt_gfmc.Location = new System.Drawing.Point(339, 6);
- this.txt_gfmc.Name = "txt_gfmc";
- this.txt_gfmc.Size = new System.Drawing.Size(146, 19);
- this.txt_gfmc.TabIndex = 111;
- this.txt_gfmc.Tag = "";
- //
- // Chk_CKmc
- //
- this.Chk_CKmc.FlatMode = true;
- this.Chk_CKmc.Location = new System.Drawing.Point(231, 6);
- this.Chk_CKmc.Name = "Chk_CKmc";
- this.Chk_CKmc.Size = new System.Drawing.Size(102, 18);
- this.Chk_CKmc.TabIndex = 110;
- this.Chk_CKmc.Text = "物资类别名称";
- this.Chk_CKmc.CheckedChanged += new System.EventHandler(this.Chk_CKmc_CheckedChanged);
- //
- // txt_gfdm
- //
- appearance3.BackColor = System.Drawing.Color.LightCyan;
- this.txt_gfdm.Appearance = appearance3;
- this.txt_gfdm.AutoSize = true;
- this.txt_gfdm.Enabled = false;
- this.txt_gfdm.FlatMode = true;
- this.txt_gfdm.Location = new System.Drawing.Point(116, 5);
- this.txt_gfdm.Name = "txt_gfdm";
- this.txt_gfdm.Size = new System.Drawing.Size(96, 19);
- this.txt_gfdm.TabIndex = 109;
- this.txt_gfdm.Tag = "";
- //
- // Chk_CKDM
- //
- this.Chk_CKDM.FlatMode = true;
- this.Chk_CKDM.Location = new System.Drawing.Point(6, 6);
- this.Chk_CKDM.Name = "Chk_CKDM";
- this.Chk_CKDM.Size = new System.Drawing.Size(104, 16);
- this.Chk_CKDM.TabIndex = 108;
- this.Chk_CKDM.Text = "物资类别代码";
- this.Chk_CKDM.CheckedChanged += new System.EventHandler(this.Chk_CKDM_CheckedChanged);
- //
- // ultraExpandableGroupBox1
- //
- this.ultraExpandableGroupBox1.Controls.Add(this.ultraExpandableGroupBoxPanel1);
- this.ultraExpandableGroupBox1.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.ultraExpandableGroupBox1.ExpandedSize = new System.Drawing.Size(200, 185);
- this.ultraExpandableGroupBox1.Location = new System.Drawing.Point(0, 440);
- this.ultraExpandableGroupBox1.Name = "ultraExpandableGroupBox1";
- this.ultraExpandableGroupBox1.Size = new System.Drawing.Size(1028, 78);
- this.ultraExpandableGroupBox1.SupportThemes = false;
- this.ultraExpandableGroupBox1.TabIndex = 4;
- this.ultraExpandableGroupBox1.Text = "仓库详情";
- this.ultraExpandableGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.VisualStudio2005;
- //
- // ultraExpandableGroupBoxPanel1
- //
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_Remark);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel75);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel1);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_MC);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel4);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_DM);
- this.ultraExpandableGroupBoxPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraExpandableGroupBoxPanel1.Location = new System.Drawing.Point(2, 20);
- this.ultraExpandableGroupBoxPanel1.Name = "ultraExpandableGroupBoxPanel1";
- this.ultraExpandableGroupBoxPanel1.Size = new System.Drawing.Size(1024, 56);
- this.ultraExpandableGroupBoxPanel1.TabIndex = 0;
- //
- // txt_Remark
- //
- appearance4.BackColor = System.Drawing.Color.LightCyan;
- this.txt_Remark.Appearance = appearance4;
- this.txt_Remark.AutoSize = true;
- this.txt_Remark.FlatMode = true;
- this.txt_Remark.Location = new System.Drawing.Point(381, -1);
- this.txt_Remark.Multiline = true;
- this.txt_Remark.Name = "txt_Remark";
- this.txt_Remark.Size = new System.Drawing.Size(357, 49);
- this.txt_Remark.TabIndex = 440;
- this.txt_Remark.Tag = "";
- //
- // ultraLabel75
- //
- this.ultraLabel75.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel75.Location = new System.Drawing.Point(337, 2);
- this.ultraLabel75.Name = "ultraLabel75";
- this.ultraLabel75.Size = new System.Drawing.Size(89, 20);
- this.ultraLabel75.TabIndex = 436;
- this.ultraLabel75.Text = "备注";
- //
- // ultraLabel1
- //
- this.ultraLabel1.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel1.Location = new System.Drawing.Point(3, 31);
- this.ultraLabel1.Name = "ultraLabel1";
- this.ultraLabel1.Size = new System.Drawing.Size(86, 15);
- this.ultraLabel1.TabIndex = 363;
- this.ultraLabel1.Text = "物资类别名称";
- //
- // txt_MC
- //
- appearance5.BackColor = System.Drawing.Color.LightCyan;
- this.txt_MC.Appearance = appearance5;
- this.txt_MC.AutoSize = true;
- this.txt_MC.FlatMode = true;
- this.txt_MC.Location = new System.Drawing.Point(95, 27);
- this.txt_MC.Multiline = true;
- this.txt_MC.Name = "txt_MC";
- this.txt_MC.Size = new System.Drawing.Size(181, 19);
- this.txt_MC.TabIndex = 362;
- this.txt_MC.Tag = "";
- this.txt_MC.Enter += new System.EventHandler(this.txt_DM_Enter);
- this.txt_MC.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_DM_KeyDown);
- //
- // ultraLabel4
- //
- this.ultraLabel4.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel4.Location = new System.Drawing.Point(3, 8);
- this.ultraLabel4.Name = "ultraLabel4";
- this.ultraLabel4.Size = new System.Drawing.Size(86, 17);
- this.ultraLabel4.TabIndex = 361;
- this.ultraLabel4.Text = "物资类别代码";
- //
- // txt_DM
- //
- appearance6.BackColor = System.Drawing.Color.LightCyan;
- this.txt_DM.Appearance = appearance6;
- this.txt_DM.AutoSize = true;
- this.txt_DM.FlatMode = true;
- this.txt_DM.Location = new System.Drawing.Point(95, 2);
- this.txt_DM.Name = "txt_DM";
- this.txt_DM.Size = new System.Drawing.Size(181, 19);
- this.txt_DM.TabIndex = 358;
- this.txt_DM.Tag = "";
- this.txt_DM.Enter += new System.EventHandler(this.txt_DM_Enter);
- this.txt_DM.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_DM_KeyDown);
- //
- // panel2
- //
- this.panel2.Controls.Add(this.gd_CK);
- this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel2.Location = new System.Drawing.Point(0, 67);
- this.panel2.Name = "panel2";
- this.panel2.Size = new System.Drawing.Size(1028, 373);
- this.panel2.TabIndex = 5;
- //
- // gd_CK
- //
- appearance7.BackColor = System.Drawing.Color.Ivory;
- this.gd_CK.DisplayLayout.Appearance = appearance7;
- ultraGridColumn1.Header.Caption = "物资类别代码";
- ultraGridColumn1.Header.VisiblePosition = 0;
- ultraGridColumn1.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn1.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn1.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn2.Header.Caption = "物资类别名称";
- ultraGridColumn2.Header.VisiblePosition = 1;
- ultraGridColumn2.RowLayoutColumnInfo.OriginX = 1;
- ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn2.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn2.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn3.Header.Caption = "备注";
- ultraGridColumn3.Header.VisiblePosition = 3;
- ultraGridColumn3.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn3.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn3.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(230, 0);
- ultraGridColumn3.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn3.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn4.Header.Caption = "操作人员";
- ultraGridColumn4.Header.VisiblePosition = 4;
- ultraGridColumn4.RowLayoutColumnInfo.OriginX = 3;
- ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn4.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn4.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn5.Header.Caption = "操作时间";
- ultraGridColumn5.Header.VisiblePosition = 2;
- ultraGridColumn5.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn5.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn5.RowLayoutColumnInfo.SpanY = 1;
- ultraGridBand1.Columns.AddRange(new object[] {
- ultraGridColumn1,
- ultraGridColumn2,
- ultraGridColumn3,
- ultraGridColumn4,
- ultraGridColumn5});
- ultraGridBand1.UseRowLayout = true;
- this.gd_CK.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
- this.gd_CK.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- this.gd_CK.DisplayLayout.GroupByBox.Hidden = true;
- this.gd_CK.DisplayLayout.GroupByBox.Prompt = " 将要分组的列拖至该区域!";
- appearance8.BorderColor = System.Drawing.Color.Black;
- appearance8.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.gd_CK.DisplayLayout.Override.CellAppearance = appearance8;
- this.gd_CK.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.RowSelect;
- this.gd_CK.DisplayLayout.Override.CellPadding = 0;
- appearance9.BackColor = System.Drawing.SystemColors.Control;
- appearance9.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance9.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance9.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance9.BorderColor = System.Drawing.SystemColors.Window;
- appearance9.TextHAlign = Infragistics.Win.HAlign.Left;
- appearance9.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.gd_CK.DisplayLayout.Override.GroupByRowAppearance = appearance9;
- this.gd_CK.DisplayLayout.Override.GroupByRowDescriptionMask = "[caption]:[value] ([count]条记录)";
- this.gd_CK.DisplayLayout.Override.GroupBySummaryDisplayStyle = Infragistics.Win.UltraWinGrid.GroupBySummaryDisplayStyle.SummaryCells;
- appearance10.BackColor = System.Drawing.Color.LightSteelBlue;
- this.gd_CK.DisplayLayout.Override.HeaderAppearance = appearance10;
- this.gd_CK.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortSingle;
- this.gd_CK.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.Standard;
- appearance11.BackColor = System.Drawing.SystemColors.Window;
- appearance11.BorderColor = System.Drawing.Color.Black;
- appearance11.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.gd_CK.DisplayLayout.Override.RowAppearance = appearance11;
- appearance12.BackColor = System.Drawing.SystemColors.Window;
- appearance12.BorderColor = System.Drawing.Color.Black;
- appearance12.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.gd_CK.DisplayLayout.Override.RowPreviewAppearance = appearance12;
- this.gd_CK.DisplayLayout.Override.RowSelectorHeaderStyle = Infragistics.Win.UltraWinGrid.RowSelectorHeaderStyle.SeparateElement;
- this.gd_CK.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
- this.gd_CK.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True;
- appearance13.TextHAlign = Infragistics.Win.HAlign.Left;
- appearance13.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.gd_CK.DisplayLayout.Override.SelectedRowAppearance = appearance13;
- this.gd_CK.DisplayLayout.Override.SummaryDisplayArea = Infragistics.Win.UltraWinGrid.SummaryDisplayAreas.BottomFixed;
- appearance14.BackColor = System.Drawing.SystemColors.Window;
- this.gd_CK.DisplayLayout.Override.SummaryFooterAppearance = appearance14;
- appearance15.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- appearance15.ForeColor = System.Drawing.Color.Red;
- this.gd_CK.DisplayLayout.Override.SummaryFooterCaptionAppearance = appearance15;
- this.gd_CK.DisplayLayout.Override.SummaryFooterCaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance16.BackColor = System.Drawing.Color.MistyRose;
- appearance16.ForeColor = System.Drawing.Color.Blue;
- appearance16.TextHAlign = Infragistics.Win.HAlign.Right;
- appearance16.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.gd_CK.DisplayLayout.Override.SummaryValueAppearance = appearance16;
- appearance17.BackColor = System.Drawing.SystemColors.ControlLight;
- this.gd_CK.DisplayLayout.Override.TemplateAddRowAppearance = appearance17;
- this.gd_CK.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.gd_CK.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.gd_CK.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.gd_CK.Dock = System.Windows.Forms.DockStyle.Fill;
- this.gd_CK.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.gd_CK.Location = new System.Drawing.Point(0, 0);
- this.gd_CK.Name = "gd_CK";
- this.gd_CK.Size = new System.Drawing.Size(1028, 373);
- this.gd_CK.TabIndex = 1;
- this.gd_CK.Text = "原料垛位信息";
- this.gd_CK.AfterRowActivate += new System.EventHandler(this.gd_CK_AfterRowActivate);
- //
- // ultraLabel3
- //
- this.ultraLabel3.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel3.Location = new System.Drawing.Point(3, 55);
- this.ultraLabel3.Name = "ultraLabel3";
- this.ultraLabel3.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel3.TabIndex = 365;
- this.ultraLabel3.Text = "规格型号";
- //
- // ultraTextEditor1
- //
- appearance18.BackColor = System.Drawing.Color.LightCyan;
- this.ultraTextEditor1.Appearance = appearance18;
- this.ultraTextEditor1.AutoSize = true;
- this.ultraTextEditor1.Enabled = false;
- this.ultraTextEditor1.FlatMode = true;
- this.ultraTextEditor1.Location = new System.Drawing.Point(60, 52);
- this.ultraTextEditor1.Multiline = true;
- this.ultraTextEditor1.Name = "ultraTextEditor1";
- this.ultraTextEditor1.Size = new System.Drawing.Size(191, 19);
- this.ultraTextEditor1.TabIndex = 364;
- this.ultraTextEditor1.Tag = "";
- //
- // ultraLabel5
- //
- this.ultraLabel5.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel5.Location = new System.Drawing.Point(3, 31);
- this.ultraLabel5.Name = "ultraLabel5";
- this.ultraLabel5.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel5.TabIndex = 363;
- this.ultraLabel5.Text = "物资名称";
- //
- // ultraTextEditor2
- //
- appearance19.BackColor = System.Drawing.Color.LightCyan;
- this.ultraTextEditor2.Appearance = appearance19;
- this.ultraTextEditor2.AutoSize = true;
- this.ultraTextEditor2.Enabled = false;
- this.ultraTextEditor2.FlatMode = true;
- this.ultraTextEditor2.Location = new System.Drawing.Point(60, 28);
- this.ultraTextEditor2.Multiline = true;
- this.ultraTextEditor2.Name = "ultraTextEditor2";
- this.ultraTextEditor2.Size = new System.Drawing.Size(191, 19);
- this.ultraTextEditor2.TabIndex = 362;
- this.ultraTextEditor2.Tag = "";
- //
- // ultraLabel6
- //
- this.ultraLabel6.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel6.Location = new System.Drawing.Point(3, 8);
- this.ultraLabel6.Name = "ultraLabel6";
- this.ultraLabel6.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel6.TabIndex = 361;
- this.ultraLabel6.Text = "物资代码";
- //
- // ultraTextEditor3
- //
- appearance20.BackColor = System.Drawing.Color.LightCyan;
- this.ultraTextEditor3.Appearance = appearance20;
- this.ultraTextEditor3.AutoSize = true;
- this.ultraTextEditor3.Enabled = false;
- this.ultraTextEditor3.FlatMode = true;
- this.ultraTextEditor3.Location = new System.Drawing.Point(60, 5);
- this.ultraTextEditor3.Name = "ultraTextEditor3";
- this.ultraTextEditor3.Size = new System.Drawing.Size(84, 19);
- this.ultraTextEditor3.TabIndex = 358;
- this.ultraTextEditor3.Tag = "";
- //
- // ultraComboEditor1
- //
- appearance21.BackColor = System.Drawing.Color.LightCyan;
- this.ultraComboEditor1.Appearance = appearance21;
- this.ultraComboEditor1.AutoSize = true;
- valueListItem1.DataValue = "0";
- valueListItem2.DataValue = "A";
- valueListItem2.DisplayText = "A";
- valueListItem3.DataValue = "B";
- valueListItem3.DisplayText = "B";
- valueListItem4.DataValue = "C";
- valueListItem4.DisplayText = "C";
- this.ultraComboEditor1.Items.Add(valueListItem1);
- this.ultraComboEditor1.Items.Add(valueListItem2);
- this.ultraComboEditor1.Items.Add(valueListItem3);
- this.ultraComboEditor1.Items.Add(valueListItem4);
- this.ultraComboEditor1.Location = new System.Drawing.Point(340, 5);
- this.ultraComboEditor1.Name = "ultraComboEditor1";
- this.ultraComboEditor1.Size = new System.Drawing.Size(86, 21);
- this.ultraComboEditor1.TabIndex = 369;
- //
- // ultraLabel9
- //
- this.ultraLabel9.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel9.Location = new System.Drawing.Point(289, 8);
- this.ultraLabel9.Name = "ultraLabel9";
- this.ultraLabel9.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel9.TabIndex = 368;
- this.ultraLabel9.Text = "物资类别";
- //
- // ultraLabel10
- //
- this.ultraLabel10.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel10.Location = new System.Drawing.Point(3, 77);
- this.ultraLabel10.Name = "ultraLabel10";
- this.ultraLabel10.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel10.TabIndex = 367;
- this.ultraLabel10.Text = "材质";
- //
- // ultraTextEditor4
- //
- appearance22.BackColor = System.Drawing.Color.LightCyan;
- this.ultraTextEditor4.Appearance = appearance22;
- this.ultraTextEditor4.AutoSize = true;
- this.ultraTextEditor4.Enabled = false;
- this.ultraTextEditor4.FlatMode = true;
- this.ultraTextEditor4.Location = new System.Drawing.Point(60, 74);
- this.ultraTextEditor4.Multiline = true;
- this.ultraTextEditor4.Name = "ultraTextEditor4";
- this.ultraTextEditor4.Size = new System.Drawing.Size(191, 19);
- this.ultraTextEditor4.TabIndex = 366;
- this.ultraTextEditor4.Tag = "";
- //
- // ultraLabel11
- //
- this.ultraLabel11.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel11.Location = new System.Drawing.Point(3, 55);
- this.ultraLabel11.Name = "ultraLabel11";
- this.ultraLabel11.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel11.TabIndex = 365;
- this.ultraLabel11.Text = "规格型号";
- //
- // ultraTextEditor5
- //
- appearance23.BackColor = System.Drawing.Color.LightCyan;
- this.ultraTextEditor5.Appearance = appearance23;
- this.ultraTextEditor5.AutoSize = true;
- this.ultraTextEditor5.Enabled = false;
- this.ultraTextEditor5.FlatMode = true;
- this.ultraTextEditor5.Location = new System.Drawing.Point(60, 52);
- this.ultraTextEditor5.Multiline = true;
- this.ultraTextEditor5.Name = "ultraTextEditor5";
- this.ultraTextEditor5.Size = new System.Drawing.Size(191, 19);
- this.ultraTextEditor5.TabIndex = 364;
- this.ultraTextEditor5.Tag = "";
- //
- // ultraLabel12
- //
- this.ultraLabel12.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel12.Location = new System.Drawing.Point(3, 31);
- this.ultraLabel12.Name = "ultraLabel12";
- this.ultraLabel12.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel12.TabIndex = 363;
- this.ultraLabel12.Text = "物资名称";
- //
- // ultraTextEditor6
- //
- appearance24.BackColor = System.Drawing.Color.LightCyan;
- this.ultraTextEditor6.Appearance = appearance24;
- this.ultraTextEditor6.AutoSize = true;
- this.ultraTextEditor6.Enabled = false;
- this.ultraTextEditor6.FlatMode = true;
- this.ultraTextEditor6.Location = new System.Drawing.Point(60, 28);
- this.ultraTextEditor6.Multiline = true;
- this.ultraTextEditor6.Name = "ultraTextEditor6";
- this.ultraTextEditor6.Size = new System.Drawing.Size(191, 19);
- this.ultraTextEditor6.TabIndex = 362;
- this.ultraTextEditor6.Tag = "";
- //
- // ultraLabel13
- //
- this.ultraLabel13.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel13.Location = new System.Drawing.Point(3, 8);
- this.ultraLabel13.Name = "ultraLabel13";
- this.ultraLabel13.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel13.TabIndex = 361;
- this.ultraLabel13.Text = "物资代码";
- //
- // ultraTextEditor7
- //
- appearance25.BackColor = System.Drawing.Color.LightCyan;
- this.ultraTextEditor7.Appearance = appearance25;
- this.ultraTextEditor7.AutoSize = true;
- this.ultraTextEditor7.Enabled = false;
- this.ultraTextEditor7.FlatMode = true;
- this.ultraTextEditor7.Location = new System.Drawing.Point(60, 5);
- this.ultraTextEditor7.Name = "ultraTextEditor7";
- this.ultraTextEditor7.Size = new System.Drawing.Size(84, 19);
- this.ultraTextEditor7.TabIndex = 358;
- this.ultraTextEditor7.Tag = "";
- //
- // ultraLabel18
- //
- this.ultraLabel18.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel18.Location = new System.Drawing.Point(3, 99);
- this.ultraLabel18.Name = "ultraLabel18";
- this.ultraLabel18.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel18.TabIndex = 377;
- this.ultraLabel18.Text = "最高限价";
- //
- // ultraTextEditor9
- //
- appearance26.BackColor = System.Drawing.Color.LightCyan;
- this.ultraTextEditor9.Appearance = appearance26;
- this.ultraTextEditor9.AutoSize = true;
- this.ultraTextEditor9.Enabled = false;
- this.ultraTextEditor9.FlatMode = true;
- this.ultraTextEditor9.Location = new System.Drawing.Point(60, 96);
- this.ultraTextEditor9.Name = "ultraTextEditor9";
- this.ultraTextEditor9.Size = new System.Drawing.Size(84, 19);
- this.ultraTextEditor9.TabIndex = 376;
- this.ultraTextEditor9.Tag = "";
- //
- // ultraLabel19
- //
- this.ultraLabel19.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel19.Location = new System.Drawing.Point(289, 77);
- this.ultraLabel19.Name = "ultraLabel19";
- this.ultraLabel19.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel19.TabIndex = 375;
- this.ultraLabel19.Text = "最高限价";
- //
- // ultraTextEditor10
- //
- appearance27.BackColor = System.Drawing.Color.LightCyan;
- this.ultraTextEditor10.Appearance = appearance27;
- this.ultraTextEditor10.AutoSize = true;
- this.ultraTextEditor10.Enabled = false;
- this.ultraTextEditor10.FlatMode = true;
- this.ultraTextEditor10.Location = new System.Drawing.Point(346, 74);
- this.ultraTextEditor10.Name = "ultraTextEditor10";
- this.ultraTextEditor10.Size = new System.Drawing.Size(84, 19);
- this.ultraTextEditor10.TabIndex = 374;
- this.ultraTextEditor10.Tag = "";
- //
- // ultraLabel20
- //
- this.ultraLabel20.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel20.Location = new System.Drawing.Point(289, 55);
- this.ultraLabel20.Name = "ultraLabel20";
- this.ultraLabel20.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel20.TabIndex = 373;
- this.ultraLabel20.Text = "预估价";
- //
- // ultraTextEditor11
- //
- appearance28.BackColor = System.Drawing.Color.LightCyan;
- this.ultraTextEditor11.Appearance = appearance28;
- this.ultraTextEditor11.AutoSize = true;
- this.ultraTextEditor11.Enabled = false;
- this.ultraTextEditor11.FlatMode = true;
- this.ultraTextEditor11.Location = new System.Drawing.Point(346, 52);
- this.ultraTextEditor11.Name = "ultraTextEditor11";
- this.ultraTextEditor11.Size = new System.Drawing.Size(84, 19);
- this.ultraTextEditor11.TabIndex = 372;
- this.ultraTextEditor11.Tag = "";
- //
- // ultraLabel21
- //
- this.ultraLabel21.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel21.Location = new System.Drawing.Point(289, 33);
- this.ultraLabel21.Name = "ultraLabel21";
- this.ultraLabel21.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel21.TabIndex = 371;
- this.ultraLabel21.Text = "计划价";
- //
- // ultraTextEditor12
- //
- appearance29.BackColor = System.Drawing.Color.LightCyan;
- this.ultraTextEditor12.Appearance = appearance29;
- this.ultraTextEditor12.AutoSize = true;
- this.ultraTextEditor12.Enabled = false;
- this.ultraTextEditor12.FlatMode = true;
- this.ultraTextEditor12.Location = new System.Drawing.Point(346, 30);
- this.ultraTextEditor12.Name = "ultraTextEditor12";
- this.ultraTextEditor12.Size = new System.Drawing.Size(84, 19);
- this.ultraTextEditor12.TabIndex = 370;
- this.ultraTextEditor12.Tag = "";
- //
- // ultraComboEditor2
- //
- appearance30.BackColor = System.Drawing.Color.LightCyan;
- this.ultraComboEditor2.Appearance = appearance30;
- this.ultraComboEditor2.AutoSize = true;
- valueListItem5.DataValue = "0";
- valueListItem6.DataValue = "A";
- valueListItem6.DisplayText = "A";
- valueListItem7.DataValue = "B";
- valueListItem7.DisplayText = "B";
- valueListItem8.DataValue = "C";
- valueListItem8.DisplayText = "C";
- this.ultraComboEditor2.Items.Add(valueListItem5);
- this.ultraComboEditor2.Items.Add(valueListItem6);
- this.ultraComboEditor2.Items.Add(valueListItem7);
- this.ultraComboEditor2.Items.Add(valueListItem8);
- this.ultraComboEditor2.Location = new System.Drawing.Point(346, 5);
- this.ultraComboEditor2.Name = "ultraComboEditor2";
- this.ultraComboEditor2.Size = new System.Drawing.Size(86, 21);
- this.ultraComboEditor2.TabIndex = 369;
- //
- // ultraLabel22
- //
- this.ultraLabel22.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel22.Location = new System.Drawing.Point(289, 8);
- this.ultraLabel22.Name = "ultraLabel22";
- this.ultraLabel22.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel22.TabIndex = 368;
- this.ultraLabel22.Text = "物资类别";
- //
- // ultraLabel23
- //
- this.ultraLabel23.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel23.Location = new System.Drawing.Point(3, 77);
- this.ultraLabel23.Name = "ultraLabel23";
- this.ultraLabel23.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel23.TabIndex = 367;
- this.ultraLabel23.Text = "材质";
- //
- // ultraTextEditor13
- //
- appearance31.BackColor = System.Drawing.Color.LightCyan;
- this.ultraTextEditor13.Appearance = appearance31;
- this.ultraTextEditor13.AutoSize = true;
- this.ultraTextEditor13.Enabled = false;
- this.ultraTextEditor13.FlatMode = true;
- this.ultraTextEditor13.Location = new System.Drawing.Point(60, 74);
- this.ultraTextEditor13.Multiline = true;
- this.ultraTextEditor13.Name = "ultraTextEditor13";
- this.ultraTextEditor13.Size = new System.Drawing.Size(191, 19);
- this.ultraTextEditor13.TabIndex = 366;
- this.ultraTextEditor13.Tag = "";
- //
- // ultraLabel24
- //
- this.ultraLabel24.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel24.Location = new System.Drawing.Point(3, 55);
- this.ultraLabel24.Name = "ultraLabel24";
- this.ultraLabel24.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel24.TabIndex = 365;
- this.ultraLabel24.Text = "规格型号";
- //
- // ultraTextEditor14
- //
- appearance32.BackColor = System.Drawing.Color.LightCyan;
- this.ultraTextEditor14.Appearance = appearance32;
- this.ultraTextEditor14.AutoSize = true;
- this.ultraTextEditor14.Enabled = false;
- this.ultraTextEditor14.FlatMode = true;
- this.ultraTextEditor14.Location = new System.Drawing.Point(60, 52);
- this.ultraTextEditor14.Multiline = true;
- this.ultraTextEditor14.Name = "ultraTextEditor14";
- this.ultraTextEditor14.Size = new System.Drawing.Size(191, 19);
- this.ultraTextEditor14.TabIndex = 364;
- this.ultraTextEditor14.Tag = "";
- //
- // ultraLabel25
- //
- this.ultraLabel25.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel25.Location = new System.Drawing.Point(3, 31);
- this.ultraLabel25.Name = "ultraLabel25";
- this.ultraLabel25.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel25.TabIndex = 363;
- this.ultraLabel25.Text = "物资名称";
- //
- // ultraTextEditor15
- //
- appearance33.BackColor = System.Drawing.Color.LightCyan;
- this.ultraTextEditor15.Appearance = appearance33;
- this.ultraTextEditor15.AutoSize = true;
- this.ultraTextEditor15.Enabled = false;
- this.ultraTextEditor15.FlatMode = true;
- this.ultraTextEditor15.Location = new System.Drawing.Point(60, 28);
- this.ultraTextEditor15.Multiline = true;
- this.ultraTextEditor15.Name = "ultraTextEditor15";
- this.ultraTextEditor15.Size = new System.Drawing.Size(191, 19);
- this.ultraTextEditor15.TabIndex = 362;
- this.ultraTextEditor15.Tag = "";
- //
- // ultraLabel26
- //
- this.ultraLabel26.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel26.Location = new System.Drawing.Point(3, 8);
- this.ultraLabel26.Name = "ultraLabel26";
- this.ultraLabel26.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel26.TabIndex = 361;
- this.ultraLabel26.Text = "物资代码";
- //
- // ultraTextEditor16
- //
- appearance34.BackColor = System.Drawing.Color.LightCyan;
- this.ultraTextEditor16.Appearance = appearance34;
- this.ultraTextEditor16.AutoSize = true;
- this.ultraTextEditor16.Enabled = false;
- this.ultraTextEditor16.FlatMode = true;
- this.ultraTextEditor16.Location = new System.Drawing.Point(60, 5);
- this.ultraTextEditor16.Name = "ultraTextEditor16";
- this.ultraTextEditor16.Size = new System.Drawing.Size(84, 19);
- this.ultraTextEditor16.TabIndex = 358;
- this.ultraTextEditor16.Tag = "";
- //
- // ultraLabel16
- //
- this.ultraLabel16.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel16.Location = new System.Drawing.Point(261, 33);
- this.ultraLabel16.Name = "ultraLabel16";
- this.ultraLabel16.Size = new System.Drawing.Size(118, 18);
- this.ultraLabel16.TabIndex = 405;
- this.ultraLabel16.Text = "委托代理人身份证号";
- //
- // ultraTextEditor8
- //
- appearance35.BackColor = System.Drawing.Color.LightCyan;
- this.ultraTextEditor8.Appearance = appearance35;
- this.ultraTextEditor8.AutoSize = true;
- this.ultraTextEditor8.FlatMode = true;
- this.ultraTextEditor8.Location = new System.Drawing.Point(385, 30);
- this.ultraTextEditor8.Multiline = true;
- this.ultraTextEditor8.Name = "ultraTextEditor8";
- this.ultraTextEditor8.Size = new System.Drawing.Size(91, 19);
- this.ultraTextEditor8.TabIndex = 404;
- this.ultraTextEditor8.Tag = "";
- //
- // ultraLabel17
- //
- this.ultraLabel17.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel17.Location = new System.Drawing.Point(4, 99);
- this.ultraLabel17.Name = "ultraLabel17";
- this.ultraLabel17.Size = new System.Drawing.Size(109, 19);
- this.ultraLabel17.TabIndex = 403;
- this.ultraLabel17.Text = "法人代表身份证号";
- //
- // ultraTextEditor18
- //
- appearance36.BackColor = System.Drawing.Color.LightCyan;
- this.ultraTextEditor18.Appearance = appearance36;
- this.ultraTextEditor18.AutoSize = true;
- this.ultraTextEditor18.FlatMode = true;
- this.ultraTextEditor18.Location = new System.Drawing.Point(112, 96);
- this.ultraTextEditor18.Multiline = true;
- this.ultraTextEditor18.Name = "ultraTextEditor18";
- this.ultraTextEditor18.Size = new System.Drawing.Size(139, 19);
- this.ultraTextEditor18.TabIndex = 402;
- this.ultraTextEditor18.Tag = "";
- //
- // ultraLabel27
- //
- this.ultraLabel27.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel27.Location = new System.Drawing.Point(261, 7);
- this.ultraLabel27.Name = "ultraLabel27";
- this.ultraLabel27.Size = new System.Drawing.Size(66, 16);
- this.ultraLabel27.TabIndex = 401;
- this.ultraLabel27.Text = "委托代理人";
- //
- // ultraTextEditor19
- //
- appearance37.BackColor = System.Drawing.Color.LightCyan;
- this.ultraTextEditor19.Appearance = appearance37;
- this.ultraTextEditor19.AutoSize = true;
- this.ultraTextEditor19.FlatMode = true;
- this.ultraTextEditor19.Location = new System.Drawing.Point(333, 4);
- this.ultraTextEditor19.Multiline = true;
- this.ultraTextEditor19.Name = "ultraTextEditor19";
- this.ultraTextEditor19.Size = new System.Drawing.Size(143, 19);
- this.ultraTextEditor19.TabIndex = 400;
- this.ultraTextEditor19.Tag = "";
- //
- // ultraTextEditor20
- //
- appearance38.BackColor = System.Drawing.Color.LightCyan;
- this.ultraTextEditor20.Appearance = appearance38;
- this.ultraTextEditor20.AutoSize = true;
- this.ultraTextEditor20.FlatMode = true;
- this.ultraTextEditor20.Location = new System.Drawing.Point(927, 28);
- this.ultraTextEditor20.Multiline = true;
- this.ultraTextEditor20.Name = "ultraTextEditor20";
- this.ultraTextEditor20.Size = new System.Drawing.Size(173, 85);
- this.ultraTextEditor20.TabIndex = 399;
- this.ultraTextEditor20.Tag = "";
- //
- // ultraComboEditor3
- //
- appearance39.BackColor = System.Drawing.Color.LightCyan;
- this.ultraComboEditor3.Appearance = appearance39;
- this.ultraComboEditor3.AutoSize = true;
- valueListItem9.DataValue = "0";
- valueListItem9.DisplayText = "非以旧换新";
- valueListItem10.DataValue = "1";
- valueListItem10.DisplayText = "以旧换新";
- this.ultraComboEditor3.Items.Add(valueListItem9);
- this.ultraComboEditor3.Items.Add(valueListItem10);
- this.ultraComboEditor3.Location = new System.Drawing.Point(962, 2);
- this.ultraComboEditor3.Name = "ultraComboEditor3";
- this.ultraComboEditor3.Size = new System.Drawing.Size(120, 21);
- this.ultraComboEditor3.TabIndex = 398;
- //
- // ultraLabel37
- //
- this.ultraLabel37.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel37.Location = new System.Drawing.Point(886, 5);
- this.ultraLabel37.Name = "ultraLabel37";
- this.ultraLabel37.Size = new System.Drawing.Size(89, 20);
- this.ultraLabel37.TabIndex = 397;
- this.ultraLabel37.Text = "是否以旧换新";
- //
- // ultraComboEditor4
- //
- appearance40.BackColor = System.Drawing.Color.LightCyan;
- this.ultraComboEditor4.Appearance = appearance40;
- this.ultraComboEditor4.AutoSize = true;
- valueListItem11.DataValue = "0";
- valueListItem11.DisplayText = "非招标物资";
- valueListItem12.DataValue = "1";
- valueListItem12.DisplayText = "招标物资";
- this.ultraComboEditor4.Items.Add(valueListItem11);
- this.ultraComboEditor4.Items.Add(valueListItem12);
- this.ultraComboEditor4.Location = new System.Drawing.Point(760, 73);
- this.ultraComboEditor4.Name = "ultraComboEditor4";
- this.ultraComboEditor4.Size = new System.Drawing.Size(120, 21);
- this.ultraComboEditor4.TabIndex = 396;
- //
- // ultraLabel38
- //
- this.ultraLabel38.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel38.Location = new System.Drawing.Point(684, 76);
- this.ultraLabel38.Name = "ultraLabel38";
- this.ultraLabel38.Size = new System.Drawing.Size(89, 20);
- this.ultraLabel38.TabIndex = 395;
- this.ultraLabel38.Text = "是否招标物资";
- //
- // ultraComboEditor5
- //
- appearance41.BackColor = System.Drawing.Color.LightCyan;
- this.ultraComboEditor5.Appearance = appearance41;
- this.ultraComboEditor5.AutoSize = true;
- valueListItem13.DataValue = "0";
- valueListItem13.DisplayText = "非修复物资";
- valueListItem14.DataValue = "1";
- valueListItem14.DisplayText = "修复物资";
- this.ultraComboEditor5.Items.Add(valueListItem13);
- this.ultraComboEditor5.Items.Add(valueListItem14);
- this.ultraComboEditor5.Location = new System.Drawing.Point(760, 49);
- this.ultraComboEditor5.Name = "ultraComboEditor5";
- this.ultraComboEditor5.Size = new System.Drawing.Size(120, 21);
- this.ultraComboEditor5.TabIndex = 394;
- //
- // ultraLabel39
- //
- this.ultraLabel39.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel39.Location = new System.Drawing.Point(684, 52);
- this.ultraLabel39.Name = "ultraLabel39";
- this.ultraLabel39.Size = new System.Drawing.Size(89, 20);
- this.ultraLabel39.TabIndex = 393;
- this.ultraLabel39.Text = "是否修复物资";
- //
- // ultraComboEditor6
- //
- appearance42.BackColor = System.Drawing.Color.LightCyan;
- this.ultraComboEditor6.Appearance = appearance42;
- this.ultraComboEditor6.AutoSize = true;
- valueListItem15.DataValue = "0";
- valueListItem15.DisplayText = "不包安装";
- valueListItem16.DataValue = "1";
- valueListItem16.DisplayText = "包安装";
- this.ultraComboEditor6.Items.Add(valueListItem15);
- this.ultraComboEditor6.Items.Add(valueListItem16);
- this.ultraComboEditor6.Location = new System.Drawing.Point(760, 26);
- this.ultraComboEditor6.Name = "ultraComboEditor6";
- this.ultraComboEditor6.Size = new System.Drawing.Size(120, 21);
- this.ultraComboEditor6.TabIndex = 392;
- //
- // ultraLabel40
- //
- this.ultraLabel40.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel40.Location = new System.Drawing.Point(684, 29);
- this.ultraLabel40.Name = "ultraLabel40";
- this.ultraLabel40.Size = new System.Drawing.Size(89, 20);
- this.ultraLabel40.TabIndex = 391;
- this.ultraLabel40.Text = "是否包安装";
- //
- // ultraComboEditor7
- //
- appearance43.BackColor = System.Drawing.Color.LightCyan;
- this.ultraComboEditor7.Appearance = appearance43;
- this.ultraComboEditor7.AutoSize = true;
- valueListItem17.DataValue = "0";
- valueListItem17.DisplayText = "非备库物资";
- valueListItem18.DataValue = "1";
- valueListItem18.DisplayText = "备库物资";
- this.ultraComboEditor7.Items.Add(valueListItem17);
- this.ultraComboEditor7.Items.Add(valueListItem18);
- this.ultraComboEditor7.Location = new System.Drawing.Point(760, 3);
- this.ultraComboEditor7.Name = "ultraComboEditor7";
- this.ultraComboEditor7.Size = new System.Drawing.Size(120, 21);
- this.ultraComboEditor7.TabIndex = 390;
- //
- // ultraLabel41
- //
- this.ultraLabel41.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel41.Location = new System.Drawing.Point(684, 6);
- this.ultraLabel41.Name = "ultraLabel41";
- this.ultraLabel41.Size = new System.Drawing.Size(89, 20);
- this.ultraLabel41.TabIndex = 389;
- this.ultraLabel41.Text = "是否备库物资";
- //
- // ultraComboEditor8
- //
- appearance44.BackColor = System.Drawing.Color.LightCyan;
- this.ultraComboEditor8.Appearance = appearance44;
- this.ultraComboEditor8.AutoSize = true;
- valueListItem19.DataValue = "0";
- valueListItem19.DisplayText = "正在使用的物资";
- valueListItem20.DataValue = "1";
- valueListItem20.DisplayText = "已废除的物资";
- this.ultraComboEditor8.Items.Add(valueListItem19);
- this.ultraComboEditor8.Items.Add(valueListItem20);
- this.ultraComboEditor8.Location = new System.Drawing.Point(584, 76);
- this.ultraComboEditor8.Name = "ultraComboEditor8";
- this.ultraComboEditor8.Size = new System.Drawing.Size(94, 21);
- this.ultraComboEditor8.TabIndex = 388;
- //
- // ultraLabel42
- //
- this.ultraLabel42.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel42.Location = new System.Drawing.Point(482, 79);
- this.ultraLabel42.Name = "ultraLabel42";
- this.ultraLabel42.Size = new System.Drawing.Size(117, 18);
- this.ultraLabel42.TabIndex = 387;
- this.ultraLabel42.Text = "是否废除的物资";
- //
- // ultraComboEditor9
- //
- appearance45.BackColor = System.Drawing.Color.LightCyan;
- this.ultraComboEditor9.Appearance = appearance45;
- this.ultraComboEditor9.AutoSize = true;
- valueListItem21.DataValue = "0";
- valueListItem21.DisplayText = "不允许负数发";
- valueListItem22.DataValue = "1";
- valueListItem22.DisplayText = "允许负数发料";
- this.ultraComboEditor9.Items.Add(valueListItem21);
- this.ultraComboEditor9.Items.Add(valueListItem22);
- this.ultraComboEditor9.Location = new System.Drawing.Point(584, 52);
- this.ultraComboEditor9.Name = "ultraComboEditor9";
- this.ultraComboEditor9.Size = new System.Drawing.Size(94, 21);
- this.ultraComboEditor9.TabIndex = 386;
- //
- // ultraLabel43
- //
- this.ultraLabel43.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel43.Location = new System.Drawing.Point(482, 55);
- this.ultraLabel43.Name = "ultraLabel43";
- this.ultraLabel43.Size = new System.Drawing.Size(117, 18);
- this.ultraLabel43.TabIndex = 385;
- this.ultraLabel43.Text = "是否允许负数发料";
- //
- // ultraComboEditor10
- //
- appearance46.BackColor = System.Drawing.Color.LightCyan;
- this.ultraComboEditor10.Appearance = appearance46;
- this.ultraComboEditor10.AutoSize = true;
- valueListItem23.DataValue = "0";
- valueListItem23.DisplayText = "非零库存物资";
- valueListItem24.DataValue = "1";
- valueListItem24.DisplayText = "零库存物资";
- this.ultraComboEditor10.Items.Add(valueListItem23);
- this.ultraComboEditor10.Items.Add(valueListItem24);
- this.ultraComboEditor10.Location = new System.Drawing.Point(550, 28);
- this.ultraComboEditor10.Name = "ultraComboEditor10";
- this.ultraComboEditor10.Size = new System.Drawing.Size(128, 21);
- this.ultraComboEditor10.TabIndex = 384;
- //
- // ultraLabel44
- //
- this.ultraLabel44.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel44.Location = new System.Drawing.Point(482, 31);
- this.ultraLabel44.Name = "ultraLabel44";
- this.ultraLabel44.Size = new System.Drawing.Size(66, 20);
- this.ultraLabel44.TabIndex = 383;
- this.ultraLabel44.Text = "是否零库存";
- //
- // ultraLabel45
- //
- this.ultraLabel45.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel45.Location = new System.Drawing.Point(482, 8);
- this.ultraLabel45.Name = "ultraLabel45";
- this.ultraLabel45.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel45.TabIndex = 381;
- this.ultraLabel45.Text = "制造周期";
- //
- // ultraTextEditor21
- //
- appearance47.BackColor = System.Drawing.Color.LightCyan;
- this.ultraTextEditor21.Appearance = appearance47;
- this.ultraTextEditor21.AutoSize = true;
- this.ultraTextEditor21.FlatMode = true;
- this.ultraTextEditor21.Location = new System.Drawing.Point(550, 5);
- this.ultraTextEditor21.Name = "ultraTextEditor21";
- this.ultraTextEditor21.Size = new System.Drawing.Size(128, 19);
- this.ultraTextEditor21.TabIndex = 380;
- this.ultraTextEditor21.Tag = "";
- //
- // ultraLabel46
- //
- this.ultraLabel46.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel46.Location = new System.Drawing.Point(3, 77);
- this.ultraLabel46.Name = "ultraLabel46";
- this.ultraLabel46.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel46.TabIndex = 367;
- this.ultraLabel46.Text = "法人代表";
- //
- // ultraTextEditor22
- //
- appearance48.BackColor = System.Drawing.Color.LightCyan;
- this.ultraTextEditor22.Appearance = appearance48;
- this.ultraTextEditor22.AutoSize = true;
- this.ultraTextEditor22.FlatMode = true;
- this.ultraTextEditor22.Location = new System.Drawing.Point(60, 74);
- this.ultraTextEditor22.Multiline = true;
- this.ultraTextEditor22.Name = "ultraTextEditor22";
- this.ultraTextEditor22.Size = new System.Drawing.Size(191, 19);
- this.ultraTextEditor22.TabIndex = 366;
- this.ultraTextEditor22.Tag = "";
- //
- // ultraLabel47
- //
- this.ultraLabel47.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel47.Location = new System.Drawing.Point(3, 55);
- this.ultraLabel47.Name = "ultraLabel47";
- this.ultraLabel47.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel47.TabIndex = 365;
- this.ultraLabel47.Text = "产品标准";
- //
- // ultraTextEditor23
- //
- appearance49.BackColor = System.Drawing.Color.LightCyan;
- this.ultraTextEditor23.Appearance = appearance49;
- this.ultraTextEditor23.AutoSize = true;
- this.ultraTextEditor23.FlatMode = true;
- this.ultraTextEditor23.Location = new System.Drawing.Point(60, 52);
- this.ultraTextEditor23.Multiline = true;
- this.ultraTextEditor23.Name = "ultraTextEditor23";
- this.ultraTextEditor23.Size = new System.Drawing.Size(191, 19);
- this.ultraTextEditor23.TabIndex = 364;
- this.ultraTextEditor23.Tag = "";
- //
- // ultraLabel48
- //
- this.ultraLabel48.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel48.Location = new System.Drawing.Point(3, 31);
- this.ultraLabel48.Name = "ultraLabel48";
- this.ultraLabel48.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel48.TabIndex = 363;
- this.ultraLabel48.Text = "供方名称";
- //
- // ultraTextEditor24
- //
- appearance50.BackColor = System.Drawing.Color.LightCyan;
- this.ultraTextEditor24.Appearance = appearance50;
- this.ultraTextEditor24.AutoSize = true;
- this.ultraTextEditor24.FlatMode = true;
- this.ultraTextEditor24.Location = new System.Drawing.Point(60, 28);
- this.ultraTextEditor24.Multiline = true;
- this.ultraTextEditor24.Name = "ultraTextEditor24";
- this.ultraTextEditor24.Size = new System.Drawing.Size(191, 19);
- this.ultraTextEditor24.TabIndex = 362;
- this.ultraTextEditor24.Tag = "";
- //
- // ultraLabel49
- //
- this.ultraLabel49.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel49.Location = new System.Drawing.Point(3, 8);
- this.ultraLabel49.Name = "ultraLabel49";
- this.ultraLabel49.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel49.TabIndex = 361;
- this.ultraLabel49.Text = "供方代码";
- //
- // ultraTextEditor25
- //
- appearance51.BackColor = System.Drawing.Color.LightCyan;
- this.ultraTextEditor25.Appearance = appearance51;
- this.ultraTextEditor25.AutoSize = true;
- this.ultraTextEditor25.Enabled = false;
- this.ultraTextEditor25.FlatMode = true;
- this.ultraTextEditor25.Location = new System.Drawing.Point(60, 5);
- this.ultraTextEditor25.Name = "ultraTextEditor25";
- this.ultraTextEditor25.Size = new System.Drawing.Size(84, 19);
- this.ultraTextEditor25.TabIndex = 358;
- this.ultraTextEditor25.Tag = "";
- //
- // ultraLabel51
- //
- this.ultraLabel51.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel51.Location = new System.Drawing.Point(261, 57);
- this.ultraLabel51.Name = "ultraLabel51";
- this.ultraLabel51.Size = new System.Drawing.Size(66, 16);
- this.ultraLabel51.TabIndex = 407;
- this.ultraLabel51.Text = "注册资金";
- //
- // ultraTextEditor26
- //
- appearance52.BackColor = System.Drawing.Color.LightCyan;
- this.ultraTextEditor26.Appearance = appearance52;
- this.ultraTextEditor26.AutoSize = true;
- this.ultraTextEditor26.FlatMode = true;
- this.ultraTextEditor26.Location = new System.Drawing.Point(333, 54);
- this.ultraTextEditor26.Multiline = true;
- this.ultraTextEditor26.Name = "ultraTextEditor26";
- this.ultraTextEditor26.Size = new System.Drawing.Size(143, 19);
- this.ultraTextEditor26.TabIndex = 406;
- this.ultraTextEditor26.Tag = "";
- //
- // ultraLabel52
- //
- this.ultraLabel52.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel52.Location = new System.Drawing.Point(261, 33);
- this.ultraLabel52.Name = "ultraLabel52";
- this.ultraLabel52.Size = new System.Drawing.Size(118, 18);
- this.ultraLabel52.TabIndex = 405;
- this.ultraLabel52.Text = "委托代理人身份证号";
- //
- // ultraTextEditor27
- //
- appearance53.BackColor = System.Drawing.Color.LightCyan;
- this.ultraTextEditor27.Appearance = appearance53;
- this.ultraTextEditor27.AutoSize = true;
- this.ultraTextEditor27.FlatMode = true;
- this.ultraTextEditor27.Location = new System.Drawing.Point(385, 30);
- this.ultraTextEditor27.Multiline = true;
- this.ultraTextEditor27.Name = "ultraTextEditor27";
- this.ultraTextEditor27.Size = new System.Drawing.Size(91, 19);
- this.ultraTextEditor27.TabIndex = 404;
- this.ultraTextEditor27.Tag = "";
- //
- // ultraLabel53
- //
- this.ultraLabel53.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel53.Location = new System.Drawing.Point(4, 99);
- this.ultraLabel53.Name = "ultraLabel53";
- this.ultraLabel53.Size = new System.Drawing.Size(109, 19);
- this.ultraLabel53.TabIndex = 403;
- this.ultraLabel53.Text = "法人代表身份证号";
- //
- // ultraTextEditor28
- //
- appearance54.BackColor = System.Drawing.Color.LightCyan;
- this.ultraTextEditor28.Appearance = appearance54;
- this.ultraTextEditor28.AutoSize = true;
- this.ultraTextEditor28.FlatMode = true;
- this.ultraTextEditor28.Location = new System.Drawing.Point(112, 96);
- this.ultraTextEditor28.Multiline = true;
- this.ultraTextEditor28.Name = "ultraTextEditor28";
- this.ultraTextEditor28.Size = new System.Drawing.Size(139, 19);
- this.ultraTextEditor28.TabIndex = 402;
- this.ultraTextEditor28.Tag = "";
- //
- // ultraLabel54
- //
- this.ultraLabel54.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel54.Location = new System.Drawing.Point(261, 7);
- this.ultraLabel54.Name = "ultraLabel54";
- this.ultraLabel54.Size = new System.Drawing.Size(66, 16);
- this.ultraLabel54.TabIndex = 401;
- this.ultraLabel54.Text = "委托代理人";
- //
- // ultraTextEditor29
- //
- appearance55.BackColor = System.Drawing.Color.LightCyan;
- this.ultraTextEditor29.Appearance = appearance55;
- this.ultraTextEditor29.AutoSize = true;
- this.ultraTextEditor29.FlatMode = true;
- this.ultraTextEditor29.Location = new System.Drawing.Point(333, 4);
- this.ultraTextEditor29.Multiline = true;
- this.ultraTextEditor29.Name = "ultraTextEditor29";
- this.ultraTextEditor29.Size = new System.Drawing.Size(143, 19);
- this.ultraTextEditor29.TabIndex = 400;
- this.ultraTextEditor29.Tag = "";
- //
- // ultraTextEditor30
- //
- appearance56.BackColor = System.Drawing.Color.LightCyan;
- this.ultraTextEditor30.Appearance = appearance56;
- this.ultraTextEditor30.AutoSize = true;
- this.ultraTextEditor30.FlatMode = true;
- this.ultraTextEditor30.Location = new System.Drawing.Point(927, 28);
- this.ultraTextEditor30.Multiline = true;
- this.ultraTextEditor30.Name = "ultraTextEditor30";
- this.ultraTextEditor30.Size = new System.Drawing.Size(173, 85);
- this.ultraTextEditor30.TabIndex = 399;
- this.ultraTextEditor30.Tag = "";
- //
- // ultraComboEditor11
- //
- appearance57.BackColor = System.Drawing.Color.LightCyan;
- this.ultraComboEditor11.Appearance = appearance57;
- this.ultraComboEditor11.AutoSize = true;
- valueListItem25.DataValue = "0";
- valueListItem25.DisplayText = "非以旧换新";
- valueListItem26.DataValue = "1";
- valueListItem26.DisplayText = "以旧换新";
- this.ultraComboEditor11.Items.Add(valueListItem25);
- this.ultraComboEditor11.Items.Add(valueListItem26);
- this.ultraComboEditor11.Location = new System.Drawing.Point(962, 2);
- this.ultraComboEditor11.Name = "ultraComboEditor11";
- this.ultraComboEditor11.Size = new System.Drawing.Size(120, 21);
- this.ultraComboEditor11.TabIndex = 398;
- //
- // ultraLabel55
- //
- this.ultraLabel55.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel55.Location = new System.Drawing.Point(886, 5);
- this.ultraLabel55.Name = "ultraLabel55";
- this.ultraLabel55.Size = new System.Drawing.Size(89, 20);
- this.ultraLabel55.TabIndex = 397;
- this.ultraLabel55.Text = "是否以旧换新";
- //
- // ultraComboEditor12
- //
- appearance58.BackColor = System.Drawing.Color.LightCyan;
- this.ultraComboEditor12.Appearance = appearance58;
- this.ultraComboEditor12.AutoSize = true;
- valueListItem27.DataValue = "0";
- valueListItem27.DisplayText = "非招标物资";
- valueListItem28.DataValue = "1";
- valueListItem28.DisplayText = "招标物资";
- this.ultraComboEditor12.Items.Add(valueListItem27);
- this.ultraComboEditor12.Items.Add(valueListItem28);
- this.ultraComboEditor12.Location = new System.Drawing.Point(760, 73);
- this.ultraComboEditor12.Name = "ultraComboEditor12";
- this.ultraComboEditor12.Size = new System.Drawing.Size(120, 21);
- this.ultraComboEditor12.TabIndex = 396;
- //
- // ultraLabel56
- //
- this.ultraLabel56.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel56.Location = new System.Drawing.Point(684, 76);
- this.ultraLabel56.Name = "ultraLabel56";
- this.ultraLabel56.Size = new System.Drawing.Size(89, 20);
- this.ultraLabel56.TabIndex = 395;
- this.ultraLabel56.Text = "是否招标物资";
- //
- // ultraComboEditor13
- //
- appearance59.BackColor = System.Drawing.Color.LightCyan;
- this.ultraComboEditor13.Appearance = appearance59;
- this.ultraComboEditor13.AutoSize = true;
- valueListItem29.DataValue = "0";
- valueListItem29.DisplayText = "非修复物资";
- valueListItem30.DataValue = "1";
- valueListItem30.DisplayText = "修复物资";
- this.ultraComboEditor13.Items.Add(valueListItem29);
- this.ultraComboEditor13.Items.Add(valueListItem30);
- this.ultraComboEditor13.Location = new System.Drawing.Point(760, 49);
- this.ultraComboEditor13.Name = "ultraComboEditor13";
- this.ultraComboEditor13.Size = new System.Drawing.Size(120, 21);
- this.ultraComboEditor13.TabIndex = 394;
- //
- // ultraLabel57
- //
- this.ultraLabel57.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel57.Location = new System.Drawing.Point(684, 52);
- this.ultraLabel57.Name = "ultraLabel57";
- this.ultraLabel57.Size = new System.Drawing.Size(89, 20);
- this.ultraLabel57.TabIndex = 393;
- this.ultraLabel57.Text = "是否修复物资";
- //
- // ultraComboEditor14
- //
- appearance60.BackColor = System.Drawing.Color.LightCyan;
- this.ultraComboEditor14.Appearance = appearance60;
- this.ultraComboEditor14.AutoSize = true;
- valueListItem31.DataValue = "0";
- valueListItem31.DisplayText = "不包安装";
- valueListItem32.DataValue = "1";
- valueListItem32.DisplayText = "包安装";
- this.ultraComboEditor14.Items.Add(valueListItem31);
- this.ultraComboEditor14.Items.Add(valueListItem32);
- this.ultraComboEditor14.Location = new System.Drawing.Point(760, 26);
- this.ultraComboEditor14.Name = "ultraComboEditor14";
- this.ultraComboEditor14.Size = new System.Drawing.Size(120, 21);
- this.ultraComboEditor14.TabIndex = 392;
- //
- // ultraLabel58
- //
- this.ultraLabel58.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel58.Location = new System.Drawing.Point(684, 29);
- this.ultraLabel58.Name = "ultraLabel58";
- this.ultraLabel58.Size = new System.Drawing.Size(89, 20);
- this.ultraLabel58.TabIndex = 391;
- this.ultraLabel58.Text = "是否包安装";
- //
- // ultraComboEditor15
- //
- appearance61.BackColor = System.Drawing.Color.LightCyan;
- this.ultraComboEditor15.Appearance = appearance61;
- this.ultraComboEditor15.AutoSize = true;
- valueListItem33.DataValue = "0";
- valueListItem33.DisplayText = "非备库物资";
- valueListItem34.DataValue = "1";
- valueListItem34.DisplayText = "备库物资";
- this.ultraComboEditor15.Items.Add(valueListItem33);
- this.ultraComboEditor15.Items.Add(valueListItem34);
- this.ultraComboEditor15.Location = new System.Drawing.Point(760, 3);
- this.ultraComboEditor15.Name = "ultraComboEditor15";
- this.ultraComboEditor15.Size = new System.Drawing.Size(120, 21);
- this.ultraComboEditor15.TabIndex = 390;
- //
- // ultraLabel59
- //
- this.ultraLabel59.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel59.Location = new System.Drawing.Point(684, 6);
- this.ultraLabel59.Name = "ultraLabel59";
- this.ultraLabel59.Size = new System.Drawing.Size(89, 20);
- this.ultraLabel59.TabIndex = 389;
- this.ultraLabel59.Text = "是否备库物资";
- //
- // ultraComboEditor16
- //
- appearance62.BackColor = System.Drawing.Color.LightCyan;
- this.ultraComboEditor16.Appearance = appearance62;
- this.ultraComboEditor16.AutoSize = true;
- valueListItem35.DataValue = "0";
- valueListItem35.DisplayText = "正在使用的物资";
- valueListItem36.DataValue = "1";
- valueListItem36.DisplayText = "已废除的物资";
- this.ultraComboEditor16.Items.Add(valueListItem35);
- this.ultraComboEditor16.Items.Add(valueListItem36);
- this.ultraComboEditor16.Location = new System.Drawing.Point(584, 76);
- this.ultraComboEditor16.Name = "ultraComboEditor16";
- this.ultraComboEditor16.Size = new System.Drawing.Size(94, 21);
- this.ultraComboEditor16.TabIndex = 388;
- //
- // ultraLabel60
- //
- this.ultraLabel60.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel60.Location = new System.Drawing.Point(482, 79);
- this.ultraLabel60.Name = "ultraLabel60";
- this.ultraLabel60.Size = new System.Drawing.Size(117, 18);
- this.ultraLabel60.TabIndex = 387;
- this.ultraLabel60.Text = "是否废除的物资";
- //
- // ultraComboEditor17
- //
- appearance63.BackColor = System.Drawing.Color.LightCyan;
- this.ultraComboEditor17.Appearance = appearance63;
- this.ultraComboEditor17.AutoSize = true;
- valueListItem37.DataValue = "0";
- valueListItem37.DisplayText = "不允许负数发";
- valueListItem38.DataValue = "1";
- valueListItem38.DisplayText = "允许负数发料";
- this.ultraComboEditor17.Items.Add(valueListItem37);
- this.ultraComboEditor17.Items.Add(valueListItem38);
- this.ultraComboEditor17.Location = new System.Drawing.Point(584, 52);
- this.ultraComboEditor17.Name = "ultraComboEditor17";
- this.ultraComboEditor17.Size = new System.Drawing.Size(94, 21);
- this.ultraComboEditor17.TabIndex = 386;
- //
- // ultraLabel61
- //
- this.ultraLabel61.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel61.Location = new System.Drawing.Point(482, 55);
- this.ultraLabel61.Name = "ultraLabel61";
- this.ultraLabel61.Size = new System.Drawing.Size(117, 18);
- this.ultraLabel61.TabIndex = 385;
- this.ultraLabel61.Text = "是否允许负数发料";
- //
- // ultraComboEditor18
- //
- appearance64.BackColor = System.Drawing.Color.LightCyan;
- this.ultraComboEditor18.Appearance = appearance64;
- this.ultraComboEditor18.AutoSize = true;
- valueListItem39.DataValue = "0";
- valueListItem39.DisplayText = "非零库存物资";
- valueListItem40.DataValue = "1";
- valueListItem40.DisplayText = "零库存物资";
- this.ultraComboEditor18.Items.Add(valueListItem39);
- this.ultraComboEditor18.Items.Add(valueListItem40);
- this.ultraComboEditor18.Location = new System.Drawing.Point(550, 28);
- this.ultraComboEditor18.Name = "ultraComboEditor18";
- this.ultraComboEditor18.Size = new System.Drawing.Size(128, 21);
- this.ultraComboEditor18.TabIndex = 384;
- //
- // ultraLabel62
- //
- this.ultraLabel62.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel62.Location = new System.Drawing.Point(482, 31);
- this.ultraLabel62.Name = "ultraLabel62";
- this.ultraLabel62.Size = new System.Drawing.Size(66, 20);
- this.ultraLabel62.TabIndex = 383;
- this.ultraLabel62.Text = "是否零库存";
- //
- // ultraLabel63
- //
- this.ultraLabel63.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel63.Location = new System.Drawing.Point(482, 8);
- this.ultraLabel63.Name = "ultraLabel63";
- this.ultraLabel63.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel63.TabIndex = 381;
- this.ultraLabel63.Text = "制造周期";
- //
- // ultraTextEditor31
- //
- appearance65.BackColor = System.Drawing.Color.LightCyan;
- this.ultraTextEditor31.Appearance = appearance65;
- this.ultraTextEditor31.AutoSize = true;
- this.ultraTextEditor31.FlatMode = true;
- this.ultraTextEditor31.Location = new System.Drawing.Point(550, 5);
- this.ultraTextEditor31.Name = "ultraTextEditor31";
- this.ultraTextEditor31.Size = new System.Drawing.Size(128, 19);
- this.ultraTextEditor31.TabIndex = 380;
- this.ultraTextEditor31.Tag = "";
- //
- // ultraLabel64
- //
- this.ultraLabel64.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel64.Location = new System.Drawing.Point(3, 77);
- this.ultraLabel64.Name = "ultraLabel64";
- this.ultraLabel64.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel64.TabIndex = 367;
- this.ultraLabel64.Text = "法人代表";
- //
- // ultraTextEditor32
- //
- appearance66.BackColor = System.Drawing.Color.LightCyan;
- this.ultraTextEditor32.Appearance = appearance66;
- this.ultraTextEditor32.AutoSize = true;
- this.ultraTextEditor32.FlatMode = true;
- this.ultraTextEditor32.Location = new System.Drawing.Point(60, 74);
- this.ultraTextEditor32.Multiline = true;
- this.ultraTextEditor32.Name = "ultraTextEditor32";
- this.ultraTextEditor32.Size = new System.Drawing.Size(191, 19);
- this.ultraTextEditor32.TabIndex = 366;
- this.ultraTextEditor32.Tag = "";
- //
- // ultraLabel65
- //
- this.ultraLabel65.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel65.Location = new System.Drawing.Point(3, 55);
- this.ultraLabel65.Name = "ultraLabel65";
- this.ultraLabel65.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel65.TabIndex = 365;
- this.ultraLabel65.Text = "产品标准";
- //
- // ultraTextEditor33
- //
- appearance67.BackColor = System.Drawing.Color.LightCyan;
- this.ultraTextEditor33.Appearance = appearance67;
- this.ultraTextEditor33.AutoSize = true;
- this.ultraTextEditor33.FlatMode = true;
- this.ultraTextEditor33.Location = new System.Drawing.Point(60, 52);
- this.ultraTextEditor33.Multiline = true;
- this.ultraTextEditor33.Name = "ultraTextEditor33";
- this.ultraTextEditor33.Size = new System.Drawing.Size(191, 19);
- this.ultraTextEditor33.TabIndex = 364;
- this.ultraTextEditor33.Tag = "";
- //
- // ultraLabel66
- //
- this.ultraLabel66.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel66.Location = new System.Drawing.Point(3, 31);
- this.ultraLabel66.Name = "ultraLabel66";
- this.ultraLabel66.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel66.TabIndex = 363;
- this.ultraLabel66.Text = "供方名称";
- //
- // ultraTextEditor34
- //
- appearance68.BackColor = System.Drawing.Color.LightCyan;
- this.ultraTextEditor34.Appearance = appearance68;
- this.ultraTextEditor34.AutoSize = true;
- this.ultraTextEditor34.FlatMode = true;
- this.ultraTextEditor34.Location = new System.Drawing.Point(60, 28);
- this.ultraTextEditor34.Multiline = true;
- this.ultraTextEditor34.Name = "ultraTextEditor34";
- this.ultraTextEditor34.Size = new System.Drawing.Size(191, 19);
- this.ultraTextEditor34.TabIndex = 362;
- this.ultraTextEditor34.Tag = "";
- //
- // ultraLabel67
- //
- this.ultraLabel67.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel67.Location = new System.Drawing.Point(3, 8);
- this.ultraLabel67.Name = "ultraLabel67";
- this.ultraLabel67.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel67.TabIndex = 361;
- this.ultraLabel67.Text = "供方代码";
- //
- // ultraTextEditor35
- //
- appearance69.BackColor = System.Drawing.Color.LightCyan;
- this.ultraTextEditor35.Appearance = appearance69;
- this.ultraTextEditor35.AutoSize = true;
- this.ultraTextEditor35.Enabled = false;
- this.ultraTextEditor35.FlatMode = true;
- this.ultraTextEditor35.Location = new System.Drawing.Point(60, 5);
- this.ultraTextEditor35.Name = "ultraTextEditor35";
- this.ultraTextEditor35.Size = new System.Drawing.Size(84, 19);
- this.ultraTextEditor35.TabIndex = 358;
- this.ultraTextEditor35.Tag = "";
- //
- // FrmMateriaLB
- //
- this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
- this.ClientSize = new System.Drawing.Size(1028, 518);
- this.Controls.Add(this.panel2);
- this.Controls.Add(this.ultraExpandableGroupBox1);
- this.Controls.Add(this.ultraGroupBox1);
- this.Controls.Add(this.panel1);
- this.Name = "FrmMateriaLB";
- this.Text = "仓库代码管理";
- this.Load += new System.EventHandler(this.FrmDepot_Load);
- this.panel1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
- this.ultraGroupBox1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.txt_gfmc)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_gfdm)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).EndInit();
- this.ultraExpandableGroupBox1.ResumeLayout(false);
- this.ultraExpandableGroupBoxPanel1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.txt_Remark)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_MC)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_DM)).EndInit();
- this.panel2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.gd_CK)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor4)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor5)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor6)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor7)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor9)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor10)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor11)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor12)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor2)).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.ultraTextEditor8)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor18)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor19)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor20)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor4)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor5)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor6)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor7)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor8)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor9)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor10)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor21)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor22)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor23)).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.ultraTextEditor30)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor11)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor12)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor13)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor14)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor15)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor16)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor17)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor18)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor31)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor32)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor33)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor34)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor35)).EndInit();
- this.ResumeLayout(false);
- }
- #endregion
-
-
- private void chk_AllowFilter_CheckedChanged(object sender, System.EventArgs e)
- {
- if (this.chk_AllowFilter.Checked)
- {
- this.gd_CK.DisplayLayout.Override.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- }
- else
- {
- this.gd_CK.DisplayLayout.Override.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.False;
-
- }
- }
- public static bool FillComboEditor(ref UltraComboEditor ulComboEditor, DataSet dset)
- {
- if (dset == null) return false;
- if (dset.Tables.Count < 1) return false;
- if (dset.Tables[0].Columns.Count < 2) return false;
- ulComboEditor.Items.Clear();
- for (int i = 0; i < dset.Tables[0].Rows.Count; i++)
- ulComboEditor.Items.Add(dset.Tables[0].Rows[i][0].ToString(), dset.Tables[0].Rows[i][1].ToString());
- return true;
- }
- private void DoQuery()
- {
- string where = "";
- string sql = "";
- string err = "";
- if (this.txt_gfdm.Enabled && this.txt_gfdm.Text.Trim().Length > 0)
- {
- where += " AND MATERIAL__LB_CODE LIKE '%" + this.txt_gfdm.Text.Trim().ToString() + "%'";
- }
- if (this.txt_gfmc.Enabled && this.txt_gfmc.Text.Trim().Length > 0)
- {
- where += " AND MATERIAL__LB_NAME LIKE '%" + this.txt_gfmc.Text.Trim().ToString() + "%'";
- }
- sql = "SELECT MATERIAL__LB_CODE,MATERIAL__LB_NAME,REMARK,RECODER,TO_CHAR(TIME_,'YYYY-MM-DD HH24:MI:SS')TIME_ "
- + "FROM MATERIA_LBL_CODE_MANAGE WHERE 1=1 " + where;
- ;
- DataSet ds = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("BJZWStuff", "Core.XgMes.Server.JGKC.SteelPlateManager.Common", "GetDataSet", new object[] { sql }, out err);
- if (err == "")
- {
- gd_CK.DataSource = ds;
- }
-
- }
- private void Export()
- {
- if (this.gd_CK.Rows.Count > 0)
- {
- Comm.ExPortExcel(this.gd_CK, this.excelExporter);
- }
- else
- {
- MessageBox.Show("无物资类别代码信息数据,不能导出!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
- }
- }
- private void Add(string strMode)
- {
- try
- {
- string strerr = "";
-
- System.Collections.ArrayList MetarilLBInfo = new ArrayList();
- if (strMode == "UPDATE")
- {
- if (txt_DM.Text.Trim().ToString() == "")
- {
- MessageBox.Show("物资类别代码不能为空");
- return;
- }
- }
- if (strMode == "Del" || strMode == "UPDATE")
- {
- MetarilLBInfo.Add(this.gd_CK.ActiveRow.Cells["MATERIAL__LB_CODE"].Value);//1物资类别代码
- }
- else {
- MetarilLBInfo.Add(Comm.ObjToStr(this.txt_DM.Text.Trim().ToString()));//1物资类别代码
- }
-
- MetarilLBInfo.Add(Comm.ObjToStr(this.txt_MC.Text.Trim().ToString()));//2 物资类别名称
- MetarilLBInfo.Add(ClientCommon._UserInfo.UserName.ToString());//3 操作人
- MetarilLBInfo.Add(Comm.ObjToStr(this.txt_Remark.Text.Trim().ToString()));//4 备注
- MetarilLBInfo.Add(strMode);//5 操作模式
-
-
- object obj = Core.Mes.ClientFrameWork.ClientCommon._RemotingHelp.ExecuteMethod("BJZWWLStuff", "Core.XgMes.Server.JGKC.MaterialManager.Metarial",
- "MAterIaLBAdd", new object[] { MetarilLBInfo }, out strerr);
- if (obj != null && obj.ToString() == "1")
- {
- MessageBox.Show("新增成功", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
- DoQuery();
- }
- else
- {
- MessageBox.Show(strerr, "提示", MessageBoxButtons.OK, MessageBoxIcon.Warning);
- }
- }
- catch (Exception ex)
- {
- }
- }
- private void FrmDepot_Load(object sender, System.EventArgs e)
- {
-
-
- }
-
-
- private void ultraToolbarsManager1_ToolClick(object sender, Infragistics.Win.UltraWinToolbars.ToolClickEventArgs e)
- {
- switch (e.Tool.Key)
- {
- case "Add":
- Add("ADD");
- break;
- case "UPDATE":
- Add("UPDATE");
- break;
- case "Del":
- Add("Del");
- break;
- case "Query":
- DoQuery();
- break;
- case "Export":
- Export();
- break;
- case "Close":
- this.Close();
- break;
- }
- }
-
- private void txt_DM_Enter(object sender, EventArgs e)
- {
- if (sender.GetType().ToString() == "Infragistics.Win.UltraWinEditors.UltraTextEditor")
- {
- ((Infragistics.Win.UltraWinEditors.UltraTextEditor)sender).SelectAll();
- }
- if (sender.GetType().ToString() == "Infragistics.Win.UltraWinEditors.UltraNumericEditor")
- {
- ((Infragistics.Win.UltraWinEditors.UltraNumericEditor)sender).SelectAll();
- }
- }
- private void txt_DM_KeyDown(object sender, KeyEventArgs e)
- {
-
- try
- {
- if (e.KeyData == System.Windows.Forms.Keys.Return)
- {
- /*if (((System.Windows.Forms.Control)sender).Name == "txt_MC")
- {
- cmb_StorageLB.Focus();
- cmb_StorageLB.SelectAll();
- }
- if (((System.Windows.Forms.Control)sender).Name == "cmb_StorageLB")
- {
- cmb_QY.Focus();
- cmb_QY.SelectAll();
- }
- if (((System.Windows.Forms.Control)sender).Name == "cmb_QY")
- {
- txt_Remark.Focus();
- txt_Remark.SelectAll();
- }*/
- if (((System.Windows.Forms.Control)sender).Name == "txt_Remark")
- {
- System.Windows.Forms.DialogResult result = DialogResult.No;
- result = MessageBox.Show("是否新增?", "提示信息", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
- if (result == DialogResult.Yes)
- {
- this.Add("ADD");
- }
- else
- {
- this.Add("UPDATE");
- }
- this.txt_MC.Focus();
- this.txt_MC.SelectAll();
- return;
- }
- //System.Windows.Forms.SendKeys.Send("{TAB}");
- }
- }
- catch (Exception ex)
- {
- System.Diagnostics.Debug.WriteLine(ex.ToString());
- }
- }
- private void Chk_CKDM_CheckedChanged(object sender, EventArgs e)
- {
- txt_gfdm.Enabled = Chk_CKDM.Checked;
- }
- private void Chk_CKmc_CheckedChanged(object sender, EventArgs e)
- {
- txt_gfmc.Enabled = Chk_CKmc.Checked;
- }
- private void Chk_CKLB_CheckedChanged(object sender, EventArgs e)
- {
- //cmb_StorageLB.Enabled = Chk_CKLB.Checked;
- }
- private void gd_CK_AfterRowActivate(object sender, EventArgs e)
- {
- try
- {
- if (this.gd_CK.Rows.Count > 0)
- {
- this.txt_DM.Text = Comm.ObjToStr(this.gd_CK.ActiveRow.Cells["MATERIAL__LB_CODE"].Value);//仓库代码
- txt_MC.Text = Comm.ObjToStr(this.gd_CK.ActiveRow.Cells["MATERIAL__LB_NAME"].Value);//仓库名称
- //cmb_StorageLB.Value = Comm.ObjToStr(this.gd_CK.ActiveRow.Cells["DEPOT_LB"].Value);//仓库类别
- txt_Remark.Text = Comm.ObjToStr(this.gd_CK.ActiveRow.Cells["REMARK"].Value);//备注
- /*if (Comm.ObjToStr(this.gd_CK.ActiveRow.Cells["ISVALID"].Value) == "是")//是否启用
- {
- cmb_QY.Value = "1";
- }
- else
- {
- cmb_QY.Value = "0";
- }*/
- }
- }
- catch (Exception ex)
- {
- System.Diagnostics.Debug.WriteLine(ex.ToString());
- }
- }
-
-
-
-
-
-
-
-
-
-
-
- }
- }
|