| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125 |
- namespace Core.StlMes.Client.Qcm
- {
- partial class FrmProPSCMSC2
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- this.components = new System.ComponentModel.Container();
- Infragistics.Win.UltraWinEditors.EditorButton editorButton1 = new Infragistics.Win.UltraWinEditors.EditorButton();
- Infragistics.Win.UltraWinEditors.EditorButton editorButton2 = new Infragistics.Win.UltraWinEditors.EditorButton("Show");
- Infragistics.Win.UltraWinEditors.EditorButton editorButton3 = new Infragistics.Win.UltraWinEditors.EditorButton("Upload");
- Infragistics.Win.UltraWinEditors.EditorButton editorButton4 = new Infragistics.Win.UltraWinEditors.EditorButton("select");
- Infragistics.Win.UltraWinEditors.EditorButton editorButton5 = new Infragistics.Win.UltraWinEditors.EditorButton("choice");
- 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.ValueListItem valueListItem1 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem2 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.Appearance appearance71 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("COM_BASE_PROCESS", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PROCESS_CODE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PROCESS_DESC");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STYLE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PROCESS_ID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("COST");
- Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATE_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATE_TIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UPDATE_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UPDATE_TIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DELETE_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DELETE_TIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("VALIDFLAG");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MEMO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MINUTE_PRODUCT");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MINUTE_WAITE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MSC");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ICOUNT");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("VALIDFLAG_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BACKLOG_SEQ");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CIC");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PIC");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SIC");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DIC");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WIC");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PROCESS_CODE_C");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MAX_COUNT");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PROCESS_SEQ_OLD");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PROCESS_CODE_C_OLD");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GIC");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BATCH_WAITE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MINUTE_PRODUCT_OUT");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MINUTE_WAITE_OUT");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BATCH_WAITE_OUT");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PROCESS_FILE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PROCESS_FILE_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CHK", 0);
- Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BTN", 1);
- Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BTN2", 2);
- Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BTN3", 3);
- Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup1 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup0", 2370295);
- Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup2 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup1", 2370296);
- Infragistics.Win.Appearance appearance78 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance79 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance80 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance81 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance82 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance83 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance84 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance 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 appearance85 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("dataTable1", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GRADECODE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GRADENAME", -1, null, 0, Infragistics.Win.UltraWinGrid.SortIndicator.Descending, false);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ASSORTMENT_CODE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ASSORTMENT_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn44 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATE_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn45 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATE_TIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn46 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UPDATE_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn47 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UPDATE_TIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn48 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DELETE_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn49 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DELETE_TIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn50 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("VALIDFLAG");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn51 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MEMO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn52 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MSC");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn53 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MSC_PLINE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn54 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STD_CODE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn55 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STD_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn56 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CIC");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn57 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PRIORITY");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn58 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Relation1");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn59 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BTN", 0);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn60 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DELETE", 1);
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand3 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Relation1", 0);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn61 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MSC");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn62 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MSC_PLINE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn63 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GRADECODE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn64 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GRADENAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn65 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("HEIGHT_MIN");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn66 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DIMATER_MIN");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn67 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DIMATER_MAX");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn68 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("HEIGHT_MIAX");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn69 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATE_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn70 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATE_TIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn71 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UPDATE_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn72 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UPDATE_TIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn73 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DELETE_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn74 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DELETE_TIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn75 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("VALIDFLAG");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn76 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MEMO");
- 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.UltraWinEditors.EditorButton editorButton6 = new Infragistics.Win.UltraWinEditors.EditorButton();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab2 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab6 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab7 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab9 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab10 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab5 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.Appearance appearance37 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand4 = new Infragistics.Win.UltraWinGrid.UltraGridBand("COM_MSC_BACKLOG", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn77 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MSC");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn78 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MSC_PLINE", -1, null, 0, Infragistics.Win.UltraWinGrid.SortIndicator.Ascending, false);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn79 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WHOLE_BACKLOG");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn80 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WHOLE_BACKLOG_DESC");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn81 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATE_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn82 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATE_TIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn83 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UPDATE_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn84 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UPDATE_TIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn85 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DELETE_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn86 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DELETE_TIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn87 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("VALIDFLAG");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn88 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("VALIDFLAG_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn89 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MEMO");
- Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn90 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PROCESS_NO");
- Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn91 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CRAFT_PATH");
- Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn92 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("AUTO_CRAFT");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn93 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("COPY_MSC_PLINE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn94 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BTN1", 0);
- 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.UltraWinTabControl.UltraTab ultraTab13 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab15 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab14 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmProPSCMSC2));
- Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand5 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn95 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SPEC_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn96 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MIN_H");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn97 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MAX_H");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn98 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MIN_D");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn99 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MAX_D");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn100 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MODEL_DESC");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn101 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MEMO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn102 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SPEC_CODE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn103 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MODEL_CODE");
- Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup3 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup0", 2370982);
- Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance32 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance66 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance72 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance33 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance27 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance25 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance69 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance65 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab1 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab8 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab11 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab12 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab3 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar1");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool3 = new Infragistics.Win.UltraWinToolbars.ButtonTool("新增");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool4 = new Infragistics.Win.UltraWinToolbars.ButtonTool("修改");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool17 = new Infragistics.Win.UltraWinToolbars.ButtonTool("保存");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool7 = new Infragistics.Win.UltraWinToolbars.ButtonTool("接箍码维护");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool11 = new Infragistics.Win.UltraWinToolbars.ButtonTool("作废");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool12 = new Infragistics.Win.UltraWinToolbars.ButtonTool("恢复");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool9 = new Infragistics.Win.UltraWinToolbars.ButtonTool("复制");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool22 = new Infragistics.Win.UltraWinToolbars.ButtonTool("粘贴");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool1 = new Infragistics.Win.UltraWinToolbars.ButtonTool("分组");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool20 = new Infragistics.Win.UltraWinToolbars.ButtonTool("取消分组");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool25 = new Infragistics.Win.UltraWinToolbars.ButtonTool("刷新");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool15 = new Infragistics.Win.UltraWinToolbars.ButtonTool("备料码维护");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool18 = new Infragistics.Win.UltraWinToolbars.ButtonTool("上传附件图片");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool28 = new Infragistics.Win.UltraWinToolbars.ButtonTool("规格维护");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool30 = new Infragistics.Win.UltraWinToolbars.ButtonTool("设定制程");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool31 = new Infragistics.Win.UltraWinToolbars.ButtonTool("复制基础MSC制程");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool33 = new Infragistics.Win.UltraWinToolbars.ButtonTool("设定接箍");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool35 = new Infragistics.Win.UltraWinToolbars.ButtonTool("设定附件图片");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool37 = new Infragistics.Win.UltraWinToolbars.ButtonTool("保存拧接");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool38 = new Infragistics.Win.UltraWinToolbars.ButtonTool("删除拧接");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool41 = new Infragistics.Win.UltraWinToolbars.ButtonTool("保存模板");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool10 = new Infragistics.Win.UltraWinToolbars.ButtonTool("保存");
- Infragistics.Win.Appearance appearance36 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool13 = new Infragistics.Win.UltraWinToolbars.ButtonTool("作废");
- Infragistics.Win.Appearance appearance118 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool14 = new Infragistics.Win.UltraWinToolbars.ButtonTool("恢复");
- Infragistics.Win.Appearance appearance119 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool2 = new Infragistics.Win.UltraWinToolbars.ButtonTool("分组");
- Infragistics.Win.Appearance appearance142 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool5 = new Infragistics.Win.UltraWinToolbars.ButtonTool("新增");
- Infragistics.Win.Appearance appearance63 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool6 = new Infragistics.Win.UltraWinToolbars.ButtonTool("修改");
- Infragistics.Win.Appearance appearance64 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool8 = new Infragistics.Win.UltraWinToolbars.ButtonTool("接箍码维护");
- Infragistics.Win.Appearance appearance133 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool16 = new Infragistics.Win.UltraWinToolbars.ButtonTool("备料码维护");
- Infragistics.Win.Appearance appearance134 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool19 = new Infragistics.Win.UltraWinToolbars.ButtonTool("上传附件图片");
- Infragistics.Win.Appearance appearance28 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool21 = new Infragistics.Win.UltraWinToolbars.ButtonTool("取消分组");
- Infragistics.Win.Appearance appearance34 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool23 = new Infragistics.Win.UltraWinToolbars.ButtonTool("复制");
- Infragistics.Win.Appearance appearance35 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool24 = new Infragistics.Win.UltraWinToolbars.ButtonTool("粘贴");
- Infragistics.Win.Appearance appearance61 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool26 = new Infragistics.Win.UltraWinToolbars.ButtonTool("刷新");
- Infragistics.Win.Appearance appearance62 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool27 = new Infragistics.Win.UltraWinToolbars.ButtonTool("规格维护");
- Infragistics.Win.Appearance appearance70 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool29 = new Infragistics.Win.UltraWinToolbars.ButtonTool("设定制程");
- Infragistics.Win.Appearance appearance68 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool32 = new Infragistics.Win.UltraWinToolbars.ButtonTool("复制基础MSC制程");
- Infragistics.Win.Appearance appearance73 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool34 = new Infragistics.Win.UltraWinToolbars.ButtonTool("设定接箍");
- Infragistics.Win.Appearance appearance26 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool36 = new Infragistics.Win.UltraWinToolbars.ButtonTool("设定附件图片");
- Infragistics.Win.Appearance appearance67 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool39 = new Infragistics.Win.UltraWinToolbars.ButtonTool("保存拧接");
- Infragistics.Win.Appearance appearance76 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool40 = new Infragistics.Win.UltraWinToolbars.ButtonTool("删除拧接");
- Infragistics.Win.Appearance appearance77 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool42 = new Infragistics.Win.UltraWinToolbars.ButtonTool("保存模板");
- Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance49 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand6 = new Infragistics.Win.UltraWinGrid.UltraGridBand("COM_PSC", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn104 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PSC", -1, null, 0, Infragistics.Win.UltraWinGrid.SortIndicator.Descending, false);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn105 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PSC_DESC");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn106 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MEMO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn107 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PRODUCCODE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn108 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PRODUCNAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn109 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STD_CODE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn110 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STD_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn111 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STEELCODE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn112 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STEELNAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn113 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STD_STYLE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn114 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STD_STYLE_DESC");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn115 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("NEW_PROC_CODE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn116 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("NEW_PROC_DESC");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn117 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PRODUC_HEAD");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn118 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("HAVE_MSC");
- Infragistics.Win.Appearance appearance50 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance51 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance52 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance53 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance54 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance55 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance56 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance57 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance58 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance59 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance60 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab4 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- this.ultraTextEditor1 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTextEditor16 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTabPageControl4 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.craftImg = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.label1 = new System.Windows.Forms.Label();
- this.txtPscCode = new System.Windows.Forms.TextBox();
- this.ckbDeleteFilter = new System.Windows.Forms.CheckBox();
- this.ultraTabPageControl5 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.ultraPanel3 = new Infragistics.Win.Misc.UltraPanel();
- this.label6 = new System.Windows.Forms.Label();
- this.label5 = new System.Windows.Forms.Label();
- this.ultraTabPageControl7 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.ultraPanel2 = new Infragistics.Win.Misc.UltraPanel();
- this.label8 = new System.Windows.Forms.Label();
- this.label7 = new System.Windows.Forms.Label();
- this.ultraTabPageControl9 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.ultraTabPageControl10 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.ultraPanel4 = new Infragistics.Win.Misc.UltraPanel();
- this.label9 = new System.Windows.Forms.Label();
- this.label10 = new System.Windows.Forms.Label();
- this.ultraTabPageControl3 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.ultraComboEditor1 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraTabPageControl13 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.ultraGrid5 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.dataSet1 = new System.Data.DataSet();
- this.dataTable1 = new System.Data.DataTable();
- this.dataColumn94 = new System.Data.DataColumn();
- this.dataColumn95 = new System.Data.DataColumn();
- this.dataColumn96 = new System.Data.DataColumn();
- this.dataColumn97 = new System.Data.DataColumn();
- this.dataColumn98 = new System.Data.DataColumn();
- this.dataColumn99 = new System.Data.DataColumn();
- this.dataColumn100 = new System.Data.DataColumn();
- this.dataColumn101 = new System.Data.DataColumn();
- this.dataColumn102 = new System.Data.DataColumn();
- this.dataColumn103 = new System.Data.DataColumn();
- this.dataColumn104 = new System.Data.DataColumn();
- this.dataColumn105 = new System.Data.DataColumn();
- this.dataColumn106 = new System.Data.DataColumn();
- this.dataColumn107 = new System.Data.DataColumn();
- this.dataColumn108 = new System.Data.DataColumn();
- this.dataColumn109 = new System.Data.DataColumn();
- this.dataColumn110 = new System.Data.DataColumn();
- this.dataColumn75 = new System.Data.DataColumn();
- this.dataTable2 = new System.Data.DataTable();
- this.dataColumn11 = new System.Data.DataColumn();
- this.dataColumn12 = new System.Data.DataColumn();
- this.dataColumn13 = new System.Data.DataColumn();
- this.dataColumn14 = new System.Data.DataColumn();
- this.dataColumn15 = new System.Data.DataColumn();
- this.dataColumn16 = new System.Data.DataColumn();
- this.dataColumn17 = new System.Data.DataColumn();
- this.dataColumn18 = new System.Data.DataColumn();
- this.dataColumn19 = new System.Data.DataColumn();
- this.dataColumn20 = new System.Data.DataColumn();
- this.dataColumn21 = new System.Data.DataColumn();
- this.dataColumn22 = new System.Data.DataColumn();
- this.dataColumn23 = new System.Data.DataColumn();
- this.dataColumn24 = new System.Data.DataColumn();
- this.dataColumn25 = new System.Data.DataColumn();
- this.dataColumn26 = new System.Data.DataColumn();
- this.dataTable3 = new System.Data.DataTable();
- this.dataColumn1 = new System.Data.DataColumn();
- this.dataColumn2 = new System.Data.DataColumn();
- this.dataColumn3 = new System.Data.DataColumn();
- this.dataColumn30 = new System.Data.DataColumn();
- this.dataColumn31 = new System.Data.DataColumn();
- this.dataColumn32 = new System.Data.DataColumn();
- this.dataColumn33 = new System.Data.DataColumn();
- this.dataColumn34 = new System.Data.DataColumn();
- this.dataColumn35 = new System.Data.DataColumn();
- this.dataColumn36 = new System.Data.DataColumn();
- this.dataColumn37 = new System.Data.DataColumn();
- this.dataColumn38 = new System.Data.DataColumn();
- this.dataColumn39 = new System.Data.DataColumn();
- this.dataColumn5 = new System.Data.DataColumn();
- this.dataColumn10 = new System.Data.DataColumn();
- this.dataTable4 = new System.Data.DataTable();
- this.dataColumn43 = new System.Data.DataColumn();
- this.dataColumn44 = new System.Data.DataColumn();
- this.dataColumn45 = new System.Data.DataColumn();
- this.dataColumn46 = new System.Data.DataColumn();
- this.dataColumn47 = new System.Data.DataColumn();
- this.dataColumn48 = new System.Data.DataColumn();
- this.dataColumn49 = new System.Data.DataColumn();
- this.dataColumn50 = new System.Data.DataColumn();
- this.dataColumn51 = new System.Data.DataColumn();
- this.dataColumn52 = new System.Data.DataColumn();
- this.dataColumn53 = new System.Data.DataColumn();
- this.dataColumn54 = new System.Data.DataColumn();
- this.dataColumn55 = new System.Data.DataColumn();
- this.dataColumn27 = new System.Data.DataColumn();
- this.dataColumn42 = new System.Data.DataColumn();
- this.dataColumn74 = new System.Data.DataColumn();
- this.dataColumn87 = new System.Data.DataColumn();
- this.dataTable5 = new System.Data.DataTable();
- this.dataColumn56 = new System.Data.DataColumn();
- this.dataColumn57 = new System.Data.DataColumn();
- this.dataColumn58 = new System.Data.DataColumn();
- this.dataColumn59 = new System.Data.DataColumn();
- this.dataColumn60 = new System.Data.DataColumn();
- this.dataColumn61 = new System.Data.DataColumn();
- this.dataColumn62 = new System.Data.DataColumn();
- this.dataColumn63 = new System.Data.DataColumn();
- this.dataColumn64 = new System.Data.DataColumn();
- this.dataColumn65 = new System.Data.DataColumn();
- this.dataColumn66 = new System.Data.DataColumn();
- this.dataColumn67 = new System.Data.DataColumn();
- this.dataColumn68 = new System.Data.DataColumn();
- this.dataColumn69 = new System.Data.DataColumn();
- this.dataColumn70 = new System.Data.DataColumn();
- this.dataColumn71 = new System.Data.DataColumn();
- this.dataColumn72 = new System.Data.DataColumn();
- this.dataColumn111 = new System.Data.DataColumn();
- this.dataColumn73 = new System.Data.DataColumn();
- this.dataColumn116 = new System.Data.DataColumn();
- this.dataColumn117 = new System.Data.DataColumn();
- this.dataColumn118 = new System.Data.DataColumn();
- this.dataColumn119 = new System.Data.DataColumn();
- this.dataColumn120 = new System.Data.DataColumn();
- this.dataColumn4 = new System.Data.DataColumn();
- this.dataColumn6 = new System.Data.DataColumn();
- this.dataColumn7 = new System.Data.DataColumn();
- this.dataColumn8 = new System.Data.DataColumn();
- this.dataColumn9 = new System.Data.DataColumn();
- this.dataColumn28 = new System.Data.DataColumn();
- this.dataColumn29 = new System.Data.DataColumn();
- this.dataColumn40 = new System.Data.DataColumn();
- this.dataColumn41 = new System.Data.DataColumn();
- this.dataColumn76 = new System.Data.DataColumn();
- this.dataColumn77 = new System.Data.DataColumn();
- this.dataTable6 = new System.Data.DataTable();
- this.dataColumn78 = new System.Data.DataColumn();
- this.dataColumn79 = new System.Data.DataColumn();
- this.dataColumn80 = new System.Data.DataColumn();
- this.dataColumn81 = new System.Data.DataColumn();
- this.dataColumn82 = new System.Data.DataColumn();
- this.dataColumn83 = new System.Data.DataColumn();
- this.dataColumn84 = new System.Data.DataColumn();
- this.dataColumn85 = new System.Data.DataColumn();
- this.dataColumn86 = new System.Data.DataColumn();
- this.ultraTabPageControl15 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.ultraGrid7 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.ultraTabPageControl14 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.lblStationPath = new System.Windows.Forms.RichTextBox();
- this.ultraTextEditor8 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTabPageControl6 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.ultraTabControl2 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
- this.ultraTabSharedControlsPage2 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
- this.ultraTabPageControl8 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.splitContainer4 = new System.Windows.Forms.SplitContainer();
- this.ultraGrid4 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.panel2 = new System.Windows.Forms.Panel();
- this.ultraTabControl4 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
- this.ultraTabSharedControlsPage4 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
- this.ultraTabPageControl11 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.ctrlMscJg1 = new Core.StlMes.Client.Qcm.CtrlMscJg();
- this.ultraTabPageControl12 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.ctrlMscBl1 = new Core.StlMes.Client.Qcm.CtrlMscBl();
- this.ultraGrid2 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.ultraTabPageControl2 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.ultraLabel1 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTabPageControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.ultraTabPageControl1_Fill_Panel = new System.Windows.Forms.Panel();
- this.splitContainer3 = new System.Windows.Forms.SplitContainer();
- this.splitContainer2 = new System.Windows.Forms.SplitContainer();
- this.controlMsc1 = new Core.StlMes.Client.Qcm.ControlMsc();
- this.ultraExpandableGroupBox3 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
- this.ultraExpandableGroupBoxPanel3 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
- this.Panel2_Fill_Panel = new System.Windows.Forms.Panel();
- this.ultraTabControl3 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
- this.ultraTabSharedControlsPage3 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
- this._Panel2_Toolbars_Dock_Area_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
- this.ultraToolbarsManager1 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
- this._Panel2_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
- this._Panel2_Toolbars_Dock_Area_Top = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
- this._Panel2_Toolbars_Dock_Area_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
- this.ultraPanel1 = new Infragistics.Win.Misc.UltraPanel();
- this.label13 = new System.Windows.Forms.Label();
- this.textBox1 = new System.Windows.Forms.TextBox();
- this.label12 = new System.Windows.Forms.Label();
- this.txtUnit = new System.Windows.Forms.TextBox();
- this.label11 = new System.Windows.Forms.Label();
- this.txtMsc = new System.Windows.Forms.TextBox();
- this.cmbProduct = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.label4 = new System.Windows.Forms.Label();
- this.label3 = new System.Windows.Forms.Label();
- this.txtSteel = new System.Windows.Forms.TextBox();
- this.label2 = new System.Windows.Forms.Label();
- this.txtStd = new System.Windows.Forms.TextBox();
- this.splitContainer1 = new System.Windows.Forms.SplitContainer();
- this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
- this.ultraExpandableGroupBox2 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
- this.ultraExpandableGroupBoxPanel2 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
- this.ultraGroupBox6 = new Infragistics.Win.Misc.UltraGroupBox();
- this.treeMsc = new System.Windows.Forms.TreeView();
- this.panel3 = new System.Windows.Forms.Panel();
- this.ultraLabel2 = new Infragistics.Win.Misc.UltraLabel();
- this.lblMsc = new System.Windows.Forms.Label();
- this.ultraExpandableGroupBox1 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
- this.ultraExpandableGroupBoxPanel1 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
- this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.ultraTabControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
- this.ultraTabSharedControlsPage1 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor16)).BeginInit();
- this.ultraTabPageControl4.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.craftImg)).BeginInit();
- this.ultraTabPageControl5.SuspendLayout();
- this.ultraPanel3.ClientArea.SuspendLayout();
- this.ultraPanel3.SuspendLayout();
- this.ultraTabPageControl7.SuspendLayout();
- this.ultraPanel2.ClientArea.SuspendLayout();
- this.ultraPanel2.SuspendLayout();
- this.ultraTabPageControl10.SuspendLayout();
- this.ultraPanel4.ClientArea.SuspendLayout();
- this.ultraPanel4.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor1)).BeginInit();
- this.ultraTabPageControl13.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid5)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable4)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable5)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable6)).BeginInit();
- this.ultraTabPageControl15.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid7)).BeginInit();
- this.ultraTabPageControl14.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor8)).BeginInit();
- this.ultraTabPageControl6.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl2)).BeginInit();
- this.ultraTabControl2.SuspendLayout();
- this.ultraTabPageControl8.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer4)).BeginInit();
- this.splitContainer4.Panel1.SuspendLayout();
- this.splitContainer4.Panel2.SuspendLayout();
- this.splitContainer4.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid4)).BeginInit();
- this.panel2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl4)).BeginInit();
- this.ultraTabControl4.SuspendLayout();
- this.ultraTabPageControl11.SuspendLayout();
- this.ultraTabPageControl12.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).BeginInit();
- this.ultraTabPageControl2.SuspendLayout();
- this.ultraTabPageControl1.SuspendLayout();
- this.ultraTabPageControl1_Fill_Panel.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer3)).BeginInit();
- this.splitContainer3.Panel1.SuspendLayout();
- this.splitContainer3.Panel2.SuspendLayout();
- this.splitContainer3.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
- this.splitContainer2.Panel1.SuspendLayout();
- this.splitContainer2.Panel2.SuspendLayout();
- this.splitContainer2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox3)).BeginInit();
- this.ultraExpandableGroupBox3.SuspendLayout();
- this.Panel2_Fill_Panel.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl3)).BeginInit();
- this.ultraTabControl3.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).BeginInit();
- this.ultraPanel1.ClientArea.SuspendLayout();
- this.ultraPanel1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.cmbProduct)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
- this.splitContainer1.Panel1.SuspendLayout();
- this.splitContainer1.Panel2.SuspendLayout();
- this.splitContainer1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
- this.ultraGroupBox1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox2)).BeginInit();
- this.ultraExpandableGroupBox2.SuspendLayout();
- this.ultraExpandableGroupBoxPanel2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox6)).BeginInit();
- this.ultraGroupBox6.SuspendLayout();
- this.panel3.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).BeginInit();
- this.ultraExpandableGroupBox1.SuspendLayout();
- this.ultraExpandableGroupBoxPanel1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).BeginInit();
- this.ultraTabControl1.SuspendLayout();
- this.SuspendLayout();
- //
- // ultraTextEditor1
- //
- editorButton1.Text = "编辑";
- this.ultraTextEditor1.ButtonsRight.Add(editorButton1);
- this.ultraTextEditor1.Location = new System.Drawing.Point(13, 122);
- this.ultraTextEditor1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraTextEditor1.Name = "ultraTextEditor1";
- this.ultraTextEditor1.Size = new System.Drawing.Size(75, 21);
- this.ultraTextEditor1.TabIndex = 1;
- this.ultraTextEditor1.Visible = false;
- this.ultraTextEditor1.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.ultraTextEditor1_EditorButtonClick);
- //
- // ultraTextEditor16
- //
- editorButton2.Key = "Show";
- editorButton2.Text = "查看";
- this.ultraTextEditor16.ButtonsLeft.Add(editorButton2);
- editorButton3.Key = "Upload";
- editorButton3.Text = "上传";
- this.ultraTextEditor16.ButtonsRight.Add(editorButton3);
- this.ultraTextEditor16.Location = new System.Drawing.Point(205, 124);
- this.ultraTextEditor16.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraTextEditor16.Name = "ultraTextEditor16";
- this.ultraTextEditor16.ReadOnly = true;
- this.ultraTextEditor16.Size = new System.Drawing.Size(91, 21);
- this.ultraTextEditor16.TabIndex = 75;
- this.ultraTextEditor16.Visible = false;
- this.ultraTextEditor16.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.ultraTextEditor16_EditorButtonClick);
- //
- // ultraTabPageControl4
- //
- this.ultraTabPageControl4.Controls.Add(this.craftImg);
- this.ultraTabPageControl4.Controls.Add(this.label1);
- this.ultraTabPageControl4.Controls.Add(this.txtPscCode);
- this.ultraTabPageControl4.Controls.Add(this.ckbDeleteFilter);
- this.ultraTabPageControl4.Location = new System.Drawing.Point(2, 21);
- this.ultraTabPageControl4.Name = "ultraTabPageControl4";
- this.ultraTabPageControl4.Size = new System.Drawing.Size(619, 371);
- //
- // craftImg
- //
- editorButton4.Key = "select";
- editorButton4.Text = "查看";
- this.craftImg.ButtonsLeft.Add(editorButton4);
- editorButton5.Key = "choice";
- editorButton5.Text = "上传";
- this.craftImg.ButtonsRight.Add(editorButton5);
- this.craftImg.Location = new System.Drawing.Point(386, 105);
- this.craftImg.Name = "craftImg";
- this.craftImg.Size = new System.Drawing.Size(137, 21);
- this.craftImg.TabIndex = 42;
- this.craftImg.Visible = false;
- this.craftImg.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.craftImg_EditorButtonClick);
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Location = new System.Drawing.Point(34, 114);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(65, 12);
- this.label1.TabIndex = 0;
- this.label1.Text = "产品规范码";
- this.label1.Visible = false;
- //
- // txtPscCode
- //
- this.txtPscCode.AcceptsTab = true;
- this.txtPscCode.Location = new System.Drawing.Point(114, 110);
- this.txtPscCode.Name = "txtPscCode";
- this.txtPscCode.Size = new System.Drawing.Size(149, 21);
- this.txtPscCode.TabIndex = 1;
- this.txtPscCode.Visible = false;
- //
- // ckbDeleteFilter
- //
- this.ckbDeleteFilter.AutoSize = true;
- this.ckbDeleteFilter.Checked = true;
- this.ckbDeleteFilter.CheckState = System.Windows.Forms.CheckState.Checked;
- this.ckbDeleteFilter.Location = new System.Drawing.Point(284, 112);
- this.ckbDeleteFilter.Name = "ckbDeleteFilter";
- this.ckbDeleteFilter.Size = new System.Drawing.Size(72, 16);
- this.ckbDeleteFilter.TabIndex = 12;
- this.ckbDeleteFilter.Text = "包含无效";
- this.ckbDeleteFilter.UseVisualStyleBackColor = true;
- this.ckbDeleteFilter.Visible = false;
- //
- // ultraTabPageControl5
- //
- this.ultraTabPageControl5.Controls.Add(this.ultraPanel3);
- this.ultraTabPageControl5.Location = new System.Drawing.Point(-7500, -8000);
- this.ultraTabPageControl5.Name = "ultraTabPageControl5";
- this.ultraTabPageControl5.Size = new System.Drawing.Size(619, 371);
- //
- // ultraPanel3
- //
- appearance29.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(202)))), ((int)(((byte)(222)))), ((int)(((byte)(247)))));
- this.ultraPanel3.Appearance = appearance29;
- //
- // ultraPanel3.ClientArea
- //
- this.ultraPanel3.ClientArea.Controls.Add(this.label6);
- this.ultraPanel3.ClientArea.Controls.Add(this.label5);
- this.ultraPanel3.Dock = System.Windows.Forms.DockStyle.Top;
- this.ultraPanel3.Location = new System.Drawing.Point(0, 0);
- this.ultraPanel3.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraPanel3.Name = "ultraPanel3";
- this.ultraPanel3.Size = new System.Drawing.Size(619, 22);
- this.ultraPanel3.TabIndex = 15;
- //
- // label6
- //
- this.label6.AutoSize = true;
- this.label6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label6.Location = new System.Drawing.Point(9, 6);
- this.label6.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(70, 12);
- this.label6.TabIndex = 14;
- this.label6.Text = "理化公式:";
- //
- // label5
- //
- this.label5.AutoSize = true;
- this.label5.Location = new System.Drawing.Point(72, 6);
- this.label5.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(551, 12);
- this.label5.TabIndex = 13;
- this.label5.Text = "Axc-拉伸试样面积,^-幂次方(例:5的3次方表示为:5^3),t-规定壁厚,C-碳含量,Value-附加标准符号";
- //
- // ultraTabPageControl7
- //
- this.ultraTabPageControl7.Controls.Add(this.ultraPanel2);
- this.ultraTabPageControl7.Location = new System.Drawing.Point(-7500, -8000);
- this.ultraTabPageControl7.Name = "ultraTabPageControl7";
- this.ultraTabPageControl7.Size = new System.Drawing.Size(619, 371);
- //
- // ultraPanel2
- //
- appearance30.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(202)))), ((int)(((byte)(222)))), ((int)(((byte)(247)))));
- this.ultraPanel2.Appearance = appearance30;
- //
- // ultraPanel2.ClientArea
- //
- this.ultraPanel2.ClientArea.Controls.Add(this.label8);
- this.ultraPanel2.ClientArea.Controls.Add(this.label7);
- this.ultraPanel2.Dock = System.Windows.Forms.DockStyle.Top;
- this.ultraPanel2.Location = new System.Drawing.Point(0, 0);
- this.ultraPanel2.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraPanel2.Name = "ultraPanel2";
- this.ultraPanel2.Size = new System.Drawing.Size(619, 19);
- this.ultraPanel2.TabIndex = 15;
- //
- // label8
- //
- this.label8.AutoSize = true;
- this.label8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label8.Location = new System.Drawing.Point(8, 4);
- this.label8.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label8.Name = "label8";
- this.label8.Size = new System.Drawing.Size(70, 12);
- this.label8.TabIndex = 15;
- this.label8.Text = "公差公式:";
- //
- // label7
- //
- this.label7.AutoSize = true;
- this.label7.Location = new System.Drawing.Point(73, 4);
- this.label7.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label7.Name = "label7";
- this.label7.Size = new System.Drawing.Size(125, 12);
- this.label7.TabIndex = 14;
- this.label7.Text = "t-壁厚 D-外径 L-长度";
- //
- // ultraTabPageControl9
- //
- this.ultraTabPageControl9.Location = new System.Drawing.Point(-7500, -8000);
- this.ultraTabPageControl9.Name = "ultraTabPageControl9";
- this.ultraTabPageControl9.Size = new System.Drawing.Size(619, 371);
- //
- // ultraTabPageControl10
- //
- this.ultraTabPageControl10.Controls.Add(this.ultraPanel4);
- this.ultraTabPageControl10.Location = new System.Drawing.Point(-7500, -8000);
- this.ultraTabPageControl10.Name = "ultraTabPageControl10";
- this.ultraTabPageControl10.Size = new System.Drawing.Size(619, 371);
- //
- // ultraPanel4
- //
- appearance31.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(202)))), ((int)(((byte)(222)))), ((int)(((byte)(247)))));
- this.ultraPanel4.Appearance = appearance31;
- //
- // ultraPanel4.ClientArea
- //
- this.ultraPanel4.ClientArea.Controls.Add(this.label9);
- this.ultraPanel4.ClientArea.Controls.Add(this.label10);
- this.ultraPanel4.Dock = System.Windows.Forms.DockStyle.Top;
- this.ultraPanel4.Location = new System.Drawing.Point(0, 0);
- this.ultraPanel4.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraPanel4.Name = "ultraPanel4";
- this.ultraPanel4.Size = new System.Drawing.Size(619, 21);
- this.ultraPanel4.TabIndex = 15;
- //
- // label9
- //
- this.label9.AutoSize = true;
- this.label9.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label9.Location = new System.Drawing.Point(2, 4);
- this.label9.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label9.Name = "label9";
- this.label9.Size = new System.Drawing.Size(97, 12);
- this.label9.TabIndex = 17;
- this.label9.Text = "试验压力(公式)";
- //
- // label10
- //
- this.label10.AutoSize = true;
- this.label10.Location = new System.Drawing.Point(98, 4);
- this.label10.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label10.Name = "label10";
- this.label10.Size = new System.Drawing.Size(413, 12);
- this.label10.TabIndex = 16;
- this.label10.Text = "f-水压系数,YS-最小屈服强度,TS-最小抗拉强度,D:规定外径,t:规定壁厚";
- //
- // ultraTabPageControl3
- //
- this.ultraTabPageControl3.Location = new System.Drawing.Point(-7500, -8000);
- this.ultraTabPageControl3.Name = "ultraTabPageControl3";
- this.ultraTabPageControl3.Size = new System.Drawing.Size(619, 371);
- //
- // ultraComboEditor1
- //
- valueListItem1.DataValue = "0";
- valueListItem1.DisplayText = "否";
- valueListItem2.DataValue = "1";
- valueListItem2.DisplayText = "是";
- this.ultraComboEditor1.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem1,
- valueListItem2});
- this.ultraComboEditor1.Location = new System.Drawing.Point(103, 124);
- this.ultraComboEditor1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraComboEditor1.Name = "ultraComboEditor1";
- this.ultraComboEditor1.Size = new System.Drawing.Size(84, 21);
- this.ultraComboEditor1.TabIndex = 2;
- this.ultraComboEditor1.Text = "是否自动工艺文件";
- this.ultraComboEditor1.Visible = false;
- //
- // ultraTabPageControl13
- //
- this.ultraTabPageControl13.Controls.Add(this.ultraTextEditor16);
- this.ultraTabPageControl13.Controls.Add(this.ultraTextEditor1);
- this.ultraTabPageControl13.Controls.Add(this.ultraComboEditor1);
- this.ultraTabPageControl13.Controls.Add(this.ultraGrid5);
- this.ultraTabPageControl13.Location = new System.Drawing.Point(1, 23);
- this.ultraTabPageControl13.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraTabPageControl13.Name = "ultraTabPageControl13";
- this.ultraTabPageControl13.Size = new System.Drawing.Size(619, 298);
- //
- // ultraGrid5
- //
- this.ultraGrid5.DataMember = "COM_BASE_PROCESS";
- this.ultraGrid5.DataSource = this.dataSet1;
- appearance71.BackColor = System.Drawing.SystemColors.Window;
- appearance71.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid5.DisplayLayout.Appearance = appearance71;
- ultraGridColumn1.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn1.Header.VisiblePosition = 0;
- ultraGridColumn1.RowLayoutColumnInfo.OriginX = 1;
- ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn1.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(45, 0);
- ultraGridColumn1.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 52);
- ultraGridColumn1.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn1.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn1.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn2.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn2.Header.VisiblePosition = 1;
- ultraGridColumn2.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn2.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(84, 0);
- ultraGridColumn2.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 52);
- ultraGridColumn2.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn2.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn2.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn3.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn3.Header.VisiblePosition = 2;
- ultraGridColumn3.Hidden = true;
- ultraGridColumn3.RowLayoutColumnInfo.OriginX = 14;
- ultraGridColumn3.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn3.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(75, 0);
- ultraGridColumn3.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 52);
- ultraGridColumn3.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn3.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn3.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn4.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn4.Header.VisiblePosition = 4;
- ultraGridColumn4.Hidden = true;
- ultraGridColumn4.RowLayoutColumnInfo.OriginX = 15;
- ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn4.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(82, 0);
- ultraGridColumn4.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 52);
- ultraGridColumn4.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn4.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn4.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- appearance9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
- ultraGridColumn5.CellAppearance = appearance9;
- ultraGridColumn5.Header.VisiblePosition = 5;
- ultraGridColumn5.RowLayoutColumnInfo.OriginX = 8;
- ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn5.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(44, 0);
- ultraGridColumn5.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 52);
- ultraGridColumn5.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn5.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn5.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn6.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn6.Header.VisiblePosition = 6;
- ultraGridColumn6.Hidden = true;
- ultraGridColumn6.RowLayoutColumnInfo.OriginX = 24;
- ultraGridColumn6.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn6.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn6.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn6.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn7.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn7.Header.VisiblePosition = 7;
- ultraGridColumn7.Hidden = true;
- ultraGridColumn7.RowLayoutColumnInfo.OriginX = 26;
- ultraGridColumn7.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn7.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn7.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn7.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn8.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn8.Header.VisiblePosition = 8;
- ultraGridColumn8.Hidden = true;
- ultraGridColumn8.RowLayoutColumnInfo.OriginX = 28;
- ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn8.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn8.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn8.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn9.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn9.Header.VisiblePosition = 9;
- ultraGridColumn9.Hidden = true;
- ultraGridColumn9.RowLayoutColumnInfo.OriginX = 30;
- ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn9.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn9.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn9.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn10.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn10.Header.VisiblePosition = 10;
- ultraGridColumn10.Hidden = true;
- ultraGridColumn10.RowLayoutColumnInfo.OriginX = 32;
- ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn10.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn10.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn10.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn11.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn11.Header.VisiblePosition = 11;
- ultraGridColumn11.Hidden = true;
- ultraGridColumn11.RowLayoutColumnInfo.OriginX = 36;
- ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn11.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn11.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn11.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn12.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn12.Header.VisiblePosition = 12;
- ultraGridColumn12.Hidden = true;
- ultraGridColumn12.RowLayoutColumnInfo.OriginX = 22;
- ultraGridColumn12.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn12.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(76, 0);
- ultraGridColumn12.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn12.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn12.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn13.ButtonDisplayStyle = Infragistics.Win.UltraWinGrid.ButtonDisplayStyle.Always;
- ultraGridColumn13.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn13.EditorComponent = this.ultraTextEditor1;
- ultraGridColumn13.Header.VisiblePosition = 3;
- ultraGridColumn13.RowLayoutColumnInfo.OriginX = 9;
- ultraGridColumn13.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn13.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn13.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn13.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn14.Header.VisiblePosition = 13;
- ultraGridColumn14.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn14.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn14.RowLayoutColumnInfo.ParentGroupIndex = 0;
- ultraGridColumn14.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
- ultraGridColumn14.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(52, 0);
- ultraGridColumn14.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn14.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn14.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn15.Header.VisiblePosition = 14;
- ultraGridColumn15.RowLayoutColumnInfo.OriginX = 1;
- ultraGridColumn15.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn15.RowLayoutColumnInfo.ParentGroupIndex = 0;
- ultraGridColumn15.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
- ultraGridColumn15.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(54, 0);
- ultraGridColumn15.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn15.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn15.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn16.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn16.Header.VisiblePosition = 15;
- ultraGridColumn16.Hidden = true;
- ultraGridColumn16.RowLayoutColumnInfo.OriginX = 38;
- ultraGridColumn16.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn16.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn16.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn16.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn17.Header.VisiblePosition = 16;
- ultraGridColumn17.RowLayoutColumnInfo.OriginX = 7;
- ultraGridColumn17.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn17.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(63, 0);
- ultraGridColumn17.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 52);
- ultraGridColumn17.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn17.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn17.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn18.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn18.Header.VisiblePosition = 17;
- ultraGridColumn18.Hidden = true;
- ultraGridColumn18.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn19.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn19.Header.VisiblePosition = 18;
- ultraGridColumn19.Hidden = true;
- ultraGridColumn19.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn20.Header.VisiblePosition = 19;
- ultraGridColumn20.Hidden = true;
- ultraGridColumn20.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn21.Header.VisiblePosition = 20;
- ultraGridColumn21.Hidden = true;
- ultraGridColumn21.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn22.Header.VisiblePosition = 21;
- ultraGridColumn22.Hidden = true;
- ultraGridColumn22.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn23.Header.VisiblePosition = 22;
- ultraGridColumn23.Hidden = true;
- ultraGridColumn23.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn24.Header.VisiblePosition = 23;
- ultraGridColumn24.Hidden = true;
- ultraGridColumn24.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn25.Header.VisiblePosition = 24;
- ultraGridColumn25.RowLayoutColumnInfo.OriginX = 3;
- ultraGridColumn25.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn25.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(83, 0);
- ultraGridColumn25.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 52);
- ultraGridColumn25.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn25.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn25.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn26.Header.VisiblePosition = 25;
- ultraGridColumn26.Hidden = true;
- ultraGridColumn26.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn26.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn26.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn26.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn26.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn27.Header.VisiblePosition = 26;
- ultraGridColumn27.Hidden = true;
- ultraGridColumn27.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn28.Header.VisiblePosition = 27;
- ultraGridColumn28.Hidden = true;
- ultraGridColumn28.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn29.Header.VisiblePosition = 28;
- ultraGridColumn29.Hidden = true;
- ultraGridColumn29.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn30.Header.VisiblePosition = 29;
- ultraGridColumn30.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn30.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn30.RowLayoutColumnInfo.ParentGroupIndex = 0;
- ultraGridColumn30.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
- ultraGridColumn30.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(86, 0);
- ultraGridColumn30.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn30.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn30.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn31.Header.VisiblePosition = 30;
- ultraGridColumn31.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn31.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn31.RowLayoutColumnInfo.ParentGroupIndex = 1;
- ultraGridColumn31.RowLayoutColumnInfo.ParentGroupKey = "NewGroup1";
- ultraGridColumn31.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(51, 0);
- ultraGridColumn31.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn31.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn31.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn32.Header.VisiblePosition = 31;
- ultraGridColumn32.RowLayoutColumnInfo.OriginX = 1;
- ultraGridColumn32.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn32.RowLayoutColumnInfo.ParentGroupIndex = 1;
- ultraGridColumn32.RowLayoutColumnInfo.ParentGroupKey = "NewGroup1";
- ultraGridColumn32.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(53, 0);
- ultraGridColumn32.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn32.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn32.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn33.Header.VisiblePosition = 32;
- ultraGridColumn33.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn33.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn33.RowLayoutColumnInfo.ParentGroupIndex = 1;
- ultraGridColumn33.RowLayoutColumnInfo.ParentGroupKey = "NewGroup1";
- ultraGridColumn33.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(84, 0);
- ultraGridColumn33.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn33.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn33.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn34.ButtonDisplayStyle = Infragistics.Win.UltraWinGrid.ButtonDisplayStyle.Always;
- ultraGridColumn34.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn34.EditorComponent = this.ultraTextEditor16;
- ultraGridColumn34.Header.VisiblePosition = 33;
- ultraGridColumn34.Hidden = true;
- ultraGridColumn34.RowLayoutColumnInfo.OriginX = 11;
- ultraGridColumn34.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn34.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(209, 0);
- ultraGridColumn34.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 58);
- ultraGridColumn34.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn34.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn34.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn35.ButtonDisplayStyle = Infragistics.Win.UltraWinGrid.ButtonDisplayStyle.Always;
- ultraGridColumn35.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn35.EditorComponent = this.ultraTextEditor16;
- ultraGridColumn35.Header.VisiblePosition = 34;
- ultraGridColumn35.RowLayoutColumnInfo.OriginX = 12;
- ultraGridColumn35.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn35.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(201, 0);
- ultraGridColumn35.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn35.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn35.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- appearance10.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
- ultraGridColumn36.CellAppearance = appearance10;
- ultraGridColumn36.DataType = typeof(bool);
- ultraGridColumn36.Header.Caption = "选择";
- ultraGridColumn36.Header.VisiblePosition = 35;
- ultraGridColumn36.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn36.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn36.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(35, 0);
- ultraGridColumn36.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 52);
- ultraGridColumn36.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn36.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn36.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn36.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.CheckBox;
- appearance11.TextHAlignAsString = "Center";
- ultraGridColumn37.CellAppearance = appearance11;
- ultraGridColumn37.DefaultCellValue = "选择";
- ultraGridColumn37.Header.Caption = "工序点维护";
- ultraGridColumn37.Header.VisiblePosition = 36;
- ultraGridColumn37.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn37.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn37.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(61, 0);
- ultraGridColumn37.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 52);
- ultraGridColumn37.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn37.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn37.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn37.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.Button;
- appearance13.TextHAlignAsString = "Center";
- ultraGridColumn38.CellAppearance = appearance13;
- ultraGridColumn38.Header.Caption = "内控标准维护";
- ultraGridColumn38.Header.VisiblePosition = 37;
- ultraGridColumn38.RowLayoutColumnInfo.OriginX = 5;
- ultraGridColumn38.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn38.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(66, 0);
- ultraGridColumn38.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 52);
- ultraGridColumn38.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn38.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn38.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn38.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.Button;
- appearance14.TextHAlignAsString = "Center";
- ultraGridColumn39.CellAppearance = appearance14;
- ultraGridColumn39.Header.Caption = "工艺参数";
- ultraGridColumn39.Header.VisiblePosition = 38;
- ultraGridColumn39.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn39.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn39.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(46, 0);
- ultraGridColumn39.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 52);
- ultraGridColumn39.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn39.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn39.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn39.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.Button;
- 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,
- ultraGridColumn31,
- ultraGridColumn32,
- ultraGridColumn33,
- ultraGridColumn34,
- ultraGridColumn35,
- ultraGridColumn36,
- ultraGridColumn37,
- ultraGridColumn38,
- ultraGridColumn39});
- ultraGridGroup1.Header.Caption = "自炼(小时/百吨)";
- ultraGridGroup1.Key = "NewGroup0";
- ultraGridGroup1.RowLayoutGroupInfo.LabelSpan = 1;
- ultraGridGroup1.RowLayoutGroupInfo.OriginX = 14;
- ultraGridGroup1.RowLayoutGroupInfo.OriginY = 0;
- ultraGridGroup1.RowLayoutGroupInfo.PreferredLabelSize = new System.Drawing.Size(0, 24);
- ultraGridGroup1.RowLayoutGroupInfo.SpanX = 3;
- ultraGridGroup1.RowLayoutGroupInfo.SpanY = 2;
- ultraGridGroup2.Header.Caption = "外购(小时/百吨)";
- ultraGridGroup2.Key = "NewGroup1";
- ultraGridGroup2.RowLayoutGroupInfo.LabelSpan = 1;
- ultraGridGroup2.RowLayoutGroupInfo.OriginX = 17;
- ultraGridGroup2.RowLayoutGroupInfo.OriginY = 0;
- ultraGridGroup2.RowLayoutGroupInfo.PreferredLabelSize = new System.Drawing.Size(0, 24);
- ultraGridGroup2.RowLayoutGroupInfo.SpanX = 3;
- ultraGridGroup2.RowLayoutGroupInfo.SpanY = 2;
- ultraGridBand1.Groups.AddRange(new Infragistics.Win.UltraWinGrid.UltraGridGroup[] {
- ultraGridGroup1,
- ultraGridGroup2});
- ultraGridBand1.Override.SelectedAppearancesEnabled = Infragistics.Win.DefaultableBoolean.False;
- ultraGridBand1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
- this.ultraGrid5.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
- this.ultraGrid5.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid5.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance78.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance78.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance78.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance78.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid5.DisplayLayout.GroupByBox.Appearance = appearance78;
- appearance79.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid5.DisplayLayout.GroupByBox.BandLabelAppearance = appearance79;
- this.ultraGrid5.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid5.DisplayLayout.GroupByBox.Hidden = true;
- appearance80.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance80.BackColor2 = System.Drawing.SystemColors.Control;
- appearance80.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance80.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid5.DisplayLayout.GroupByBox.PromptAppearance = appearance80;
- this.ultraGrid5.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid5.DisplayLayout.MaxRowScrollRegions = 1;
- appearance81.BackColor = System.Drawing.SystemColors.Window;
- appearance81.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid5.DisplayLayout.Override.ActiveCellAppearance = appearance81;
- appearance82.BackColor = System.Drawing.SystemColors.Highlight;
- appearance82.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid5.DisplayLayout.Override.ActiveRowAppearance = appearance82;
- this.ultraGrid5.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid5.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance83.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid5.DisplayLayout.Override.CardAreaAppearance = appearance83;
- appearance84.BorderColor = System.Drawing.Color.Silver;
- appearance84.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid5.DisplayLayout.Override.CellAppearance = appearance84;
- this.ultraGrid5.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid5.DisplayLayout.Override.CellPadding = 0;
- appearance97.BackColor = System.Drawing.SystemColors.Control;
- appearance97.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance97.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance97.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance97.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid5.DisplayLayout.Override.GroupByRowAppearance = appearance97;
- appearance98.TextHAlignAsString = "Left";
- this.ultraGrid5.DisplayLayout.Override.HeaderAppearance = appearance98;
- this.ultraGrid5.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid5.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance99.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
- this.ultraGrid5.DisplayLayout.Override.HotTrackRowCellAppearance = appearance99;
- appearance100.BackColor = System.Drawing.SystemColors.Window;
- appearance100.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid5.DisplayLayout.Override.RowAppearance = appearance100;
- this.ultraGrid5.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance101.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid5.DisplayLayout.Override.TemplateAddRowAppearance = appearance101;
- this.ultraGrid5.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid5.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid5.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraGrid5.Location = new System.Drawing.Point(0, 0);
- this.ultraGrid5.Name = "ultraGrid5";
- this.ultraGrid5.Size = new System.Drawing.Size(619, 298);
- this.ultraGrid5.TabIndex = 0;
- this.ultraGrid5.Text = "ultraGrid5";
- this.ultraGrid5.InitializeRow += new Infragistics.Win.UltraWinGrid.InitializeRowEventHandler(this.ultraGrid5_InitializeRow);
- this.ultraGrid5.CellChange += new Infragistics.Win.UltraWinGrid.CellEventHandler(this.ultraGrid5_CellChange);
- this.ultraGrid5.ClickCellButton += new Infragistics.Win.UltraWinGrid.CellEventHandler(this.ultraGrid5_ClickCellButton);
- //
- // dataSet1
- //
- this.dataSet1.DataSetName = "NewDataSet";
- this.dataSet1.Relations.AddRange(new System.Data.DataRelation[] {
- new System.Data.DataRelation("Relation1", "dataTable1", "dataTable2", new string[] {
- "MSC",
- "MSC_PLINE",
- "GRADECODE"}, new string[] {
- "MSC",
- "MSC_PLINE",
- "GRADECODE"}, false)});
- this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
- this.dataTable1,
- this.dataTable2,
- this.dataTable3,
- this.dataTable4,
- this.dataTable5,
- this.dataTable6});
- //
- // dataTable1
- //
- this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn94,
- this.dataColumn95,
- this.dataColumn96,
- this.dataColumn97,
- this.dataColumn98,
- this.dataColumn99,
- this.dataColumn100,
- this.dataColumn101,
- this.dataColumn102,
- this.dataColumn103,
- this.dataColumn104,
- this.dataColumn105,
- this.dataColumn106,
- this.dataColumn107,
- this.dataColumn108,
- this.dataColumn109,
- this.dataColumn110,
- this.dataColumn75});
- this.dataTable1.Constraints.AddRange(new System.Data.Constraint[] {
- new System.Data.UniqueConstraint("Constraint1", new string[] {
- "MSC",
- "MSC_PLINE",
- "GRADECODE"}, false)});
- this.dataTable1.TableName = "dataTable1";
- //
- // dataColumn94
- //
- this.dataColumn94.Caption = "钢种代码";
- this.dataColumn94.ColumnName = "GRADECODE";
- //
- // dataColumn95
- //
- this.dataColumn95.Caption = "钢种名称";
- this.dataColumn95.ColumnName = "GRADENAME";
- //
- // dataColumn96
- //
- this.dataColumn96.Caption = "钢种分类代码";
- this.dataColumn96.ColumnName = "ASSORTMENT_CODE";
- //
- // dataColumn97
- //
- this.dataColumn97.Caption = "钢种分类名称";
- this.dataColumn97.ColumnName = "ASSORTMENT_NAME";
- //
- // dataColumn98
- //
- this.dataColumn98.Caption = "创建人";
- this.dataColumn98.ColumnName = "CREATE_NAME";
- //
- // dataColumn99
- //
- this.dataColumn99.Caption = "创建时间";
- this.dataColumn99.ColumnName = "CREATE_TIME";
- //
- // dataColumn100
- //
- this.dataColumn100.Caption = "修改人";
- this.dataColumn100.ColumnName = "UPDATE_NAME";
- //
- // dataColumn101
- //
- this.dataColumn101.Caption = "修改时间";
- this.dataColumn101.ColumnName = "UPDATE_TIME";
- //
- // dataColumn102
- //
- this.dataColumn102.Caption = "删除人";
- this.dataColumn102.ColumnName = "DELETE_NAME";
- //
- // dataColumn103
- //
- this.dataColumn103.Caption = "删除时间";
- this.dataColumn103.ColumnName = "DELETE_TIME";
- //
- // dataColumn104
- //
- this.dataColumn104.Caption = "有效标志";
- this.dataColumn104.ColumnName = "VALIDFLAG";
- //
- // dataColumn105
- //
- this.dataColumn105.Caption = "备注";
- this.dataColumn105.ColumnName = "MEMO";
- //
- // dataColumn106
- //
- this.dataColumn106.Caption = "冶金规范码";
- this.dataColumn106.ColumnName = "MSC";
- //
- // dataColumn107
- //
- this.dataColumn107.Caption = "产线号";
- this.dataColumn107.ColumnName = "MSC_PLINE";
- //
- // dataColumn108
- //
- this.dataColumn108.Caption = "内控标准代码";
- this.dataColumn108.ColumnName = "STD_CODE";
- //
- // dataColumn109
- //
- this.dataColumn109.Caption = "内控标准名称";
- this.dataColumn109.ColumnName = "STD_NAME";
- //
- // dataColumn110
- //
- this.dataColumn110.Caption = "成分标准索引号";
- this.dataColumn110.ColumnName = "CIC";
- //
- // dataColumn75
- //
- this.dataColumn75.Caption = "优先级";
- this.dataColumn75.ColumnName = "PRIORITY";
- //
- // dataTable2
- //
- this.dataTable2.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn11,
- this.dataColumn12,
- this.dataColumn13,
- this.dataColumn14,
- this.dataColumn15,
- this.dataColumn16,
- this.dataColumn17,
- this.dataColumn18,
- this.dataColumn19,
- this.dataColumn20,
- this.dataColumn21,
- this.dataColumn22,
- this.dataColumn23,
- this.dataColumn24,
- this.dataColumn25,
- this.dataColumn26});
- this.dataTable2.Constraints.AddRange(new System.Data.Constraint[] {
- new System.Data.ForeignKeyConstraint("Relation1", "dataTable1", new string[] {
- "MSC",
- "MSC_PLINE",
- "GRADECODE"}, new string[] {
- "MSC",
- "MSC_PLINE",
- "GRADECODE"}, System.Data.AcceptRejectRule.None, System.Data.Rule.Cascade, System.Data.Rule.Cascade)});
- this.dataTable2.TableName = "dataTable2";
- //
- // dataColumn11
- //
- this.dataColumn11.Caption = "冶金规范码";
- this.dataColumn11.ColumnName = "MSC";
- //
- // dataColumn12
- //
- this.dataColumn12.Caption = "全程产线号";
- this.dataColumn12.ColumnName = "MSC_PLINE";
- //
- // dataColumn13
- //
- this.dataColumn13.Caption = "钢种代码";
- this.dataColumn13.ColumnName = "GRADECODE";
- //
- // dataColumn14
- //
- this.dataColumn14.Caption = "钢种名称";
- this.dataColumn14.ColumnName = "GRADENAME";
- //
- // dataColumn15
- //
- this.dataColumn15.Caption = "壁厚(下限)";
- this.dataColumn15.ColumnName = "HEIGHT_MIN";
- //
- // dataColumn16
- //
- this.dataColumn16.Caption = "外径(下限)";
- this.dataColumn16.ColumnName = "DIMATER_MIN";
- //
- // dataColumn17
- //
- this.dataColumn17.Caption = "外径(上限)";
- this.dataColumn17.ColumnName = "DIMATER_MAX";
- //
- // dataColumn18
- //
- this.dataColumn18.Caption = "壁厚(上限)";
- this.dataColumn18.ColumnName = "HEIGHT_MIAX";
- //
- // dataColumn19
- //
- this.dataColumn19.Caption = "创建人";
- this.dataColumn19.ColumnName = "CREATE_NAME";
- //
- // dataColumn20
- //
- this.dataColumn20.Caption = "创建时间";
- this.dataColumn20.ColumnName = "CREATE_TIME";
- //
- // dataColumn21
- //
- this.dataColumn21.Caption = "修改人";
- this.dataColumn21.ColumnName = "UPDATE_NAME";
- //
- // dataColumn22
- //
- this.dataColumn22.Caption = "修改时间";
- this.dataColumn22.ColumnName = "UPDATE_TIME";
- //
- // dataColumn23
- //
- this.dataColumn23.Caption = "删除人";
- this.dataColumn23.ColumnName = "DELETE_NAME";
- //
- // dataColumn24
- //
- this.dataColumn24.Caption = "删除时间";
- this.dataColumn24.ColumnName = "DELETE_TIME";
- //
- // dataColumn25
- //
- this.dataColumn25.Caption = "有效标志";
- this.dataColumn25.ColumnName = "VALIDFLAG";
- //
- // dataColumn26
- //
- this.dataColumn26.Caption = "备注";
- this.dataColumn26.ColumnName = "MEMO";
- //
- // dataTable3
- //
- this.dataTable3.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn1,
- this.dataColumn2,
- this.dataColumn3,
- this.dataColumn30,
- this.dataColumn31,
- this.dataColumn32,
- this.dataColumn33,
- this.dataColumn34,
- this.dataColumn35,
- this.dataColumn36,
- this.dataColumn37,
- this.dataColumn38,
- this.dataColumn39,
- this.dataColumn5,
- this.dataColumn10});
- this.dataTable3.TableName = "COM_PSC";
- //
- // dataColumn1
- //
- this.dataColumn1.Caption = "产品规范码";
- this.dataColumn1.ColumnName = "PSC";
- //
- // dataColumn2
- //
- this.dataColumn2.Caption = "产品规范描述";
- this.dataColumn2.ColumnName = "PSC_DESC";
- //
- // dataColumn3
- //
- this.dataColumn3.Caption = "备注";
- this.dataColumn3.ColumnName = "MEMO";
- //
- // dataColumn30
- //
- this.dataColumn30.ColumnName = "PRODUCCODE";
- //
- // dataColumn31
- //
- this.dataColumn31.ColumnName = "PRODUCNAME";
- //
- // dataColumn32
- //
- this.dataColumn32.ColumnName = "STD_CODE";
- //
- // dataColumn33
- //
- this.dataColumn33.ColumnName = "STD_NAME";
- //
- // dataColumn34
- //
- this.dataColumn34.ColumnName = "STEELCODE";
- //
- // dataColumn35
- //
- this.dataColumn35.ColumnName = "STEELNAME";
- //
- // dataColumn36
- //
- this.dataColumn36.ColumnName = "STD_STYLE";
- //
- // dataColumn37
- //
- this.dataColumn37.ColumnName = "STD_STYLE_DESC";
- //
- // dataColumn38
- //
- this.dataColumn38.ColumnName = "NEW_PROC_CODE";
- //
- // dataColumn39
- //
- this.dataColumn39.ColumnName = "NEW_PROC_DESC";
- //
- // dataColumn5
- //
- this.dataColumn5.Caption = "产品大类";
- this.dataColumn5.ColumnName = "PRODUC_HEAD";
- //
- // dataColumn10
- //
- this.dataColumn10.Caption = "是否有非无效的MSC";
- this.dataColumn10.ColumnName = "HAVE_MSC";
- //
- // dataTable4
- //
- this.dataTable4.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn43,
- this.dataColumn44,
- this.dataColumn45,
- this.dataColumn46,
- this.dataColumn47,
- this.dataColumn48,
- this.dataColumn49,
- this.dataColumn50,
- this.dataColumn51,
- this.dataColumn52,
- this.dataColumn53,
- this.dataColumn54,
- this.dataColumn55,
- this.dataColumn27,
- this.dataColumn42,
- this.dataColumn74,
- this.dataColumn87});
- this.dataTable4.TableName = "COM_MSC_BACKLOG";
- //
- // dataColumn43
- //
- this.dataColumn43.Caption = "冶金规范码";
- this.dataColumn43.ColumnName = "MSC";
- //
- // dataColumn44
- //
- this.dataColumn44.Caption = "全程产线号";
- this.dataColumn44.ColumnName = "MSC_PLINE";
- //
- // dataColumn45
- //
- this.dataColumn45.Caption = "全程途径码";
- this.dataColumn45.ColumnName = "WHOLE_BACKLOG";
- //
- // dataColumn46
- //
- this.dataColumn46.Caption = "全程途径描述";
- this.dataColumn46.ColumnName = "WHOLE_BACKLOG_DESC";
- //
- // dataColumn47
- //
- this.dataColumn47.Caption = "创建人";
- this.dataColumn47.ColumnName = "CREATE_NAME";
- //
- // dataColumn48
- //
- this.dataColumn48.Caption = "创建时间";
- this.dataColumn48.ColumnName = "CREATE_TIME";
- //
- // dataColumn49
- //
- this.dataColumn49.Caption = "修改人";
- this.dataColumn49.ColumnName = "UPDATE_NAME";
- //
- // dataColumn50
- //
- this.dataColumn50.Caption = "修改时间";
- this.dataColumn50.ColumnName = "UPDATE_TIME";
- //
- // dataColumn51
- //
- this.dataColumn51.Caption = "作废人";
- this.dataColumn51.ColumnName = "DELETE_NAME";
- //
- // dataColumn52
- //
- this.dataColumn52.Caption = "作废时间";
- this.dataColumn52.ColumnName = "DELETE_TIME";
- //
- // dataColumn53
- //
- this.dataColumn53.Caption = "有效标志代码";
- this.dataColumn53.ColumnName = "VALIDFLAG";
- //
- // dataColumn54
- //
- this.dataColumn54.Caption = "状态";
- this.dataColumn54.ColumnName = "VALIDFLAG_NAME";
- //
- // dataColumn55
- //
- this.dataColumn55.Caption = "备注";
- this.dataColumn55.ColumnName = "MEMO";
- //
- // dataColumn27
- //
- this.dataColumn27.Caption = "TPCO工艺单号";
- this.dataColumn27.ColumnName = "PROCESS_NO";
- //
- // dataColumn42
- //
- this.dataColumn42.Caption = "工艺文件";
- this.dataColumn42.ColumnName = "CRAFT_PATH";
- //
- // dataColumn74
- //
- this.dataColumn74.Caption = "是否自动生成工艺文件";
- this.dataColumn74.ColumnName = "AUTO_CRAFT";
- //
- // dataColumn87
- //
- this.dataColumn87.Caption = "复制制程";
- this.dataColumn87.ColumnName = "COPY_MSC_PLINE";
- //
- // dataTable5
- //
- this.dataTable5.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn56,
- this.dataColumn57,
- this.dataColumn58,
- this.dataColumn59,
- this.dataColumn60,
- this.dataColumn61,
- this.dataColumn62,
- this.dataColumn63,
- this.dataColumn64,
- this.dataColumn65,
- this.dataColumn66,
- this.dataColumn67,
- this.dataColumn68,
- this.dataColumn69,
- this.dataColumn70,
- this.dataColumn71,
- this.dataColumn72,
- this.dataColumn111,
- this.dataColumn73,
- this.dataColumn116,
- this.dataColumn117,
- this.dataColumn118,
- this.dataColumn119,
- this.dataColumn120,
- this.dataColumn4,
- this.dataColumn6,
- this.dataColumn7,
- this.dataColumn8,
- this.dataColumn9,
- this.dataColumn28,
- this.dataColumn29,
- this.dataColumn40,
- this.dataColumn41,
- this.dataColumn76,
- this.dataColumn77});
- this.dataTable5.TableName = "COM_BASE_PROCESS";
- //
- // dataColumn56
- //
- this.dataColumn56.Caption = "工序代码";
- this.dataColumn56.ColumnName = "PROCESS_CODE";
- //
- // dataColumn57
- //
- this.dataColumn57.Caption = "工序名称";
- this.dataColumn57.ColumnName = "PROCESS_DESC";
- //
- // dataColumn58
- //
- this.dataColumn58.Caption = "工序类型";
- this.dataColumn58.ColumnName = "STYLE";
- //
- // dataColumn59
- //
- this.dataColumn59.Caption = "工序顺序号";
- this.dataColumn59.ColumnName = "PROCESS_ID";
- //
- // dataColumn60
- //
- this.dataColumn60.Caption = "工序成本";
- this.dataColumn60.ColumnName = "COST";
- //
- // dataColumn61
- //
- this.dataColumn61.Caption = "创建人";
- this.dataColumn61.ColumnName = "CREATE_NAME";
- //
- // dataColumn62
- //
- this.dataColumn62.Caption = "创建时间";
- this.dataColumn62.ColumnName = "CREATE_TIME";
- //
- // dataColumn63
- //
- this.dataColumn63.Caption = "修改人";
- this.dataColumn63.ColumnName = "UPDATE_NAME";
- //
- // dataColumn64
- //
- this.dataColumn64.Caption = "修改时间";
- this.dataColumn64.ColumnName = "UPDATE_TIME";
- //
- // dataColumn65
- //
- this.dataColumn65.Caption = "作废人";
- this.dataColumn65.ColumnName = "DELETE_NAME";
- //
- // dataColumn66
- //
- this.dataColumn66.Caption = "作废时间";
- this.dataColumn66.ColumnName = "DELETE_TIME";
- //
- // dataColumn67
- //
- this.dataColumn67.Caption = "有效标识代码";
- this.dataColumn67.ColumnName = "VALIDFLAG";
- //
- // dataColumn68
- //
- this.dataColumn68.Caption = "工艺要点说明";
- this.dataColumn68.ColumnName = "MEMO";
- //
- // dataColumn69
- //
- this.dataColumn69.Caption = "生产";
- this.dataColumn69.ColumnName = "MINUTE_PRODUCT";
- //
- // dataColumn70
- //
- this.dataColumn70.Caption = "等待";
- this.dataColumn70.ColumnName = "MINUTE_WAITE";
- //
- // dataColumn71
- //
- this.dataColumn71.Caption = "冶金规范码";
- this.dataColumn71.ColumnName = "MSC";
- //
- // dataColumn72
- //
- this.dataColumn72.Caption = "工序循环次数";
- this.dataColumn72.ColumnName = "ICOUNT";
- //
- // dataColumn111
- //
- this.dataColumn111.Caption = "有效标识";
- this.dataColumn111.ColumnName = "VALIDFLAG_NAME";
- //
- // dataColumn73
- //
- this.dataColumn73.Caption = "全程工序顺序号";
- this.dataColumn73.ColumnName = "BACKLOG_SEQ";
- //
- // dataColumn116
- //
- this.dataColumn116.Caption = "成分索引";
- this.dataColumn116.ColumnName = "CIC";
- //
- // dataColumn117
- //
- this.dataColumn117.Caption = "理化索引";
- this.dataColumn117.ColumnName = "PIC";
- //
- // dataColumn118
- //
- this.dataColumn118.Caption = "公差索引";
- this.dataColumn118.ColumnName = "SIC";
- //
- // dataColumn119
- //
- this.dataColumn119.Caption = "探伤索引";
- this.dataColumn119.ColumnName = "DIC";
- //
- // dataColumn120
- //
- this.dataColumn120.Caption = "水压索引";
- this.dataColumn120.ColumnName = "WIC";
- //
- // dataColumn4
- //
- this.dataColumn4.Caption = "二级工序";
- this.dataColumn4.ColumnName = "PROCESS_CODE_C";
- //
- // dataColumn6
- //
- this.dataColumn6.Caption = "最大工序循环次数";
- this.dataColumn6.ColumnName = "MAX_COUNT";
- //
- // dataColumn7
- //
- this.dataColumn7.Caption = "循环次数旧";
- this.dataColumn7.ColumnName = "PROCESS_SEQ_OLD";
- //
- // dataColumn8
- //
- this.dataColumn8.Caption = "二级工序代码旧";
- this.dataColumn8.ColumnName = "PROCESS_CODE_C_OLD";
- //
- // dataColumn9
- //
- this.dataColumn9.Caption = "加工索引";
- this.dataColumn9.ColumnName = "GIC";
- //
- // dataColumn28
- //
- this.dataColumn28.Caption = "批量等待";
- this.dataColumn28.ColumnName = "BATCH_WAITE";
- //
- // dataColumn29
- //
- this.dataColumn29.Caption = "生产";
- this.dataColumn29.ColumnName = "MINUTE_PRODUCT_OUT";
- //
- // dataColumn40
- //
- this.dataColumn40.Caption = "等待";
- this.dataColumn40.ColumnName = "MINUTE_WAITE_OUT";
- //
- // dataColumn41
- //
- this.dataColumn41.Caption = "批量等待";
- this.dataColumn41.ColumnName = "BATCH_WAITE_OUT";
- //
- // dataColumn76
- //
- this.dataColumn76.Caption = "工艺贴图";
- this.dataColumn76.ColumnName = "PROCESS_FILE";
- //
- // dataColumn77
- //
- this.dataColumn77.Caption = "工艺贴图";
- this.dataColumn77.ColumnName = "PROCESS_FILE_NAME";
- //
- // dataTable6
- //
- this.dataTable6.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn78,
- this.dataColumn79,
- this.dataColumn80,
- this.dataColumn81,
- this.dataColumn82,
- this.dataColumn83,
- this.dataColumn84,
- this.dataColumn85,
- this.dataColumn86});
- this.dataTable6.TableName = "Table1";
- //
- // dataColumn78
- //
- this.dataColumn78.Caption = "其他规格集合";
- this.dataColumn78.ColumnName = "SPEC_NAME";
- //
- // dataColumn79
- //
- this.dataColumn79.Caption = "壁厚最小";
- this.dataColumn79.ColumnName = "MIN_H";
- //
- // dataColumn80
- //
- this.dataColumn80.Caption = "壁厚最大";
- this.dataColumn80.ColumnName = "MAX_H";
- //
- // dataColumn81
- //
- this.dataColumn81.Caption = "外径最小";
- this.dataColumn81.ColumnName = "MIN_D";
- //
- // dataColumn82
- //
- this.dataColumn82.Caption = "外径最大";
- this.dataColumn82.ColumnName = "MAX_D";
- //
- // dataColumn83
- //
- this.dataColumn83.Caption = "扣型集合";
- this.dataColumn83.ColumnName = "MODEL_DESC";
- //
- // dataColumn84
- //
- this.dataColumn84.Caption = "备注";
- this.dataColumn84.ColumnName = "MEMO";
- //
- // dataColumn85
- //
- this.dataColumn85.ColumnName = "SPEC_CODE";
- //
- // dataColumn86
- //
- this.dataColumn86.ColumnName = "MODEL_CODE";
- //
- // ultraTabPageControl15
- //
- this.ultraTabPageControl15.Controls.Add(this.ultraGrid7);
- this.ultraTabPageControl15.Location = new System.Drawing.Point(-7500, -8000);
- this.ultraTabPageControl15.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraTabPageControl15.Name = "ultraTabPageControl15";
- this.ultraTabPageControl15.Size = new System.Drawing.Size(619, 298);
- //
- // ultraGrid7
- //
- this.ultraGrid7.DataMember = "dataTable1";
- this.ultraGrid7.DataSource = this.dataSet1;
- appearance85.BackColor = System.Drawing.SystemColors.Window;
- appearance85.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid7.DisplayLayout.Appearance = appearance85;
- ultraGridColumn40.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn40.Header.VisiblePosition = 0;
- ultraGridColumn40.Hidden = true;
- ultraGridColumn40.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn40.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn40.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn40.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn41.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn41.Header.VisiblePosition = 1;
- ultraGridColumn41.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn41.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn41.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn41.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn42.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn42.Header.VisiblePosition = 2;
- ultraGridColumn42.Hidden = true;
- ultraGridColumn42.RowLayoutColumnInfo.OriginX = 8;
- ultraGridColumn42.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn42.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn42.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn43.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn43.Header.VisiblePosition = 4;
- ultraGridColumn43.Hidden = true;
- ultraGridColumn43.RowLayoutColumnInfo.OriginX = 12;
- ultraGridColumn43.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn43.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn43.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn44.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn44.Header.VisiblePosition = 5;
- ultraGridColumn44.Hidden = true;
- ultraGridColumn44.RowLayoutColumnInfo.OriginX = 14;
- ultraGridColumn44.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn44.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn44.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn45.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn45.Header.VisiblePosition = 6;
- ultraGridColumn45.Hidden = true;
- ultraGridColumn45.RowLayoutColumnInfo.OriginX = 16;
- ultraGridColumn45.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn45.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn45.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn46.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn46.Header.VisiblePosition = 8;
- ultraGridColumn46.Hidden = true;
- ultraGridColumn46.RowLayoutColumnInfo.OriginX = 18;
- ultraGridColumn46.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn46.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn46.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn47.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn47.Header.VisiblePosition = 10;
- ultraGridColumn47.Hidden = true;
- ultraGridColumn47.RowLayoutColumnInfo.OriginX = 22;
- ultraGridColumn47.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn47.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn47.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn48.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn48.Header.VisiblePosition = 11;
- ultraGridColumn48.Hidden = true;
- ultraGridColumn48.RowLayoutColumnInfo.OriginX = 24;
- ultraGridColumn48.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn48.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn48.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn49.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn49.Header.VisiblePosition = 12;
- ultraGridColumn49.Hidden = true;
- ultraGridColumn49.RowLayoutColumnInfo.OriginX = 26;
- ultraGridColumn49.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn49.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn49.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn50.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn50.Header.VisiblePosition = 13;
- ultraGridColumn50.Hidden = true;
- ultraGridColumn50.RowLayoutColumnInfo.OriginX = 8;
- ultraGridColumn50.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn50.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn50.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn51.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn51.Header.VisiblePosition = 3;
- ultraGridColumn51.Hidden = true;
- ultraGridColumn51.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn51.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn51.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn51.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn52.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn52.Header.VisiblePosition = 14;
- ultraGridColumn52.Hidden = true;
- ultraGridColumn52.RowLayoutColumnInfo.OriginX = 30;
- ultraGridColumn52.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn52.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn52.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn53.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn53.Header.VisiblePosition = 15;
- ultraGridColumn53.Hidden = true;
- ultraGridColumn53.RowLayoutColumnInfo.OriginX = 32;
- ultraGridColumn53.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn53.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn53.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn54.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn54.Header.VisiblePosition = 7;
- ultraGridColumn54.Hidden = true;
- ultraGridColumn54.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn54.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn54.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn54.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn55.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn55.Header.VisiblePosition = 9;
- ultraGridColumn55.Hidden = true;
- ultraGridColumn55.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn55.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn55.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn55.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn56.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn56.Header.VisiblePosition = 16;
- ultraGridColumn56.Hidden = true;
- ultraGridColumn56.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn56.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn56.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn56.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn57.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn57.Header.VisiblePosition = 17;
- ultraGridColumn57.RowLayoutColumnInfo.OriginX = 1;
- ultraGridColumn57.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn57.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(103, 0);
- ultraGridColumn57.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn57.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn58.Header.VisiblePosition = 20;
- ultraGridColumn59.Header.Caption = "钢种规格";
- ultraGridColumn59.Header.VisiblePosition = 18;
- ultraGridColumn59.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn59.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn59.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(93, 0);
- ultraGridColumn59.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn59.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn59.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.Button;
- ultraGridColumn60.Header.Caption = "删除";
- ultraGridColumn60.Header.VisiblePosition = 19;
- ultraGridColumn60.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(72, 0);
- ultraGridColumn60.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.Button;
- ultraGridBand2.Columns.AddRange(new object[] {
- ultraGridColumn40,
- ultraGridColumn41,
- ultraGridColumn42,
- ultraGridColumn43,
- ultraGridColumn44,
- ultraGridColumn45,
- ultraGridColumn46,
- ultraGridColumn47,
- ultraGridColumn48,
- ultraGridColumn49,
- ultraGridColumn50,
- ultraGridColumn51,
- ultraGridColumn52,
- ultraGridColumn53,
- ultraGridColumn54,
- ultraGridColumn55,
- ultraGridColumn56,
- ultraGridColumn57,
- ultraGridColumn58,
- ultraGridColumn59,
- ultraGridColumn60});
- ultraGridBand2.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
- ultraGridColumn61.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn61.Header.VisiblePosition = 0;
- ultraGridColumn61.Hidden = true;
- ultraGridColumn61.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn61.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn61.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn61.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn62.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn62.Header.VisiblePosition = 1;
- ultraGridColumn62.Hidden = true;
- ultraGridColumn62.RowLayoutColumnInfo.OriginX = 1;
- ultraGridColumn62.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn62.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn62.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn63.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn63.Header.VisiblePosition = 2;
- ultraGridColumn63.Hidden = true;
- ultraGridColumn63.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn63.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn63.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn63.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn64.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn64.Header.VisiblePosition = 3;
- ultraGridColumn64.Hidden = true;
- ultraGridColumn64.RowLayoutColumnInfo.OriginX = 3;
- ultraGridColumn64.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn64.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn64.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn65.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn65.Header.VisiblePosition = 4;
- ultraGridColumn65.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn65.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn65.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn65.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn66.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn66.Header.VisiblePosition = 5;
- ultraGridColumn66.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn66.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn66.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn66.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn67.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn67.Header.VisiblePosition = 6;
- ultraGridColumn67.RowLayoutColumnInfo.OriginX = 1;
- ultraGridColumn67.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn67.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn67.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn68.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn68.Header.VisiblePosition = 7;
- ultraGridColumn68.RowLayoutColumnInfo.OriginX = 3;
- ultraGridColumn68.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn68.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn68.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn69.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn69.Header.VisiblePosition = 8;
- ultraGridColumn69.Hidden = true;
- ultraGridColumn69.RowLayoutColumnInfo.OriginX = 8;
- ultraGridColumn69.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn69.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn69.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn70.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn70.Header.VisiblePosition = 9;
- ultraGridColumn70.Hidden = true;
- ultraGridColumn70.RowLayoutColumnInfo.OriginX = 9;
- ultraGridColumn70.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn70.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn70.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn71.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn71.Header.VisiblePosition = 10;
- ultraGridColumn71.Hidden = true;
- ultraGridColumn71.RowLayoutColumnInfo.OriginX = 10;
- ultraGridColumn71.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn71.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn71.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn72.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn72.Header.VisiblePosition = 11;
- ultraGridColumn72.Hidden = true;
- ultraGridColumn72.RowLayoutColumnInfo.OriginX = 11;
- ultraGridColumn72.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn72.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn72.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn73.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn73.Header.VisiblePosition = 12;
- ultraGridColumn73.Hidden = true;
- ultraGridColumn73.RowLayoutColumnInfo.OriginX = 12;
- ultraGridColumn73.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn73.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn73.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn74.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn74.Header.VisiblePosition = 13;
- ultraGridColumn74.Hidden = true;
- ultraGridColumn74.RowLayoutColumnInfo.OriginX = 13;
- ultraGridColumn74.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn74.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn74.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn75.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn75.Header.VisiblePosition = 14;
- ultraGridColumn75.Hidden = true;
- ultraGridColumn75.RowLayoutColumnInfo.OriginX = 14;
- ultraGridColumn75.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn75.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn75.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn76.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn76.Header.VisiblePosition = 15;
- ultraGridColumn76.Hidden = true;
- ultraGridColumn76.RowLayoutColumnInfo.OriginX = 15;
- ultraGridColumn76.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn76.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn76.RowLayoutColumnInfo.SpanY = 1;
- ultraGridBand3.Columns.AddRange(new object[] {
- ultraGridColumn61,
- ultraGridColumn62,
- ultraGridColumn63,
- ultraGridColumn64,
- ultraGridColumn65,
- ultraGridColumn66,
- ultraGridColumn67,
- ultraGridColumn68,
- ultraGridColumn69,
- ultraGridColumn70,
- ultraGridColumn71,
- ultraGridColumn72,
- ultraGridColumn73,
- ultraGridColumn74,
- ultraGridColumn75,
- ultraGridColumn76});
- ultraGridBand3.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
- this.ultraGrid7.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
- this.ultraGrid7.DisplayLayout.BandsSerializer.Add(ultraGridBand3);
- this.ultraGrid7.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid7.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance86.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance86.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance86.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance86.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid7.DisplayLayout.GroupByBox.Appearance = appearance86;
- appearance87.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid7.DisplayLayout.GroupByBox.BandLabelAppearance = appearance87;
- this.ultraGrid7.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance88.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance88.BackColor2 = System.Drawing.SystemColors.Control;
- appearance88.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance88.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid7.DisplayLayout.GroupByBox.PromptAppearance = appearance88;
- this.ultraGrid7.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid7.DisplayLayout.MaxRowScrollRegions = 1;
- appearance89.BackColor = System.Drawing.SystemColors.Window;
- appearance89.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid7.DisplayLayout.Override.ActiveCellAppearance = appearance89;
- appearance90.BackColor = System.Drawing.SystemColors.Highlight;
- appearance90.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid7.DisplayLayout.Override.ActiveRowAppearance = appearance90;
- this.ultraGrid7.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid7.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance91.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid7.DisplayLayout.Override.CardAreaAppearance = appearance91;
- appearance92.BorderColor = System.Drawing.Color.Silver;
- appearance92.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid7.DisplayLayout.Override.CellAppearance = appearance92;
- this.ultraGrid7.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid7.DisplayLayout.Override.CellPadding = 0;
- appearance93.BackColor = System.Drawing.SystemColors.Control;
- appearance93.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance93.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance93.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance93.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid7.DisplayLayout.Override.GroupByRowAppearance = appearance93;
- appearance94.TextHAlignAsString = "Left";
- this.ultraGrid7.DisplayLayout.Override.HeaderAppearance = appearance94;
- this.ultraGrid7.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid7.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance95.BackColor = System.Drawing.SystemColors.Window;
- appearance95.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid7.DisplayLayout.Override.RowAppearance = appearance95;
- this.ultraGrid7.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance96.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid7.DisplayLayout.Override.TemplateAddRowAppearance = appearance96;
- this.ultraGrid7.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid7.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid7.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraGrid7.Location = new System.Drawing.Point(0, 0);
- this.ultraGrid7.Name = "ultraGrid7";
- this.ultraGrid7.Size = new System.Drawing.Size(619, 298);
- this.ultraGrid7.TabIndex = 0;
- this.ultraGrid7.Text = "ultraGrid7";
- this.ultraGrid7.ClickCellButton += new Infragistics.Win.UltraWinGrid.CellEventHandler(this.ultraGrid7_ClickCellButton);
- //
- // ultraTabPageControl14
- //
- this.ultraTabPageControl14.Controls.Add(this.lblStationPath);
- this.ultraTabPageControl14.Location = new System.Drawing.Point(-7500, -8000);
- this.ultraTabPageControl14.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraTabPageControl14.Name = "ultraTabPageControl14";
- this.ultraTabPageControl14.Size = new System.Drawing.Size(619, 298);
- //
- // lblStationPath
- //
- this.lblStationPath.Dock = System.Windows.Forms.DockStyle.Fill;
- this.lblStationPath.Location = new System.Drawing.Point(0, 0);
- this.lblStationPath.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.lblStationPath.Name = "lblStationPath";
- this.lblStationPath.Size = new System.Drawing.Size(619, 298);
- this.lblStationPath.TabIndex = 0;
- this.lblStationPath.Text = "";
- //
- // ultraTextEditor8
- //
- editorButton6.Text = "查看";
- this.ultraTextEditor8.ButtonsRight.Add(editorButton6);
- this.ultraTextEditor8.Location = new System.Drawing.Point(63, 323);
- this.ultraTextEditor8.Name = "ultraTextEditor8";
- this.ultraTextEditor8.ReadOnly = true;
- this.ultraTextEditor8.Size = new System.Drawing.Size(120, 21);
- this.ultraTextEditor8.TabIndex = 41;
- this.ultraTextEditor8.Visible = false;
- this.ultraTextEditor8.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.ultraTextEditor8_EditorButtonClick);
- //
- // ultraTabPageControl6
- //
- this.ultraTabPageControl6.Controls.Add(this.ultraTabControl2);
- this.ultraTabPageControl6.Location = new System.Drawing.Point(2, 21);
- this.ultraTabPageControl6.Name = "ultraTabPageControl6";
- this.ultraTabPageControl6.Size = new System.Drawing.Size(623, 394);
- //
- // ultraTabControl2
- //
- this.ultraTabControl2.Controls.Add(this.ultraTabSharedControlsPage2);
- this.ultraTabControl2.Controls.Add(this.ultraTabPageControl4);
- this.ultraTabControl2.Controls.Add(this.ultraTabPageControl5);
- this.ultraTabControl2.Controls.Add(this.ultraTabPageControl7);
- this.ultraTabControl2.Controls.Add(this.ultraTabPageControl9);
- this.ultraTabControl2.Controls.Add(this.ultraTabPageControl10);
- this.ultraTabControl2.Controls.Add(this.ultraTabPageControl3);
- this.ultraTabControl2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraTabControl2.Location = new System.Drawing.Point(0, 0);
- this.ultraTabControl2.Name = "ultraTabControl2";
- this.ultraTabControl2.SharedControlsPage = this.ultraTabSharedControlsPage2;
- this.ultraTabControl2.Size = new System.Drawing.Size(623, 394);
- this.ultraTabControl2.TabIndex = 0;
- ultraTab2.Key = "ChemStand";
- ultraTab2.TabPage = this.ultraTabPageControl4;
- ultraTab2.Text = "成分标准";
- ultraTab6.Key = "MaterialStand";
- ultraTab6.TabPage = this.ultraTabPageControl5;
- ultraTab6.Text = "理化标准";
- ultraTab7.Key = "TolerancesStand";
- ultraTab7.TabPage = this.ultraTabPageControl7;
- ultraTab7.Text = "公差标准";
- ultraTab9.Key = "ComMSCStdDetection";
- ultraTab9.TabPage = this.ultraTabPageControl9;
- ultraTab9.Text = "探伤标准";
- ultraTab10.Key = "ProductWater";
- ultraTab10.TabPage = this.ultraTabPageControl10;
- ultraTab10.Text = "水压标准";
- ultraTab5.Key = "ComMSCStdProcess";
- ultraTab5.TabPage = this.ultraTabPageControl3;
- ultraTab5.Text = "加工标准";
- this.ultraTabControl2.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
- ultraTab2,
- ultraTab6,
- ultraTab7,
- ultraTab9,
- ultraTab10,
- ultraTab5});
- this.ultraTabControl2.UseFlatMode = Infragistics.Win.DefaultableBoolean.False;
- this.ultraTabControl2.ViewStyle = Infragistics.Win.UltraWinTabControl.ViewStyle.VisualStudio2005;
- this.ultraTabControl2.SelectedTabChanging += new Infragistics.Win.UltraWinTabControl.SelectedTabChangingEventHandler(this.ultraTabControl2_SelectedTabChanging);
- this.ultraTabControl2.SelectedTabChanged += new Infragistics.Win.UltraWinTabControl.SelectedTabChangedEventHandler(this.ultraTabControl2_SelectedTabChanged);
- //
- // ultraTabSharedControlsPage2
- //
- this.ultraTabSharedControlsPage2.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabSharedControlsPage2.Name = "ultraTabSharedControlsPage2";
- this.ultraTabSharedControlsPage2.Size = new System.Drawing.Size(619, 371);
- //
- // ultraTabPageControl8
- //
- this.ultraTabPageControl8.Controls.Add(this.splitContainer4);
- this.ultraTabPageControl8.Location = new System.Drawing.Point(-7500, -8000);
- this.ultraTabPageControl8.Name = "ultraTabPageControl8";
- this.ultraTabPageControl8.Size = new System.Drawing.Size(623, 394);
- //
- // splitContainer4
- //
- this.splitContainer4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
- this.splitContainer4.Dock = System.Windows.Forms.DockStyle.Fill;
- this.splitContainer4.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
- this.splitContainer4.Location = new System.Drawing.Point(0, 0);
- this.splitContainer4.Name = "splitContainer4";
- this.splitContainer4.Orientation = System.Windows.Forms.Orientation.Horizontal;
- //
- // splitContainer4.Panel1
- //
- this.splitContainer4.Panel1.Controls.Add(this.ultraGrid4);
- //
- // splitContainer4.Panel2
- //
- this.splitContainer4.Panel2.Controls.Add(this.panel2);
- this.splitContainer4.Size = new System.Drawing.Size(623, 394);
- this.splitContainer4.SplitterDistance = 66;
- this.splitContainer4.TabIndex = 5;
- //
- // ultraGrid4
- //
- this.ultraGrid4.DataMember = "COM_MSC_BACKLOG";
- this.ultraGrid4.DataSource = this.dataSet1;
- appearance37.BackColor = System.Drawing.SystemColors.Window;
- appearance37.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid4.DisplayLayout.Appearance = appearance37;
- ultraGridColumn77.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn77.Header.VisiblePosition = 0;
- ultraGridColumn77.Hidden = true;
- ultraGridColumn77.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn77.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn77.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn77.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn78.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn78.Header.VisiblePosition = 1;
- ultraGridColumn78.RowLayoutColumnInfo.OriginX = 1;
- ultraGridColumn78.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn78.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn78.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn79.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn79.Header.VisiblePosition = 2;
- ultraGridColumn79.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn79.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn79.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn79.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn80.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn80.Header.VisiblePosition = 4;
- ultraGridColumn80.RowLayoutColumnInfo.OriginX = 3;
- ultraGridColumn80.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn80.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn80.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn81.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn81.Header.VisiblePosition = 5;
- ultraGridColumn81.RowLayoutColumnInfo.OriginX = 12;
- ultraGridColumn81.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn81.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn81.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn82.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn82.Header.VisiblePosition = 6;
- ultraGridColumn82.RowLayoutColumnInfo.OriginX = 13;
- ultraGridColumn82.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn82.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn82.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn83.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn83.Header.VisiblePosition = 7;
- ultraGridColumn83.RowLayoutColumnInfo.OriginX = 14;
- ultraGridColumn83.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn83.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn83.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn84.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn84.Header.VisiblePosition = 8;
- ultraGridColumn84.RowLayoutColumnInfo.OriginX = 15;
- ultraGridColumn84.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn84.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn84.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn85.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn85.Header.VisiblePosition = 9;
- ultraGridColumn85.RowLayoutColumnInfo.OriginX = 16;
- ultraGridColumn85.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn85.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn85.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn86.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn86.Header.VisiblePosition = 10;
- ultraGridColumn86.RowLayoutColumnInfo.OriginX = 17;
- ultraGridColumn86.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn86.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn86.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn87.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn87.Header.VisiblePosition = 11;
- ultraGridColumn87.Hidden = true;
- ultraGridColumn87.RowLayoutColumnInfo.OriginX = 8;
- ultraGridColumn87.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn87.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn87.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn88.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn88.Header.VisiblePosition = 12;
- ultraGridColumn88.RowLayoutColumnInfo.OriginX = 7;
- ultraGridColumn88.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn88.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn88.RowLayoutColumnInfo.SpanY = 1;
- appearance15.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
- ultraGridColumn89.CellAppearance = appearance15;
- ultraGridColumn89.Header.VisiblePosition = 3;
- ultraGridColumn89.RowLayoutColumnInfo.OriginX = 8;
- ultraGridColumn89.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn89.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn89.RowLayoutColumnInfo.SpanY = 2;
- appearance16.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
- ultraGridColumn90.CellAppearance = appearance16;
- ultraGridColumn90.Header.Caption = "工艺文件号";
- ultraGridColumn90.Header.VisiblePosition = 13;
- ultraGridColumn90.RowLayoutColumnInfo.OriginX = 5;
- ultraGridColumn90.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn90.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn90.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn91.ButtonDisplayStyle = Infragistics.Win.UltraWinGrid.ButtonDisplayStyle.Always;
- appearance17.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
- ultraGridColumn91.CellAppearance = appearance17;
- ultraGridColumn91.EditorComponent = this.craftImg;
- ultraGridColumn91.Header.VisiblePosition = 14;
- ultraGridColumn91.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn91.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn91.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(188, 0);
- ultraGridColumn91.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn91.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn92.EditorComponent = this.ultraComboEditor1;
- ultraGridColumn92.Header.VisiblePosition = 15;
- ultraGridColumn92.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn92.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn92.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(99, 0);
- ultraGridColumn92.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn92.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn92.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.DropDownList;
- ultraGridColumn93.Header.VisiblePosition = 16;
- ultraGridColumn93.RowLayoutColumnInfo.OriginX = 10;
- ultraGridColumn93.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn93.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn93.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn93.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.Button;
- ultraGridColumn94.Header.Caption = "钢种维护";
- ultraGridColumn94.Header.VisiblePosition = 17;
- ultraGridColumn94.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn94.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn94.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(69, 0);
- ultraGridColumn94.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn94.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn94.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.Button;
- ultraGridBand4.Columns.AddRange(new object[] {
- ultraGridColumn77,
- ultraGridColumn78,
- ultraGridColumn79,
- ultraGridColumn80,
- ultraGridColumn81,
- ultraGridColumn82,
- ultraGridColumn83,
- ultraGridColumn84,
- ultraGridColumn85,
- ultraGridColumn86,
- ultraGridColumn87,
- ultraGridColumn88,
- ultraGridColumn89,
- ultraGridColumn90,
- ultraGridColumn91,
- ultraGridColumn92,
- ultraGridColumn93,
- ultraGridColumn94});
- ultraGridBand4.Override.SelectedAppearancesEnabled = Infragistics.Win.DefaultableBoolean.False;
- ultraGridBand4.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
- this.ultraGrid4.DisplayLayout.BandsSerializer.Add(ultraGridBand4);
- this.ultraGrid4.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid4.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance38.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance38.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance38.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance38.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid4.DisplayLayout.GroupByBox.Appearance = appearance38;
- appearance39.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid4.DisplayLayout.GroupByBox.BandLabelAppearance = appearance39;
- this.ultraGrid4.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid4.DisplayLayout.GroupByBox.Hidden = true;
- appearance40.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance40.BackColor2 = System.Drawing.SystemColors.Control;
- appearance40.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance40.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid4.DisplayLayout.GroupByBox.PromptAppearance = appearance40;
- this.ultraGrid4.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid4.DisplayLayout.MaxRowScrollRegions = 1;
- appearance41.BackColor = System.Drawing.SystemColors.Window;
- appearance41.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid4.DisplayLayout.Override.ActiveCellAppearance = appearance41;
- appearance42.BackColor = System.Drawing.SystemColors.Highlight;
- appearance42.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid4.DisplayLayout.Override.ActiveRowAppearance = appearance42;
- this.ultraGrid4.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid4.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance43.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid4.DisplayLayout.Override.CardAreaAppearance = appearance43;
- appearance44.BorderColor = System.Drawing.Color.Silver;
- appearance44.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid4.DisplayLayout.Override.CellAppearance = appearance44;
- this.ultraGrid4.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid4.DisplayLayout.Override.CellPadding = 0;
- appearance45.BackColor = System.Drawing.SystemColors.Control;
- appearance45.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance45.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance45.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance45.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid4.DisplayLayout.Override.GroupByRowAppearance = appearance45;
- appearance46.TextHAlignAsString = "Left";
- this.ultraGrid4.DisplayLayout.Override.HeaderAppearance = appearance46;
- this.ultraGrid4.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid4.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance47.BackColor = System.Drawing.SystemColors.Window;
- appearance47.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid4.DisplayLayout.Override.RowAppearance = appearance47;
- this.ultraGrid4.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance48.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid4.DisplayLayout.Override.TemplateAddRowAppearance = appearance48;
- this.ultraGrid4.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid4.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid4.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGrid4.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraGrid4.Location = new System.Drawing.Point(0, 0);
- this.ultraGrid4.Name = "ultraGrid4";
- this.ultraGrid4.Size = new System.Drawing.Size(623, 66);
- this.ultraGrid4.TabIndex = 3;
- this.ultraGrid4.Text = "ultraGrid4";
- this.ultraGrid4.InitializeRow += new Infragistics.Win.UltraWinGrid.InitializeRowEventHandler(this.ultraGrid4_InitializeRow);
- this.ultraGrid4.AfterRowActivate += new System.EventHandler(this.ultraGrid4_AfterRowActivate);
- this.ultraGrid4.CellChange += new Infragistics.Win.UltraWinGrid.CellEventHandler(this.ultraGrid4_CellChange);
- this.ultraGrid4.ClickCellButton += new Infragistics.Win.UltraWinGrid.CellEventHandler(this.ultraGrid4_ClickCellButton);
- //
- // panel2
- //
- this.panel2.Controls.Add(this.ultraTabControl4);
- this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel2.Location = new System.Drawing.Point(0, 0);
- this.panel2.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.panel2.Name = "panel2";
- this.panel2.Size = new System.Drawing.Size(623, 324);
- this.panel2.TabIndex = 2;
- //
- // ultraTabControl4
- //
- this.ultraTabControl4.Controls.Add(this.ultraTabSharedControlsPage4);
- this.ultraTabControl4.Controls.Add(this.ultraTabPageControl13);
- this.ultraTabControl4.Controls.Add(this.ultraTabPageControl14);
- this.ultraTabControl4.Controls.Add(this.ultraTabPageControl15);
- this.ultraTabControl4.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraTabControl4.Location = new System.Drawing.Point(0, 0);
- this.ultraTabControl4.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraTabControl4.Name = "ultraTabControl4";
- this.ultraTabControl4.SharedControlsPage = this.ultraTabSharedControlsPage4;
- this.ultraTabControl4.Size = new System.Drawing.Size(623, 324);
- this.ultraTabControl4.TabIndex = 0;
- ultraTab13.TabPage = this.ultraTabPageControl13;
- ultraTab13.Text = "工序";
- ultraTab15.TabPage = this.ultraTabPageControl15;
- ultraTab15.Text = "钢种";
- ultraTab14.TabPage = this.ultraTabPageControl14;
- ultraTab14.Text = "工序点路径";
- this.ultraTabControl4.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
- ultraTab13,
- ultraTab15,
- ultraTab14});
- //
- // ultraTabSharedControlsPage4
- //
- this.ultraTabSharedControlsPage4.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabSharedControlsPage4.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraTabSharedControlsPage4.Name = "ultraTabSharedControlsPage4";
- this.ultraTabSharedControlsPage4.Size = new System.Drawing.Size(619, 298);
- //
- // ultraTabPageControl11
- //
- this.ultraTabPageControl11.Controls.Add(this.ctrlMscJg1);
- this.ultraTabPageControl11.Location = new System.Drawing.Point(-7500, -8000);
- this.ultraTabPageControl11.Name = "ultraTabPageControl11";
- this.ultraTabPageControl11.Size = new System.Drawing.Size(623, 394);
- //
- // ctrlMscJg1
- //
- this.ctrlMscJg1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ctrlMscJg1.DtBaseQcm = null;
- this.ctrlMscJg1.FrmProPscMsc2 = null;
- this.ctrlMscJg1.Location = new System.Drawing.Point(0, 0);
- this.ctrlMscJg1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.ctrlMscJg1.Name = "ctrlMscJg1";
- this.ctrlMscJg1.Size = new System.Drawing.Size(623, 394);
- this.ctrlMscJg1.TabIndex = 0;
- //
- // ultraTabPageControl12
- //
- this.ultraTabPageControl12.Controls.Add(this.ultraTextEditor8);
- this.ultraTabPageControl12.Controls.Add(this.ctrlMscBl1);
- this.ultraTabPageControl12.Controls.Add(this.ultraGrid2);
- this.ultraTabPageControl12.Location = new System.Drawing.Point(-7500, -8000);
- this.ultraTabPageControl12.Name = "ultraTabPageControl12";
- this.ultraTabPageControl12.Size = new System.Drawing.Size(623, 394);
- //
- // ctrlMscBl1
- //
- this.ctrlMscBl1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ctrlMscBl1.DtBaseQcm = null;
- this.ctrlMscBl1.FrmProPscMsc2 = null;
- this.ctrlMscBl1.Location = new System.Drawing.Point(0, 0);
- this.ctrlMscBl1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.ctrlMscBl1.Name = "ctrlMscBl1";
- this.ctrlMscBl1.Size = new System.Drawing.Size(623, 212);
- this.ctrlMscBl1.TabIndex = 0;
- //
- // ultraGrid2
- //
- this.ultraGrid2.DataMember = "Table1";
- this.ultraGrid2.DataSource = this.dataSet1;
- appearance21.BackColor = System.Drawing.SystemColors.Window;
- appearance21.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid2.DisplayLayout.Appearance = appearance21;
- ultraGridColumn95.ButtonDisplayStyle = Infragistics.Win.UltraWinGrid.ButtonDisplayStyle.Always;
- ultraGridColumn95.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn95.EditorComponent = this.ultraTextEditor8;
- ultraGridColumn95.Header.VisiblePosition = 0;
- ultraGridColumn95.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn95.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn95.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(239, 0);
- ultraGridColumn95.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 58);
- ultraGridColumn95.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn95.RowLayoutColumnInfo.SpanY = 3;
- ultraGridColumn96.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn96.Header.VisiblePosition = 2;
- ultraGridColumn96.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn96.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn96.RowLayoutColumnInfo.ParentGroupIndex = 0;
- ultraGridColumn96.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
- ultraGridColumn96.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn96.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn97.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn97.Header.VisiblePosition = 3;
- ultraGridColumn97.RowLayoutColumnInfo.OriginX = 1;
- ultraGridColumn97.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn97.RowLayoutColumnInfo.ParentGroupIndex = 0;
- ultraGridColumn97.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
- ultraGridColumn97.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn97.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn98.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn98.Header.VisiblePosition = 4;
- ultraGridColumn98.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn98.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn98.RowLayoutColumnInfo.ParentGroupIndex = 0;
- ultraGridColumn98.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
- ultraGridColumn98.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn98.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn99.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn99.Header.VisiblePosition = 5;
- ultraGridColumn99.RowLayoutColumnInfo.OriginX = 3;
- ultraGridColumn99.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn99.RowLayoutColumnInfo.ParentGroupIndex = 0;
- ultraGridColumn99.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
- ultraGridColumn99.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn99.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn100.ButtonDisplayStyle = Infragistics.Win.UltraWinGrid.ButtonDisplayStyle.Always;
- ultraGridColumn100.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn100.EditorComponent = this.ultraTextEditor8;
- ultraGridColumn100.Header.VisiblePosition = 1;
- ultraGridColumn100.RowLayoutColumnInfo.OriginX = 1;
- ultraGridColumn100.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn100.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(228, 0);
- ultraGridColumn100.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 58);
- ultraGridColumn100.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn100.RowLayoutColumnInfo.SpanY = 3;
- ultraGridColumn101.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn101.Header.VisiblePosition = 6;
- ultraGridColumn101.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn101.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn101.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(176, 0);
- ultraGridColumn101.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 58);
- ultraGridColumn101.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn101.RowLayoutColumnInfo.SpanY = 3;
- ultraGridColumn102.Header.VisiblePosition = 7;
- ultraGridColumn102.Hidden = true;
- ultraGridColumn103.Header.VisiblePosition = 8;
- ultraGridColumn103.Hidden = true;
- ultraGridBand5.Columns.AddRange(new object[] {
- ultraGridColumn95,
- ultraGridColumn96,
- ultraGridColumn97,
- ultraGridColumn98,
- ultraGridColumn99,
- ultraGridColumn100,
- ultraGridColumn101,
- ultraGridColumn102,
- ultraGridColumn103});
- ultraGridGroup3.Header.Caption = "适用成品规格";
- ultraGridGroup3.Key = "NewGroup0";
- ultraGridGroup3.RowLayoutGroupInfo.OriginX = 2;
- ultraGridGroup3.RowLayoutGroupInfo.OriginY = 0;
- ultraGridGroup3.RowLayoutGroupInfo.SpanX = 4;
- ultraGridGroup3.RowLayoutGroupInfo.SpanY = 3;
- ultraGridBand5.Groups.AddRange(new Infragistics.Win.UltraWinGrid.UltraGridGroup[] {
- ultraGridGroup3});
- ultraGridBand5.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
- this.ultraGrid2.DisplayLayout.BandsSerializer.Add(ultraGridBand5);
- this.ultraGrid2.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid2.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance22.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance22.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance22.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance22.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid2.DisplayLayout.GroupByBox.Appearance = appearance22;
- appearance24.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid2.DisplayLayout.GroupByBox.BandLabelAppearance = appearance24;
- this.ultraGrid2.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance23.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance23.BackColor2 = System.Drawing.SystemColors.Control;
- appearance23.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance23.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid2.DisplayLayout.GroupByBox.PromptAppearance = appearance23;
- this.ultraGrid2.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid2.DisplayLayout.MaxRowScrollRegions = 1;
- appearance32.BackColor = System.Drawing.SystemColors.Window;
- appearance32.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid2.DisplayLayout.Override.ActiveCellAppearance = appearance32;
- appearance66.BackColor = System.Drawing.SystemColors.Highlight;
- appearance66.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid2.DisplayLayout.Override.ActiveRowAppearance = appearance66;
- this.ultraGrid2.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid2.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance72.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid2.DisplayLayout.Override.CardAreaAppearance = appearance72;
- appearance33.BorderColor = System.Drawing.Color.Silver;
- appearance33.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid2.DisplayLayout.Override.CellAppearance = appearance33;
- this.ultraGrid2.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid2.DisplayLayout.Override.CellPadding = 0;
- appearance27.BackColor = System.Drawing.SystemColors.Control;
- appearance27.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance27.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance27.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance27.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid2.DisplayLayout.Override.GroupByRowAppearance = appearance27;
- appearance25.TextHAlignAsString = "Left";
- this.ultraGrid2.DisplayLayout.Override.HeaderAppearance = appearance25;
- this.ultraGrid2.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid2.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance69.BackColor = System.Drawing.SystemColors.Window;
- appearance69.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid2.DisplayLayout.Override.RowAppearance = appearance69;
- this.ultraGrid2.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance65.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid2.DisplayLayout.Override.TemplateAddRowAppearance = appearance65;
- 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.Bottom;
- this.ultraGrid2.Location = new System.Drawing.Point(0, 212);
- this.ultraGrid2.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraGrid2.Name = "ultraGrid2";
- this.ultraGrid2.Size = new System.Drawing.Size(623, 182);
- this.ultraGrid2.TabIndex = 1;
- this.ultraGrid2.Text = "ultraGrid2";
- //
- // ultraTabPageControl2
- //
- this.ultraTabPageControl2.AutoScroll = true;
- this.ultraTabPageControl2.Controls.Add(this.ultraLabel1);
- this.ultraTabPageControl2.Location = new System.Drawing.Point(-7500, -8000);
- this.ultraTabPageControl2.Name = "ultraTabPageControl2";
- this.ultraTabPageControl2.Size = new System.Drawing.Size(623, 394);
- //
- // ultraLabel1
- //
- appearance12.FontData.BoldAsString = "True";
- appearance12.TextHAlignAsString = "Center";
- appearance12.TextVAlignAsString = "Middle";
- this.ultraLabel1.Appearance = appearance12;
- this.ultraLabel1.Dock = System.Windows.Forms.DockStyle.Top;
- this.ultraLabel1.Location = new System.Drawing.Point(0, 0);
- this.ultraLabel1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel1.Name = "ultraLabel1";
- this.ultraLabel1.Size = new System.Drawing.Size(623, 18);
- this.ultraLabel1.TabIndex = 0;
- this.ultraLabel1.Text = "图片文件:";
- //
- // ultraTabPageControl1
- //
- this.ultraTabPageControl1.Controls.Add(this.ultraTabPageControl1_Fill_Panel);
- this.ultraTabPageControl1.Location = new System.Drawing.Point(2, 21);
- this.ultraTabPageControl1.Name = "ultraTabPageControl1";
- this.ultraTabPageControl1.Size = new System.Drawing.Size(627, 554);
- //
- // ultraTabPageControl1_Fill_Panel
- //
- this.ultraTabPageControl1_Fill_Panel.Controls.Add(this.splitContainer3);
- this.ultraTabPageControl1_Fill_Panel.Cursor = System.Windows.Forms.Cursors.Default;
- this.ultraTabPageControl1_Fill_Panel.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraTabPageControl1_Fill_Panel.Location = new System.Drawing.Point(0, 0);
- this.ultraTabPageControl1_Fill_Panel.Name = "ultraTabPageControl1_Fill_Panel";
- this.ultraTabPageControl1_Fill_Panel.Size = new System.Drawing.Size(627, 554);
- this.ultraTabPageControl1_Fill_Panel.TabIndex = 0;
- //
- // splitContainer3
- //
- this.splitContainer3.Dock = System.Windows.Forms.DockStyle.Fill;
- this.splitContainer3.Location = new System.Drawing.Point(0, 0);
- this.splitContainer3.Name = "splitContainer3";
- this.splitContainer3.Orientation = System.Windows.Forms.Orientation.Horizontal;
- //
- // splitContainer3.Panel1
- //
- this.splitContainer3.Panel1.Controls.Add(this.splitContainer2);
- //
- // splitContainer3.Panel2
- //
- this.splitContainer3.Panel2.Controls.Add(this.Panel2_Fill_Panel);
- this.splitContainer3.Panel2.Controls.Add(this._Panel2_Toolbars_Dock_Area_Left);
- this.splitContainer3.Panel2.Controls.Add(this._Panel2_Toolbars_Dock_Area_Right);
- this.splitContainer3.Panel2.Controls.Add(this._Panel2_Toolbars_Dock_Area_Top);
- this.splitContainer3.Panel2.Controls.Add(this._Panel2_Toolbars_Dock_Area_Bottom);
- this.splitContainer3.Size = new System.Drawing.Size(627, 554);
- this.splitContainer3.SplitterDistance = 116;
- this.splitContainer3.TabIndex = 2;
- this.splitContainer3.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(this.splitContainer3_SplitterMoved);
- //
- // splitContainer2
- //
- this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.splitContainer2.Location = new System.Drawing.Point(0, 0);
- this.splitContainer2.Name = "splitContainer2";
- //
- // splitContainer2.Panel1
- //
- this.splitContainer2.Panel1.Controls.Add(this.controlMsc1);
- //
- // splitContainer2.Panel2
- //
- this.splitContainer2.Panel2.Controls.Add(this.ultraExpandableGroupBox3);
- this.splitContainer2.Panel2Collapsed = true;
- this.splitContainer2.Size = new System.Drawing.Size(627, 116);
- this.splitContainer2.SplitterDistance = 454;
- this.splitContainer2.TabIndex = 1;
- this.splitContainer2.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(this.splitContainer2_SplitterMoved);
- //
- // controlMsc1
- //
- this.controlMsc1.CopyMsc = "";
- this.controlMsc1.DepartmentCode = "";
- this.controlMsc1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.controlMsc1.DtBaseQcm = null;
- this.controlMsc1.FrmProPscMsc2 = null;
- this.controlMsc1.JgRow = null;
- this.controlMsc1.Location = new System.Drawing.Point(0, 0);
- this.controlMsc1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.controlMsc1.Msc = null;
- this.controlMsc1.MscRow = null;
- this.controlMsc1.Name = "controlMsc1";
- this.controlMsc1.Size = new System.Drawing.Size(627, 116);
- this.controlMsc1.TabIndex = 0;
- this.controlMsc1.UnitCode = "";
- //
- // ultraExpandableGroupBox3
- //
- this.ultraExpandableGroupBox3.Controls.Add(this.ultraExpandableGroupBoxPanel3);
- this.ultraExpandableGroupBox3.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraExpandableGroupBox3.ExpandedSize = new System.Drawing.Size(72, 80);
- this.ultraExpandableGroupBox3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(200)), true);
- appearance4.FontData.Name = "宋体";
- appearance4.FontData.SizeInPoints = 9F;
- this.ultraExpandableGroupBox3.HeaderAppearance = appearance4;
- this.ultraExpandableGroupBox3.HeaderPosition = Infragistics.Win.Misc.GroupBoxHeaderPosition.LeftOnBorder;
- this.ultraExpandableGroupBox3.Location = new System.Drawing.Point(0, 0);
- this.ultraExpandableGroupBox3.Name = "ultraExpandableGroupBox3";
- this.ultraExpandableGroupBox3.RightToLeft = System.Windows.Forms.RightToLeft.No;
- this.ultraExpandableGroupBox3.Size = new System.Drawing.Size(72, 80);
- this.ultraExpandableGroupBox3.TabIndex = 1;
- this.ultraExpandableGroupBox3.Text = "冶金规范项目1";
- this.ultraExpandableGroupBox3.VerticalTextOrientation = Infragistics.Win.Misc.GroupBoxVerticalTextOrientation.TopToBottom;
- //
- // ultraExpandableGroupBoxPanel3
- //
- this.ultraExpandableGroupBoxPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraExpandableGroupBoxPanel3.Location = new System.Drawing.Point(32, 3);
- this.ultraExpandableGroupBoxPanel3.Name = "ultraExpandableGroupBoxPanel3";
- this.ultraExpandableGroupBoxPanel3.Size = new System.Drawing.Size(37, 74);
- this.ultraExpandableGroupBoxPanel3.TabIndex = 0;
- //
- // Panel2_Fill_Panel
- //
- this.Panel2_Fill_Panel.Controls.Add(this.ultraTabControl3);
- this.Panel2_Fill_Panel.Cursor = System.Windows.Forms.Cursors.Default;
- this.Panel2_Fill_Panel.Dock = System.Windows.Forms.DockStyle.Fill;
- this.Panel2_Fill_Panel.Location = new System.Drawing.Point(0, 17);
- this.Panel2_Fill_Panel.Name = "Panel2_Fill_Panel";
- this.Panel2_Fill_Panel.Size = new System.Drawing.Size(627, 417);
- this.Panel2_Fill_Panel.TabIndex = 0;
- //
- // ultraTabControl3
- //
- this.ultraTabControl3.Controls.Add(this.ultraTabSharedControlsPage3);
- this.ultraTabControl3.Controls.Add(this.ultraTabPageControl6);
- this.ultraTabControl3.Controls.Add(this.ultraTabPageControl8);
- this.ultraTabControl3.Controls.Add(this.ultraTabPageControl11);
- this.ultraTabControl3.Controls.Add(this.ultraTabPageControl12);
- this.ultraTabControl3.Controls.Add(this.ultraTabPageControl2);
- this.ultraTabControl3.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraTabControl3.Location = new System.Drawing.Point(0, 0);
- this.ultraTabControl3.Name = "ultraTabControl3";
- this.ultraTabControl3.SharedControlsPage = this.ultraTabSharedControlsPage3;
- this.ultraTabControl3.Size = new System.Drawing.Size(627, 417);
- this.ultraTabControl3.TabIndex = 1;
- ultraTab1.Key = "STAND_PAY";
- ultraTab1.TabPage = this.ultraTabPageControl6;
- ultraTab1.Text = "交付标准";
- ultraTab8.Key = "PROCEDURE";
- ultraTab8.TabPage = this.ultraTabPageControl8;
- ultraTab8.Text = "制程";
- ultraTab11.Key = "JG";
- ultraTab11.TabPage = this.ultraTabPageControl11;
- ultraTab11.Text = "接箍码";
- ultraTab12.Key = "BL";
- ultraTab12.TabPage = this.ultraTabPageControl12;
- ultraTab12.Text = "备料码";
- ultraTab3.Key = "IMG";
- ultraTab3.TabPage = this.ultraTabPageControl2;
- ultraTab3.Text = "附件图片";
- this.ultraTabControl3.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
- ultraTab1,
- ultraTab8,
- ultraTab11,
- ultraTab12,
- ultraTab3});
- this.ultraTabControl3.ViewStyle = Infragistics.Win.UltraWinTabControl.ViewStyle.VisualStudio2005;
- this.ultraTabControl3.SelectedTabChanging += new Infragistics.Win.UltraWinTabControl.SelectedTabChangingEventHandler(this.ultraTabControl3_SelectedTabChanging);
- this.ultraTabControl3.SelectedTabChanged += new Infragistics.Win.UltraWinTabControl.SelectedTabChangedEventHandler(this.ultraTabControl3_SelectedTabChanged);
- //
- // ultraTabSharedControlsPage3
- //
- this.ultraTabSharedControlsPage3.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabSharedControlsPage3.Name = "ultraTabSharedControlsPage3";
- this.ultraTabSharedControlsPage3.Size = new System.Drawing.Size(623, 394);
- //
- // _Panel2_Toolbars_Dock_Area_Left
- //
- this._Panel2_Toolbars_Dock_Area_Left.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
- this._Panel2_Toolbars_Dock_Area_Left.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(251)))), ((int)(((byte)(250)))), ((int)(((byte)(247)))));
- this._Panel2_Toolbars_Dock_Area_Left.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
- this._Panel2_Toolbars_Dock_Area_Left.ForeColor = System.Drawing.SystemColors.ControlText;
- this._Panel2_Toolbars_Dock_Area_Left.Location = new System.Drawing.Point(0, 17);
- this._Panel2_Toolbars_Dock_Area_Left.Name = "_Panel2_Toolbars_Dock_Area_Left";
- this._Panel2_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 417);
- this._Panel2_Toolbars_Dock_Area_Left.ToolbarsManager = this.ultraToolbarsManager1;
- //
- // ultraToolbarsManager1
- //
- this.ultraToolbarsManager1.DesignerFlags = 1;
- this.ultraToolbarsManager1.DockWithinContainer = this.splitContainer3.Panel2;
- this.ultraToolbarsManager1.ShowFullMenusDelay = 500;
- this.ultraToolbarsManager1.ShowQuickCustomizeButton = false;
- ultraToolbar1.DockedColumn = 0;
- ultraToolbar1.DockedRow = 0;
- ultraToolbar1.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
- buttonTool3,
- buttonTool4,
- buttonTool17,
- buttonTool7,
- buttonTool11,
- buttonTool12,
- buttonTool9,
- buttonTool22,
- buttonTool1,
- buttonTool20,
- buttonTool25,
- buttonTool15,
- buttonTool18,
- buttonTool28,
- buttonTool30,
- buttonTool31,
- buttonTool33,
- buttonTool35,
- buttonTool37,
- buttonTool38,
- buttonTool41});
- ultraToolbar1.Text = "UltraToolbar1";
- this.ultraToolbarsManager1.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
- ultraToolbar1});
- appearance36.Image = ((object)(resources.GetObject("appearance36.Image")));
- buttonTool10.SharedPropsInternal.AppearancesSmall.Appearance = appearance36;
- buttonTool10.SharedPropsInternal.Caption = "保存";
- buttonTool10.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool10.SharedPropsInternal.Visible = false;
- appearance118.Image = ((object)(resources.GetObject("appearance118.Image")));
- buttonTool13.SharedPropsInternal.AppearancesSmall.Appearance = appearance118;
- buttonTool13.SharedPropsInternal.Caption = "作废";
- buttonTool13.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool13.SharedPropsInternal.Visible = false;
- appearance119.Image = ((object)(resources.GetObject("appearance119.Image")));
- buttonTool14.SharedPropsInternal.AppearancesSmall.Appearance = appearance119;
- buttonTool14.SharedPropsInternal.Caption = "恢复";
- buttonTool14.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool14.SharedPropsInternal.Visible = false;
- appearance142.Image = ((object)(resources.GetObject("appearance142.Image")));
- buttonTool2.SharedPropsInternal.AppearancesSmall.Appearance = appearance142;
- buttonTool2.SharedPropsInternal.Caption = "分组";
- buttonTool2.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool2.SharedPropsInternal.Visible = false;
- appearance63.Image = ((object)(resources.GetObject("appearance63.Image")));
- buttonTool5.SharedPropsInternal.AppearancesSmall.Appearance = appearance63;
- buttonTool5.SharedPropsInternal.Caption = "新增";
- buttonTool5.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool5.SharedPropsInternal.Visible = false;
- appearance64.Image = ((object)(resources.GetObject("appearance64.Image")));
- buttonTool6.SharedPropsInternal.AppearancesSmall.Appearance = appearance64;
- buttonTool6.SharedPropsInternal.Caption = "修改";
- buttonTool6.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool6.SharedPropsInternal.Visible = false;
- appearance133.Image = ((object)(resources.GetObject("appearance133.Image")));
- buttonTool8.SharedPropsInternal.AppearancesSmall.Appearance = appearance133;
- buttonTool8.SharedPropsInternal.Caption = "接箍码维护";
- buttonTool8.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool8.SharedPropsInternal.Visible = false;
- appearance134.Image = ((object)(resources.GetObject("appearance134.Image")));
- buttonTool16.SharedPropsInternal.AppearancesSmall.Appearance = appearance134;
- buttonTool16.SharedPropsInternal.Caption = "备料码维护";
- buttonTool16.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool16.SharedPropsInternal.Visible = false;
- appearance28.Image = ((object)(resources.GetObject("appearance28.Image")));
- buttonTool19.SharedPropsInternal.AppearancesSmall.Appearance = appearance28;
- buttonTool19.SharedPropsInternal.Caption = "上传附件图片";
- buttonTool19.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool19.SharedPropsInternal.Visible = false;
- appearance34.Image = ((object)(resources.GetObject("appearance34.Image")));
- buttonTool21.SharedPropsInternal.AppearancesSmall.Appearance = appearance34;
- buttonTool21.SharedPropsInternal.Caption = "取消分组";
- buttonTool21.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool21.SharedPropsInternal.Visible = false;
- appearance35.Image = ((object)(resources.GetObject("appearance35.Image")));
- buttonTool23.SharedPropsInternal.AppearancesSmall.Appearance = appearance35;
- buttonTool23.SharedPropsInternal.Caption = "复制";
- buttonTool23.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool23.SharedPropsInternal.Visible = false;
- appearance61.Image = ((object)(resources.GetObject("appearance61.Image")));
- buttonTool24.SharedPropsInternal.AppearancesSmall.Appearance = appearance61;
- buttonTool24.SharedPropsInternal.Caption = "粘贴";
- buttonTool24.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool24.SharedPropsInternal.Visible = false;
- appearance62.Image = ((object)(resources.GetObject("appearance62.Image")));
- buttonTool26.SharedPropsInternal.AppearancesSmall.Appearance = appearance62;
- buttonTool26.SharedPropsInternal.Caption = "刷新";
- buttonTool26.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool26.SharedPropsInternal.Visible = false;
- appearance70.Image = ((object)(resources.GetObject("appearance70.Image")));
- buttonTool27.SharedPropsInternal.AppearancesSmall.Appearance = appearance70;
- buttonTool27.SharedPropsInternal.Caption = "规格维护";
- buttonTool27.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool27.SharedPropsInternal.Visible = false;
- appearance68.Image = ((object)(resources.GetObject("appearance68.Image")));
- buttonTool29.SharedPropsInternal.AppearancesSmall.Appearance = appearance68;
- buttonTool29.SharedPropsInternal.Caption = "设定制程";
- buttonTool29.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool29.SharedPropsInternal.Visible = false;
- appearance73.Image = ((object)(resources.GetObject("appearance73.Image")));
- buttonTool32.SharedPropsInternal.AppearancesSmall.Appearance = appearance73;
- buttonTool32.SharedPropsInternal.Caption = "复制基础MSC制程";
- buttonTool32.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool32.SharedPropsInternal.Visible = false;
- appearance26.Image = ((object)(resources.GetObject("appearance26.Image")));
- buttonTool34.SharedPropsInternal.AppearancesSmall.Appearance = appearance26;
- buttonTool34.SharedPropsInternal.Caption = "设定接箍";
- buttonTool34.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool34.SharedPropsInternal.Visible = false;
- appearance67.Image = ((object)(resources.GetObject("appearance67.Image")));
- buttonTool36.SharedPropsInternal.AppearancesSmall.Appearance = appearance67;
- buttonTool36.SharedPropsInternal.Caption = "设定附件图片";
- buttonTool36.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool36.SharedPropsInternal.Visible = false;
- appearance76.Image = ((object)(resources.GetObject("appearance76.Image")));
- buttonTool39.SharedPropsInternal.AppearancesSmall.Appearance = appearance76;
- buttonTool39.SharedPropsInternal.Caption = "保存拧接";
- buttonTool39.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool39.SharedPropsInternal.Visible = false;
- appearance77.Image = ((object)(resources.GetObject("appearance77.Image")));
- buttonTool40.SharedPropsInternal.AppearancesSmall.Appearance = appearance77;
- buttonTool40.SharedPropsInternal.Caption = "删除拧接";
- buttonTool40.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool40.SharedPropsInternal.Visible = false;
- buttonTool42.SharedPropsInternal.Caption = "保存模板";
- buttonTool42.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool42.SharedPropsInternal.Visible = false;
- this.ultraToolbarsManager1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
- buttonTool10,
- buttonTool13,
- buttonTool14,
- buttonTool2,
- buttonTool5,
- buttonTool6,
- buttonTool8,
- buttonTool16,
- buttonTool19,
- buttonTool21,
- buttonTool23,
- buttonTool24,
- buttonTool26,
- buttonTool27,
- buttonTool29,
- buttonTool32,
- buttonTool34,
- buttonTool36,
- buttonTool39,
- buttonTool40,
- buttonTool42});
- this.ultraToolbarsManager1.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.ultraToolbarsManager1_ToolClick);
- //
- // _Panel2_Toolbars_Dock_Area_Right
- //
- this._Panel2_Toolbars_Dock_Area_Right.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
- this._Panel2_Toolbars_Dock_Area_Right.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(251)))), ((int)(((byte)(250)))), ((int)(((byte)(247)))));
- this._Panel2_Toolbars_Dock_Area_Right.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
- this._Panel2_Toolbars_Dock_Area_Right.ForeColor = System.Drawing.SystemColors.ControlText;
- this._Panel2_Toolbars_Dock_Area_Right.Location = new System.Drawing.Point(627, 17);
- this._Panel2_Toolbars_Dock_Area_Right.Name = "_Panel2_Toolbars_Dock_Area_Right";
- this._Panel2_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 417);
- this._Panel2_Toolbars_Dock_Area_Right.ToolbarsManager = this.ultraToolbarsManager1;
- //
- // _Panel2_Toolbars_Dock_Area_Top
- //
- this._Panel2_Toolbars_Dock_Area_Top.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
- this._Panel2_Toolbars_Dock_Area_Top.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(251)))), ((int)(((byte)(250)))), ((int)(((byte)(247)))));
- this._Panel2_Toolbars_Dock_Area_Top.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
- this._Panel2_Toolbars_Dock_Area_Top.ForeColor = System.Drawing.SystemColors.ControlText;
- this._Panel2_Toolbars_Dock_Area_Top.Location = new System.Drawing.Point(0, 0);
- this._Panel2_Toolbars_Dock_Area_Top.Name = "_Panel2_Toolbars_Dock_Area_Top";
- this._Panel2_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(627, 17);
- this._Panel2_Toolbars_Dock_Area_Top.ToolbarsManager = this.ultraToolbarsManager1;
- //
- // _Panel2_Toolbars_Dock_Area_Bottom
- //
- this._Panel2_Toolbars_Dock_Area_Bottom.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
- this._Panel2_Toolbars_Dock_Area_Bottom.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(251)))), ((int)(((byte)(250)))), ((int)(((byte)(247)))));
- this._Panel2_Toolbars_Dock_Area_Bottom.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
- this._Panel2_Toolbars_Dock_Area_Bottom.ForeColor = System.Drawing.SystemColors.ControlText;
- this._Panel2_Toolbars_Dock_Area_Bottom.Location = new System.Drawing.Point(0, 434);
- this._Panel2_Toolbars_Dock_Area_Bottom.Name = "_Panel2_Toolbars_Dock_Area_Bottom";
- this._Panel2_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(627, 0);
- this._Panel2_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.ultraToolbarsManager1;
- //
- // ultraPanel1
- //
- this.ultraPanel1.AutoScroll = true;
- //
- // ultraPanel1.ClientArea
- //
- this.ultraPanel1.ClientArea.Controls.Add(this.label13);
- this.ultraPanel1.ClientArea.Controls.Add(this.textBox1);
- this.ultraPanel1.ClientArea.Controls.Add(this.label12);
- this.ultraPanel1.ClientArea.Controls.Add(this.txtUnit);
- this.ultraPanel1.ClientArea.Controls.Add(this.label11);
- this.ultraPanel1.ClientArea.Controls.Add(this.txtMsc);
- this.ultraPanel1.ClientArea.Controls.Add(this.cmbProduct);
- this.ultraPanel1.ClientArea.Controls.Add(this.label4);
- this.ultraPanel1.ClientArea.Controls.Add(this.label3);
- this.ultraPanel1.ClientArea.Controls.Add(this.txtSteel);
- this.ultraPanel1.ClientArea.Controls.Add(this.label2);
- this.ultraPanel1.ClientArea.Controls.Add(this.txtStd);
- this.ultraPanel1.Dock = System.Windows.Forms.DockStyle.Top;
- this.ultraPanel1.Location = new System.Drawing.Point(0, 0);
- this.ultraPanel1.Name = "ultraPanel1";
- this.ultraPanel1.Size = new System.Drawing.Size(318, 152);
- this.ultraPanel1.TabIndex = 0;
- //
- // label13
- //
- this.label13.AutoSize = true;
- this.label13.Location = new System.Drawing.Point(13, 100);
- this.label13.Name = "label13";
- this.label13.Size = new System.Drawing.Size(53, 12);
- this.label13.TabIndex = 19;
- this.label13.Text = "用途描述";
- //
- // textBox1
- //
- this.textBox1.Location = new System.Drawing.Point(91, 97);
- this.textBox1.Name = "textBox1";
- this.textBox1.Size = new System.Drawing.Size(149, 21);
- this.textBox1.TabIndex = 18;
- //
- // label12
- //
- this.label12.AutoSize = true;
- this.label12.Location = new System.Drawing.Point(13, 126);
- this.label12.Name = "label12";
- this.label12.Size = new System.Drawing.Size(53, 12);
- this.label12.TabIndex = 17;
- this.label12.Text = "第一科室";
- //
- // txtUnit
- //
- this.txtUnit.Location = new System.Drawing.Point(91, 122);
- this.txtUnit.Name = "txtUnit";
- this.txtUnit.Size = new System.Drawing.Size(149, 21);
- this.txtUnit.TabIndex = 16;
- //
- // label11
- //
- this.label11.AutoSize = true;
- this.label11.Location = new System.Drawing.Point(13, 75);
- this.label11.Name = "label11";
- this.label11.Size = new System.Drawing.Size(23, 12);
- this.label11.TabIndex = 15;
- this.label11.Text = "MSC";
- //
- // txtMsc
- //
- this.txtMsc.Location = new System.Drawing.Point(91, 72);
- this.txtMsc.Name = "txtMsc";
- this.txtMsc.Size = new System.Drawing.Size(149, 21);
- this.txtMsc.TabIndex = 14;
- //
- // cmbProduct
- //
- this.cmbProduct.AutoCompleteMode = Infragistics.Win.AutoCompleteMode.None;
- this.cmbProduct.ImeMode = System.Windows.Forms.ImeMode.Hangul;
- this.cmbProduct.Location = new System.Drawing.Point(92, 3);
- this.cmbProduct.Name = "cmbProduct";
- this.cmbProduct.Size = new System.Drawing.Size(148, 21);
- this.cmbProduct.TabIndex = 13;
- this.cmbProduct.ValueChanged += new System.EventHandler(this.cmbProduct_ValueChanged);
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.Location = new System.Drawing.Point(12, 50);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(77, 12);
- this.label4.TabIndex = 7;
- this.label4.Text = "钢级(牌号)";
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.Location = new System.Drawing.Point(12, 28);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(53, 12);
- this.label3.TabIndex = 4;
- this.label3.Text = "标准名称";
- //
- // txtSteel
- //
- this.txtSteel.Location = new System.Drawing.Point(91, 49);
- this.txtSteel.Name = "txtSteel";
- this.txtSteel.Size = new System.Drawing.Size(149, 21);
- this.txtSteel.TabIndex = 6;
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.Location = new System.Drawing.Point(12, 8);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(29, 12);
- this.label2.TabIndex = 2;
- this.label2.Text = "品名";
- //
- // txtStd
- //
- this.txtStd.Location = new System.Drawing.Point(91, 26);
- this.txtStd.Name = "txtStd";
- this.txtStd.Size = new System.Drawing.Size(149, 21);
- this.txtStd.TabIndex = 5;
- //
- // splitContainer1
- //
- this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.splitContainer1.Location = new System.Drawing.Point(0, 0);
- this.splitContainer1.Name = "splitContainer1";
- //
- // splitContainer1.Panel1
- //
- this.splitContainer1.Panel1.Controls.Add(this.ultraGroupBox1);
- //
- // splitContainer1.Panel2
- //
- this.splitContainer1.Panel2.Controls.Add(this.ultraTabControl1);
- this.splitContainer1.Size = new System.Drawing.Size(979, 577);
- this.splitContainer1.SplitterDistance = 344;
- this.splitContainer1.TabIndex = 1;
- this.splitContainer1.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(this.splitContainer1_SplitterMoved);
- //
- // ultraGroupBox1
- //
- this.ultraGroupBox1.Controls.Add(this.ultraExpandableGroupBox2);
- this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
- this.ultraGroupBox1.Name = "ultraGroupBox1";
- this.ultraGroupBox1.Size = new System.Drawing.Size(344, 577);
- this.ultraGroupBox1.TabIndex = 1;
- //
- // ultraExpandableGroupBox2
- //
- this.ultraExpandableGroupBox2.BorderStyle = Infragistics.Win.Misc.GroupBoxBorderStyle.None;
- this.ultraExpandableGroupBox2.Controls.Add(this.ultraExpandableGroupBoxPanel2);
- this.ultraExpandableGroupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraExpandableGroupBox2.ExpandedSize = new System.Drawing.Size(338, 574);
- this.ultraExpandableGroupBox2.HeaderPosition = Infragistics.Win.Misc.GroupBoxHeaderPosition.RightOnBorder;
- this.ultraExpandableGroupBox2.Location = new System.Drawing.Point(3, 0);
- this.ultraExpandableGroupBox2.Name = "ultraExpandableGroupBox2";
- this.ultraExpandableGroupBox2.Size = new System.Drawing.Size(338, 574);
- this.ultraExpandableGroupBox2.TabIndex = 1;
- this.ultraExpandableGroupBox2.VerticalTextOrientation = Infragistics.Win.Misc.GroupBoxVerticalTextOrientation.TopToBottom;
- this.ultraExpandableGroupBox2.ExpandedStateChanged += new System.EventHandler(this.ultraExpandableGroupBox2_ExpandedStateChanged);
- //
- // ultraExpandableGroupBoxPanel2
- //
- this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraGroupBox6);
- this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraExpandableGroupBox1);
- this.ultraExpandableGroupBoxPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraExpandableGroupBoxPanel2.Location = new System.Drawing.Point(1, 1);
- this.ultraExpandableGroupBoxPanel2.Name = "ultraExpandableGroupBoxPanel2";
- this.ultraExpandableGroupBoxPanel2.Size = new System.Drawing.Size(320, 572);
- this.ultraExpandableGroupBoxPanel2.TabIndex = 0;
- //
- // ultraGroupBox6
- //
- this.ultraGroupBox6.Controls.Add(this.treeMsc);
- this.ultraGroupBox6.Controls.Add(this.panel3);
- this.ultraGroupBox6.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGroupBox6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraGroupBox6.Location = new System.Drawing.Point(0, 362);
- this.ultraGroupBox6.Name = "ultraGroupBox6";
- this.ultraGroupBox6.Size = new System.Drawing.Size(320, 210);
- this.ultraGroupBox6.TabIndex = 1;
- //
- // treeMsc
- //
- this.treeMsc.Dock = System.Windows.Forms.DockStyle.Fill;
- this.treeMsc.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.treeMsc.ItemHeight = 15;
- this.treeMsc.Location = new System.Drawing.Point(3, 28);
- this.treeMsc.Name = "treeMsc";
- this.treeMsc.Size = new System.Drawing.Size(314, 179);
- this.treeMsc.TabIndex = 0;
- this.treeMsc.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeMsc_AfterSelect);
- //
- // panel3
- //
- this.panel3.Controls.Add(this.ultraLabel2);
- this.panel3.Controls.Add(this.lblMsc);
- this.panel3.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel3.Location = new System.Drawing.Point(3, 0);
- this.panel3.Name = "panel3";
- this.panel3.Size = new System.Drawing.Size(314, 28);
- this.panel3.TabIndex = 1;
- //
- // ultraLabel2
- //
- appearance2.TextHAlignAsString = "Right";
- this.ultraLabel2.Appearance = appearance2;
- this.ultraLabel2.AutoSize = true;
- this.ultraLabel2.Location = new System.Drawing.Point(12, 7);
- this.ultraLabel2.Name = "ultraLabel2";
- this.ultraLabel2.Size = new System.Drawing.Size(79, 16);
- this.ultraLabel2.TabIndex = 12;
- this.ultraLabel2.Text = "冶金规范码:";
- //
- // lblMsc
- //
- this.lblMsc.AutoSize = true;
- this.lblMsc.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblMsc.Location = new System.Drawing.Point(95, 9);
- this.lblMsc.Name = "lblMsc";
- this.lblMsc.Size = new System.Drawing.Size(17, 12);
- this.lblMsc.TabIndex = 1;
- this.lblMsc.Text = "无";
- //
- // ultraExpandableGroupBox1
- //
- this.ultraExpandableGroupBox1.BorderStyle = Infragistics.Win.Misc.GroupBoxBorderStyle.None;
- this.ultraExpandableGroupBox1.Controls.Add(this.ultraExpandableGroupBoxPanel1);
- this.ultraExpandableGroupBox1.Dock = System.Windows.Forms.DockStyle.Top;
- this.ultraExpandableGroupBox1.ExpandedSize = new System.Drawing.Size(320, 362);
- this.ultraExpandableGroupBox1.Location = new System.Drawing.Point(0, 0);
- this.ultraExpandableGroupBox1.Name = "ultraExpandableGroupBox1";
- this.ultraExpandableGroupBox1.Size = new System.Drawing.Size(320, 362);
- this.ultraExpandableGroupBox1.TabIndex = 0;
- //
- // ultraExpandableGroupBoxPanel1
- //
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraGrid1);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraPanel1);
- this.ultraExpandableGroupBoxPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraExpandableGroupBoxPanel1.Location = new System.Drawing.Point(1, 17);
- this.ultraExpandableGroupBoxPanel1.Name = "ultraExpandableGroupBoxPanel1";
- this.ultraExpandableGroupBoxPanel1.Size = new System.Drawing.Size(318, 344);
- this.ultraExpandableGroupBoxPanel1.TabIndex = 0;
- //
- // ultraGrid1
- //
- this.ultraGrid1.DataMember = "COM_PSC";
- this.ultraGrid1.DataSource = this.dataSet1;
- appearance49.BackColor = System.Drawing.SystemColors.Window;
- appearance49.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid1.DisplayLayout.Appearance = appearance49;
- ultraGridColumn104.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn104.Header.VisiblePosition = 1;
- ultraGridColumn105.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn105.Header.VisiblePosition = 0;
- ultraGridColumn105.Width = 233;
- ultraGridColumn106.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn106.Header.VisiblePosition = 2;
- ultraGridColumn107.Header.VisiblePosition = 3;
- ultraGridColumn107.Hidden = true;
- ultraGridColumn108.Header.VisiblePosition = 4;
- ultraGridColumn108.Hidden = true;
- ultraGridColumn109.Header.VisiblePosition = 5;
- ultraGridColumn109.Hidden = true;
- ultraGridColumn110.Header.VisiblePosition = 6;
- ultraGridColumn110.Hidden = true;
- ultraGridColumn111.Header.VisiblePosition = 7;
- ultraGridColumn111.Hidden = true;
- ultraGridColumn112.Header.VisiblePosition = 8;
- ultraGridColumn112.Hidden = true;
- ultraGridColumn113.Header.VisiblePosition = 9;
- ultraGridColumn113.Hidden = true;
- ultraGridColumn114.Header.VisiblePosition = 10;
- ultraGridColumn114.Hidden = true;
- ultraGridColumn115.Header.VisiblePosition = 11;
- ultraGridColumn115.Hidden = true;
- ultraGridColumn116.Header.VisiblePosition = 12;
- ultraGridColumn116.Hidden = true;
- ultraGridColumn117.Header.VisiblePosition = 13;
- ultraGridColumn117.Hidden = true;
- ultraGridColumn118.Header.VisiblePosition = 14;
- ultraGridColumn118.Hidden = true;
- ultraGridBand6.Columns.AddRange(new object[] {
- ultraGridColumn104,
- ultraGridColumn105,
- ultraGridColumn106,
- ultraGridColumn107,
- ultraGridColumn108,
- ultraGridColumn109,
- ultraGridColumn110,
- ultraGridColumn111,
- ultraGridColumn112,
- ultraGridColumn113,
- ultraGridColumn114,
- ultraGridColumn115,
- ultraGridColumn116,
- ultraGridColumn117,
- ultraGridColumn118});
- ultraGridBand6.Override.SelectedAppearancesEnabled = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand6);
- this.ultraGrid1.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid1.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance50.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance50.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance50.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance50.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid1.DisplayLayout.GroupByBox.Appearance = appearance50;
- appearance51.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid1.DisplayLayout.GroupByBox.BandLabelAppearance = appearance51;
- this.ultraGrid1.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid1.DisplayLayout.GroupByBox.Hidden = true;
- appearance52.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance52.BackColor2 = System.Drawing.SystemColors.Control;
- appearance52.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance52.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid1.DisplayLayout.GroupByBox.PromptAppearance = appearance52;
- this.ultraGrid1.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid1.DisplayLayout.MaxRowScrollRegions = 1;
- appearance53.BackColor = System.Drawing.SystemColors.Window;
- appearance53.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid1.DisplayLayout.Override.ActiveCellAppearance = appearance53;
- appearance54.BackColor = System.Drawing.SystemColors.Highlight;
- appearance54.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance = appearance54;
- this.ultraGrid1.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid1.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance55.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance55;
- appearance56.BorderColor = System.Drawing.Color.Silver;
- appearance56.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid1.DisplayLayout.Override.CellAppearance = appearance56;
- this.ultraGrid1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid1.DisplayLayout.Override.CellPadding = 0;
- appearance57.BackColor = System.Drawing.SystemColors.Control;
- appearance57.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance57.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance57.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance57.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid1.DisplayLayout.Override.GroupByRowAppearance = appearance57;
- appearance58.TextHAlignAsString = "Left";
- this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance58;
- this.ultraGrid1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid1.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
- this.ultraGrid1.DisplayLayout.Override.HotTrackRowCellAppearance = appearance1;
- appearance59.BackColor = System.Drawing.SystemColors.Window;
- appearance59.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid1.DisplayLayout.Override.RowAppearance = appearance59;
- this.ultraGrid1.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance60.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid1.DisplayLayout.Override.TemplateAddRowAppearance = appearance60;
- this.ultraGrid1.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid1.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid1.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraGrid1.Location = new System.Drawing.Point(0, 152);
- this.ultraGrid1.Name = "ultraGrid1";
- this.ultraGrid1.Size = new System.Drawing.Size(318, 192);
- this.ultraGrid1.TabIndex = 0;
- this.ultraGrid1.Text = "ultraGrid1";
- this.ultraGrid1.AfterRowActivate += new System.EventHandler(this.ultraGrid1_AfterRowActivate);
- this.ultraGrid1.BeforeRowDeactivate += new System.ComponentModel.CancelEventHandler(this.ultraGrid1_BeforeRowDeactivate);
- //
- // ultraTabControl1
- //
- this.ultraTabControl1.Controls.Add(this.ultraTabSharedControlsPage1);
- this.ultraTabControl1.Controls.Add(this.ultraTabPageControl1);
- this.ultraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraTabControl1.Location = new System.Drawing.Point(0, 0);
- this.ultraTabControl1.Name = "ultraTabControl1";
- this.ultraTabControl1.SharedControlsPage = this.ultraTabSharedControlsPage1;
- this.ultraTabControl1.Size = new System.Drawing.Size(631, 577);
- this.ultraTabControl1.TabIndex = 4;
- ultraTab4.Key = "MSC";
- ultraTab4.TabPage = this.ultraTabPageControl1;
- ultraTab4.Text = "MSC";
- this.ultraTabControl1.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
- ultraTab4});
- this.ultraTabControl1.ViewStyle = Infragistics.Win.UltraWinTabControl.ViewStyle.VisualStudio2005;
- this.ultraTabControl1.SelectedTabChanged += new Infragistics.Win.UltraWinTabControl.SelectedTabChangedEventHandler(this.ultraTabControl1_SelectedTabChanged);
- //
- // ultraTabSharedControlsPage1
- //
- this.ultraTabSharedControlsPage1.Location = new System.Drawing.Point(-7500, -8000);
- this.ultraTabSharedControlsPage1.Name = "ultraTabSharedControlsPage1";
- this.ultraTabSharedControlsPage1.Size = new System.Drawing.Size(627, 554);
- //
- // FrmProPSCMSC2
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(979, 577);
- this.Controls.Add(this.splitContainer1);
- this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.Name = "FrmProPSCMSC2";
- this.Text = "冶金规范管理";
- this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmProPSCMSC2_FormClosing);
- this.Load += new System.EventHandler(this.FrmProPSCMSC2_Load);
- this.Shown += new System.EventHandler(this.FrmProPSCMSC2_Shown);
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor16)).EndInit();
- this.ultraTabPageControl4.ResumeLayout(false);
- this.ultraTabPageControl4.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.craftImg)).EndInit();
- this.ultraTabPageControl5.ResumeLayout(false);
- this.ultraPanel3.ClientArea.ResumeLayout(false);
- this.ultraPanel3.ClientArea.PerformLayout();
- this.ultraPanel3.ResumeLayout(false);
- this.ultraTabPageControl7.ResumeLayout(false);
- this.ultraPanel2.ClientArea.ResumeLayout(false);
- this.ultraPanel2.ClientArea.PerformLayout();
- this.ultraPanel2.ResumeLayout(false);
- this.ultraTabPageControl10.ResumeLayout(false);
- this.ultraPanel4.ClientArea.ResumeLayout(false);
- this.ultraPanel4.ClientArea.PerformLayout();
- this.ultraPanel4.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor1)).EndInit();
- this.ultraTabPageControl13.ResumeLayout(false);
- this.ultraTabPageControl13.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid5)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable4)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable5)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable6)).EndInit();
- this.ultraTabPageControl15.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid7)).EndInit();
- this.ultraTabPageControl14.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor8)).EndInit();
- this.ultraTabPageControl6.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl2)).EndInit();
- this.ultraTabControl2.ResumeLayout(false);
- this.ultraTabPageControl8.ResumeLayout(false);
- this.splitContainer4.Panel1.ResumeLayout(false);
- this.splitContainer4.Panel2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer4)).EndInit();
- this.splitContainer4.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid4)).EndInit();
- this.panel2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl4)).EndInit();
- this.ultraTabControl4.ResumeLayout(false);
- this.ultraTabPageControl11.ResumeLayout(false);
- this.ultraTabPageControl12.ResumeLayout(false);
- this.ultraTabPageControl12.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).EndInit();
- this.ultraTabPageControl2.ResumeLayout(false);
- this.ultraTabPageControl1.ResumeLayout(false);
- this.ultraTabPageControl1_Fill_Panel.ResumeLayout(false);
- this.splitContainer3.Panel1.ResumeLayout(false);
- this.splitContainer3.Panel2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer3)).EndInit();
- this.splitContainer3.ResumeLayout(false);
- this.splitContainer2.Panel1.ResumeLayout(false);
- this.splitContainer2.Panel2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
- this.splitContainer2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox3)).EndInit();
- this.ultraExpandableGroupBox3.ResumeLayout(false);
- this.Panel2_Fill_Panel.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl3)).EndInit();
- this.ultraTabControl3.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).EndInit();
- this.ultraPanel1.ClientArea.ResumeLayout(false);
- this.ultraPanel1.ClientArea.PerformLayout();
- this.ultraPanel1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.cmbProduct)).EndInit();
- this.splitContainer1.Panel1.ResumeLayout(false);
- this.splitContainer1.Panel2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
- this.splitContainer1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
- this.ultraGroupBox1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox2)).EndInit();
- this.ultraExpandableGroupBox2.ResumeLayout(false);
- this.ultraExpandableGroupBoxPanel2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox6)).EndInit();
- this.ultraGroupBox6.ResumeLayout(false);
- this.panel3.ResumeLayout(false);
- this.panel3.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).EndInit();
- this.ultraExpandableGroupBox1.ResumeLayout(false);
- this.ultraExpandableGroupBoxPanel1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).EndInit();
- this.ultraTabControl1.ResumeLayout(false);
- this.ResumeLayout(false);
- }
- #endregion
- private Infragistics.Win.Misc.UltraPanel ultraPanel1;
- public Infragistics.Win.Misc.UltraPanel UltraPanel1
- {
- get { return ultraPanel1; }
- set { ultraPanel1 = value; }
- }
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.Label label4;
- private System.Windows.Forms.SplitContainer splitContainer1;
- public System.Windows.Forms.SplitContainer SplitContainer1
- {
- get { return splitContainer1; }
- set { splitContainer1 = value; }
- }
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox1;
- private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox1;
- private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel1;
- private System.Data.DataSet dataSet1;
- private System.Data.DataColumn dataColumn1;
- private System.Data.DataColumn dataColumn2;
- private System.Data.DataColumn dataColumn3;
- private System.Windows.Forms.TreeView treeMsc;
- private System.Windows.Forms.TextBox txtPscCode;
- internal System.Windows.Forms.TextBox TxtPscCode
- {
- get { return txtPscCode; }
- set { txtPscCode = value; }
- }
- internal System.Windows.Forms.TextBox txtStd;
- internal System.Windows.Forms.TextBox txtSteel;
- internal System.Data.DataTable dataTable3;
- internal Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid1;
- private System.Data.DataColumn dataColumn30;
- private System.Data.DataColumn dataColumn31;
- private System.Data.DataColumn dataColumn32;
- private System.Data.DataColumn dataColumn33;
- private System.Data.DataColumn dataColumn34;
- private System.Data.DataColumn dataColumn35;
- private System.Data.DataColumn dataColumn36;
- private System.Data.DataColumn dataColumn37;
- private System.Data.DataColumn dataColumn38;
- private System.Data.DataColumn dataColumn39;
- private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox2;
- public Infragistics.Win.Misc.UltraExpandableGroupBox UltraExpandableGroupBox2
- {
- get { return ultraExpandableGroupBox2; }
- set { ultraExpandableGroupBox2 = value; }
- }
- private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel2;
- private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage1;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl1;
- private System.Data.DataTable dataTable4;
- private System.Data.DataColumn dataColumn43;
- private System.Data.DataColumn dataColumn44;
- private System.Data.DataColumn dataColumn45;
- private System.Data.DataColumn dataColumn46;
- private System.Data.DataColumn dataColumn47;
- private System.Data.DataColumn dataColumn48;
- private System.Data.DataColumn dataColumn49;
- private System.Data.DataColumn dataColumn50;
- private System.Data.DataColumn dataColumn51;
- private System.Data.DataColumn dataColumn52;
- private System.Data.DataColumn dataColumn53;
- private System.Data.DataColumn dataColumn54;
- private System.Data.DataColumn dataColumn55;
- private System.Data.DataTable dataTable5;
- private System.Data.DataColumn dataColumn56;
- private System.Data.DataColumn dataColumn57;
- private System.Data.DataColumn dataColumn58;
- private System.Data.DataColumn dataColumn59;
- private System.Data.DataColumn dataColumn60;
- private System.Data.DataColumn dataColumn61;
- private System.Data.DataColumn dataColumn62;
- private System.Data.DataColumn dataColumn63;
- private System.Data.DataColumn dataColumn64;
- private System.Data.DataColumn dataColumn65;
- private System.Data.DataColumn dataColumn66;
- private System.Data.DataColumn dataColumn67;
- private System.Data.DataColumn dataColumn68;
- private System.Data.DataColumn dataColumn69;
- private System.Data.DataColumn dataColumn70;
- private System.Data.DataColumn dataColumn71;
- private System.Data.DataColumn dataColumn72;
- private System.Data.DataTable dataTable1;
- public System.Data.DataTable COM_MSC_GRADE1
- {
- get { return dataTable1; }
- set { dataTable1 = value; }
- }
- private System.Data.DataColumn dataColumn94;
- private System.Data.DataColumn dataColumn95;
- private System.Data.DataColumn dataColumn96;
- private System.Data.DataColumn dataColumn97;
- private System.Data.DataColumn dataColumn98;
- private System.Data.DataColumn dataColumn99;
- private System.Data.DataColumn dataColumn100;
- private System.Data.DataColumn dataColumn101;
- private System.Data.DataColumn dataColumn102;
- private System.Data.DataColumn dataColumn103;
- private System.Data.DataColumn dataColumn104;
- private System.Data.DataColumn dataColumn105;
- private System.Data.DataColumn dataColumn106;
- private System.Data.DataColumn dataColumn107;
- private System.Data.DataColumn dataColumn108;
- private System.Data.DataColumn dataColumn109;
- private System.Data.DataColumn dataColumn110;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid7;
- public Infragistics.Win.UltraWinGrid.UltraGrid UltraGrid7
- {
- get { return ultraGrid7; }
- set { ultraGrid7 = value; }
- }
- private Infragistics.Win.UltraWinDock.WindowDockingArea windowDockingArea4;
- private Infragistics.Win.UltraWinDock.WindowDockingArea windowDockingArea1;
- private Infragistics.Win.UltraWinDock.DockableWindow dockableWindow2;
- private System.Data.DataColumn dataColumn111;
- private System.Data.DataColumn dataColumn73;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox6;
- private System.Windows.Forms.Panel panel3;
- private System.Windows.Forms.Label lblMsc;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor ultraNumericEditor1;
- internal System.Windows.Forms.CheckBox ckbDeleteFilter;
- internal Infragistics.Win.UltraWinTabControl.UltraTabControl ultraTabControl1;
- private System.Windows.Forms.SplitContainer splitContainer3;
- public System.Windows.Forms.SplitContainer SplitContainer3
- {
- get { return splitContainer3; }
- set { splitContainer3 = value; }
- }
- private System.Windows.Forms.SplitContainer splitContainer2;
- public System.Windows.Forms.SplitContainer SplitContainer2
- {
- get { return splitContainer2; }
- set { splitContainer2 = value; }
- }
- private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox3;
- private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel3;
- private Infragistics.Win.UltraWinTabControl.UltraTabControl ultraTabControl2;
- private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage2;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl4;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl5;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl7;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl9;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl10;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid5;
- internal Infragistics.Win.UltraWinGrid.UltraGrid UltraGrid5
- {
- get { return ultraGrid5; }
- set { ultraGrid5 = value; }
- }
- private System.Windows.Forms.Panel panel2;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid4;
- internal Infragistics.Win.UltraWinGrid.UltraGrid UltraGrid4
- {
- get { return ultraGrid4; }
- set { ultraGrid4 = value; }
- }
- private System.Windows.Forms.SplitContainer splitContainer4;
- private System.Windows.Forms.Panel ultraTabPageControl1_Fill_Panel;
- private System.Windows.Forms.Panel Panel2_Fill_Panel;
- private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _Panel2_Toolbars_Dock_Area_Left;
- private Infragistics.Win.UltraWinToolbars.UltraToolbarsManager ultraToolbarsManager1;
- public Infragistics.Win.UltraWinToolbars.UltraToolbarsManager UltraToolbarsManager1
- {
- get { return ultraToolbarsManager1; }
- set { ultraToolbarsManager1 = value; }
- }
- private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _Panel2_Toolbars_Dock_Area_Right;
- private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _Panel2_Toolbars_Dock_Area_Top;
- private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _Panel2_Toolbars_Dock_Area_Bottom;
- private System.Data.DataColumn dataColumn116;
- private System.Data.DataColumn dataColumn117;
- private System.Data.DataColumn dataColumn118;
- private System.Data.DataColumn dataColumn119;
- private System.Data.DataColumn dataColumn120;
- private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage3;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl6;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl8;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl11;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl12;
- private CtrlMscJg ctrlMscJg1;
- public CtrlMscJg CtrlMscJg1
- {
- get { return ctrlMscJg1; }
- set { ctrlMscJg1 = value; }
- }
- private Infragistics.Win.UltraWinTabControl.UltraTabControl ultraTabControl3;
- internal Infragistics.Win.UltraWinTabControl.UltraTabControl UltraTabControl3
- {
- get { return ultraTabControl3; }
- set { ultraTabControl3 = value; }
- }
- private ControlMsc controlMsc1;
- private CtrlMscBl ctrlMscBl1;
- public CtrlMscBl CtrlMscBl1
- {
- get { return ctrlMscBl1; }
- set { ctrlMscBl1 = value; }
- }
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl2;
- private System.Data.DataColumn dataColumn4;
- private System.Data.DataColumn dataColumn5;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl3;
- private System.Data.DataColumn dataColumn6;
- private System.Data.DataColumn dataColumn7;
- private System.Data.DataColumn dataColumn8;
- private System.Data.DataColumn dataColumn9;
- private System.Data.DataColumn dataColumn10;
- private System.Data.DataTable dataTable2;
- public System.Data.DataTable COM_MSC_GRADE_R_SPEC1
- {
- get { return dataTable2; }
- set { dataTable2 = value; }
- }
- private System.Data.DataColumn dataColumn11;
- private System.Data.DataColumn dataColumn12;
- private System.Data.DataColumn dataColumn13;
- private System.Data.DataColumn dataColumn14;
- private System.Data.DataColumn dataColumn15;
- private System.Data.DataColumn dataColumn16;
- private System.Data.DataColumn dataColumn17;
- private System.Data.DataColumn dataColumn18;
- private System.Data.DataColumn dataColumn19;
- private System.Data.DataColumn dataColumn20;
- private System.Data.DataColumn dataColumn21;
- private System.Data.DataColumn dataColumn22;
- private System.Data.DataColumn dataColumn23;
- private System.Data.DataColumn dataColumn24;
- private System.Data.DataColumn dataColumn25;
- private System.Data.DataColumn dataColumn26;
- private System.Data.DataColumn dataColumn27;
- private Infragistics.Win.Misc.UltraLabel ultraLabel2;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor cmbProduct;
- private System.Data.DataColumn dataColumn28;
- private System.Data.DataColumn dataColumn29;
- private System.Data.DataColumn dataColumn40;
- private System.Data.DataColumn dataColumn41;
- private Infragistics.Win.Misc.UltraPanel ultraPanel2;
- private Infragistics.Win.Misc.UltraPanel ultraPanel3;
- private Infragistics.Win.Misc.UltraPanel ultraPanel4;
- private System.Windows.Forms.Label label5;
- private System.Windows.Forms.Label label6;
- private System.Windows.Forms.Label label7;
- private System.Windows.Forms.Label label8;
- private System.Windows.Forms.Label label9;
- private System.Windows.Forms.Label label10;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor craftImg;
- private System.Data.DataColumn dataColumn42;
- private System.Windows.Forms.Label label11;
- internal System.Windows.Forms.TextBox txtMsc;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor1;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor1;
- private System.Data.DataColumn dataColumn74;
- private Infragistics.Win.UltraWinTabControl.UltraTabControl ultraTabControl4;
- public Infragistics.Win.UltraWinTabControl.UltraTabControl UltraTabControl4
- {
- get { return ultraTabControl4; }
- set { ultraTabControl4 = value; }
- }
- private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage4;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl13;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl14;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl15;
- private System.Windows.Forms.RichTextBox lblStationPath;
- private System.Data.DataColumn dataColumn75;
- private System.Data.DataColumn dataColumn76;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor16;
- private System.Data.DataColumn dataColumn77;
- private System.Windows.Forms.Label label12;
- internal System.Windows.Forms.TextBox txtUnit;
- private Infragistics.Win.Misc.UltraLabel ultraLabel1;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid2;
- private System.Data.DataTable dataTable6;
- private System.Data.DataColumn dataColumn78;
- private System.Data.DataColumn dataColumn79;
- private System.Data.DataColumn dataColumn80;
- private System.Data.DataColumn dataColumn81;
- private System.Data.DataColumn dataColumn82;
- private System.Data.DataColumn dataColumn83;
- private System.Data.DataColumn dataColumn84;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor8;
- private System.Data.DataColumn dataColumn85;
- private System.Data.DataColumn dataColumn86;
- private System.Windows.Forms.Label label13;
- internal System.Windows.Forms.TextBox textBox1;
- private System.Data.DataColumn dataColumn87;
- public Infragistics.Win.UltraWinEditors.UltraComboEditor CmbProduct
- {
- get { return cmbProduct; }
- set { cmbProduct = value; }
- }
- }
- }
|