| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582 |
- 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;
- namespace Core.XgMes.Client.CoilMachiningManage
- {
- /// <summary>
- /// Frm_PlanDrawUp 的摘要说明。
- /// </summary>
- public class Frm_PlanDrawUp : 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.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage1;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl1;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl2;
- private System.Windows.Forms.Panel panel2;
- private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox1;
- private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel1;
- private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox2;
- private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel2;
- private Infragistics.Win.UltraWinGrid.UltraCombo cmb_Buress;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor Chk_Buttress;
- private Infragistics.Win.UltraWinGrid.UltraCombo cmb_Sleen;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_GangP;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_RollHao;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_PlanID;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_PactID;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_OrderNO;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_OrderNO;
- private Infragistics.Win.Misc.UltraLabel Lab_To;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_SelectAll;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_AllowFilter;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_QuShi;
- private Infragistics.Win.Misc.UltraLabel ultraLabel3;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_Scid_End_Y;
- private Infragistics.Win.UltraWinGrid.UltraCombo cmb_ClassTeam;
- private Infragistics.Win.Misc.UltraLabel ultraLabel10;
- private Infragistics.Win.UltraWinGrid.UltraCombo cmb_ClassOrder;
- private Infragistics.Win.Misc.UltraLabel ultraLabel8;
- private Infragistics.Win.Misc.UltraLabel ultraLabel7;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor cmb_EditType_Y;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_Scid_Begin_Y;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_Scid_Top_Y;
- private Infragistics.Win.Misc.UltraLabel ultraLabel1;
- private Infragistics.Win.Misc.UltraLabel ultraLabel2;
- private Infragistics.Win.UltraWinGrid.UltraGrid gb_Stuff;
- private Infragistics.Win.UltraWinGrid.UltraGrid gb_Plan;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_PaiHao;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_BanHao;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_RollHao;
- private Infragistics.Win.UltraWinTabControl.UltraTabControl tab_Coroll;
- private Infragistics.Win.UltraWinGrid.UltraGrid gb_PlanState;
- private Infragistics.Win.Misc.UltraLabel ultraLabel4;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_Length;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_BNumber;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_BNumber;
- private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor dte_Time;
- private Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter excelExporter;
- private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor dte_BeginTime;
- private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor dte_EndTime;
- private Infragistics.Win.Misc.UltraLabel ultraLabel5;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_ProcLine;
- private Infragistics.Win.Misc.UltraLabel ultraLabel9;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_Width;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor cmb_IS;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultSJ;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_CollectTime;
- private Infragistics.Win.UltraWinGrid.UltraCombo ultraCombo1;
- private Infragistics.Win.Misc.UltraLabel ultraLabel6;
- private Infragistics.Win.UltraWinTabControl.UltraTabControl ultraTabControl1;
- private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage2;
- private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage3;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl3;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid1;
- private Panel panel3;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor1;
- private Infragistics.Win.Misc.UltraLabel ultraLabel11;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl4;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid2;
- private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox3;
- private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel3;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid3;
- private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox4;
- private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel4;
- private Infragistics.Win.UltraWinGrid.UltraCombo cmb_Gylx;
- private Infragistics.Win.Misc.UltraLabel ultraLabel15;
- private System.ComponentModel.IContainer components;
- public Frm_PlanDrawUp()
- {
- //
- // 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.Appearance appearance1 = 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("SHIP_INVNO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OLD_SAMPL_NO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SLAB_NO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORD_NO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORD_SEQ");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DEVLMT_DTIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("COIL_INDIA");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("COIL_OUTDIA");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("COIL_LEN");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("COIL_THK");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("COIL_WTH");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CAL_WGT");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ACT_WGT");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STL_GRD");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TOT_DEC_GRD");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("REM");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TRANS_CAR_NO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ZLZS_NO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BUTTRESS");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATOR");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATETIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("INCLASSORDER");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("INCLASSTEAM");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FLAG");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORD_USE_CD");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("INSTR_COIL_THK");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("INSTR_COIL_WTH");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STOVENO", 0);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BAHCT_NUMBER", 1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SX_BIAOZHUN", 2);
- Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.SummarySettings summarySettings1 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "ACT_WGT", 12, true, "Band 0", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "ACT_WGT", 12, true);
- Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.SummarySettings summarySettings2 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "CAL_WGT", 11, true, "Band 0", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "CAL_WGT", 11, true);
- 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.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.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Band 0", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SHIP_INVNO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OLD_SAMPL_NO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SLAB_NO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORD_NO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORD_SEQ");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DEVLMT_DTIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("COIL_INDIA");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("COIL_OUTDIA");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("COIL_LEN");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("COIL_THK");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("COIL_WTH");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CAL_WGT");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ACT_WGT");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn44 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STL_GRD");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn45 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TOT_DEC_GRD");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn46 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("REM");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn47 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TRANS_CAR_NO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn48 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ZLZS_NO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn49 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BUTTRESS");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn50 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATOR");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn51 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATETIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn52 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CLASSORDER");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn53 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CLASSTEAM");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn54 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WORKORDER_ID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn55 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FLAG");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn56 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BAHCT_NUMBER");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn57 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STOCKTYPE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn58 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORD_USE_CD");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn59 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("INSTR_COIL_THK");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn60 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("INSTR_COIL_WTH");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn61 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GYLX");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn62 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STOVENO", 0);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn63 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SX_BIAOZHUN", 1);
- Infragistics.Win.Appearance appearance20 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance25 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance 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.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.UltraWinGrid.UltraGridBand ultraGridBand3 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Band 0", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn64 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SHIP_INVNO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn65 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OLD_SAMPL_NO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn66 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SLAB_NO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn67 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORD_NO", -1, null, 0, Infragistics.Win.UltraWinGrid.SortIndicator.Ascending, false);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn68 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORD_SEQ");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn69 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DEVLMT_DTIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn70 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("COIL_INDIA");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn71 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("COIL_OUTDIA");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn72 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("COIL_LEN");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn73 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("COIL_THK");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn74 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("COIL_WTH");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn75 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CAL_WGT");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn76 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ACT_WGT");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn77 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STL_GRD");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn78 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TOT_DEC_GRD");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn79 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("REM");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn80 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TRANS_CAR_NO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn81 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ZLZS_NO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn82 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BUTTRESS");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn83 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATOR");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn84 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATETIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn85 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CLASSORDER");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn86 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CLASSTEAM");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn87 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WORKORDER_ID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn88 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("AFFIRMAN");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn89 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("AFFIRTIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn90 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("AFFIRLOG");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn91 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STOCKTYPE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn92 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORD_USE_CD");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn93 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("INSTR_COIL_THK");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn94 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("INSTR_COIL_WTH");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn95 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STSJBC");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn96 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STSJBZ");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn97 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STTIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn98 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STQRTIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn99 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GYLX");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn100 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STOVENO", 0);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn101 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BAHCT_NUMBER", 1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn102 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SX_BIAOZHUN", 2);
- Infragistics.Win.Appearance appearance36 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.SummarySettings summarySettings3 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "CAL_WGT", 11, true, "Band 0", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "CAL_WGT", 11, true);
- Infragistics.Win.Appearance appearance37 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.SummarySettings summarySettings4 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "ACT_WGT", 12, true, "Band 0", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "ACT_WGT", 12, true);
- Infragistics.Win.Appearance appearance38 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance39 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance40 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance41 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance42 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance43 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance44 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance45 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance46 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance 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.UltraWinEditors.EditorButton editorButton1 = new Infragistics.Win.UltraWinEditors.EditorButton("XH");
- Infragistics.Win.Appearance appearance57 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance58 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance59 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance60 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance61 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance62 = new Infragistics.Win.Appearance();
- Infragistics.Win.ValueListItem valueListItem1 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem2 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.Appearance appearance63 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance64 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance65 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("工具栏");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool1 = new Infragistics.Win.UltraWinToolbars.ButtonTool("QUERY_KC");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool2 = new Infragistics.Win.UltraWinToolbars.ButtonTool("QUERY_GY");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool3 = new Infragistics.Win.UltraWinToolbars.ButtonTool("QUERY_PLAN");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool4 = new Infragistics.Win.UltraWinToolbars.ButtonTool("AFFIRM");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool5 = new Infragistics.Win.UltraWinToolbars.ButtonTool("CANCEL");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool6 = new Infragistics.Win.UltraWinToolbars.ButtonTool("DOWN_PLAN");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool7 = new Infragistics.Win.UltraWinToolbars.ButtonTool("DEL_PLAN");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool8 = new Infragistics.Win.UltraWinToolbars.ButtonTool("DUCE");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool9 = new Infragistics.Win.UltraWinToolbars.ButtonTool("PRINT");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool10 = new Infragistics.Win.UltraWinToolbars.ButtonTool("CLOSE");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool11 = new Infragistics.Win.UltraWinToolbars.ButtonTool("CLOSE");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool12 = new Infragistics.Win.UltraWinToolbars.ButtonTool("QUERY_KC");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool13 = new Infragistics.Win.UltraWinToolbars.ButtonTool("QUERY_GY");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool14 = new Infragistics.Win.UltraWinToolbars.ButtonTool("QUERY_PLAN");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool15 = new Infragistics.Win.UltraWinToolbars.ButtonTool("AFFIRM");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool16 = new Infragistics.Win.UltraWinToolbars.ButtonTool("CANCEL");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool17 = new Infragistics.Win.UltraWinToolbars.ButtonTool("DOWN_PLAN");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool18 = new Infragistics.Win.UltraWinToolbars.ButtonTool("DEL_PLAN");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool19 = new Infragistics.Win.UltraWinToolbars.ButtonTool("DUCE");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool20 = new Infragistics.Win.UltraWinToolbars.ButtonTool("PRINT");
- Infragistics.Win.ValueListItem valueListItem3 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem4 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.Appearance appearance66 = new Infragistics.Win.Appearance();
- Infragistics.Win.ValueListItem valueListItem5 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem6 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.Appearance appearance67 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance68 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance69 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance70 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance71 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance72 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance73 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance74 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance75 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance76 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance77 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance78 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance79 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab1 = new Infragistics.Win.UltraWinTabControl.UltraTab(true);
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab2 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.Appearance appearance80 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance81 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance82 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance83 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance84 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance85 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance86 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance87 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance88 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance89 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance90 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance91 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance92 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance93 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance94 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance95 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance96 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance97 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance98 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance99 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance100 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance101 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance102 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance103 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance104 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance105 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance106 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance107 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance108 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance109 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance110 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance111 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance112 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance113 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance114 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance115 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance116 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance117 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance118 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance119 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance120 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance121 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance122 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance123 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance124 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance125 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance126 = new Infragistics.Win.Appearance();
- this.ultraTabPageControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.gb_Stuff = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.panel2 = new System.Windows.Forms.Panel();
- this.cmb_Gylx = new Infragistics.Win.UltraWinGrid.UltraCombo();
- this.ultraLabel15 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_QuShi = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel3 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTabPageControl2 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.gb_Plan = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.ultraExpandableGroupBox2 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
- this.ultraExpandableGroupBoxPanel2 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
- this.gb_PlanState = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.ultraExpandableGroupBox1 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
- this.ultraExpandableGroupBoxPanel1 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
- this.ultraLabel9 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_Width = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.dte_Time = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
- this.txt_Length = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.ultraLabel4 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel2 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_Scid_End_Y = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.cmb_ClassTeam = new Infragistics.Win.UltraWinGrid.UltraCombo();
- this.ultraLabel10 = new Infragistics.Win.Misc.UltraLabel();
- this.cmb_ClassOrder = new Infragistics.Win.UltraWinGrid.UltraCombo();
- this.ultraLabel8 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel7 = new Infragistics.Win.Misc.UltraLabel();
- this.cmb_EditType_Y = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.txt_Scid_Begin_Y = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_Scid_Top_Y = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel1 = new Infragistics.Win.Misc.UltraLabel();
- 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_CollectTime = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.ultSJ = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.cmb_IS = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.chk_ProcLine = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.ultraLabel5 = new Infragistics.Win.Misc.UltraLabel();
- this.dte_EndTime = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
- this.dte_BeginTime = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
- this.txt_BNumber = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.chk_BNumber = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.chk_SelectAll = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.chk_AllowFilter = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.cmb_Buress = new Infragistics.Win.UltraWinGrid.UltraCombo();
- this.Chk_Buttress = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.cmb_Sleen = new Infragistics.Win.UltraWinGrid.UltraCombo();
- this.chk_PaiHao = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.txt_GangP = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.chk_BanHao = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.txt_RollHao = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.chk_RollHao = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.txt_PlanID = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.chk_PactID = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.txt_OrderNO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.chk_OrderNO = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.Lab_To = new Infragistics.Win.Misc.UltraLabel();
- this.tab_Coroll = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
- this.ultraTabSharedControlsPage1 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
- this.excelExporter = new Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter();
- this.ultraCombo1 = new Infragistics.Win.UltraWinGrid.UltraCombo();
- this.ultraLabel6 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTabControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
- this.ultraTabSharedControlsPage2 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
- this.ultraTabSharedControlsPage3 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
- this.ultraTabPageControl3 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.panel3 = new System.Windows.Forms.Panel();
- this.ultraTextEditor1 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel11 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTabPageControl4 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.ultraGrid2 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.ultraExpandableGroupBox3 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
- this.ultraExpandableGroupBoxPanel3 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
- this.ultraGrid3 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.ultraExpandableGroupBox4 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
- this.ultraExpandableGroupBoxPanel4 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
- this.ultraTabPageControl1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.gb_Stuff)).BeginInit();
- this.panel2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_Gylx)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_QuShi)).BeginInit();
- this.ultraTabPageControl2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.gb_Plan)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox2)).BeginInit();
- this.ultraExpandableGroupBox2.SuspendLayout();
- this.ultraExpandableGroupBoxPanel2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.gb_PlanState)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).BeginInit();
- this.ultraExpandableGroupBox1.SuspendLayout();
- this.ultraExpandableGroupBoxPanel1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txt_Width)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dte_Time)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_Length)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_Scid_End_Y)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_ClassTeam)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_ClassOrder)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_EditType_Y)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_Scid_Begin_Y)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_Scid_Top_Y)).BeginInit();
- this.panel1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
- this.ultraGroupBox1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultSJ)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_IS)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dte_EndTime)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dte_BeginTime)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_BNumber)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_Buress)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_Sleen)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_GangP)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_RollHao)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_PlanID)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_OrderNO)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.tab_Coroll)).BeginInit();
- this.tab_Coroll.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraCombo1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).BeginInit();
- this.ultraTabControl1.SuspendLayout();
- this.ultraTabPageControl3.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
- this.panel3.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).BeginInit();
- this.ultraTabPageControl4.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox3)).BeginInit();
- this.ultraExpandableGroupBox3.SuspendLayout();
- this.ultraExpandableGroupBoxPanel3.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox4)).BeginInit();
- this.ultraExpandableGroupBox4.SuspendLayout();
- this.SuspendLayout();
- //
- // ultraTabPageControl1
- //
- this.ultraTabPageControl1.Controls.Add(this.gb_Stuff);
- this.ultraTabPageControl1.Controls.Add(this.panel2);
- this.ultraTabPageControl1.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabPageControl1.Name = "ultraTabPageControl1";
- this.ultraTabPageControl1.Size = new System.Drawing.Size(1269, 391);
- //
- // gb_Stuff
- //
- appearance1.BackColor = System.Drawing.Color.Ivory;
- this.gb_Stuff.DisplayLayout.Appearance = appearance1;
- ultraGridColumn1.Header.Caption = "出库单号";
- ultraGridColumn1.Header.VisiblePosition = 0;
- ultraGridColumn1.RowLayoutColumnInfo.OriginX = 29;
- ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn1.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(77, 0);
- ultraGridColumn1.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn1.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn2.Header.Caption = "钢卷号";
- ultraGridColumn2.Header.VisiblePosition = 1;
- ultraGridColumn2.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn2.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(92, 0);
- ultraGridColumn2.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn2.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn3.Header.Caption = "板坯号";
- ultraGridColumn3.Header.VisiblePosition = 2;
- ultraGridColumn3.RowLayoutColumnInfo.OriginX = 3;
- ultraGridColumn3.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn3.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(96, 0);
- ultraGridColumn3.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn3.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn4.Header.Caption = "合同号";
- ultraGridColumn4.Header.VisiblePosition = 3;
- ultraGridColumn4.RowLayoutColumnInfo.OriginX = 5;
- ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn4.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(99, 0);
- ultraGridColumn4.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn4.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn5.Header.Caption = "订单号";
- ultraGridColumn5.Header.VisiblePosition = 4;
- ultraGridColumn5.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn5.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(101, 0);
- ultraGridColumn5.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn5.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn6.Header.Caption = "交货期";
- ultraGridColumn6.Header.VisiblePosition = 5;
- ultraGridColumn6.RowLayoutColumnInfo.OriginX = 28;
- ultraGridColumn6.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn6.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn6.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn7.Header.Caption = "内径";
- ultraGridColumn7.Header.VisiblePosition = 6;
- ultraGridColumn7.RowLayoutColumnInfo.OriginX = 10;
- ultraGridColumn7.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn7.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(55, 0);
- ultraGridColumn7.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn7.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn8.Header.Caption = "外径";
- ultraGridColumn8.Header.VisiblePosition = 7;
- ultraGridColumn8.RowLayoutColumnInfo.OriginX = 11;
- ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn8.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(53, 0);
- ultraGridColumn8.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn8.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn9.Header.Caption = "长度";
- ultraGridColumn9.Header.VisiblePosition = 8;
- ultraGridColumn9.RowLayoutColumnInfo.OriginX = 16;
- ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn9.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(52, 0);
- ultraGridColumn9.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn9.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn10.Header.Caption = "厚度 ";
- ultraGridColumn10.Header.VisiblePosition = 9;
- ultraGridColumn10.RowLayoutColumnInfo.OriginX = 14;
- ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn10.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(48, 0);
- ultraGridColumn10.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn10.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn11.Header.Caption = "宽度";
- ultraGridColumn11.Header.VisiblePosition = 10;
- ultraGridColumn11.RowLayoutColumnInfo.OriginX = 15;
- ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn11.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(46, 0);
- ultraGridColumn11.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn11.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn12.Header.Caption = "计算重量";
- ultraGridColumn12.Header.VisiblePosition = 11;
- ultraGridColumn12.RowLayoutColumnInfo.OriginX = 17;
- ultraGridColumn12.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn12.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(67, 0);
- ultraGridColumn12.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn12.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn13.Header.Caption = "实重量";
- ultraGridColumn13.Header.VisiblePosition = 12;
- ultraGridColumn13.RowLayoutColumnInfo.OriginX = 18;
- ultraGridColumn13.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn13.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(69, 0);
- ultraGridColumn13.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn13.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn14.Header.Caption = "牌号";
- ultraGridColumn14.Header.VisiblePosition = 13;
- ultraGridColumn14.RowLayoutColumnInfo.OriginX = 9;
- ultraGridColumn14.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn14.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(71, 0);
- ultraGridColumn14.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn14.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn15.Header.Caption = "综合判定";
- ultraGridColumn15.Header.VisiblePosition = 14;
- ultraGridColumn15.RowLayoutColumnInfo.OriginX = 20;
- ultraGridColumn15.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn15.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(64, 0);
- ultraGridColumn15.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn15.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn16.Header.Caption = "特记事项";
- ultraGridColumn16.Header.VisiblePosition = 15;
- ultraGridColumn16.RowLayoutColumnInfo.OriginX = 27;
- ultraGridColumn16.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn16.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn16.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn17.Header.Caption = "车辆号";
- ultraGridColumn17.Header.VisiblePosition = 16;
- ultraGridColumn17.RowLayoutColumnInfo.OriginX = 30;
- ultraGridColumn17.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn17.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(78, 0);
- ultraGridColumn17.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn17.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn18.Header.Caption = "质保书编号";
- ultraGridColumn18.Header.VisiblePosition = 17;
- ultraGridColumn18.RowLayoutColumnInfo.OriginX = 26;
- ultraGridColumn18.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn18.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(69, 0);
- ultraGridColumn18.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn18.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn19.Header.Caption = "垛位";
- ultraGridColumn19.Header.VisiblePosition = 18;
- ultraGridColumn19.RowLayoutColumnInfo.OriginX = 8;
- ultraGridColumn19.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn19.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(90, 0);
- ultraGridColumn19.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn19.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn20.Header.Caption = "登记人";
- ultraGridColumn20.Header.VisiblePosition = 19;
- ultraGridColumn20.RowLayoutColumnInfo.OriginX = 33;
- ultraGridColumn20.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn20.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn20.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn21.Header.Caption = "登记时间";
- ultraGridColumn21.Header.VisiblePosition = 20;
- ultraGridColumn21.RowLayoutColumnInfo.OriginX = 34;
- ultraGridColumn21.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn21.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn21.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn22.Header.Caption = "入库班次";
- ultraGridColumn22.Header.VisiblePosition = 21;
- ultraGridColumn22.RowLayoutColumnInfo.OriginX = 31;
- ultraGridColumn22.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn22.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
- ultraGridColumn22.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn22.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn23.Header.Caption = "入库班组";
- ultraGridColumn23.Header.VisiblePosition = 22;
- ultraGridColumn23.RowLayoutColumnInfo.OriginX = 32;
- ultraGridColumn23.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn23.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(71, 0);
- ultraGridColumn23.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn23.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn24.Header.Caption = "";
- ultraGridColumn24.Header.VisiblePosition = 23;
- ultraGridColumn24.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn24.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn24.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(32, 0);
- ultraGridColumn24.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn24.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn24.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.CheckBox;
- ultraGridColumn25.Header.Caption = "订单类型";
- ultraGridColumn25.Header.VisiblePosition = 24;
- ultraGridColumn25.RowLayoutColumnInfo.OriginX = 19;
- ultraGridColumn25.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn25.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(67, 0);
- ultraGridColumn25.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn25.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn26.Header.Caption = "订单厚度";
- ultraGridColumn26.Header.VisiblePosition = 25;
- ultraGridColumn26.RowLayoutColumnInfo.OriginX = 12;
- ultraGridColumn26.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn26.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(57, 0);
- ultraGridColumn26.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn26.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn27.Header.Caption = "订单宽度";
- ultraGridColumn27.Header.VisiblePosition = 27;
- ultraGridColumn27.RowLayoutColumnInfo.OriginX = 13;
- ultraGridColumn27.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn27.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(56, 0);
- ultraGridColumn27.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn27.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn28.Header.Caption = "炉号";
- ultraGridColumn28.Header.VisiblePosition = 26;
- ultraGridColumn28.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn28.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn28.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn28.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn29.Header.Caption = "批号";
- ultraGridColumn29.Header.VisiblePosition = 28;
- ultraGridColumn29.RowLayoutColumnInfo.OriginX = 1;
- ultraGridColumn29.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn29.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn29.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn30.Header.Caption = "执行标准";
- ultraGridColumn30.Header.VisiblePosition = 29;
- ultraGridColumn30.RowLayoutColumnInfo.OriginX = 7;
- ultraGridColumn30.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn30.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(88, 0);
- ultraGridColumn30.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn30.RowLayoutColumnInfo.SpanY = 1;
- ultraGridBand1.Columns.AddRange(new object[] {
- ultraGridColumn1,
- ultraGridColumn2,
- ultraGridColumn3,
- ultraGridColumn4,
- ultraGridColumn5,
- ultraGridColumn6,
- ultraGridColumn7,
- ultraGridColumn8,
- ultraGridColumn9,
- ultraGridColumn10,
- ultraGridColumn11,
- ultraGridColumn12,
- ultraGridColumn13,
- ultraGridColumn14,
- ultraGridColumn15,
- ultraGridColumn16,
- ultraGridColumn17,
- ultraGridColumn18,
- ultraGridColumn19,
- ultraGridColumn20,
- ultraGridColumn21,
- ultraGridColumn22,
- ultraGridColumn23,
- ultraGridColumn24,
- ultraGridColumn25,
- ultraGridColumn26,
- ultraGridColumn27,
- ultraGridColumn28,
- ultraGridColumn29,
- ultraGridColumn30});
- appearance2.BackColor = System.Drawing.Color.LightSteelBlue;
- ultraGridBand1.Header.Appearance = appearance2;
- ultraGridBand1.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True;
- summarySettings1.DisplayFormat = "{0}KG";
- summarySettings1.GroupBySummaryValueAppearance = appearance3;
- summarySettings2.DisplayFormat = "{0}KG";
- summarySettings2.GroupBySummaryValueAppearance = appearance4;
- ultraGridBand1.Summaries.AddRange(new Infragistics.Win.UltraWinGrid.SummarySettings[] {
- summarySettings1,
- summarySettings2});
- ultraGridBand1.UseRowLayout = true;
- this.gb_Stuff.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
- this.gb_Stuff.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance5.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance5.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance5.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance5.BorderColor = System.Drawing.SystemColors.Window;
- this.gb_Stuff.DisplayLayout.GroupByBox.Appearance = appearance5;
- appearance6.ForeColor = System.Drawing.SystemColors.GrayText;
- this.gb_Stuff.DisplayLayout.GroupByBox.BandLabelAppearance = appearance6;
- this.gb_Stuff.DisplayLayout.GroupByBox.Hidden = true;
- this.gb_Stuff.DisplayLayout.GroupByBox.Prompt = "将要分组的列拖至该区域!";
- appearance7.BackColor = System.Drawing.SystemColors.Window;
- appearance7.ForeColor = System.Drawing.SystemColors.ControlText;
- this.gb_Stuff.DisplayLayout.Override.ActiveCellAppearance = appearance7;
- appearance8.BackColor = System.Drawing.SystemColors.Highlight;
- appearance8.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.gb_Stuff.DisplayLayout.Override.ActiveRowAppearance = appearance8;
- appearance9.BorderColor = System.Drawing.Color.Black;
- appearance9.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.gb_Stuff.DisplayLayout.Override.CellAppearance = appearance9;
- this.gb_Stuff.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.gb_Stuff.DisplayLayout.Override.CellPadding = 0;
- appearance10.BackColor = System.Drawing.SystemColors.Control;
- appearance10.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance10.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance10.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance10.BorderColor = System.Drawing.SystemColors.Window;
- appearance10.TextHAlign = Infragistics.Win.HAlign.Left;
- appearance10.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.gb_Stuff.DisplayLayout.Override.GroupByRowAppearance = appearance10;
- this.gb_Stuff.DisplayLayout.Override.GroupBySummaryDisplayStyle = Infragistics.Win.UltraWinGrid.GroupBySummaryDisplayStyle.SummaryCells;
- appearance11.BackColor = System.Drawing.Color.Silver;
- this.gb_Stuff.DisplayLayout.Override.HeaderAppearance = appearance11;
- this.gb_Stuff.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.gb_Stuff.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.Standard;
- appearance12.BackColor = System.Drawing.SystemColors.Window;
- appearance12.BorderColor = System.Drawing.Color.Black;
- appearance12.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.gb_Stuff.DisplayLayout.Override.RowAppearance = appearance12;
- appearance13.BackColor = System.Drawing.SystemColors.Window;
- appearance13.BorderColor = System.Drawing.Color.Black;
- appearance13.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.gb_Stuff.DisplayLayout.Override.RowPreviewAppearance = appearance13;
- this.gb_Stuff.DisplayLayout.Override.RowSelectorHeaderStyle = Infragistics.Win.UltraWinGrid.RowSelectorHeaderStyle.SeparateElement;
- this.gb_Stuff.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
- this.gb_Stuff.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True;
- appearance14.TextHAlign = Infragistics.Win.HAlign.Left;
- appearance14.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.gb_Stuff.DisplayLayout.Override.SelectedRowAppearance = appearance14;
- this.gb_Stuff.DisplayLayout.Override.SummaryDisplayArea = Infragistics.Win.UltraWinGrid.SummaryDisplayAreas.BottomFixed;
- appearance15.BackColor = System.Drawing.SystemColors.Window;
- this.gb_Stuff.DisplayLayout.Override.SummaryFooterAppearance = appearance15;
- appearance16.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- appearance16.ForeColor = System.Drawing.Color.Red;
- this.gb_Stuff.DisplayLayout.Override.SummaryFooterCaptionAppearance = appearance16;
- this.gb_Stuff.DisplayLayout.Override.SummaryFooterCaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance17.BackColor = System.Drawing.Color.MistyRose;
- appearance17.ForeColor = System.Drawing.Color.Blue;
- appearance17.TextHAlign = Infragistics.Win.HAlign.Right;
- appearance17.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.gb_Stuff.DisplayLayout.Override.SummaryValueAppearance = appearance17;
- appearance18.BackColor = System.Drawing.SystemColors.ControlLight;
- this.gb_Stuff.DisplayLayout.Override.TemplateAddRowAppearance = appearance18;
- this.gb_Stuff.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.gb_Stuff.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.gb_Stuff.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.gb_Stuff.Dock = System.Windows.Forms.DockStyle.Fill;
- this.gb_Stuff.Location = new System.Drawing.Point(0, 0);
- this.gb_Stuff.Name = "gb_Stuff";
- this.gb_Stuff.Size = new System.Drawing.Size(1269, 343);
- this.gb_Stuff.TabIndex = 9;
- this.gb_Stuff.Text = "ultraGrid2";
- this.gb_Stuff.CellChange += new Infragistics.Win.UltraWinGrid.CellEventHandler(this.gb_Stuff_CellChange);
- //
- // panel2
- //
- this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panel2.Controls.Add(this.cmb_Gylx);
- this.panel2.Controls.Add(this.ultraLabel15);
- this.panel2.Controls.Add(this.txt_QuShi);
- this.panel2.Controls.Add(this.ultraLabel3);
- this.panel2.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.panel2.Location = new System.Drawing.Point(0, 343);
- this.panel2.Name = "panel2";
- this.panel2.Size = new System.Drawing.Size(1269, 48);
- this.panel2.TabIndex = 0;
- //
- // cmb_Gylx
- //
- this.cmb_Gylx.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
- this.cmb_Gylx.DisplayMember = "";
- this.cmb_Gylx.Location = new System.Drawing.Point(430, 13);
- this.cmb_Gylx.Name = "cmb_Gylx";
- this.cmb_Gylx.Size = new System.Drawing.Size(150, 21);
- this.cmb_Gylx.TabIndex = 706;
- this.cmb_Gylx.ValueMember = "";
- //
- // ultraLabel15
- //
- this.ultraLabel15.Location = new System.Drawing.Point(374, 18);
- this.ultraLabel15.Name = "ultraLabel15";
- this.ultraLabel15.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel15.TabIndex = 705;
- this.ultraLabel15.Text = "工艺类型";
- //
- // txt_QuShi
- //
- this.txt_QuShi.AutoSize = true;
- this.txt_QuShi.FlatMode = true;
- this.txt_QuShi.Location = new System.Drawing.Point(62, 16);
- this.txt_QuShi.Name = "txt_QuShi";
- this.txt_QuShi.Size = new System.Drawing.Size(306, 19);
- this.txt_QuShi.TabIndex = 601;
- //
- // ultraLabel3
- //
- this.ultraLabel3.Location = new System.Drawing.Point(8, 18);
- this.ultraLabel3.Name = "ultraLabel3";
- this.ultraLabel3.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel3.TabIndex = 602;
- this.ultraLabel3.Text = "工艺事项";
- //
- // ultraTabPageControl2
- //
- this.ultraTabPageControl2.Controls.Add(this.gb_Plan);
- this.ultraTabPageControl2.Controls.Add(this.ultraExpandableGroupBox2);
- this.ultraTabPageControl2.Controls.Add(this.ultraExpandableGroupBox1);
- this.ultraTabPageControl2.Location = new System.Drawing.Point(2, 21);
- this.ultraTabPageControl2.Name = "ultraTabPageControl2";
- this.ultraTabPageControl2.Size = new System.Drawing.Size(1269, 391);
- //
- // gb_Plan
- //
- appearance19.BackColor = System.Drawing.Color.Ivory;
- this.gb_Plan.DisplayLayout.Appearance = appearance19;
- ultraGridColumn31.Header.Caption = "出库单号";
- ultraGridColumn31.Header.VisiblePosition = 0;
- ultraGridColumn31.RowLayoutColumnInfo.OriginX = 25;
- ultraGridColumn31.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn31.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(77, 0);
- ultraGridColumn31.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn31.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn32.Header.Caption = "钢卷号";
- ultraGridColumn32.Header.VisiblePosition = 1;
- ultraGridColumn32.RowLayoutColumnInfo.OriginX = 1;
- ultraGridColumn32.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn32.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(99, 0);
- ultraGridColumn32.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn32.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn33.Header.Caption = "板坯号";
- ultraGridColumn33.Header.VisiblePosition = 2;
- ultraGridColumn33.RowLayoutColumnInfo.OriginX = 3;
- ultraGridColumn33.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn33.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(110, 0);
- ultraGridColumn33.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn33.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn34.Header.Caption = "合同号";
- ultraGridColumn34.Header.VisiblePosition = 3;
- ultraGridColumn34.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn34.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn34.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(99, 0);
- ultraGridColumn34.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn34.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn35.Header.Caption = "订单号";
- ultraGridColumn35.Header.VisiblePosition = 4;
- ultraGridColumn35.RowLayoutColumnInfo.OriginX = 7;
- ultraGridColumn35.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn35.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(101, 0);
- ultraGridColumn35.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn35.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn36.Header.Caption = "交货期";
- ultraGridColumn36.Header.VisiblePosition = 5;
- ultraGridColumn36.RowLayoutColumnInfo.OriginX = 24;
- ultraGridColumn36.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn36.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn36.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn37.Header.Caption = "内径";
- ultraGridColumn37.Header.VisiblePosition = 6;
- ultraGridColumn37.RowLayoutColumnInfo.OriginX = 11;
- ultraGridColumn37.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn37.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(55, 0);
- ultraGridColumn37.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn37.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn38.Header.Caption = "外径";
- ultraGridColumn38.Header.VisiblePosition = 7;
- ultraGridColumn38.RowLayoutColumnInfo.OriginX = 12;
- ultraGridColumn38.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn38.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(53, 0);
- ultraGridColumn38.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn38.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn39.Header.Caption = "长度";
- ultraGridColumn39.Header.VisiblePosition = 8;
- ultraGridColumn39.RowLayoutColumnInfo.OriginX = 17;
- ultraGridColumn39.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn39.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(52, 0);
- ultraGridColumn39.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn39.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn40.Header.Caption = "厚度 ";
- ultraGridColumn40.Header.VisiblePosition = 9;
- ultraGridColumn40.RowLayoutColumnInfo.OriginX = 15;
- ultraGridColumn40.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn40.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(48, 0);
- ultraGridColumn40.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn40.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn41.Header.Caption = "宽度";
- ultraGridColumn41.Header.VisiblePosition = 10;
- ultraGridColumn41.RowLayoutColumnInfo.OriginX = 16;
- ultraGridColumn41.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn41.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(46, 0);
- ultraGridColumn41.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn41.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn42.Header.Caption = "计算重量";
- ultraGridColumn42.Header.VisiblePosition = 11;
- ultraGridColumn42.RowLayoutColumnInfo.OriginX = 18;
- ultraGridColumn42.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn42.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(67, 0);
- ultraGridColumn42.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn42.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn43.Header.Caption = "实重量";
- ultraGridColumn43.Header.VisiblePosition = 12;
- ultraGridColumn43.RowLayoutColumnInfo.OriginX = 19;
- ultraGridColumn43.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn43.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(69, 0);
- ultraGridColumn43.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn43.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn44.Header.Caption = "牌号";
- ultraGridColumn44.Header.VisiblePosition = 13;
- ultraGridColumn44.RowLayoutColumnInfo.OriginX = 10;
- ultraGridColumn44.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn44.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(71, 0);
- ultraGridColumn44.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn44.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn45.Header.Caption = "综合判定";
- ultraGridColumn45.Header.VisiblePosition = 14;
- ultraGridColumn45.RowLayoutColumnInfo.OriginX = 21;
- ultraGridColumn45.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn45.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(64, 0);
- ultraGridColumn45.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn45.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn46.Header.Caption = "特记事项";
- ultraGridColumn46.Header.VisiblePosition = 15;
- ultraGridColumn46.RowLayoutColumnInfo.OriginX = 23;
- ultraGridColumn46.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn46.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn46.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn47.Header.Caption = "车辆号";
- ultraGridColumn47.Header.VisiblePosition = 16;
- ultraGridColumn47.RowLayoutColumnInfo.OriginX = 26;
- ultraGridColumn47.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn47.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(78, 0);
- ultraGridColumn47.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn47.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn48.Header.Caption = "质保书编号";
- ultraGridColumn48.Header.VisiblePosition = 17;
- ultraGridColumn48.RowLayoutColumnInfo.OriginX = 22;
- ultraGridColumn48.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn48.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(69, 0);
- ultraGridColumn48.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn48.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn49.Header.Caption = "垛位";
- ultraGridColumn49.Header.VisiblePosition = 18;
- ultraGridColumn49.RowLayoutColumnInfo.OriginX = 9;
- ultraGridColumn49.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn49.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(90, 0);
- ultraGridColumn49.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn49.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn50.Header.Caption = "登记人";
- ultraGridColumn50.Header.VisiblePosition = 19;
- ultraGridColumn50.RowLayoutColumnInfo.OriginX = 29;
- ultraGridColumn50.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn50.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn50.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn51.Header.Caption = "登记时间";
- ultraGridColumn51.Header.VisiblePosition = 20;
- ultraGridColumn51.RowLayoutColumnInfo.OriginX = 30;
- ultraGridColumn51.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn51.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn51.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn52.Header.Caption = "计划班次";
- ultraGridColumn52.Header.VisiblePosition = 21;
- ultraGridColumn52.RowLayoutColumnInfo.OriginX = 27;
- ultraGridColumn52.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn52.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(70, 0);
- ultraGridColumn52.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn52.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn53.Header.Caption = "计划班组";
- ultraGridColumn53.Header.VisiblePosition = 22;
- ultraGridColumn53.RowLayoutColumnInfo.OriginX = 28;
- ultraGridColumn53.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn53.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(70, 0);
- ultraGridColumn53.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn53.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn54.Header.Caption = "工单号";
- ultraGridColumn54.Header.VisiblePosition = 23;
- ultraGridColumn54.Hidden = true;
- ultraGridColumn54.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn54.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn54.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(89, 0);
- ultraGridColumn54.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn54.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn55.Header.Caption = "";
- ultraGridColumn55.Header.VisiblePosition = 24;
- ultraGridColumn55.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn55.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn55.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(38, 0);
- ultraGridColumn55.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn55.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn55.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.CheckBox;
- ultraGridColumn56.Header.Caption = "批号";
- ultraGridColumn56.Header.VisiblePosition = 26;
- ultraGridColumn56.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn56.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn56.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(103, 0);
- ultraGridColumn56.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn56.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn57.Header.Caption = "开平线";
- ultraGridColumn57.Header.VisiblePosition = 27;
- ultraGridColumn57.Hidden = true;
- ultraGridColumn57.RowLayoutColumnInfo.OriginX = 1;
- ultraGridColumn57.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn57.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(73, 0);
- ultraGridColumn57.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn57.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn58.Header.Caption = "订单类型";
- ultraGridColumn58.Header.VisiblePosition = 28;
- ultraGridColumn58.RowLayoutColumnInfo.OriginX = 20;
- ultraGridColumn58.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn58.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(63, 0);
- ultraGridColumn58.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn58.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn59.Header.Caption = "订单厚度";
- ultraGridColumn59.Header.VisiblePosition = 29;
- ultraGridColumn59.RowLayoutColumnInfo.OriginX = 13;
- ultraGridColumn59.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn59.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(56, 0);
- ultraGridColumn59.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn59.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn60.Header.Caption = "订单宽度";
- ultraGridColumn60.Header.VisiblePosition = 32;
- ultraGridColumn60.RowLayoutColumnInfo.OriginX = 14;
- ultraGridColumn60.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn60.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(61, 0);
- ultraGridColumn60.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn60.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn61.Header.Caption = "工艺类型";
- ultraGridColumn61.Header.VisiblePosition = 30;
- ultraGridColumn61.RowLayoutColumnInfo.OriginX = 5;
- ultraGridColumn61.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn61.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn61.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn62.Header.Caption = "炉号";
- ultraGridColumn62.Header.VisiblePosition = 25;
- ultraGridColumn62.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn62.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn62.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(96, 0);
- ultraGridColumn62.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn62.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn63.Header.Caption = "执行标准";
- ultraGridColumn63.Header.VisiblePosition = 31;
- ultraGridColumn63.RowLayoutColumnInfo.OriginX = 8;
- ultraGridColumn63.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn63.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(92, 0);
- ultraGridColumn63.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn63.RowLayoutColumnInfo.SpanY = 1;
- ultraGridBand2.Columns.AddRange(new object[] {
- ultraGridColumn31,
- ultraGridColumn32,
- ultraGridColumn33,
- ultraGridColumn34,
- ultraGridColumn35,
- ultraGridColumn36,
- ultraGridColumn37,
- ultraGridColumn38,
- ultraGridColumn39,
- ultraGridColumn40,
- ultraGridColumn41,
- ultraGridColumn42,
- ultraGridColumn43,
- ultraGridColumn44,
- ultraGridColumn45,
- ultraGridColumn46,
- ultraGridColumn47,
- ultraGridColumn48,
- ultraGridColumn49,
- ultraGridColumn50,
- ultraGridColumn51,
- ultraGridColumn52,
- ultraGridColumn53,
- ultraGridColumn54,
- ultraGridColumn55,
- ultraGridColumn56,
- ultraGridColumn57,
- ultraGridColumn58,
- ultraGridColumn59,
- ultraGridColumn60,
- ultraGridColumn61,
- ultraGridColumn62,
- ultraGridColumn63});
- appearance20.BackColor = System.Drawing.Color.LightSteelBlue;
- ultraGridBand2.Header.Appearance = appearance20;
- ultraGridBand2.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True;
- ultraGridBand2.UseRowLayout = true;
- this.gb_Plan.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
- this.gb_Plan.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance21.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance21.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance21.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance21.BorderColor = System.Drawing.SystemColors.Window;
- this.gb_Plan.DisplayLayout.GroupByBox.Appearance = appearance21;
- appearance22.ForeColor = System.Drawing.SystemColors.GrayText;
- this.gb_Plan.DisplayLayout.GroupByBox.BandLabelAppearance = appearance22;
- this.gb_Plan.DisplayLayout.GroupByBox.Hidden = true;
- this.gb_Plan.DisplayLayout.GroupByBox.Prompt = "将要分组的列拖至该区域!";
- appearance23.BackColor = System.Drawing.SystemColors.Window;
- appearance23.ForeColor = System.Drawing.SystemColors.ControlText;
- this.gb_Plan.DisplayLayout.Override.ActiveCellAppearance = appearance23;
- appearance24.BackColor = System.Drawing.SystemColors.Highlight;
- appearance24.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.gb_Plan.DisplayLayout.Override.ActiveRowAppearance = appearance24;
- appearance25.BorderColor = System.Drawing.Color.Black;
- appearance25.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.gb_Plan.DisplayLayout.Override.CellAppearance = appearance25;
- this.gb_Plan.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.gb_Plan.DisplayLayout.Override.CellPadding = 0;
- appearance26.BackColor = System.Drawing.SystemColors.Control;
- appearance26.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance26.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance26.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance26.BorderColor = System.Drawing.SystemColors.Window;
- appearance26.TextHAlign = Infragistics.Win.HAlign.Left;
- appearance26.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.gb_Plan.DisplayLayout.Override.GroupByRowAppearance = appearance26;
- this.gb_Plan.DisplayLayout.Override.GroupBySummaryDisplayStyle = Infragistics.Win.UltraWinGrid.GroupBySummaryDisplayStyle.SummaryCells;
- appearance27.BackColor = System.Drawing.Color.Silver;
- this.gb_Plan.DisplayLayout.Override.HeaderAppearance = appearance27;
- this.gb_Plan.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.gb_Plan.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.Standard;
- appearance28.BackColor = System.Drawing.SystemColors.Window;
- appearance28.BorderColor = System.Drawing.Color.Black;
- appearance28.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.gb_Plan.DisplayLayout.Override.RowAppearance = appearance28;
- appearance29.BackColor = System.Drawing.SystemColors.Window;
- appearance29.BorderColor = System.Drawing.Color.Black;
- appearance29.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.gb_Plan.DisplayLayout.Override.RowPreviewAppearance = appearance29;
- this.gb_Plan.DisplayLayout.Override.RowSelectorHeaderStyle = Infragistics.Win.UltraWinGrid.RowSelectorHeaderStyle.SeparateElement;
- this.gb_Plan.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
- this.gb_Plan.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True;
- appearance30.TextHAlign = Infragistics.Win.HAlign.Left;
- appearance30.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.gb_Plan.DisplayLayout.Override.SelectedRowAppearance = appearance30;
- this.gb_Plan.DisplayLayout.Override.SummaryDisplayArea = Infragistics.Win.UltraWinGrid.SummaryDisplayAreas.BottomFixed;
- appearance31.BackColor = System.Drawing.SystemColors.Window;
- this.gb_Plan.DisplayLayout.Override.SummaryFooterAppearance = appearance31;
- appearance32.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- appearance32.ForeColor = System.Drawing.Color.Red;
- this.gb_Plan.DisplayLayout.Override.SummaryFooterCaptionAppearance = appearance32;
- this.gb_Plan.DisplayLayout.Override.SummaryFooterCaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance33.BackColor = System.Drawing.Color.MistyRose;
- appearance33.ForeColor = System.Drawing.Color.Blue;
- appearance33.TextHAlign = Infragistics.Win.HAlign.Right;
- appearance33.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.gb_Plan.DisplayLayout.Override.SummaryValueAppearance = appearance33;
- appearance34.BackColor = System.Drawing.SystemColors.ControlLight;
- this.gb_Plan.DisplayLayout.Override.TemplateAddRowAppearance = appearance34;
- this.gb_Plan.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.gb_Plan.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.gb_Plan.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.gb_Plan.Dock = System.Windows.Forms.DockStyle.Fill;
- this.gb_Plan.Location = new System.Drawing.Point(0, 0);
- this.gb_Plan.Name = "gb_Plan";
- this.gb_Plan.Size = new System.Drawing.Size(1269, 124);
- this.gb_Plan.TabIndex = 10;
- this.gb_Plan.Text = "ultraGrid1";
- this.gb_Plan.CellChange += new Infragistics.Win.UltraWinGrid.CellEventHandler(this.gb_Plan_CellChange);
- //
- // ultraExpandableGroupBox2
- //
- this.ultraExpandableGroupBox2.Controls.Add(this.ultraExpandableGroupBoxPanel2);
- this.ultraExpandableGroupBox2.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.ultraExpandableGroupBox2.ExpandedSize = new System.Drawing.Size(860, 243);
- this.ultraExpandableGroupBox2.Location = new System.Drawing.Point(0, 124);
- this.ultraExpandableGroupBox2.Name = "ultraExpandableGroupBox2";
- this.ultraExpandableGroupBox2.Size = new System.Drawing.Size(1269, 187);
- this.ultraExpandableGroupBox2.SupportThemes = false;
- this.ultraExpandableGroupBox2.TabIndex = 2;
- this.ultraExpandableGroupBox2.Text = "计划下发情况";
- //
- // ultraExpandableGroupBoxPanel2
- //
- this.ultraExpandableGroupBoxPanel2.Controls.Add(this.gb_PlanState);
- this.ultraExpandableGroupBoxPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraExpandableGroupBoxPanel2.Location = new System.Drawing.Point(3, 19);
- this.ultraExpandableGroupBoxPanel2.Name = "ultraExpandableGroupBoxPanel2";
- this.ultraExpandableGroupBoxPanel2.Size = new System.Drawing.Size(1263, 165);
- this.ultraExpandableGroupBoxPanel2.TabIndex = 0;
- //
- // gb_PlanState
- //
- appearance35.BackColor = System.Drawing.Color.Ivory;
- this.gb_PlanState.DisplayLayout.Appearance = appearance35;
- ultraGridColumn64.Header.Caption = "出库单号";
- ultraGridColumn64.Header.VisiblePosition = 0;
- ultraGridColumn64.RowLayoutColumnInfo.OriginX = 24;
- ultraGridColumn64.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn64.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(77, 0);
- ultraGridColumn64.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn64.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn65.Header.Caption = "钢卷号";
- ultraGridColumn65.Header.VisiblePosition = 1;
- ultraGridColumn65.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn65.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn65.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(92, 0);
- ultraGridColumn65.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn65.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn66.Header.Caption = "板坯号";
- ultraGridColumn66.Header.VisiblePosition = 2;
- ultraGridColumn66.RowLayoutColumnInfo.OriginX = 3;
- ultraGridColumn66.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn66.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(96, 0);
- ultraGridColumn66.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn66.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn67.Header.Caption = "合同号";
- ultraGridColumn67.Header.VisiblePosition = 3;
- ultraGridColumn67.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn67.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn67.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(99, 0);
- ultraGridColumn67.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn67.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn68.Header.Caption = "订单号";
- ultraGridColumn68.Header.VisiblePosition = 4;
- ultraGridColumn68.RowLayoutColumnInfo.OriginX = 7;
- ultraGridColumn68.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn68.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(101, 0);
- ultraGridColumn68.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn68.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn69.Header.Caption = "交货期";
- ultraGridColumn69.Header.VisiblePosition = 5;
- ultraGridColumn69.RowLayoutColumnInfo.OriginX = 25;
- ultraGridColumn69.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn69.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn69.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn70.Header.Caption = "内径";
- ultraGridColumn70.Header.VisiblePosition = 6;
- ultraGridColumn70.RowLayoutColumnInfo.OriginX = 11;
- ultraGridColumn70.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn70.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(55, 0);
- ultraGridColumn70.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn70.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn71.Header.Caption = "外径";
- ultraGridColumn71.Header.VisiblePosition = 7;
- ultraGridColumn71.RowLayoutColumnInfo.OriginX = 12;
- ultraGridColumn71.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn71.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(53, 0);
- ultraGridColumn71.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn71.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn72.Header.Caption = "长度";
- ultraGridColumn72.Header.VisiblePosition = 8;
- ultraGridColumn72.RowLayoutColumnInfo.OriginX = 17;
- ultraGridColumn72.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn72.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(52, 0);
- ultraGridColumn72.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn72.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn73.Header.Caption = "厚度 ";
- ultraGridColumn73.Header.VisiblePosition = 9;
- ultraGridColumn73.RowLayoutColumnInfo.OriginX = 15;
- ultraGridColumn73.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn73.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(48, 0);
- ultraGridColumn73.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn73.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn74.Header.Caption = "宽度";
- ultraGridColumn74.Header.VisiblePosition = 10;
- ultraGridColumn74.RowLayoutColumnInfo.OriginX = 16;
- ultraGridColumn74.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn74.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(46, 0);
- ultraGridColumn74.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn74.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn75.Header.Caption = "计算重量";
- ultraGridColumn75.Header.VisiblePosition = 11;
- ultraGridColumn75.RowLayoutColumnInfo.OriginX = 18;
- ultraGridColumn75.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn75.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(67, 0);
- ultraGridColumn75.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn75.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn76.Header.Caption = "实重量";
- ultraGridColumn76.Header.VisiblePosition = 12;
- ultraGridColumn76.RowLayoutColumnInfo.OriginX = 19;
- ultraGridColumn76.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn76.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(69, 0);
- ultraGridColumn76.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn76.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn77.Header.Caption = "牌号";
- ultraGridColumn77.Header.VisiblePosition = 13;
- ultraGridColumn77.RowLayoutColumnInfo.OriginX = 10;
- ultraGridColumn77.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn77.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(71, 0);
- ultraGridColumn77.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn77.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn78.Header.Caption = "综合判定";
- ultraGridColumn78.Header.VisiblePosition = 14;
- ultraGridColumn78.RowLayoutColumnInfo.OriginX = 21;
- ultraGridColumn78.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn78.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(64, 0);
- ultraGridColumn78.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn78.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn79.Header.Caption = "特记事项";
- ultraGridColumn79.Header.VisiblePosition = 15;
- ultraGridColumn79.RowLayoutColumnInfo.OriginX = 23;
- ultraGridColumn79.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn79.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn79.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn80.Header.Caption = "车辆号";
- ultraGridColumn80.Header.VisiblePosition = 16;
- ultraGridColumn80.RowLayoutColumnInfo.OriginX = 26;
- ultraGridColumn80.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn80.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(78, 0);
- ultraGridColumn80.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn80.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn81.Header.Caption = "质保书编号";
- ultraGridColumn81.Header.VisiblePosition = 17;
- ultraGridColumn81.RowLayoutColumnInfo.OriginX = 22;
- ultraGridColumn81.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn81.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(69, 0);
- ultraGridColumn81.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn81.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn82.Header.Caption = "垛位";
- ultraGridColumn82.Header.VisiblePosition = 18;
- ultraGridColumn82.RowLayoutColumnInfo.OriginX = 8;
- ultraGridColumn82.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn82.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(90, 0);
- ultraGridColumn82.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn82.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn83.Header.Caption = "登记人";
- ultraGridColumn83.Header.VisiblePosition = 19;
- ultraGridColumn83.RowLayoutColumnInfo.OriginX = 35;
- ultraGridColumn83.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn83.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn83.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn84.Header.Caption = "登记时间";
- ultraGridColumn84.Header.VisiblePosition = 20;
- ultraGridColumn84.RowLayoutColumnInfo.OriginX = 27;
- ultraGridColumn84.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn84.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn84.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn85.Header.Caption = "计划班次";
- ultraGridColumn85.Header.VisiblePosition = 21;
- ultraGridColumn85.RowLayoutColumnInfo.OriginX = 28;
- ultraGridColumn85.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn85.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(64, 0);
- ultraGridColumn85.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn85.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn86.Header.Caption = "计划班组";
- ultraGridColumn86.Header.VisiblePosition = 22;
- ultraGridColumn86.RowLayoutColumnInfo.OriginX = 29;
- ultraGridColumn86.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn86.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(70, 0);
- ultraGridColumn86.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn86.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn87.Header.Caption = "工单号";
- ultraGridColumn87.Header.VisiblePosition = 23;
- ultraGridColumn87.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn87.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn87.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(83, 0);
- ultraGridColumn87.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn87.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn88.Header.Caption = "下发人";
- ultraGridColumn88.Header.VisiblePosition = 25;
- ultraGridColumn88.RowLayoutColumnInfo.OriginX = 33;
- ultraGridColumn88.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn88.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn88.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn89.Header.Caption = "下发时间";
- ultraGridColumn89.Header.VisiblePosition = 27;
- ultraGridColumn89.RowLayoutColumnInfo.OriginX = 36;
- ultraGridColumn89.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn89.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn89.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn90.Header.VisiblePosition = 29;
- ultraGridColumn90.Hidden = true;
- ultraGridColumn91.Header.Caption = "开平线";
- ultraGridColumn91.Header.VisiblePosition = 30;
- ultraGridColumn91.Hidden = true;
- ultraGridColumn91.RowLayoutColumnInfo.OriginX = 3;
- ultraGridColumn91.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn91.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(71, 0);
- ultraGridColumn91.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn91.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn92.Header.Caption = "订单类型";
- ultraGridColumn92.Header.VisiblePosition = 24;
- ultraGridColumn92.RowLayoutColumnInfo.OriginX = 20;
- ultraGridColumn92.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn92.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(62, 0);
- ultraGridColumn92.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn92.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn93.Header.Caption = "订单厚度";
- ultraGridColumn93.Header.VisiblePosition = 26;
- ultraGridColumn93.RowLayoutColumnInfo.OriginX = 13;
- ultraGridColumn93.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn93.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(58, 0);
- ultraGridColumn93.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn93.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn94.Header.Caption = "订单宽度";
- ultraGridColumn94.Header.VisiblePosition = 28;
- ultraGridColumn94.RowLayoutColumnInfo.OriginX = 14;
- ultraGridColumn94.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn94.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
- ultraGridColumn94.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn94.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn95.Header.Caption = "生产班次";
- ultraGridColumn95.Header.VisiblePosition = 31;
- ultraGridColumn95.RowLayoutColumnInfo.OriginX = 30;
- ultraGridColumn95.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn95.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn95.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn96.Header.Caption = "生产班组";
- ultraGridColumn96.Header.VisiblePosition = 33;
- ultraGridColumn96.RowLayoutColumnInfo.OriginX = 31;
- ultraGridColumn96.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn96.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn96.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn97.Header.Caption = "生产时间";
- ultraGridColumn97.Header.VisiblePosition = 34;
- ultraGridColumn97.RowLayoutColumnInfo.OriginX = 32;
- ultraGridColumn97.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn97.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn97.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn98.Header.Caption = "生产确认时间";
- ultraGridColumn98.Header.VisiblePosition = 35;
- ultraGridColumn98.RowLayoutColumnInfo.OriginX = 34;
- ultraGridColumn98.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn98.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn98.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn99.Header.Caption = "工艺类型";
- ultraGridColumn99.Header.VisiblePosition = 36;
- ultraGridColumn99.RowLayoutColumnInfo.OriginX = 5;
- ultraGridColumn99.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn99.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn99.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn100.Header.Caption = "炉号";
- ultraGridColumn100.Header.VisiblePosition = 32;
- ultraGridColumn100.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn100.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn100.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(99, 0);
- ultraGridColumn100.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn100.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn101.Header.Caption = "批号";
- ultraGridColumn101.Header.VisiblePosition = 37;
- ultraGridColumn101.RowLayoutColumnInfo.OriginX = 1;
- ultraGridColumn101.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn101.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(96, 0);
- ultraGridColumn101.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn101.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn102.Header.Caption = "执行标准";
- ultraGridColumn102.Header.VisiblePosition = 38;
- ultraGridColumn102.RowLayoutColumnInfo.OriginX = 9;
- ultraGridColumn102.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn102.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(88, 0);
- ultraGridColumn102.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn102.RowLayoutColumnInfo.SpanY = 1;
- ultraGridBand3.Columns.AddRange(new object[] {
- ultraGridColumn64,
- ultraGridColumn65,
- ultraGridColumn66,
- ultraGridColumn67,
- ultraGridColumn68,
- ultraGridColumn69,
- ultraGridColumn70,
- ultraGridColumn71,
- ultraGridColumn72,
- ultraGridColumn73,
- ultraGridColumn74,
- ultraGridColumn75,
- ultraGridColumn76,
- ultraGridColumn77,
- ultraGridColumn78,
- ultraGridColumn79,
- ultraGridColumn80,
- ultraGridColumn81,
- ultraGridColumn82,
- ultraGridColumn83,
- ultraGridColumn84,
- ultraGridColumn85,
- ultraGridColumn86,
- ultraGridColumn87,
- ultraGridColumn88,
- ultraGridColumn89,
- ultraGridColumn90,
- ultraGridColumn91,
- ultraGridColumn92,
- ultraGridColumn93,
- ultraGridColumn94,
- ultraGridColumn95,
- ultraGridColumn96,
- ultraGridColumn97,
- ultraGridColumn98,
- ultraGridColumn99,
- ultraGridColumn100,
- ultraGridColumn101,
- ultraGridColumn102});
- appearance36.BackColor = System.Drawing.Color.LightSteelBlue;
- ultraGridBand3.Header.Appearance = appearance36;
- ultraGridBand3.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True;
- summarySettings3.DisplayFormat = "{0}KG";
- summarySettings3.GroupBySummaryValueAppearance = appearance37;
- summarySettings4.DisplayFormat = "{0}KG";
- summarySettings4.GroupBySummaryValueAppearance = appearance38;
- ultraGridBand3.Summaries.AddRange(new Infragistics.Win.UltraWinGrid.SummarySettings[] {
- summarySettings3,
- summarySettings4});
- ultraGridBand3.UseRowLayout = true;
- this.gb_PlanState.DisplayLayout.BandsSerializer.Add(ultraGridBand3);
- this.gb_PlanState.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance39.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance39.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance39.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance39.BorderColor = System.Drawing.SystemColors.Window;
- this.gb_PlanState.DisplayLayout.GroupByBox.Appearance = appearance39;
- appearance40.ForeColor = System.Drawing.SystemColors.GrayText;
- this.gb_PlanState.DisplayLayout.GroupByBox.BandLabelAppearance = appearance40;
- this.gb_PlanState.DisplayLayout.GroupByBox.Hidden = true;
- this.gb_PlanState.DisplayLayout.GroupByBox.Prompt = "将要分组的列拖至该区域!";
- appearance41.BackColor = System.Drawing.SystemColors.Window;
- appearance41.ForeColor = System.Drawing.SystemColors.ControlText;
- this.gb_PlanState.DisplayLayout.Override.ActiveCellAppearance = appearance41;
- appearance42.BackColor = System.Drawing.SystemColors.Highlight;
- appearance42.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.gb_PlanState.DisplayLayout.Override.ActiveRowAppearance = appearance42;
- appearance43.BorderColor = System.Drawing.Color.Black;
- appearance43.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.gb_PlanState.DisplayLayout.Override.CellAppearance = appearance43;
- this.gb_PlanState.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.gb_PlanState.DisplayLayout.Override.CellPadding = 0;
- appearance44.BackColor = System.Drawing.SystemColors.Control;
- appearance44.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance44.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance44.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance44.BorderColor = System.Drawing.SystemColors.Window;
- appearance44.TextHAlign = Infragistics.Win.HAlign.Left;
- appearance44.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.gb_PlanState.DisplayLayout.Override.GroupByRowAppearance = appearance44;
- this.gb_PlanState.DisplayLayout.Override.GroupBySummaryDisplayStyle = Infragistics.Win.UltraWinGrid.GroupBySummaryDisplayStyle.SummaryCells;
- appearance45.BackColor = System.Drawing.Color.Silver;
- this.gb_PlanState.DisplayLayout.Override.HeaderAppearance = appearance45;
- this.gb_PlanState.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.gb_PlanState.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.Standard;
- appearance46.BackColor = System.Drawing.SystemColors.Window;
- appearance46.BorderColor = System.Drawing.Color.Black;
- appearance46.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.gb_PlanState.DisplayLayout.Override.RowAppearance = appearance46;
- appearance47.BackColor = System.Drawing.SystemColors.Window;
- appearance47.BorderColor = System.Drawing.Color.Black;
- appearance47.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.gb_PlanState.DisplayLayout.Override.RowPreviewAppearance = appearance47;
- this.gb_PlanState.DisplayLayout.Override.RowSelectorHeaderStyle = Infragistics.Win.UltraWinGrid.RowSelectorHeaderStyle.SeparateElement;
- this.gb_PlanState.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
- this.gb_PlanState.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True;
- appearance48.TextHAlign = Infragistics.Win.HAlign.Left;
- appearance48.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.gb_PlanState.DisplayLayout.Override.SelectedRowAppearance = appearance48;
- this.gb_PlanState.DisplayLayout.Override.SummaryDisplayArea = Infragistics.Win.UltraWinGrid.SummaryDisplayAreas.BottomFixed;
- appearance49.BackColor = System.Drawing.SystemColors.Window;
- this.gb_PlanState.DisplayLayout.Override.SummaryFooterAppearance = appearance49;
- appearance50.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- appearance50.ForeColor = System.Drawing.Color.Red;
- this.gb_PlanState.DisplayLayout.Override.SummaryFooterCaptionAppearance = appearance50;
- this.gb_PlanState.DisplayLayout.Override.SummaryFooterCaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance51.BackColor = System.Drawing.Color.MistyRose;
- appearance51.ForeColor = System.Drawing.Color.Blue;
- appearance51.TextHAlign = Infragistics.Win.HAlign.Right;
- appearance51.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.gb_PlanState.DisplayLayout.Override.SummaryValueAppearance = appearance51;
- appearance52.BackColor = System.Drawing.SystemColors.ControlLight;
- this.gb_PlanState.DisplayLayout.Override.TemplateAddRowAppearance = appearance52;
- this.gb_PlanState.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.gb_PlanState.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.gb_PlanState.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.gb_PlanState.Dock = System.Windows.Forms.DockStyle.Fill;
- this.gb_PlanState.Location = new System.Drawing.Point(0, 0);
- this.gb_PlanState.Name = "gb_PlanState";
- this.gb_PlanState.Size = new System.Drawing.Size(1263, 165);
- this.gb_PlanState.TabIndex = 10;
- this.gb_PlanState.Text = "ultraGrid3";
- //
- // ultraExpandableGroupBox1
- //
- this.ultraExpandableGroupBox1.Controls.Add(this.ultraExpandableGroupBoxPanel1);
- this.ultraExpandableGroupBox1.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.ultraExpandableGroupBox1.ExpandedSize = new System.Drawing.Size(860, 92);
- this.ultraExpandableGroupBox1.Location = new System.Drawing.Point(0, 311);
- this.ultraExpandableGroupBox1.Name = "ultraExpandableGroupBox1";
- this.ultraExpandableGroupBox1.Size = new System.Drawing.Size(1269, 80);
- this.ultraExpandableGroupBox1.SupportThemes = false;
- this.ultraExpandableGroupBox1.TabIndex = 1;
- this.ultraExpandableGroupBox1.Text = "工单号编辑";
- //
- // ultraExpandableGroupBoxPanel1
- //
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel9);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_Width);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.dte_Time);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_Length);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel4);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel2);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_Scid_End_Y);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.cmb_ClassTeam);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel10);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.cmb_ClassOrder);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel8);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel7);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.cmb_EditType_Y);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_Scid_Begin_Y);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_Scid_Top_Y);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel1);
- this.ultraExpandableGroupBoxPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraExpandableGroupBoxPanel1.Location = new System.Drawing.Point(3, 19);
- this.ultraExpandableGroupBoxPanel1.Name = "ultraExpandableGroupBoxPanel1";
- this.ultraExpandableGroupBoxPanel1.Size = new System.Drawing.Size(1263, 58);
- this.ultraExpandableGroupBoxPanel1.TabIndex = 0;
- //
- // ultraLabel9
- //
- appearance53.TextHAlign = Infragistics.Win.HAlign.Center;
- appearance53.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.ultraLabel9.Appearance = appearance53;
- this.ultraLabel9.Location = new System.Drawing.Point(637, 10);
- this.ultraLabel9.Name = "ultraLabel9";
- this.ultraLabel9.Size = new System.Drawing.Size(29, 16);
- this.ultraLabel9.TabIndex = 624;
- this.ultraLabel9.Text = "宽度";
- //
- // txt_Width
- //
- this.txt_Width.FlatMode = true;
- this.txt_Width.Location = new System.Drawing.Point(668, 8);
- this.txt_Width.MaskInput = "nnnnnnnn.nn";
- this.txt_Width.Name = "txt_Width";
- this.txt_Width.NumericType = Infragistics.Win.UltraWinEditors.NumericType.Double;
- this.txt_Width.PromptChar = ' ';
- this.txt_Width.Size = new System.Drawing.Size(116, 19);
- this.txt_Width.TabIndex = 623;
- //
- // dte_Time
- //
- this.dte_Time.Location = new System.Drawing.Point(514, 6);
- this.dte_Time.Name = "dte_Time";
- this.dte_Time.Size = new System.Drawing.Size(116, 21);
- this.dte_Time.TabIndex = 622;
- //
- // txt_Length
- //
- this.txt_Length.FlatMode = true;
- this.txt_Length.Location = new System.Drawing.Point(514, 32);
- this.txt_Length.MaskInput = "nnnnnnnn";
- this.txt_Length.Name = "txt_Length";
- this.txt_Length.PromptChar = ' ';
- this.txt_Length.Size = new System.Drawing.Size(116, 19);
- this.txt_Length.TabIndex = 621;
- //
- // ultraLabel4
- //
- appearance54.TextHAlign = Infragistics.Win.HAlign.Center;
- appearance54.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.ultraLabel4.Appearance = appearance54;
- this.ultraLabel4.Location = new System.Drawing.Point(459, 34);
- this.ultraLabel4.Name = "ultraLabel4";
- this.ultraLabel4.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel4.TabIndex = 620;
- this.ultraLabel4.Text = "长度(MM)";
- //
- // ultraLabel2
- //
- appearance55.TextHAlign = Infragistics.Win.HAlign.Center;
- appearance55.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.ultraLabel2.Appearance = appearance55;
- this.ultraLabel2.Location = new System.Drawing.Point(434, 10);
- this.ultraLabel2.Name = "ultraLabel2";
- this.ultraLabel2.Size = new System.Drawing.Size(79, 16);
- this.ultraLabel2.TabIndex = 618;
- this.ultraLabel2.Text = "计划生产时间";
- //
- // txt_Scid_End_Y
- //
- appearance56.BackColor = System.Drawing.Color.LightCyan;
- this.txt_Scid_End_Y.Appearance = appearance56;
- this.txt_Scid_End_Y.AutoSize = true;
- editorButton1.Key = "XH";
- this.txt_Scid_End_Y.ButtonsRight.Add(editorButton1);
- this.txt_Scid_End_Y.Location = new System.Drawing.Point(186, 8);
- this.txt_Scid_End_Y.Name = "txt_Scid_End_Y";
- this.txt_Scid_End_Y.Size = new System.Drawing.Size(76, 21);
- this.txt_Scid_End_Y.TabIndex = 617;
- this.txt_Scid_End_Y.Click += new System.EventHandler(this.txt_Scid_End_Y_Click);
- //
- // cmb_ClassTeam
- //
- appearance57.BackColor = System.Drawing.Color.LightCyan;
- this.cmb_ClassTeam.Appearance = appearance57;
- this.cmb_ClassTeam.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
- this.cmb_ClassTeam.DisplayMember = "";
- this.cmb_ClassTeam.DropDownStyle = Infragistics.Win.UltraWinGrid.UltraComboStyle.DropDownList;
- this.cmb_ClassTeam.FlatMode = true;
- this.cmb_ClassTeam.Location = new System.Drawing.Point(324, 32);
- this.cmb_ClassTeam.Name = "cmb_ClassTeam";
- this.cmb_ClassTeam.Size = new System.Drawing.Size(104, 19);
- this.cmb_ClassTeam.TabIndex = 614;
- this.cmb_ClassTeam.Tag = "";
- this.cmb_ClassTeam.ValueMember = "";
- //
- // ultraLabel10
- //
- appearance58.TextHAlign = Infragistics.Win.HAlign.Center;
- appearance58.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.ultraLabel10.Appearance = appearance58;
- this.ultraLabel10.Location = new System.Drawing.Point(268, 34);
- this.ultraLabel10.Name = "ultraLabel10";
- this.ultraLabel10.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel10.TabIndex = 616;
- this.ultraLabel10.Text = "计划班组";
- //
- // cmb_ClassOrder
- //
- appearance59.BackColor = System.Drawing.Color.LightCyan;
- this.cmb_ClassOrder.Appearance = appearance59;
- this.cmb_ClassOrder.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
- this.cmb_ClassOrder.DisplayMember = "";
- this.cmb_ClassOrder.DropDownStyle = Infragistics.Win.UltraWinGrid.UltraComboStyle.DropDownList;
- this.cmb_ClassOrder.FlatMode = true;
- this.cmb_ClassOrder.Location = new System.Drawing.Point(324, 10);
- this.cmb_ClassOrder.Name = "cmb_ClassOrder";
- this.cmb_ClassOrder.Size = new System.Drawing.Size(104, 19);
- this.cmb_ClassOrder.TabIndex = 613;
- this.cmb_ClassOrder.Tag = "";
- this.cmb_ClassOrder.ValueMember = "";
- //
- // ultraLabel8
- //
- appearance60.TextHAlign = Infragistics.Win.HAlign.Center;
- appearance60.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.ultraLabel8.Appearance = appearance60;
- this.ultraLabel8.Location = new System.Drawing.Point(268, 10);
- this.ultraLabel8.Name = "ultraLabel8";
- this.ultraLabel8.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel8.TabIndex = 615;
- this.ultraLabel8.Text = "计划班次";
- //
- // ultraLabel7
- //
- appearance61.TextHAlign = Infragistics.Win.HAlign.Center;
- appearance61.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.ultraLabel7.Appearance = appearance61;
- this.ultraLabel7.Location = new System.Drawing.Point(8, 34);
- this.ultraLabel7.Name = "ultraLabel7";
- this.ultraLabel7.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel7.TabIndex = 612;
- this.ultraLabel7.Text = "制单类型";
- //
- // cmb_EditType_Y
- //
- appearance62.BackColor = System.Drawing.Color.LightCyan;
- this.cmb_EditType_Y.Appearance = appearance62;
- this.cmb_EditType_Y.AutoSize = true;
- this.cmb_EditType_Y.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- valueListItem1.DataValue = "1";
- valueListItem1.DisplayText = "顺序工单号";
- valueListItem2.DataValue = "2";
- valueListItem2.DisplayText = "指定工单号";
- this.cmb_EditType_Y.Items.Add(valueListItem1);
- this.cmb_EditType_Y.Items.Add(valueListItem2);
- this.cmb_EditType_Y.Location = new System.Drawing.Point(66, 32);
- this.cmb_EditType_Y.Name = "cmb_EditType_Y";
- this.cmb_EditType_Y.Size = new System.Drawing.Size(196, 21);
- this.cmb_EditType_Y.TabIndex = 611;
- this.cmb_EditType_Y.ValueChanged += new System.EventHandler(this.cmb_EditType_Y_ValueChanged);
- //
- // txt_Scid_Begin_Y
- //
- appearance63.BackColor = System.Drawing.Color.LightCyan;
- this.txt_Scid_Begin_Y.Appearance = appearance63;
- this.txt_Scid_Begin_Y.AutoSize = true;
- this.txt_Scid_Begin_Y.Location = new System.Drawing.Point(96, 8);
- this.txt_Scid_Begin_Y.Name = "txt_Scid_Begin_Y";
- this.txt_Scid_Begin_Y.Size = new System.Drawing.Size(90, 21);
- this.txt_Scid_Begin_Y.TabIndex = 607;
- //
- // txt_Scid_Top_Y
- //
- appearance64.BackColor = System.Drawing.Color.LightCyan;
- this.txt_Scid_Top_Y.Appearance = appearance64;
- this.txt_Scid_Top_Y.AutoSize = true;
- this.txt_Scid_Top_Y.Location = new System.Drawing.Point(66, 8);
- this.txt_Scid_Top_Y.Name = "txt_Scid_Top_Y";
- this.txt_Scid_Top_Y.Size = new System.Drawing.Size(30, 21);
- this.txt_Scid_Top_Y.TabIndex = 606;
- //
- // ultraLabel1
- //
- appearance65.TextHAlign = Infragistics.Win.HAlign.Center;
- appearance65.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.ultraLabel1.Appearance = appearance65;
- this.ultraLabel1.Location = new System.Drawing.Point(8, 10);
- this.ultraLabel1.Name = "ultraLabel1";
- this.ultraLabel1.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel1.TabIndex = 605;
- this.ultraLabel1.Text = "工单号";
- //
- // 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(1273, 26);
- 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, 2);
- 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;
- buttonTool6.InstanceProps.IsFirstInGroup = true;
- buttonTool8.InstanceProps.IsFirstInGroup = true;
- ultraToolbar1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
- buttonTool1,
- buttonTool2,
- buttonTool3,
- buttonTool4,
- buttonTool5,
- buttonTool6,
- buttonTool7,
- buttonTool8,
- buttonTool9,
- buttonTool10});
- this.ultraToolbarsManager1.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
- ultraToolbar1});
- this.ultraToolbarsManager1.ToolbarSettings.AllowCustomize = Infragistics.Win.DefaultableBoolean.False;
- buttonTool11.SharedProps.Caption = "关闭";
- buttonTool11.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool12.SharedProps.Caption = "库存查询";
- buttonTool12.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool13.SharedProps.Caption = "刷新工艺";
- buttonTool13.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool14.SharedProps.Caption = "计划查询";
- buttonTool14.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool15.SharedProps.Caption = "确认";
- buttonTool15.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool16.SharedProps.Caption = "取消";
- buttonTool16.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool17.SharedProps.Caption = "计划下发";
- buttonTool17.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool18.SharedProps.Caption = "计划取消";
- buttonTool18.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool19.SharedProps.Caption = "导出";
- buttonTool19.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool20.SharedProps.Caption = "打印";
- buttonTool20.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- this.ultraToolbarsManager1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
- buttonTool11,
- buttonTool12,
- buttonTool13,
- buttonTool14,
- buttonTool15,
- buttonTool16,
- buttonTool17,
- buttonTool18,
- buttonTool19,
- buttonTool20});
- 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(1273, 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, 2);
- 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(1273, 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, 26);
- this._panel1_Toolbars_Dock_Area_Bottom.Name = "_panel1_Toolbars_Dock_Area_Bottom";
- this._panel1_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(1273, 0);
- this._panel1_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.ultraToolbarsManager1;
- //
- // ultraGroupBox1
- //
- this.ultraGroupBox1.Controls.Add(this.chk_CollectTime);
- this.ultraGroupBox1.Controls.Add(this.ultSJ);
- this.ultraGroupBox1.Controls.Add(this.cmb_IS);
- this.ultraGroupBox1.Controls.Add(this.chk_ProcLine);
- this.ultraGroupBox1.Controls.Add(this.ultraLabel5);
- this.ultraGroupBox1.Controls.Add(this.dte_EndTime);
- this.ultraGroupBox1.Controls.Add(this.dte_BeginTime);
- this.ultraGroupBox1.Controls.Add(this.txt_BNumber);
- this.ultraGroupBox1.Controls.Add(this.chk_BNumber);
- this.ultraGroupBox1.Controls.Add(this.chk_SelectAll);
- this.ultraGroupBox1.Controls.Add(this.chk_AllowFilter);
- this.ultraGroupBox1.Controls.Add(this.cmb_Buress);
- this.ultraGroupBox1.Controls.Add(this.Chk_Buttress);
- this.ultraGroupBox1.Controls.Add(this.cmb_Sleen);
- this.ultraGroupBox1.Controls.Add(this.chk_PaiHao);
- this.ultraGroupBox1.Controls.Add(this.txt_GangP);
- this.ultraGroupBox1.Controls.Add(this.chk_BanHao);
- this.ultraGroupBox1.Controls.Add(this.txt_RollHao);
- this.ultraGroupBox1.Controls.Add(this.chk_RollHao);
- this.ultraGroupBox1.Controls.Add(this.txt_PlanID);
- this.ultraGroupBox1.Controls.Add(this.chk_PactID);
- this.ultraGroupBox1.Controls.Add(this.txt_OrderNO);
- this.ultraGroupBox1.Controls.Add(this.chk_OrderNO);
- this.ultraGroupBox1.Controls.Add(this.Lab_To);
- this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Top;
- this.ultraGroupBox1.Location = new System.Drawing.Point(0, 26);
- this.ultraGroupBox1.Name = "ultraGroupBox1";
- this.ultraGroupBox1.Size = new System.Drawing.Size(1273, 58);
- this.ultraGroupBox1.SupportThemes = false;
- this.ultraGroupBox1.TabIndex = 1;
- //
- // chk_CollectTime
- //
- this.chk_CollectTime.Location = new System.Drawing.Point(6, 6);
- this.chk_CollectTime.Name = "chk_CollectTime";
- this.chk_CollectTime.Size = new System.Drawing.Size(49, 20);
- this.chk_CollectTime.TabIndex = 240;
- this.chk_CollectTime.Text = "时间";
- this.chk_CollectTime.CheckedChanged += new System.EventHandler(this.chk_CollectTime_CheckedChanged);
- //
- // ultSJ
- //
- this.ultSJ.AutoSize = true;
- valueListItem3.DataValue = "0";
- valueListItem3.DisplayText = "按作业计划时间";
- valueListItem4.DataValue = "1";
- valueListItem4.DisplayText = "按生产时间";
- this.ultSJ.Items.Add(valueListItem3);
- this.ultSJ.Items.Add(valueListItem4);
- this.ultSJ.Location = new System.Drawing.Point(61, 6);
- this.ultSJ.Name = "ultSJ";
- this.ultSJ.Size = new System.Drawing.Size(91, 21);
- this.ultSJ.TabIndex = 239;
- //
- // cmb_IS
- //
- appearance66.BackColor = System.Drawing.Color.LightCyan;
- this.cmb_IS.Appearance = appearance66;
- this.cmb_IS.AutoSize = true;
- this.cmb_IS.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- this.cmb_IS.Enabled = false;
- this.cmb_IS.FlatMode = true;
- valueListItem5.DataValue = "0";
- valueListItem5.DisplayText = "否";
- valueListItem6.DataValue = "1";
- valueListItem6.DisplayText = "是";
- this.cmb_IS.Items.Add(valueListItem5);
- this.cmb_IS.Items.Add(valueListItem6);
- this.cmb_IS.Location = new System.Drawing.Point(856, 32);
- this.cmb_IS.Name = "cmb_IS";
- this.cmb_IS.Size = new System.Drawing.Size(80, 19);
- this.cmb_IS.TabIndex = 238;
- //
- // chk_ProcLine
- //
- this.chk_ProcLine.Location = new System.Drawing.Point(784, 36);
- this.chk_ProcLine.Name = "chk_ProcLine";
- this.chk_ProcLine.Size = new System.Drawing.Size(83, 16);
- this.chk_ProcLine.TabIndex = 237;
- this.chk_ProcLine.TabStop = false;
- this.chk_ProcLine.Text = "是否生产";
- this.chk_ProcLine.CheckedChanged += new System.EventHandler(this.chk_ProcLine_CheckedChanged);
- //
- // ultraLabel5
- //
- appearance67.ForeColor = System.Drawing.Color.Red;
- this.ultraLabel5.Appearance = appearance67;
- this.ultraLabel5.BackColor = System.Drawing.SystemColors.Control;
- this.ultraLabel5.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraLabel5.Location = new System.Drawing.Point(944, 10);
- this.ultraLabel5.Name = "ultraLabel5";
- this.ultraLabel5.Size = new System.Drawing.Size(78, 16);
- this.ultraLabel5.TabIndex = 236;
- this.ultraLabel5.Text = "已生产确认";
- //
- // dte_EndTime
- //
- this.dte_EndTime.Enabled = false;
- this.dte_EndTime.FlatMode = true;
- this.dte_EndTime.Location = new System.Drawing.Point(156, 30);
- this.dte_EndTime.Name = "dte_EndTime";
- this.dte_EndTime.Size = new System.Drawing.Size(116, 19);
- this.dte_EndTime.TabIndex = 235;
- //
- // dte_BeginTime
- //
- this.dte_BeginTime.Enabled = false;
- this.dte_BeginTime.FlatMode = true;
- this.dte_BeginTime.Location = new System.Drawing.Point(156, 7);
- this.dte_BeginTime.Name = "dte_BeginTime";
- this.dte_BeginTime.Size = new System.Drawing.Size(116, 19);
- this.dte_BeginTime.TabIndex = 234;
- //
- // txt_BNumber
- //
- this.txt_BNumber.AutoSize = true;
- this.txt_BNumber.Enabled = false;
- this.txt_BNumber.FlatMode = true;
- this.txt_BNumber.Location = new System.Drawing.Point(846, 7);
- this.txt_BNumber.Name = "txt_BNumber";
- this.txt_BNumber.Size = new System.Drawing.Size(90, 19);
- this.txt_BNumber.TabIndex = 233;
- this.txt_BNumber.TabStop = false;
- this.txt_BNumber.Tag = "";
- //
- // chk_BNumber
- //
- this.chk_BNumber.Location = new System.Drawing.Point(784, 10);
- this.chk_BNumber.Name = "chk_BNumber";
- this.chk_BNumber.Size = new System.Drawing.Size(46, 16);
- this.chk_BNumber.TabIndex = 232;
- this.chk_BNumber.TabStop = false;
- this.chk_BNumber.Text = "批号";
- this.chk_BNumber.CheckedChanged += new System.EventHandler(this.chk_BNumber_CheckedChanged);
- //
- // chk_SelectAll
- //
- this.chk_SelectAll.FlatMode = true;
- this.chk_SelectAll.Location = new System.Drawing.Point(940, 36);
- this.chk_SelectAll.Name = "chk_SelectAll";
- this.chk_SelectAll.Size = new System.Drawing.Size(50, 16);
- this.chk_SelectAll.TabIndex = 231;
- this.chk_SelectAll.Text = "全选";
- this.chk_SelectAll.CheckedChanged += new System.EventHandler(this.chk_SelectAll_CheckedChanged);
- //
- // chk_AllowFilter
- //
- this.chk_AllowFilter.Location = new System.Drawing.Point(992, 34);
- this.chk_AllowFilter.Name = "chk_AllowFilter";
- this.chk_AllowFilter.Size = new System.Drawing.Size(48, 20);
- this.chk_AllowFilter.TabIndex = 230;
- this.chk_AllowFilter.TabStop = false;
- this.chk_AllowFilter.Text = "过滤";
- this.chk_AllowFilter.CheckedChanged += new System.EventHandler(this.chk_AllowFilter_CheckedChanged);
- //
- // cmb_Buress
- //
- this.cmb_Buress.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
- this.cmb_Buress.DisplayMember = "";
- this.cmb_Buress.DropDownStyle = Infragistics.Win.UltraWinGrid.UltraComboStyle.DropDownList;
- this.cmb_Buress.Enabled = false;
- this.cmb_Buress.FlatMode = true;
- this.cmb_Buress.Location = new System.Drawing.Point(690, 33);
- this.cmb_Buress.Name = "cmb_Buress";
- this.cmb_Buress.Size = new System.Drawing.Size(88, 19);
- this.cmb_Buress.TabIndex = 229;
- this.cmb_Buress.Tag = "";
- this.cmb_Buress.ValueMember = "";
- //
- // Chk_Buttress
- //
- this.Chk_Buttress.Location = new System.Drawing.Point(642, 35);
- this.Chk_Buttress.Name = "Chk_Buttress";
- this.Chk_Buttress.Size = new System.Drawing.Size(46, 16);
- this.Chk_Buttress.TabIndex = 228;
- this.Chk_Buttress.TabStop = false;
- this.Chk_Buttress.Text = "堆位";
- this.Chk_Buttress.CheckedChanged += new System.EventHandler(this.Chk_Buttress_CheckedChanged);
- //
- // cmb_Sleen
- //
- this.cmb_Sleen.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
- appearance68.BackColor = System.Drawing.SystemColors.Window;
- appearance68.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.cmb_Sleen.DisplayLayout.Appearance = appearance68;
- this.cmb_Sleen.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.cmb_Sleen.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance69.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance69.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance69.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance69.BorderColor = System.Drawing.SystemColors.Window;
- this.cmb_Sleen.DisplayLayout.GroupByBox.Appearance = appearance69;
- appearance70.ForeColor = System.Drawing.SystemColors.GrayText;
- this.cmb_Sleen.DisplayLayout.GroupByBox.BandLabelAppearance = appearance70;
- this.cmb_Sleen.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance71.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance71.BackColor2 = System.Drawing.SystemColors.Control;
- appearance71.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance71.ForeColor = System.Drawing.SystemColors.GrayText;
- this.cmb_Sleen.DisplayLayout.GroupByBox.PromptAppearance = appearance71;
- this.cmb_Sleen.DisplayLayout.MaxColScrollRegions = 1;
- this.cmb_Sleen.DisplayLayout.MaxRowScrollRegions = 1;
- appearance72.BackColor = System.Drawing.SystemColors.Window;
- appearance72.ForeColor = System.Drawing.SystemColors.ControlText;
- this.cmb_Sleen.DisplayLayout.Override.ActiveCellAppearance = appearance72;
- appearance73.BackColor = System.Drawing.SystemColors.Highlight;
- appearance73.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.cmb_Sleen.DisplayLayout.Override.ActiveRowAppearance = appearance73;
- this.cmb_Sleen.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.cmb_Sleen.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance74.BackColor = System.Drawing.SystemColors.Window;
- this.cmb_Sleen.DisplayLayout.Override.CardAreaAppearance = appearance74;
- appearance75.BorderColor = System.Drawing.Color.Silver;
- appearance75.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.cmb_Sleen.DisplayLayout.Override.CellAppearance = appearance75;
- this.cmb_Sleen.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.cmb_Sleen.DisplayLayout.Override.CellPadding = 0;
- appearance76.BackColor = System.Drawing.SystemColors.Control;
- appearance76.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance76.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance76.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance76.BorderColor = System.Drawing.SystemColors.Window;
- this.cmb_Sleen.DisplayLayout.Override.GroupByRowAppearance = appearance76;
- appearance77.TextHAlign = Infragistics.Win.HAlign.Left;
- this.cmb_Sleen.DisplayLayout.Override.HeaderAppearance = appearance77;
- this.cmb_Sleen.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.cmb_Sleen.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance78.BackColor = System.Drawing.SystemColors.Window;
- appearance78.BorderColor = System.Drawing.Color.Silver;
- this.cmb_Sleen.DisplayLayout.Override.RowAppearance = appearance78;
- this.cmb_Sleen.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance79.BackColor = System.Drawing.SystemColors.ControlLight;
- this.cmb_Sleen.DisplayLayout.Override.TemplateAddRowAppearance = appearance79;
- this.cmb_Sleen.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.cmb_Sleen.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.cmb_Sleen.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.cmb_Sleen.DisplayMember = "";
- this.cmb_Sleen.Enabled = false;
- this.cmb_Sleen.FlatMode = true;
- this.cmb_Sleen.Location = new System.Drawing.Point(690, 7);
- this.cmb_Sleen.Name = "cmb_Sleen";
- this.cmb_Sleen.Size = new System.Drawing.Size(88, 19);
- this.cmb_Sleen.TabIndex = 227;
- this.cmb_Sleen.ValueMember = "";
- //
- // chk_PaiHao
- //
- this.chk_PaiHao.Location = new System.Drawing.Point(642, 10);
- this.chk_PaiHao.Name = "chk_PaiHao";
- this.chk_PaiHao.Size = new System.Drawing.Size(48, 16);
- this.chk_PaiHao.TabIndex = 226;
- this.chk_PaiHao.TabStop = false;
- this.chk_PaiHao.Text = "牌号";
- this.chk_PaiHao.CheckedChanged += new System.EventHandler(this.chk_PaiHao_CheckedChanged);
- //
- // txt_GangP
- //
- this.txt_GangP.AutoSize = true;
- this.txt_GangP.Enabled = false;
- this.txt_GangP.FlatMode = true;
- this.txt_GangP.Location = new System.Drawing.Point(532, 30);
- this.txt_GangP.Name = "txt_GangP";
- this.txt_GangP.Size = new System.Drawing.Size(104, 19);
- this.txt_GangP.TabIndex = 225;
- this.txt_GangP.TabStop = false;
- this.txt_GangP.Tag = "";
- //
- // chk_BanHao
- //
- this.chk_BanHao.Location = new System.Drawing.Point(476, 34);
- this.chk_BanHao.Name = "chk_BanHao";
- this.chk_BanHao.Size = new System.Drawing.Size(60, 16);
- this.chk_BanHao.TabIndex = 224;
- this.chk_BanHao.TabStop = false;
- this.chk_BanHao.Text = "板坯号";
- this.chk_BanHao.CheckedChanged += new System.EventHandler(this.chk_BanHao_CheckedChanged);
- //
- // txt_RollHao
- //
- this.txt_RollHao.AutoSize = true;
- this.txt_RollHao.Enabled = false;
- this.txt_RollHao.FlatMode = true;
- this.txt_RollHao.Location = new System.Drawing.Point(532, 7);
- this.txt_RollHao.Name = "txt_RollHao";
- this.txt_RollHao.Size = new System.Drawing.Size(104, 19);
- this.txt_RollHao.TabIndex = 223;
- this.txt_RollHao.TabStop = false;
- this.txt_RollHao.Tag = "";
- //
- // chk_RollHao
- //
- this.chk_RollHao.Location = new System.Drawing.Point(476, 10);
- this.chk_RollHao.Name = "chk_RollHao";
- this.chk_RollHao.Size = new System.Drawing.Size(60, 16);
- this.chk_RollHao.TabIndex = 222;
- this.chk_RollHao.TabStop = false;
- this.chk_RollHao.Text = "钢卷号";
- this.chk_RollHao.CheckedChanged += new System.EventHandler(this.chk_RollHao_CheckedChanged);
- //
- // txt_PlanID
- //
- this.txt_PlanID.AutoSize = true;
- this.txt_PlanID.Enabled = false;
- this.txt_PlanID.FlatMode = true;
- this.txt_PlanID.Location = new System.Drawing.Point(366, 30);
- this.txt_PlanID.Name = "txt_PlanID";
- this.txt_PlanID.Size = new System.Drawing.Size(104, 19);
- this.txt_PlanID.TabIndex = 221;
- this.txt_PlanID.TabStop = false;
- this.txt_PlanID.Tag = "";
- //
- // chk_PactID
- //
- this.chk_PactID.Location = new System.Drawing.Point(308, 34);
- this.chk_PactID.Name = "chk_PactID";
- this.chk_PactID.Size = new System.Drawing.Size(60, 16);
- this.chk_PactID.TabIndex = 220;
- this.chk_PactID.TabStop = false;
- this.chk_PactID.Text = "合同号";
- this.chk_PactID.CheckedChanged += new System.EventHandler(this.chk_PactID_CheckedChanged);
- //
- // txt_OrderNO
- //
- this.txt_OrderNO.AutoSize = true;
- this.txt_OrderNO.Enabled = false;
- this.txt_OrderNO.FlatMode = true;
- this.txt_OrderNO.Location = new System.Drawing.Point(366, 7);
- this.txt_OrderNO.Name = "txt_OrderNO";
- this.txt_OrderNO.Size = new System.Drawing.Size(104, 19);
- this.txt_OrderNO.TabIndex = 219;
- this.txt_OrderNO.TabStop = false;
- this.txt_OrderNO.Tag = "";
- //
- // chk_OrderNO
- //
- this.chk_OrderNO.Location = new System.Drawing.Point(308, 10);
- this.chk_OrderNO.Name = "chk_OrderNO";
- this.chk_OrderNO.Size = new System.Drawing.Size(60, 16);
- this.chk_OrderNO.TabIndex = 218;
- this.chk_OrderNO.TabStop = false;
- this.chk_OrderNO.Text = "订单号";
- this.chk_OrderNO.CheckedChanged += new System.EventHandler(this.chk_OrderNO_CheckedChanged);
- //
- // Lab_To
- //
- this.Lab_To.FlatMode = true;
- this.Lab_To.Location = new System.Drawing.Point(129, 32);
- this.Lab_To.Name = "Lab_To";
- this.Lab_To.Size = new System.Drawing.Size(17, 16);
- this.Lab_To.TabIndex = 217;
- this.Lab_To.Text = "到";
- //
- // tab_Coroll
- //
- this.tab_Coroll.Controls.Add(this.ultraTabSharedControlsPage1);
- this.tab_Coroll.Controls.Add(this.ultraTabPageControl1);
- this.tab_Coroll.Controls.Add(this.ultraTabPageControl2);
- this.tab_Coroll.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tab_Coroll.Location = new System.Drawing.Point(0, 84);
- this.tab_Coroll.Name = "tab_Coroll";
- this.tab_Coroll.SharedControlsPage = this.ultraTabSharedControlsPage1;
- this.tab_Coroll.Size = new System.Drawing.Size(1273, 414);
- this.tab_Coroll.TabIndex = 2;
- ultraTab1.Key = "PROCESS";
- ultraTab1.TabPage = this.ultraTabPageControl1;
- ultraTab1.Text = "工艺制订";
- ultraTab2.Key = "PLAN";
- ultraTab2.TabPage = this.ultraTabPageControl2;
- ultraTab2.Text = "计划下发";
- this.tab_Coroll.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
- ultraTab1,
- ultraTab2});
- this.tab_Coroll.ViewStyle = Infragistics.Win.UltraWinTabControl.ViewStyle.VisualStudio2005;
- //
- // ultraTabSharedControlsPage1
- //
- this.ultraTabSharedControlsPage1.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabSharedControlsPage1.Name = "ultraTabSharedControlsPage1";
- this.ultraTabSharedControlsPage1.Size = new System.Drawing.Size(1269, 391);
- //
- // ultraCombo1
- //
- appearance80.BackColor = System.Drawing.Color.LightCyan;
- this.ultraCombo1.Appearance = appearance80;
- this.ultraCombo1.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
- this.ultraCombo1.DisplayMember = "";
- this.ultraCombo1.DropDownStyle = Infragistics.Win.UltraWinGrid.UltraComboStyle.DropDownList;
- this.ultraCombo1.FlatMode = true;
- this.ultraCombo1.Location = new System.Drawing.Point(324, 10);
- this.ultraCombo1.Name = "ultraCombo1";
- this.ultraCombo1.Size = new System.Drawing.Size(104, 19);
- this.ultraCombo1.TabIndex = 613;
- this.ultraCombo1.Tag = "";
- this.ultraCombo1.ValueMember = "";
- //
- // ultraLabel6
- //
- appearance81.TextHAlign = Infragistics.Win.HAlign.Center;
- appearance81.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.ultraLabel6.Appearance = appearance81;
- this.ultraLabel6.Location = new System.Drawing.Point(268, 10);
- this.ultraLabel6.Name = "ultraLabel6";
- this.ultraLabel6.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel6.TabIndex = 615;
- this.ultraLabel6.Text = "计划班次";
- //
- // ultraTabControl1
- //
- this.ultraTabControl1.Controls.Add(this.ultraTabSharedControlsPage2);
- this.ultraTabControl1.Controls.Add(this.ultraTabSharedControlsPage3);
- this.ultraTabControl1.Controls.Add(this.ultraTabPageControl3);
- this.ultraTabControl1.Location = new System.Drawing.Point(0, 0);
- this.ultraTabControl1.Name = "ultraTabControl1";
- this.ultraTabControl1.SharedControlsPage = this.ultraTabSharedControlsPage2;
- this.ultraTabControl1.Size = new System.Drawing.Size(200, 100);
- this.ultraTabControl1.TabIndex = 0;
- //
- // ultraTabSharedControlsPage2
- //
- this.ultraTabSharedControlsPage2.Location = new System.Drawing.Point(1, 20);
- this.ultraTabSharedControlsPage2.Name = "ultraTabSharedControlsPage2";
- this.ultraTabSharedControlsPage2.Size = new System.Drawing.Size(196, 77);
- //
- // ultraTabSharedControlsPage3
- //
- this.ultraTabSharedControlsPage3.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabSharedControlsPage3.Name = "ultraTabSharedControlsPage3";
- this.ultraTabSharedControlsPage3.Size = new System.Drawing.Size(1269, 391);
- //
- // ultraTabPageControl3
- //
- this.ultraTabPageControl3.Controls.Add(this.ultraGrid1);
- this.ultraTabPageControl3.Controls.Add(this.panel3);
- this.ultraTabPageControl3.Location = new System.Drawing.Point(2, 21);
- this.ultraTabPageControl3.Name = "ultraTabPageControl3";
- this.ultraTabPageControl3.Size = new System.Drawing.Size(1263, 23);
- //
- // ultraGrid1
- //
- appearance82.BackColor = System.Drawing.Color.Ivory;
- this.ultraGrid1.DisplayLayout.Appearance = appearance82;
- this.ultraGrid1.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance83.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance83.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance83.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance83.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid1.DisplayLayout.GroupByBox.Appearance = appearance83;
- appearance84.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid1.DisplayLayout.GroupByBox.BandLabelAppearance = appearance84;
- this.ultraGrid1.DisplayLayout.GroupByBox.Hidden = true;
- this.ultraGrid1.DisplayLayout.GroupByBox.Prompt = "将要分组的列拖至该区域!";
- appearance85.BackColor = System.Drawing.SystemColors.Window;
- appearance85.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid1.DisplayLayout.Override.ActiveCellAppearance = appearance85;
- appearance86.BackColor = System.Drawing.SystemColors.Highlight;
- appearance86.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance = appearance86;
- appearance87.BorderColor = System.Drawing.Color.Black;
- appearance87.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.ultraGrid1.DisplayLayout.Override.CellAppearance = appearance87;
- this.ultraGrid1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid1.DisplayLayout.Override.CellPadding = 0;
- appearance88.BackColor = System.Drawing.SystemColors.Control;
- appearance88.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance88.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance88.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance88.BorderColor = System.Drawing.SystemColors.Window;
- appearance88.TextHAlign = Infragistics.Win.HAlign.Left;
- appearance88.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.ultraGrid1.DisplayLayout.Override.GroupByRowAppearance = appearance88;
- this.ultraGrid1.DisplayLayout.Override.GroupBySummaryDisplayStyle = Infragistics.Win.UltraWinGrid.GroupBySummaryDisplayStyle.SummaryCells;
- appearance89.BackColor = System.Drawing.Color.Silver;
- this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance89;
- this.ultraGrid1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid1.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.Standard;
- appearance90.BackColor = System.Drawing.SystemColors.Window;
- appearance90.BorderColor = System.Drawing.Color.Black;
- appearance90.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.ultraGrid1.DisplayLayout.Override.RowAppearance = appearance90;
- appearance91.BackColor = System.Drawing.SystemColors.Window;
- appearance91.BorderColor = System.Drawing.Color.Black;
- appearance91.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.ultraGrid1.DisplayLayout.Override.RowPreviewAppearance = appearance91;
- this.ultraGrid1.DisplayLayout.Override.RowSelectorHeaderStyle = Infragistics.Win.UltraWinGrid.RowSelectorHeaderStyle.SeparateElement;
- this.ultraGrid1.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
- this.ultraGrid1.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True;
- appearance92.TextHAlign = Infragistics.Win.HAlign.Left;
- appearance92.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.ultraGrid1.DisplayLayout.Override.SelectedRowAppearance = appearance92;
- this.ultraGrid1.DisplayLayout.Override.SummaryDisplayArea = Infragistics.Win.UltraWinGrid.SummaryDisplayAreas.BottomFixed;
- appearance93.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid1.DisplayLayout.Override.SummaryFooterAppearance = appearance93;
- appearance94.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- appearance94.ForeColor = System.Drawing.Color.Red;
- this.ultraGrid1.DisplayLayout.Override.SummaryFooterCaptionAppearance = appearance94;
- this.ultraGrid1.DisplayLayout.Override.SummaryFooterCaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance95.BackColor = System.Drawing.Color.MistyRose;
- appearance95.ForeColor = System.Drawing.Color.Blue;
- appearance95.TextHAlign = Infragistics.Win.HAlign.Right;
- appearance95.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.ultraGrid1.DisplayLayout.Override.SummaryValueAppearance = appearance95;
- appearance96.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid1.DisplayLayout.Override.TemplateAddRowAppearance = appearance96;
- this.ultraGrid1.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid1.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid1.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid1.Location = new System.Drawing.Point(0, 0);
- this.ultraGrid1.Name = "ultraGrid1";
- this.ultraGrid1.Size = new System.Drawing.Size(1263, 0);
- this.ultraGrid1.TabIndex = 9;
- this.ultraGrid1.Text = "ultraGrid2";
- //
- // panel3
- //
- this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panel3.Controls.Add(this.ultraTextEditor1);
- this.panel3.Controls.Add(this.ultraLabel11);
- this.panel3.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.panel3.Location = new System.Drawing.Point(0, -25);
- this.panel3.Name = "panel3";
- this.panel3.Size = new System.Drawing.Size(1263, 48);
- this.panel3.TabIndex = 0;
- //
- // ultraTextEditor1
- //
- this.ultraTextEditor1.AutoSize = true;
- this.ultraTextEditor1.FlatMode = true;
- this.ultraTextEditor1.Location = new System.Drawing.Point(62, 16);
- this.ultraTextEditor1.Name = "ultraTextEditor1";
- this.ultraTextEditor1.Size = new System.Drawing.Size(306, 19);
- this.ultraTextEditor1.TabIndex = 601;
- //
- // ultraLabel11
- //
- this.ultraLabel11.Location = new System.Drawing.Point(8, 18);
- this.ultraLabel11.Name = "ultraLabel11";
- this.ultraLabel11.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel11.TabIndex = 602;
- this.ultraLabel11.Text = "工艺事项";
- //
- // ultraTabPageControl4
- //
- this.ultraTabPageControl4.Controls.Add(this.ultraGrid2);
- this.ultraTabPageControl4.Controls.Add(this.ultraExpandableGroupBox3);
- this.ultraTabPageControl4.Location = new System.Drawing.Point(0, 0);
- this.ultraTabPageControl4.Name = "ultraTabPageControl4";
- this.ultraTabPageControl4.Size = new System.Drawing.Size(196, 77);
- //
- // ultraGrid2
- //
- appearance97.BackColor = System.Drawing.Color.Ivory;
- this.ultraGrid2.DisplayLayout.Appearance = appearance97;
- this.ultraGrid2.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance98.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance98.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance98.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance98.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid2.DisplayLayout.GroupByBox.Appearance = appearance98;
- appearance99.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid2.DisplayLayout.GroupByBox.BandLabelAppearance = appearance99;
- this.ultraGrid2.DisplayLayout.GroupByBox.Hidden = true;
- this.ultraGrid2.DisplayLayout.GroupByBox.Prompt = "将要分组的列拖至该区域!";
- appearance100.BackColor = System.Drawing.SystemColors.Window;
- appearance100.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid2.DisplayLayout.Override.ActiveCellAppearance = appearance100;
- appearance101.BackColor = System.Drawing.SystemColors.Highlight;
- appearance101.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid2.DisplayLayout.Override.ActiveRowAppearance = appearance101;
- appearance102.BorderColor = System.Drawing.Color.Black;
- appearance102.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.ultraGrid2.DisplayLayout.Override.CellAppearance = appearance102;
- this.ultraGrid2.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid2.DisplayLayout.Override.CellPadding = 0;
- appearance103.BackColor = System.Drawing.SystemColors.Control;
- appearance103.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance103.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance103.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance103.BorderColor = System.Drawing.SystemColors.Window;
- appearance103.TextHAlign = Infragistics.Win.HAlign.Left;
- appearance103.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.ultraGrid2.DisplayLayout.Override.GroupByRowAppearance = appearance103;
- this.ultraGrid2.DisplayLayout.Override.GroupBySummaryDisplayStyle = Infragistics.Win.UltraWinGrid.GroupBySummaryDisplayStyle.SummaryCells;
- appearance104.BackColor = System.Drawing.Color.Silver;
- this.ultraGrid2.DisplayLayout.Override.HeaderAppearance = appearance104;
- this.ultraGrid2.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid2.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.Standard;
- appearance105.BackColor = System.Drawing.SystemColors.Window;
- appearance105.BorderColor = System.Drawing.Color.Black;
- appearance105.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.ultraGrid2.DisplayLayout.Override.RowAppearance = appearance105;
- appearance106.BackColor = System.Drawing.SystemColors.Window;
- appearance106.BorderColor = System.Drawing.Color.Black;
- appearance106.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.ultraGrid2.DisplayLayout.Override.RowPreviewAppearance = appearance106;
- this.ultraGrid2.DisplayLayout.Override.RowSelectorHeaderStyle = Infragistics.Win.UltraWinGrid.RowSelectorHeaderStyle.SeparateElement;
- this.ultraGrid2.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
- this.ultraGrid2.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True;
- appearance107.TextHAlign = Infragistics.Win.HAlign.Left;
- appearance107.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.ultraGrid2.DisplayLayout.Override.SelectedRowAppearance = appearance107;
- this.ultraGrid2.DisplayLayout.Override.SummaryDisplayArea = Infragistics.Win.UltraWinGrid.SummaryDisplayAreas.BottomFixed;
- appearance108.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid2.DisplayLayout.Override.SummaryFooterAppearance = appearance108;
- appearance109.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- appearance109.ForeColor = System.Drawing.Color.Red;
- this.ultraGrid2.DisplayLayout.Override.SummaryFooterCaptionAppearance = appearance109;
- this.ultraGrid2.DisplayLayout.Override.SummaryFooterCaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance110.BackColor = System.Drawing.Color.MistyRose;
- appearance110.ForeColor = System.Drawing.Color.Blue;
- appearance110.TextHAlign = Infragistics.Win.HAlign.Right;
- appearance110.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.ultraGrid2.DisplayLayout.Override.SummaryValueAppearance = appearance110;
- appearance111.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid2.DisplayLayout.Override.TemplateAddRowAppearance = appearance111;
- this.ultraGrid2.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid2.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid2.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGrid2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid2.Location = new System.Drawing.Point(0, 0);
- this.ultraGrid2.Name = "ultraGrid2";
- this.ultraGrid2.Size = new System.Drawing.Size(196, 0);
- this.ultraGrid2.TabIndex = 10;
- this.ultraGrid2.Text = "ultraGrid1";
- //
- // ultraExpandableGroupBox3
- //
- this.ultraExpandableGroupBox3.Controls.Add(this.ultraExpandableGroupBoxPanel3);
- this.ultraExpandableGroupBox3.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.ultraExpandableGroupBox3.ExpandedSize = new System.Drawing.Size(860, 243);
- this.ultraExpandableGroupBox3.Location = new System.Drawing.Point(0, -110);
- this.ultraExpandableGroupBox3.Name = "ultraExpandableGroupBox3";
- this.ultraExpandableGroupBox3.Size = new System.Drawing.Size(196, 187);
- this.ultraExpandableGroupBox3.SupportThemes = false;
- this.ultraExpandableGroupBox3.TabIndex = 2;
- this.ultraExpandableGroupBox3.Text = "计划下发情况";
- //
- // ultraExpandableGroupBoxPanel3
- //
- this.ultraExpandableGroupBoxPanel3.Controls.Add(this.ultraGrid3);
- this.ultraExpandableGroupBoxPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraExpandableGroupBoxPanel3.Location = new System.Drawing.Point(3, 19);
- this.ultraExpandableGroupBoxPanel3.Name = "ultraExpandableGroupBoxPanel3";
- this.ultraExpandableGroupBoxPanel3.Size = new System.Drawing.Size(190, 165);
- this.ultraExpandableGroupBoxPanel3.TabIndex = 0;
- //
- // ultraGrid3
- //
- appearance112.BackColor = System.Drawing.Color.Ivory;
- this.ultraGrid3.DisplayLayout.Appearance = appearance112;
- this.ultraGrid3.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance113.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance113.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance113.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance113.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid3.DisplayLayout.GroupByBox.Appearance = appearance113;
- appearance114.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid3.DisplayLayout.GroupByBox.BandLabelAppearance = appearance114;
- this.ultraGrid3.DisplayLayout.GroupByBox.Hidden = true;
- this.ultraGrid3.DisplayLayout.GroupByBox.Prompt = "将要分组的列拖至该区域!";
- appearance115.BackColor = System.Drawing.SystemColors.Window;
- appearance115.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid3.DisplayLayout.Override.ActiveCellAppearance = appearance115;
- appearance116.BackColor = System.Drawing.SystemColors.Highlight;
- appearance116.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid3.DisplayLayout.Override.ActiveRowAppearance = appearance116;
- appearance117.BorderColor = System.Drawing.Color.Black;
- appearance117.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.ultraGrid3.DisplayLayout.Override.CellAppearance = appearance117;
- this.ultraGrid3.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid3.DisplayLayout.Override.CellPadding = 0;
- appearance118.BackColor = System.Drawing.SystemColors.Control;
- appearance118.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance118.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance118.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance118.BorderColor = System.Drawing.SystemColors.Window;
- appearance118.TextHAlign = Infragistics.Win.HAlign.Left;
- appearance118.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.ultraGrid3.DisplayLayout.Override.GroupByRowAppearance = appearance118;
- this.ultraGrid3.DisplayLayout.Override.GroupBySummaryDisplayStyle = Infragistics.Win.UltraWinGrid.GroupBySummaryDisplayStyle.SummaryCells;
- appearance119.BackColor = System.Drawing.Color.Silver;
- this.ultraGrid3.DisplayLayout.Override.HeaderAppearance = appearance119;
- this.ultraGrid3.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid3.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.Standard;
- appearance120.BackColor = System.Drawing.SystemColors.Window;
- appearance120.BorderColor = System.Drawing.Color.Black;
- appearance120.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.ultraGrid3.DisplayLayout.Override.RowAppearance = appearance120;
- appearance121.BackColor = System.Drawing.SystemColors.Window;
- appearance121.BorderColor = System.Drawing.Color.Black;
- appearance121.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.ultraGrid3.DisplayLayout.Override.RowPreviewAppearance = appearance121;
- this.ultraGrid3.DisplayLayout.Override.RowSelectorHeaderStyle = Infragistics.Win.UltraWinGrid.RowSelectorHeaderStyle.SeparateElement;
- this.ultraGrid3.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
- this.ultraGrid3.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True;
- appearance122.TextHAlign = Infragistics.Win.HAlign.Left;
- appearance122.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.ultraGrid3.DisplayLayout.Override.SelectedRowAppearance = appearance122;
- this.ultraGrid3.DisplayLayout.Override.SummaryDisplayArea = Infragistics.Win.UltraWinGrid.SummaryDisplayAreas.BottomFixed;
- appearance123.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid3.DisplayLayout.Override.SummaryFooterAppearance = appearance123;
- appearance124.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- appearance124.ForeColor = System.Drawing.Color.Red;
- this.ultraGrid3.DisplayLayout.Override.SummaryFooterCaptionAppearance = appearance124;
- this.ultraGrid3.DisplayLayout.Override.SummaryFooterCaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance125.BackColor = System.Drawing.Color.MistyRose;
- appearance125.ForeColor = System.Drawing.Color.Blue;
- appearance125.TextHAlign = Infragistics.Win.HAlign.Right;
- appearance125.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.ultraGrid3.DisplayLayout.Override.SummaryValueAppearance = appearance125;
- appearance126.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid3.DisplayLayout.Override.TemplateAddRowAppearance = appearance126;
- this.ultraGrid3.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid3.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid3.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGrid3.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid3.Location = new System.Drawing.Point(0, 0);
- this.ultraGrid3.Name = "ultraGrid3";
- this.ultraGrid3.Size = new System.Drawing.Size(190, 165);
- this.ultraGrid3.TabIndex = 10;
- this.ultraGrid3.Text = "ultraGrid3";
- //
- // ultraExpandableGroupBox4
- //
- this.ultraExpandableGroupBox4.Controls.Add(this.ultraExpandableGroupBoxPanel4);
- this.ultraExpandableGroupBox4.ExpandedSize = new System.Drawing.Size(0, 0);
- this.ultraExpandableGroupBox4.Location = new System.Drawing.Point(0, 0);
- this.ultraExpandableGroupBox4.Name = "ultraExpandableGroupBox4";
- this.ultraExpandableGroupBox4.Size = new System.Drawing.Size(200, 185);
- this.ultraExpandableGroupBox4.SupportThemes = false;
- this.ultraExpandableGroupBox4.TabIndex = 0;
- //
- // ultraExpandableGroupBoxPanel4
- //
- this.ultraExpandableGroupBoxPanel4.Location = new System.Drawing.Point(0, 0);
- this.ultraExpandableGroupBoxPanel4.Name = "ultraExpandableGroupBoxPanel4";
- this.ultraExpandableGroupBoxPanel4.Size = new System.Drawing.Size(200, 100);
- this.ultraExpandableGroupBoxPanel4.TabIndex = 0;
- //
- // Frm_PlanDrawUp
- //
- this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
- this.ClientSize = new System.Drawing.Size(1273, 498);
- this.Controls.Add(this.tab_Coroll);
- this.Controls.Add(this.ultraGroupBox1);
- this.Controls.Add(this.panel1);
- this.Name = "Frm_PlanDrawUp";
- this.Text = "钢卷开平计划制订";
- this.Load += new System.EventHandler(this.Frm_PlanDrawUp_Load);
- this.ultraTabPageControl1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.gb_Stuff)).EndInit();
- this.panel2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.cmb_Gylx)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_QuShi)).EndInit();
- this.ultraTabPageControl2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.gb_Plan)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox2)).EndInit();
- this.ultraExpandableGroupBox2.ResumeLayout(false);
- this.ultraExpandableGroupBoxPanel2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.gb_PlanState)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).EndInit();
- this.ultraExpandableGroupBox1.ResumeLayout(false);
- this.ultraExpandableGroupBoxPanel1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.txt_Width)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dte_Time)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_Length)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_Scid_End_Y)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_ClassTeam)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_ClassOrder)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_EditType_Y)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_Scid_Begin_Y)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_Scid_Top_Y)).EndInit();
- this.panel1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
- this.ultraGroupBox1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultSJ)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_IS)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dte_EndTime)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dte_BeginTime)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_BNumber)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_Buress)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_Sleen)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_GangP)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_RollHao)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_PlanID)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_OrderNO)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.tab_Coroll)).EndInit();
- this.tab_Coroll.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraCombo1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).EndInit();
- this.ultraTabControl1.ResumeLayout(false);
- this.ultraTabPageControl3.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
- this.panel3.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).EndInit();
- this.ultraTabPageControl4.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox3)).EndInit();
- this.ultraExpandableGroupBox3.ResumeLayout(false);
- this.ultraExpandableGroupBoxPanel3.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox4)).EndInit();
- this.ultraExpandableGroupBox4.ResumeLayout(false);
- this.ResumeLayout(false);
- }
- #endregion
- #region 查询
- private string GetWhere()
- {
- string strSql="";
- //if(this.chk_CollectTime.Checked)
- //{
- // strSql += " AND TO_CHAR(A.INTIME,'YYYY-MM-DD') >='"+Convert.ToDateTime(this.dte_BeginTime.Value).ToString("yyyy-MM-dd")+"' "
- // + " AND TO_CHAR(A.INTIME,'YYYY-MM-DD') <='"+Convert.ToDateTime(this.dte_EndTime.Value).ToString("yyyy-MM-dd")+"' ";
- //}
- if (this.chk_CollectTime.Checked)
- {
- if (this.ultSJ.SelectedIndex == 0)
- {
- strSql += " AND TO_CHAR(A.PLAN_DATE,'YYYY-MM-DD') >='" + Convert.ToDateTime(this.dte_BeginTime.Value).ToString("yyyy-MM-dd") + "' "
- + " AND TO_CHAR(A.PLAN_DATE,'YYYY-MM-DD') <='" + Convert.ToDateTime(this.dte_EndTime.Value).ToString("yyyy-MM-dd") + "' ";
- }
- else
- {
- strSql += " AND TO_CHAR(A.STTIME,'YYYY-MM-DD') >='" + Convert.ToDateTime(this.dte_BeginTime.Value).ToString("yyyy-MM-dd") + "' "
- + " AND TO_CHAR(A.STTIME,'YYYY-MM-DD') <='" + Convert.ToDateTime(this.dte_EndTime.Value).ToString("yyyy-MM-dd") + "' ";
- }
- }
- if(this.chk_OrderNO.Checked)
- {
- strSql=" AND A.ORD_SEQ='"+this.txt_OrderNO.Text+"'";;
- }
- if(this.chk_PactID.Checked)
- {
- strSql = " AND A.ORD_NO LIKE '%" + this.txt_PlanID.Text + "%'";
- }
- if(this.chk_RollHao.Checked)
- {
- strSql=" AND A.OLD_SAMPL_NO='"+this.txt_RollHao.Text+"'";
- }
- if(this.chk_BanHao.Checked)
- {
- strSql=" AND A.SLAB_NO='"+this.txt_GangP.Text+"'";
- }
- if(this.chk_PaiHao.Checked)
- {
- strSql=" AND A.STL_GRD='"+this.cmb_Sleen.Value+"'";
- }
- if(this.Chk_Buttress.Checked)
- {
- strSql=" AND B.BUTTRESS='"+this.cmb_Buress.Value.ToString()+"'";
- }
- if(this.chk_BNumber.Checked)
- {
- strSql+="AND A.BAHCT_NUMBER||A.SERIAL_NUMBER LIKE '"+this.txt_BNumber.Text+"'";
- }
- //if(this.chk_ProcLine.Checked)
- //{
- // strSql+=" AND A.STOCKTYPE='"+this.cmb_ProcL.Value.ToString()+"'";
- //}
- return strSql;
- }
- private void StuffQuery(string _Conntion)
- {
- try
- {
- string strOut="";
- DataSet ds=(DataSet)Core.Mes.ClientFrameWork.ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage","Core.XgMes.Server.CoilMachiningManage.PlanDrawUp","StuffQuer",new object[]{_Conntion},out strOut);
- this.gb_Stuff.DataSource=ds;
- this.gb_Stuff.UpdateData();
- Comm.SetGridSumArea(this.gb_Stuff);
- }
- catch(Exception ex)
- {
- System.Diagnostics.Debug.WriteLine(ex.ToString());
- }
- }
- private string Plan_GetWhere()
- {
- string strSql="";
- //if(this.chk_CollectTime.Checked)
- //{
- // strSql += " AND TO_CHAR(A.PLAN_DATE,'YYYY-MM-DD') >='"+Convert.ToDateTime(this.dte_BeginTime.Value).ToString("yyyy-MM-dd")+"' "
- // + " AND TO_CHAR(A.PLAN_DATE,'YYYY-MM-DD') <='"+Convert.ToDateTime(this.dte_EndTime.Value).ToString("yyyy-MM-dd")+"' ";
- //}
- if (chk_CollectTime.Checked == true)
- {
- if (this.ultSJ.SelectedIndex == 0)
- {
- strSql += " AND TO_CHAR(A.PLAN_DATE,'YYYY-MM-DD') >='" + Convert.ToDateTime(this.dte_BeginTime.Value).ToString("yyyy-MM-dd") + "' "
- + " AND TO_CHAR(A.PLAN_DATE,'YYYY-MM-DD') <='" + Convert.ToDateTime(this.dte_EndTime.Value).ToString("yyyy-MM-dd") + "' ";
- }
- else
- {
- strSql += " AND TO_CHAR(A.STTIME,'YYYY-MM-DD') >='" + Convert.ToDateTime(this.dte_BeginTime.Value).ToString("yyyy-MM-dd") + "' "
- + " AND TO_CHAR(A.STTIME,'YYYY-MM-DD') <='" + Convert.ToDateTime(this.dte_EndTime.Value).ToString("yyyy-MM-dd") + "' ";
- }
- }
- if(this.chk_OrderNO.Checked)
- {
- strSql+=" AND A.ORD_SEQ='"+this.txt_OrderNO.Text+"'";;
- }
- if(this.chk_PactID.Checked)
- {
- strSql += " AND A.ORD_NO LIKE '%" + this.txt_PlanID.Text + "%'";
- }
- if(this.chk_RollHao.Checked)
- {
- strSql+=" AND A.OLD_SAMPL_NO='"+this.txt_RollHao.Text+"'";
- }
- if(this.chk_BanHao.Checked)
- {
- strSql+=" AND A.SLAB_NO='"+this.txt_GangP.Text+"'";
- }
- if(this.chk_PaiHao.Checked)
- {
- strSql+=" AND A.STL_GRD='"+this.cmb_Sleen.Value+"'";
- }
- if(this.Chk_Buttress.Checked)
- {
- strSql+=" AND B.BUTTRESS='"+this.cmb_Buress.Value.ToString()+"'";
- }
- if(this.chk_BNumber.Checked)
- {
- strSql+="AND A.BAHCT_NUMBER||A.SERIAL_NUMBER LIKE '"+this.txt_BNumber.Text+"'";
- }
- //if(this.chk_ProcLine.Checked)
- //{
- // strSql+=" AND A.STOCKTYPE='"+this.cmb_ProcL.Value.ToString()+"'";
- //}
- if (chk_ProcLine.Checked)
- {
- strSql += " AND A.AFFIRLOG='"+this.cmb_IS.Value.ToString()+"'";
-
- }
- return strSql;
- }
- private void PlanQuery(string _Conntion)
- {
- try
- {
- string strOut="";
- DataSet ds=(DataSet)Core.Mes.ClientFrameWork.ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage","Core.XgMes.Server.CoilMachiningManage.PlanDrawUp","Plan_Qery",new object[]{_Conntion},out strOut);
- this.gb_Plan.DataSource=ds;
- this.gb_Plan.UpdateData();
- Comm.SetGridSumArea(this.gb_Plan);
- }
- catch(Exception ex)
- {
- System.Diagnostics.Debug.WriteLine(ex.ToString());
- }
- }
- private void PlanXFQuery(string _Conntion)
- {
- try
- {
- string strOut="";
- DataSet ds=(DataSet)Core.Mes.ClientFrameWork.ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage","Core.XgMes.Server.CoilMachiningManage.PlanDrawUp","Plan_XF_Qery",new object[]{_Conntion},out strOut);
- this.gb_PlanState.DataSource=ds;
- this.gb_PlanState.UpdateData();
- Comm.SetGridSumArea(this.gb_PlanState);
- foreach(Infragistics.Win.UltraWinGrid.UltraGridRow row in this.gb_PlanState.Rows)
- {
- if(row.Cells["AFFIRLOG"].Value.ToString()=="1")
- {
- row.Appearance.ForeColor = System.Drawing.Color.Red;
- }
- else
- {
- row.Appearance.ForeColor = System.Drawing.Color.Black;
- }
- }
- }
- catch(Exception ex)
- {
- System.Diagnostics.Debug.WriteLine(ex.ToString());
- }
- }
- #endregion
- #region 确定
- private void Plan_Add()
- {
- try
- {
- string strOut="";
- ArrayList array=new ArrayList();
- array=Comm.GetFieldValue(this.gb_Stuff,"FLAG","OLD_SAMPL_NO");
- if(array.Count==0)
- {
- MessageBox.Show("请您选择你要下发的信息!","提示",System.Windows.Forms.MessageBoxButtons.OK,System.Windows.Forms.MessageBoxIcon.Information);
- return ;
- }
- ArrayList Other=new ArrayList();
- Other.Add(this.txt_QuShi.Text);
- Other.Add(Core.Mes.ClientFrameWork.ClientCommon._UserInfo.UserName);
- Other.Add(this.cmb_Gylx.Value.ToString());
- object obj=Core.Mes.ClientFrameWork.ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage","Core.XgMes.Server.CoilMachiningManage.PlanDrawUp","Plan_Set",new object[]{array,Other},out strOut);
- if(obj!=null && obj.ToString()=="1")
- {
- DataSet ds=(DataSet)this.gb_Stuff.DataSource;
- System.Data.DataRow[] row=ds.Tables["KCJ3_STUFFLIST"].Select("FLAG='TRUE'");
- for(int i=0;i<row.Length;i++)
- {
- ds.Tables["KCJ3_STUFFLIST"].Rows.Remove(row[i]);
- ds.Tables["KCJ3_STUFFLIST"].AcceptChanges();
- this.PlanQuery("");
- }
- }
- else
- {
- MessageBox.Show(strOut,"警告",System.Windows.Forms.MessageBoxButtons.OK,System.Windows.Forms.MessageBoxIcon.Warning);
- }
- }
- catch(Exception ex)
- {
- System.Diagnostics.Debug.WriteLine(ex.ToString());
- }
- }
- #endregion
- #region 撤消
- private void Plan_Del()
- {
- try
- {
- string strOut="";
- ArrayList array=new ArrayList();
- array=Comm.GetFieldValue(this.gb_Plan,"FLAG","OLD_SAMPL_NO");
- if(array.Count==0)
- {
- MessageBox.Show("请您选择你要撤消的信息!","提示",System.Windows.Forms.MessageBoxButtons.OK,System.Windows.Forms.MessageBoxIcon.Information);
- return ;
- }
- object obj=Core.Mes.ClientFrameWork.ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage","Core.XgMes.Server.CoilMachiningManage.PlanDrawUp","Plan_Del",new object[]{array},out strOut);
- if(obj!=null && obj.ToString()=="1")
- {
- this.PlanQuery("");
- this.StuffQuery("");
- }
- else
- {
- MessageBox.Show(strOut,"警告",System.Windows.Forms.MessageBoxButtons.OK,System.Windows.Forms.MessageBoxIcon.Warning);
- }
- }
- catch(Exception ex)
- {
- System.Diagnostics.Debug.WriteLine(ex.ToString());
- }
- }
- #endregion
- #region 作业下发
- private bool Check()
- {
- if(this.txt_Scid_End_Y.Text.Trim().Length==0)
- {
- MessageBox.Show("工单号不能为空!","提示",System.Windows.Forms.MessageBoxButtons.OK,System.Windows.Forms.MessageBoxIcon.Information);
- return false;
- }
- if(this.cmb_ClassOrder.Text.Trim().Length==0)
- {
- MessageBox.Show("班次不能为空!","提示",System.Windows.Forms.MessageBoxButtons.OK,System.Windows.Forms.MessageBoxIcon.Information);
- return false;
- }
- if(this.cmb_ClassTeam.Text.Trim().Length==0)
- {
- MessageBox.Show("班组不能为空!","提示",System.Windows.Forms.MessageBoxButtons.OK,System.Windows.Forms.MessageBoxIcon.Information);
- return false;
- }
- if(this.txt_Length.Value.ToString().Trim().Length==0)
- {
- MessageBox.Show("长度不能为空!","提示",System.Windows.Forms.MessageBoxButtons.OK,System.Windows.Forms.MessageBoxIcon.Information);
- return false;
- }
- return true;
- }
- private void Plan_XF()
- {
- if(!Check())
- {
- return;
- }
- try
- {
- string strOut="";
- ArrayList array=new ArrayList();
- array=Comm.GetFieldValue(this.gb_Plan,"FLAG","OLD_SAMPL_NO");
- if(array.Count==0)
- {
- MessageBox.Show("请您选择你要撤消的信息!","提示",System.Windows.Forms.MessageBoxButtons.OK,System.Windows.Forms.MessageBoxIcon.Information);
- return ;
- }
- ArrayList Other=new ArrayList();
- Other.Add(this.txt_Scid_Top_Y.Text+this.txt_Scid_Begin_Y.Text+this.txt_Scid_End_Y.Text);
- Other.Add(this.cmb_ClassOrder.Value.ToString());
- Other.Add(this.cmb_ClassTeam.Value.ToString());
- Other.Add(this.dte_Time.Value.ToString());
- Other.Add(Core.Mes.ClientFrameWork.ClientCommon._UserInfo.UserName);
- Other.Add(this.txt_Length.Value.ToString());
- Other.Add(this.txt_Width.Value.ToString());
- object obj=Core.Mes.ClientFrameWork.ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage","Core.XgMes.Server.CoilMachiningManage.PlanDrawUp","Plan_Set_XF",new object[]{array,Other},out strOut);
- if(obj!=null&&obj.ToString()=="1")
- {
- DataSet ds=(DataSet)this.gb_Plan.DataSource;
- System.Data.DataRow [] row=ds.Tables["KCJ3_ZY_PLAN"].Select("FLAG='TRUE'");
- for(int i=0;i<row.Length;i++)
- {
- ds.Tables["KCJ3_ZY_PLAN"].Rows.Remove(row[i]);
- ds.Tables["KCJ3_ZY_PLAN"].AcceptChanges();
- }
- string strSql=" AND A.WORKORDER_ID='"+this.txt_Scid_Top_Y.Text+this.txt_Scid_Begin_Y.Text+this.txt_Scid_End_Y.Text+"'";
- this.PlanXFQuery(strSql);
- }
- else
- {
- MessageBox.Show(strOut,"警告",System.Windows.Forms.MessageBoxButtons.OK,System.Windows.Forms.MessageBoxIcon.Warning);
- }
- }
- catch(Exception ex)
- {
- System.Diagnostics.Debug.WriteLine(ex.ToString());
- }
- }
- #endregion
- #region 撤消下发
- private void Plan_Del_XF()
- {
- try
- {
- string strOut="";
- ArrayList array=new ArrayList();
- string ID="";
- foreach(Infragistics.Win.UltraWinGrid.UltraGridRow row in this.gb_PlanState.Selected.Rows)
- {
- ID=Comm.ObjToStr(row.Cells["OLD_SAMPL_NO"].Value);
- }
- array.Add(ID);
- if(array.Count==0)
- {
- MessageBox.Show("请您选择你要撤消的信息!","提示",System.Windows.Forms.MessageBoxButtons.OK,System.Windows.Forms.MessageBoxIcon.Information);
- return ;
- }
- ArrayList Other=new ArrayList();
- Other.Add(Core.Mes.ClientFrameWork.ClientCommon._UserInfo.UserName);
- object obj=Core.Mes.ClientFrameWork.ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage","Core.XgMes.Server.CoilMachiningManage.PlanDrawUp","Plan_Del_XF",new object[]{array,Other},out strOut);
- if(obj!=null&&obj.ToString()=="1")
- {
- this.PlanQuery("");
- this.PlanXFQuery("");
- }
- else
- {
- MessageBox.Show(strOut,"警告",System.Windows.Forms.MessageBoxButtons.OK,System.Windows.Forms.MessageBoxIcon.Warning);
- }
- }
- catch(Exception ex)
- {
- System.Diagnostics.Debug.WriteLine(ex.ToString());
- }
- }
- #endregion
- #region EVENT
- private void ultraToolbarsManager1_ToolClick(object sender, Infragistics.Win.UltraWinToolbars.ToolClickEventArgs e)
- {
- switch(e.Tool.Key)
- {
- case "QUERY_KC":
- this.tab_Coroll.Tabs["PROCESS"].Selected=true;
- this.StuffQuery(this.GetWhere());
- break;
- case "QUERY_GY":
- this.tab_Coroll.Tabs["PLAN"].Selected=true;
- this.PlanQuery(this.Plan_GetWhere());
- break;
- case "AFFIRM":
- this.Plan_Add();
- break;
- case "QUERY_PLAN":
- PlanXFQuery(this.Plan_GetWhere());
- break;
- case "CANCEL":
- this.Plan_Del();
- break;
- case "DOWN_PLAN":
- this.Plan_XF();
- break;
- case "DEL_PLAN":
- Plan_Del_XF();
- break;
- case "DUCE":
- ExportButtressInfo();
- break;
- case "PRINT":
- this.Print(this.Plan_GetWhere());
- break;
- case "CLOSE":
- this.Close();
- break;
- }
- }
- private void chk_CollectTime_CheckedChanged(object sender, System.EventArgs e)
- {
- this.dte_BeginTime.Enabled = chk_CollectTime.Checked;
- this.dte_EndTime.Enabled = chk_CollectTime.Checked;
- }
- private void chk_OrderNO_CheckedChanged(object sender, System.EventArgs e)
- {
- this.txt_OrderNO.Enabled=this.chk_OrderNO.Checked;
- }
- private void chk_PactID_CheckedChanged(object sender, System.EventArgs e)
- {
- this.txt_PlanID.Enabled=chk_PactID.Checked;
- }
- private void chk_RollHao_CheckedChanged(object sender, System.EventArgs e)
- {
- this.txt_RollHao.Enabled=this.chk_RollHao.Checked;
- }
- private void chk_BanHao_CheckedChanged(object sender, System.EventArgs e)
- {
- this.txt_GangP.Enabled=this.chk_BanHao.Checked;
- }
- private void chk_PaiHao_CheckedChanged(object sender, System.EventArgs e)
- {
- this.cmb_Sleen.Enabled=this.chk_PaiHao.Checked;
- }
- private void Chk_Buttress_CheckedChanged(object sender, System.EventArgs e)
- {
- this.cmb_Buress.Enabled=this.Chk_Buttress.Checked;
- }
- private void gb_Plan_CellChange(object sender, Infragistics.Win.UltraWinGrid.CellEventArgs e)
- {
- try
- {
- int k=0;
- string temp="";
- if(e.Cell.Column.Key == "FLAG")
- {
- e.Cell.Row.Update();
- if(e.Cell.Value.ToString().ToUpper() == "TRUE")
- {
- e.Cell.Row.Appearance.ForeColor = System.Drawing.Color.Blue;
- foreach(Infragistics.Win.UltraWinGrid.UltraGridRow row in this.gb_Plan.Rows)
- {
- if(!row.IsFilteredOut && row.Cells["FLAG"].Text.ToUpper() == "TRUE")
- {
- this.txt_Width.Value = row.Cells["COIL_WTH"].Text;
- if(k == 0)
- {
- temp = row.Cells["OLD_SAMPL_NO"].Text;
- }
- else
- {
- if(!row.Cells["OLD_SAMPL_NO"].Text.Equals(temp))
- {
- MessageBox.Show("一个钢卷号只能对应一个工单号,请选择一行","提示",System.Windows.Forms.MessageBoxButtons.OK,System.Windows.Forms.MessageBoxIcon.Information);
- e.Cell.Row.Cells["FLAG"].Value = false;
- row.Update();
- return;
- }
- }
- k++;
- }
- }
- }
- else
- {
- e.Cell.Row.Appearance.ForeColor = System.Drawing.Color.Black;
- }
- }
- }
- catch(System.Exception ex)
- {
- System.Diagnostics.Debug.WriteLine(ex.ToString());
- }
- }
- private void gb_Stuff_CellChange(object sender, Infragistics.Win.UltraWinGrid.CellEventArgs e)
- {
- try
- {
- if(e.Cell.Column.Key == "FLAG")
- {
- e.Cell.Row.Update();
- if(e.Cell.Value.ToString().ToUpper() == "TRUE")
- {
- e.Cell.Row.Appearance.ForeColor = System.Drawing.Color.Blue;
- }
- else
- {
- e.Cell.Row.Appearance.ForeColor = System.Drawing.Color.Black;
- }
- }
- }
- catch(System.Exception ex)
- {
- System.Diagnostics.Debug.WriteLine(ex.ToString());
- }
- }
- private void chk_SelectAll_CheckedChanged(object sender, System.EventArgs e)
- {
-
- try
- {
- Infragistics.Win.UltraWinGrid.UltraGridBase tmpGrid = this.gb_Stuff;
- foreach(Infragistics.Win.UltraWinGrid.UltraGridRow row in this.gb_Stuff.Rows)
- {
- if(!row.IsFilteredOut)
- {
- row.Cells["FLAG"].Value = this.chk_SelectAll.Checked.ToString().ToUpper();
- row.Update();
- }
- }
- Infragistics.Win.UltraWinGrid.UltraGridBase tmpGrid1 = this.gb_Plan;
- foreach(Infragistics.Win.UltraWinGrid.UltraGridRow row in this.gb_Plan.Rows)
- {
- if(!row.IsFilteredOut)
- {
- row.Cells["FLAG"].Value = this.chk_SelectAll.Checked.ToString().ToUpper();
- row.Update();
- }
- }
- }
- catch(System.Exception ex)
- {
- System.Diagnostics.Debug.WriteLine(ex.ToString());
- }
-
- }
- private void chk_AllowFilter_CheckedChanged(object sender, System.EventArgs e)
- {
- try
- {
- if(this.chk_AllowFilter.Checked)
- {
- this.gb_Plan.DisplayLayout.Override.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- this.gb_Plan.DisplayLayout.Override.FilterUIType = Infragistics.Win.UltraWinGrid.FilterUIType.FilterRow;
- this.gb_Stuff.DisplayLayout.Override.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- this.gb_Stuff.DisplayLayout.Override.FilterUIType = Infragistics.Win.UltraWinGrid.FilterUIType.FilterRow;
- this.gb_PlanState.DisplayLayout.Override.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- this.gb_PlanState.DisplayLayout.Override.FilterUIType = Infragistics.Win.UltraWinGrid.FilterUIType.FilterRow;
- }
- else
- {
- this.gb_Plan.DisplayLayout.Override.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.False;
- this.gb_Plan.DisplayLayout.Override.FilterUIType = Infragistics.Win.UltraWinGrid.FilterUIType.Default;
- if(this.gb_Plan.DisplayLayout.Bands[0].ColumnFilters.Count>0)
- {
- for(int i=0;i<this.gb_Plan.DisplayLayout.Bands[0].ColumnFilters.Count;i++)
- {
- this.gb_Plan.DisplayLayout.Bands[0].ColumnFilters[i].FilterConditions.Clear();
- }
- }
- this.gb_PlanState.DisplayLayout.Override.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.False;
- this.gb_PlanState.DisplayLayout.Override.FilterUIType = Infragistics.Win.UltraWinGrid.FilterUIType.Default;
- if(this.gb_PlanState.DisplayLayout.Bands[0].ColumnFilters.Count>0)
- {
- for(int i=0;i<this.gb_PlanState.DisplayLayout.Bands[0].ColumnFilters.Count;i++)
- {
- this.gb_PlanState.DisplayLayout.Bands[0].ColumnFilters[i].FilterConditions.Clear();
- }
- }
- this.gb_Stuff.DisplayLayout.Override.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.False;
- this.gb_Stuff.DisplayLayout.Override.FilterUIType = Infragistics.Win.UltraWinGrid.FilterUIType.Default;
- if(this.gb_Stuff.DisplayLayout.Bands[0].ColumnFilters.Count>0)
- {
- for(int i=0;i<this.gb_Stuff.DisplayLayout.Bands[0].ColumnFilters.Count;i++)
- {
- this.gb_Stuff.DisplayLayout.Bands[0].ColumnFilters[i].FilterConditions.Clear();
- }
- }
-
- }
- }
- catch(System.Exception ex)
- {
- System.Diagnostics.Debug.WriteLine(ex.ToString());
- }
- }
- private void txt_Scid_End_Y_Click(object sender, System.EventArgs e)
- {
- this.txt_Scid_Begin_Y.Text=System.DateTime.Now.Date.ToString("yyMMdd");
- if(this.cmb_EditType_Y.Value.ToString()=="1")
- if(this.Scid_Where().Length==4)
- {
- this.txt_Scid_End_Y.Text=this.Scid_Where();
- }
- else
- {
- this.txt_Scid_End_Y.Text=Comm.ObjToStr(Comm.ObjToInt(this.Scid_Where().Substring(8))+1).PadLeft(4,'0');
- }
- }
- private string Scid_Where()
- {
- string strOut="";
- string ID="0001";
- try
- {
- string sql="SELECT MAX(WORKORDER_ID) FROM KCJ3_ZY_PLAN WHERE DOWN_FLAG='1' ORDER BY WORKORDER_ID";
- DataSet ds = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage","Core.XgMes.Server.CoilMachiningManage.Common","GetDataSet",new object []{sql},out strOut);
- if(ds.Tables.Count ==1 && ds.Tables[0].Rows.Count > 0 )
- if(Comm.ObjToStr(ds.Tables[0].Rows[0][0])!="")
- {
- ID=Comm.ObjToStr(ds.Tables[0].Rows[0][0]);
- }
- else
- {
- ID="0001";
- }
- return ID;
- }
- catch(Exception ex)
- {
- System.Diagnostics.Debug.WriteLine(ex.ToString());
- return ID;
- }
- }
- private void cmb_EditType_Y_ValueChanged(object sender, System.EventArgs e)
- {
- if(this.cmb_EditType_Y.SelectedIndex==0)
- {
- this.txt_Scid_Begin_Y.ReadOnly=true;
- this.txt_Scid_End_Y.ReadOnly=true;
- this.txt_Scid_Top_Y.ReadOnly=true;
- }
- else
- {
- this.txt_Scid_Begin_Y.ReadOnly=false;
- this.txt_Scid_End_Y.ReadOnly=false;
- this.txt_Scid_Top_Y.ReadOnly=false;
- }
- }
- #endregion
- #region 初始化
- private void Frm_PlanDrawUp_Load(object sender, System.EventArgs e)
- {
- Comm.SetGridSumArea(this.gb_Plan);
- Comm.SetGridSumArea(this.gb_PlanState);
- Comm.SetGridSumArea(this.gb_Stuff);
- this.txt_Scid_Begin_Y.Text=System.DateTime.Now.Date.ToString("yyMMdd");
- this.txt_Scid_Top_Y.Text="J9";
- this.cmb_EditType_Y.SelectedIndex=0;
- try
- {
- string strOut="";
- string sql="";
- DataSet ds;
- //班次
- sql ="SELECT ID_,NAME_ FROM SCM_BASE_INFO WHERE SORT_CODE = '3002'" ;
- ds = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage","Core.XgMes.Server.CoilMachiningManage.Common","GetDataSet",new object []{sql},out strOut);
- ds.Tables[0].TableName="SCM_BASE_INFO";
- Comm.Init_ComboControl(this.cmb_ClassOrder,"SCM_BASE_INFO","NAME_","ID_",ref ds);
- //班组
- sql ="SELECT ID_,NAME_ FROM SCM_BASE_INFO WHERE SORT_CODE = '3003'" ;
- ds = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage","Core.XgMes.Server.CoilMachiningManage.Common","GetDataSet",new object []{sql},out strOut);
- ds.Tables[0].TableName="SCM_BASE_INFO";
- Comm.Init_ComboControl(this.cmb_ClassTeam,"SCM_BASE_INFO","NAME_","ID_",ref ds);
-
- //堆位
- sql ="SELECT BUTTRESSCODE FROM KCJ_BUTTRESS WHERE BUTTRESSTYPE='0' AND ISVALID='1' ORDER BY BUTTRESSCODE ASC" ;
- ds = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage","Core.XgMes.Server.CoilMachiningManage.Common","GetDataSet",new object []{sql},out strOut);
- ds.Tables[0].TableName="KCJ_BUTTRESS";
- Comm.Init_ComboControl(this.cmb_Buress,"KCJ_BUTTRESS","BUTTRESSCODE","BUTTRESSCODE",ref ds);
- //工艺类型
- sql = "SELECT ID_,NAME_ FROM KCJ_BASEDATA WHERE SORT_CODE ='8077'";
- ds = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage", "Core.XgMes.Server.CoilMachiningManage.Common", "GetDataSet", new object[] { sql }, out strOut);
- ds.Tables[0].TableName = "KCJ_BASEDATA";
- Comm.Init_ComboControl(this.cmb_Gylx, "KCJ_BASEDATA", "NAME_", "ID_", ref ds);
-
-
- //sql ="SELECT ID_,NAME_ FROM KCJ_BASEDATA WHERE SORT_CODE = '8055'" ;
- //ds = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage","Core.XgMes.Server.CoilMachiningManage.Common","GetDataSet",new object []{sql},out strOut);
- //ds.Tables[0].TableName="KCJ_BASEDATA";
- ////Comm.Init_ComboControl(this.cmb_ProcLine,"KCJ_BASEDATA","NAME_","ID_",ref ds);
- //Comm.Init_ComboControl(this.cmb_ProcL,"KCJ_BASEDATA","NAME_","ID_",ref ds);
- }
- catch(Exception ex)
- {
- System.Diagnostics.Debug.WriteLine(ex.ToString());
- }
- }
- #endregion
- #region "导出报表"
- private void ExportButtressInfo()
- {
- if(this.gb_PlanState.Rows.Count > 0)
- {
- Comm.ExPortExcel(this.gb_PlanState,this.excelExporter);
- }
- else
- {
- MessageBox.Show("无信息数据,不能导出!","提示",MessageBoxButtons.OK,MessageBoxIcon.Information);
- }
- }
- #endregion
- private void chk_BNumber_CheckedChanged(object sender, System.EventArgs e)
- {
- this.txt_BNumber.Enabled=this.chk_BNumber.Checked;
- }
- private void Print(string _Conntion)
- {
- try
- {
- string strOut="";
- DataSet ds=(DataSet)Core.Mes.ClientFrameWork.ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage","Core.XgMes.Server.CoilMachiningManage.PlanDrawUp","PLAN_Print",new object[]{_Conntion},out strOut);
- Core.XgMes.Client.Print.FrmPrintBase rtp = new Core.XgMes.Client.Print.FrmPrintBase();
- rtp._rtpDataSet = ds;
- rtp._rtpFileName=@"PlanQrawUp.rpt";
- rtp.ShowDialog();
- }
- catch(Exception ex)
- {
- System.Diagnostics.Debug.WriteLine(ex.ToString());
- }
- }
- private void chk_ProcLine_CheckedChanged(object sender, System.EventArgs e)
- {
- this.cmb_IS.Enabled=this.chk_ProcLine.Checked;
- }
- }
- }
|