FrmProPSCMSC2.Designer.cs 250 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125
  1. namespace Core.StlMes.Client.Qcm
  2. {
  3. partial class FrmProPSCMSC2
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. Infragistics.Win.UltraWinEditors.EditorButton editorButton1 = new Infragistics.Win.UltraWinEditors.EditorButton();
  30. Infragistics.Win.UltraWinEditors.EditorButton editorButton2 = new Infragistics.Win.UltraWinEditors.EditorButton("Show");
  31. Infragistics.Win.UltraWinEditors.EditorButton editorButton3 = new Infragistics.Win.UltraWinEditors.EditorButton("Upload");
  32. Infragistics.Win.UltraWinEditors.EditorButton editorButton4 = new Infragistics.Win.UltraWinEditors.EditorButton("select");
  33. Infragistics.Win.UltraWinEditors.EditorButton editorButton5 = new Infragistics.Win.UltraWinEditors.EditorButton("choice");
  34. Infragistics.Win.Appearance appearance29 = new Infragistics.Win.Appearance();
  35. Infragistics.Win.Appearance appearance30 = new Infragistics.Win.Appearance();
  36. Infragistics.Win.Appearance appearance31 = new Infragistics.Win.Appearance();
  37. Infragistics.Win.ValueListItem valueListItem1 = new Infragistics.Win.ValueListItem();
  38. Infragistics.Win.ValueListItem valueListItem2 = new Infragistics.Win.ValueListItem();
  39. Infragistics.Win.Appearance appearance71 = new Infragistics.Win.Appearance();
  40. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("COM_BASE_PROCESS", -1);
  41. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PROCESS_CODE");
  42. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PROCESS_DESC");
  43. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STYLE");
  44. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PROCESS_ID");
  45. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("COST");
  46. Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
  47. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATE_NAME");
  48. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATE_TIME");
  49. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UPDATE_NAME");
  50. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UPDATE_TIME");
  51. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DELETE_NAME");
  52. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DELETE_TIME");
  53. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("VALIDFLAG");
  54. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MEMO");
  55. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MINUTE_PRODUCT");
  56. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MINUTE_WAITE");
  57. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MSC");
  58. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ICOUNT");
  59. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("VALIDFLAG_NAME");
  60. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BACKLOG_SEQ");
  61. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CIC");
  62. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PIC");
  63. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SIC");
  64. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DIC");
  65. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WIC");
  66. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PROCESS_CODE_C");
  67. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MAX_COUNT");
  68. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PROCESS_SEQ_OLD");
  69. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PROCESS_CODE_C_OLD");
  70. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GIC");
  71. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BATCH_WAITE");
  72. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MINUTE_PRODUCT_OUT");
  73. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MINUTE_WAITE_OUT");
  74. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BATCH_WAITE_OUT");
  75. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PROCESS_FILE");
  76. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PROCESS_FILE_NAME");
  77. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CHK", 0);
  78. Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
  79. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BTN", 1);
  80. Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
  81. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BTN2", 2);
  82. Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
  83. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BTN3", 3);
  84. Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
  85. Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup1 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup0", 2370295);
  86. Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup2 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup1", 2370296);
  87. Infragistics.Win.Appearance appearance78 = new Infragistics.Win.Appearance();
  88. Infragistics.Win.Appearance appearance79 = new Infragistics.Win.Appearance();
  89. Infragistics.Win.Appearance appearance80 = new Infragistics.Win.Appearance();
  90. Infragistics.Win.Appearance appearance81 = new Infragistics.Win.Appearance();
  91. Infragistics.Win.Appearance appearance82 = new Infragistics.Win.Appearance();
  92. Infragistics.Win.Appearance appearance83 = new Infragistics.Win.Appearance();
  93. Infragistics.Win.Appearance appearance84 = new Infragistics.Win.Appearance();
  94. Infragistics.Win.Appearance appearance97 = new Infragistics.Win.Appearance();
  95. Infragistics.Win.Appearance appearance98 = new Infragistics.Win.Appearance();
  96. Infragistics.Win.Appearance appearance99 = new Infragistics.Win.Appearance();
  97. Infragistics.Win.Appearance appearance100 = new Infragistics.Win.Appearance();
  98. Infragistics.Win.Appearance appearance101 = new Infragistics.Win.Appearance();
  99. Infragistics.Win.Appearance appearance85 = new Infragistics.Win.Appearance();
  100. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("dataTable1", -1);
  101. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GRADECODE");
  102. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GRADENAME", -1, null, 0, Infragistics.Win.UltraWinGrid.SortIndicator.Descending, false);
  103. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ASSORTMENT_CODE");
  104. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ASSORTMENT_NAME");
  105. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn44 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATE_NAME");
  106. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn45 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATE_TIME");
  107. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn46 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UPDATE_NAME");
  108. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn47 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UPDATE_TIME");
  109. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn48 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DELETE_NAME");
  110. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn49 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DELETE_TIME");
  111. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn50 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("VALIDFLAG");
  112. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn51 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MEMO");
  113. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn52 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MSC");
  114. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn53 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MSC_PLINE");
  115. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn54 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STD_CODE");
  116. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn55 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STD_NAME");
  117. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn56 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CIC");
  118. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn57 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PRIORITY");
  119. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn58 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Relation1");
  120. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn59 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BTN", 0);
  121. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn60 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DELETE", 1);
  122. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand3 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Relation1", 0);
  123. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn61 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MSC");
  124. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn62 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MSC_PLINE");
  125. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn63 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GRADECODE");
  126. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn64 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GRADENAME");
  127. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn65 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("HEIGHT_MIN");
  128. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn66 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DIMATER_MIN");
  129. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn67 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DIMATER_MAX");
  130. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn68 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("HEIGHT_MIAX");
  131. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn69 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATE_NAME");
  132. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn70 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATE_TIME");
  133. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn71 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UPDATE_NAME");
  134. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn72 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UPDATE_TIME");
  135. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn73 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DELETE_NAME");
  136. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn74 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DELETE_TIME");
  137. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn75 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("VALIDFLAG");
  138. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn76 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MEMO");
  139. Infragistics.Win.Appearance appearance86 = new Infragistics.Win.Appearance();
  140. Infragistics.Win.Appearance appearance87 = new Infragistics.Win.Appearance();
  141. Infragistics.Win.Appearance appearance88 = new Infragistics.Win.Appearance();
  142. Infragistics.Win.Appearance appearance89 = new Infragistics.Win.Appearance();
  143. Infragistics.Win.Appearance appearance90 = new Infragistics.Win.Appearance();
  144. Infragistics.Win.Appearance appearance91 = new Infragistics.Win.Appearance();
  145. Infragistics.Win.Appearance appearance92 = new Infragistics.Win.Appearance();
  146. Infragistics.Win.Appearance appearance93 = new Infragistics.Win.Appearance();
  147. Infragistics.Win.Appearance appearance94 = new Infragistics.Win.Appearance();
  148. Infragistics.Win.Appearance appearance95 = new Infragistics.Win.Appearance();
  149. Infragistics.Win.Appearance appearance96 = new Infragistics.Win.Appearance();
  150. Infragistics.Win.UltraWinEditors.EditorButton editorButton6 = new Infragistics.Win.UltraWinEditors.EditorButton();
  151. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab2 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  152. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab6 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  153. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab7 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  154. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab9 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  155. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab10 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  156. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab5 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  157. Infragistics.Win.Appearance appearance37 = new Infragistics.Win.Appearance();
  158. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand4 = new Infragistics.Win.UltraWinGrid.UltraGridBand("COM_MSC_BACKLOG", -1);
  159. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn77 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MSC");
  160. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn78 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MSC_PLINE", -1, null, 0, Infragistics.Win.UltraWinGrid.SortIndicator.Ascending, false);
  161. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn79 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WHOLE_BACKLOG");
  162. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn80 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WHOLE_BACKLOG_DESC");
  163. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn81 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATE_NAME");
  164. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn82 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATE_TIME");
  165. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn83 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UPDATE_NAME");
  166. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn84 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UPDATE_TIME");
  167. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn85 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DELETE_NAME");
  168. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn86 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DELETE_TIME");
  169. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn87 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("VALIDFLAG");
  170. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn88 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("VALIDFLAG_NAME");
  171. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn89 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MEMO");
  172. Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
  173. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn90 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PROCESS_NO");
  174. Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
  175. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn91 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CRAFT_PATH");
  176. Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
  177. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn92 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("AUTO_CRAFT");
  178. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn93 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("COPY_MSC_PLINE");
  179. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn94 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BTN1", 0);
  180. Infragistics.Win.Appearance appearance38 = new Infragistics.Win.Appearance();
  181. Infragistics.Win.Appearance appearance39 = new Infragistics.Win.Appearance();
  182. Infragistics.Win.Appearance appearance40 = new Infragistics.Win.Appearance();
  183. Infragistics.Win.Appearance appearance41 = new Infragistics.Win.Appearance();
  184. Infragistics.Win.Appearance appearance42 = new Infragistics.Win.Appearance();
  185. Infragistics.Win.Appearance appearance43 = new Infragistics.Win.Appearance();
  186. Infragistics.Win.Appearance appearance44 = new Infragistics.Win.Appearance();
  187. Infragistics.Win.Appearance appearance45 = new Infragistics.Win.Appearance();
  188. Infragistics.Win.Appearance appearance46 = new Infragistics.Win.Appearance();
  189. Infragistics.Win.Appearance appearance47 = new Infragistics.Win.Appearance();
  190. Infragistics.Win.Appearance appearance48 = new Infragistics.Win.Appearance();
  191. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab13 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  192. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab15 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  193. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab14 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  194. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmProPSCMSC2));
  195. Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
  196. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand5 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
  197. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn95 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SPEC_NAME");
  198. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn96 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MIN_H");
  199. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn97 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MAX_H");
  200. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn98 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MIN_D");
  201. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn99 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MAX_D");
  202. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn100 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MODEL_DESC");
  203. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn101 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MEMO");
  204. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn102 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SPEC_CODE");
  205. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn103 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MODEL_CODE");
  206. Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup3 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup0", 2370982);
  207. Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
  208. Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
  209. Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
  210. Infragistics.Win.Appearance appearance32 = new Infragistics.Win.Appearance();
  211. Infragistics.Win.Appearance appearance66 = new Infragistics.Win.Appearance();
  212. Infragistics.Win.Appearance appearance72 = new Infragistics.Win.Appearance();
  213. Infragistics.Win.Appearance appearance33 = new Infragistics.Win.Appearance();
  214. Infragistics.Win.Appearance appearance27 = new Infragistics.Win.Appearance();
  215. Infragistics.Win.Appearance appearance25 = new Infragistics.Win.Appearance();
  216. Infragistics.Win.Appearance appearance69 = new Infragistics.Win.Appearance();
  217. Infragistics.Win.Appearance appearance65 = new Infragistics.Win.Appearance();
  218. Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
  219. Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
  220. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab1 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  221. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab8 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  222. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab11 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  223. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab12 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  224. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab3 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  225. Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar1");
  226. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool3 = new Infragistics.Win.UltraWinToolbars.ButtonTool("新增");
  227. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool4 = new Infragistics.Win.UltraWinToolbars.ButtonTool("修改");
  228. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool17 = new Infragistics.Win.UltraWinToolbars.ButtonTool("保存");
  229. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool7 = new Infragistics.Win.UltraWinToolbars.ButtonTool("接箍码维护");
  230. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool11 = new Infragistics.Win.UltraWinToolbars.ButtonTool("作废");
  231. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool12 = new Infragistics.Win.UltraWinToolbars.ButtonTool("恢复");
  232. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool9 = new Infragistics.Win.UltraWinToolbars.ButtonTool("复制");
  233. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool22 = new Infragistics.Win.UltraWinToolbars.ButtonTool("粘贴");
  234. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool1 = new Infragistics.Win.UltraWinToolbars.ButtonTool("分组");
  235. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool20 = new Infragistics.Win.UltraWinToolbars.ButtonTool("取消分组");
  236. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool25 = new Infragistics.Win.UltraWinToolbars.ButtonTool("刷新");
  237. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool15 = new Infragistics.Win.UltraWinToolbars.ButtonTool("备料码维护");
  238. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool18 = new Infragistics.Win.UltraWinToolbars.ButtonTool("上传附件图片");
  239. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool28 = new Infragistics.Win.UltraWinToolbars.ButtonTool("规格维护");
  240. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool30 = new Infragistics.Win.UltraWinToolbars.ButtonTool("设定制程");
  241. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool31 = new Infragistics.Win.UltraWinToolbars.ButtonTool("复制基础MSC制程");
  242. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool33 = new Infragistics.Win.UltraWinToolbars.ButtonTool("设定接箍");
  243. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool35 = new Infragistics.Win.UltraWinToolbars.ButtonTool("设定附件图片");
  244. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool37 = new Infragistics.Win.UltraWinToolbars.ButtonTool("保存拧接");
  245. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool38 = new Infragistics.Win.UltraWinToolbars.ButtonTool("删除拧接");
  246. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool41 = new Infragistics.Win.UltraWinToolbars.ButtonTool("保存模板");
  247. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool10 = new Infragistics.Win.UltraWinToolbars.ButtonTool("保存");
  248. Infragistics.Win.Appearance appearance36 = new Infragistics.Win.Appearance();
  249. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool13 = new Infragistics.Win.UltraWinToolbars.ButtonTool("作废");
  250. Infragistics.Win.Appearance appearance118 = new Infragistics.Win.Appearance();
  251. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool14 = new Infragistics.Win.UltraWinToolbars.ButtonTool("恢复");
  252. Infragistics.Win.Appearance appearance119 = new Infragistics.Win.Appearance();
  253. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool2 = new Infragistics.Win.UltraWinToolbars.ButtonTool("分组");
  254. Infragistics.Win.Appearance appearance142 = new Infragistics.Win.Appearance();
  255. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool5 = new Infragistics.Win.UltraWinToolbars.ButtonTool("新增");
  256. Infragistics.Win.Appearance appearance63 = new Infragistics.Win.Appearance();
  257. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool6 = new Infragistics.Win.UltraWinToolbars.ButtonTool("修改");
  258. Infragistics.Win.Appearance appearance64 = new Infragistics.Win.Appearance();
  259. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool8 = new Infragistics.Win.UltraWinToolbars.ButtonTool("接箍码维护");
  260. Infragistics.Win.Appearance appearance133 = new Infragistics.Win.Appearance();
  261. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool16 = new Infragistics.Win.UltraWinToolbars.ButtonTool("备料码维护");
  262. Infragistics.Win.Appearance appearance134 = new Infragistics.Win.Appearance();
  263. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool19 = new Infragistics.Win.UltraWinToolbars.ButtonTool("上传附件图片");
  264. Infragistics.Win.Appearance appearance28 = new Infragistics.Win.Appearance();
  265. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool21 = new Infragistics.Win.UltraWinToolbars.ButtonTool("取消分组");
  266. Infragistics.Win.Appearance appearance34 = new Infragistics.Win.Appearance();
  267. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool23 = new Infragistics.Win.UltraWinToolbars.ButtonTool("复制");
  268. Infragistics.Win.Appearance appearance35 = new Infragistics.Win.Appearance();
  269. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool24 = new Infragistics.Win.UltraWinToolbars.ButtonTool("粘贴");
  270. Infragistics.Win.Appearance appearance61 = new Infragistics.Win.Appearance();
  271. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool26 = new Infragistics.Win.UltraWinToolbars.ButtonTool("刷新");
  272. Infragistics.Win.Appearance appearance62 = new Infragistics.Win.Appearance();
  273. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool27 = new Infragistics.Win.UltraWinToolbars.ButtonTool("规格维护");
  274. Infragistics.Win.Appearance appearance70 = new Infragistics.Win.Appearance();
  275. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool29 = new Infragistics.Win.UltraWinToolbars.ButtonTool("设定制程");
  276. Infragistics.Win.Appearance appearance68 = new Infragistics.Win.Appearance();
  277. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool32 = new Infragistics.Win.UltraWinToolbars.ButtonTool("复制基础MSC制程");
  278. Infragistics.Win.Appearance appearance73 = new Infragistics.Win.Appearance();
  279. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool34 = new Infragistics.Win.UltraWinToolbars.ButtonTool("设定接箍");
  280. Infragistics.Win.Appearance appearance26 = new Infragistics.Win.Appearance();
  281. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool36 = new Infragistics.Win.UltraWinToolbars.ButtonTool("设定附件图片");
  282. Infragistics.Win.Appearance appearance67 = new Infragistics.Win.Appearance();
  283. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool39 = new Infragistics.Win.UltraWinToolbars.ButtonTool("保存拧接");
  284. Infragistics.Win.Appearance appearance76 = new Infragistics.Win.Appearance();
  285. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool40 = new Infragistics.Win.UltraWinToolbars.ButtonTool("删除拧接");
  286. Infragistics.Win.Appearance appearance77 = new Infragistics.Win.Appearance();
  287. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool42 = new Infragistics.Win.UltraWinToolbars.ButtonTool("保存模板");
  288. Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
  289. Infragistics.Win.Appearance appearance49 = new Infragistics.Win.Appearance();
  290. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand6 = new Infragistics.Win.UltraWinGrid.UltraGridBand("COM_PSC", -1);
  291. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn104 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PSC", -1, null, 0, Infragistics.Win.UltraWinGrid.SortIndicator.Descending, false);
  292. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn105 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PSC_DESC");
  293. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn106 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MEMO");
  294. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn107 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PRODUCCODE");
  295. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn108 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PRODUCNAME");
  296. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn109 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STD_CODE");
  297. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn110 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STD_NAME");
  298. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn111 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STEELCODE");
  299. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn112 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STEELNAME");
  300. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn113 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STD_STYLE");
  301. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn114 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STD_STYLE_DESC");
  302. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn115 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("NEW_PROC_CODE");
  303. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn116 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("NEW_PROC_DESC");
  304. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn117 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PRODUC_HEAD");
  305. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn118 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("HAVE_MSC");
  306. Infragistics.Win.Appearance appearance50 = new Infragistics.Win.Appearance();
  307. Infragistics.Win.Appearance appearance51 = new Infragistics.Win.Appearance();
  308. Infragistics.Win.Appearance appearance52 = new Infragistics.Win.Appearance();
  309. Infragistics.Win.Appearance appearance53 = new Infragistics.Win.Appearance();
  310. Infragistics.Win.Appearance appearance54 = new Infragistics.Win.Appearance();
  311. Infragistics.Win.Appearance appearance55 = new Infragistics.Win.Appearance();
  312. Infragistics.Win.Appearance appearance56 = new Infragistics.Win.Appearance();
  313. Infragistics.Win.Appearance appearance57 = new Infragistics.Win.Appearance();
  314. Infragistics.Win.Appearance appearance58 = new Infragistics.Win.Appearance();
  315. Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
  316. Infragistics.Win.Appearance appearance59 = new Infragistics.Win.Appearance();
  317. Infragistics.Win.Appearance appearance60 = new Infragistics.Win.Appearance();
  318. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab4 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  319. this.ultraTextEditor1 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  320. this.ultraTextEditor16 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  321. this.ultraTabPageControl4 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  322. this.craftImg = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  323. this.label1 = new System.Windows.Forms.Label();
  324. this.txtPscCode = new System.Windows.Forms.TextBox();
  325. this.ckbDeleteFilter = new System.Windows.Forms.CheckBox();
  326. this.ultraTabPageControl5 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  327. this.ultraPanel3 = new Infragistics.Win.Misc.UltraPanel();
  328. this.label6 = new System.Windows.Forms.Label();
  329. this.label5 = new System.Windows.Forms.Label();
  330. this.ultraTabPageControl7 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  331. this.ultraPanel2 = new Infragistics.Win.Misc.UltraPanel();
  332. this.label8 = new System.Windows.Forms.Label();
  333. this.label7 = new System.Windows.Forms.Label();
  334. this.ultraTabPageControl9 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  335. this.ultraTabPageControl10 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  336. this.ultraPanel4 = new Infragistics.Win.Misc.UltraPanel();
  337. this.label9 = new System.Windows.Forms.Label();
  338. this.label10 = new System.Windows.Forms.Label();
  339. this.ultraTabPageControl3 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  340. this.ultraComboEditor1 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  341. this.ultraTabPageControl13 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  342. this.ultraGrid5 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  343. this.dataSet1 = new System.Data.DataSet();
  344. this.dataTable1 = new System.Data.DataTable();
  345. this.dataColumn94 = new System.Data.DataColumn();
  346. this.dataColumn95 = new System.Data.DataColumn();
  347. this.dataColumn96 = new System.Data.DataColumn();
  348. this.dataColumn97 = new System.Data.DataColumn();
  349. this.dataColumn98 = new System.Data.DataColumn();
  350. this.dataColumn99 = new System.Data.DataColumn();
  351. this.dataColumn100 = new System.Data.DataColumn();
  352. this.dataColumn101 = new System.Data.DataColumn();
  353. this.dataColumn102 = new System.Data.DataColumn();
  354. this.dataColumn103 = new System.Data.DataColumn();
  355. this.dataColumn104 = new System.Data.DataColumn();
  356. this.dataColumn105 = new System.Data.DataColumn();
  357. this.dataColumn106 = new System.Data.DataColumn();
  358. this.dataColumn107 = new System.Data.DataColumn();
  359. this.dataColumn108 = new System.Data.DataColumn();
  360. this.dataColumn109 = new System.Data.DataColumn();
  361. this.dataColumn110 = new System.Data.DataColumn();
  362. this.dataColumn75 = new System.Data.DataColumn();
  363. this.dataTable2 = new System.Data.DataTable();
  364. this.dataColumn11 = new System.Data.DataColumn();
  365. this.dataColumn12 = new System.Data.DataColumn();
  366. this.dataColumn13 = new System.Data.DataColumn();
  367. this.dataColumn14 = new System.Data.DataColumn();
  368. this.dataColumn15 = new System.Data.DataColumn();
  369. this.dataColumn16 = new System.Data.DataColumn();
  370. this.dataColumn17 = new System.Data.DataColumn();
  371. this.dataColumn18 = new System.Data.DataColumn();
  372. this.dataColumn19 = new System.Data.DataColumn();
  373. this.dataColumn20 = new System.Data.DataColumn();
  374. this.dataColumn21 = new System.Data.DataColumn();
  375. this.dataColumn22 = new System.Data.DataColumn();
  376. this.dataColumn23 = new System.Data.DataColumn();
  377. this.dataColumn24 = new System.Data.DataColumn();
  378. this.dataColumn25 = new System.Data.DataColumn();
  379. this.dataColumn26 = new System.Data.DataColumn();
  380. this.dataTable3 = new System.Data.DataTable();
  381. this.dataColumn1 = new System.Data.DataColumn();
  382. this.dataColumn2 = new System.Data.DataColumn();
  383. this.dataColumn3 = new System.Data.DataColumn();
  384. this.dataColumn30 = new System.Data.DataColumn();
  385. this.dataColumn31 = new System.Data.DataColumn();
  386. this.dataColumn32 = new System.Data.DataColumn();
  387. this.dataColumn33 = new System.Data.DataColumn();
  388. this.dataColumn34 = new System.Data.DataColumn();
  389. this.dataColumn35 = new System.Data.DataColumn();
  390. this.dataColumn36 = new System.Data.DataColumn();
  391. this.dataColumn37 = new System.Data.DataColumn();
  392. this.dataColumn38 = new System.Data.DataColumn();
  393. this.dataColumn39 = new System.Data.DataColumn();
  394. this.dataColumn5 = new System.Data.DataColumn();
  395. this.dataColumn10 = new System.Data.DataColumn();
  396. this.dataTable4 = new System.Data.DataTable();
  397. this.dataColumn43 = new System.Data.DataColumn();
  398. this.dataColumn44 = new System.Data.DataColumn();
  399. this.dataColumn45 = new System.Data.DataColumn();
  400. this.dataColumn46 = new System.Data.DataColumn();
  401. this.dataColumn47 = new System.Data.DataColumn();
  402. this.dataColumn48 = new System.Data.DataColumn();
  403. this.dataColumn49 = new System.Data.DataColumn();
  404. this.dataColumn50 = new System.Data.DataColumn();
  405. this.dataColumn51 = new System.Data.DataColumn();
  406. this.dataColumn52 = new System.Data.DataColumn();
  407. this.dataColumn53 = new System.Data.DataColumn();
  408. this.dataColumn54 = new System.Data.DataColumn();
  409. this.dataColumn55 = new System.Data.DataColumn();
  410. this.dataColumn27 = new System.Data.DataColumn();
  411. this.dataColumn42 = new System.Data.DataColumn();
  412. this.dataColumn74 = new System.Data.DataColumn();
  413. this.dataColumn87 = new System.Data.DataColumn();
  414. this.dataTable5 = new System.Data.DataTable();
  415. this.dataColumn56 = new System.Data.DataColumn();
  416. this.dataColumn57 = new System.Data.DataColumn();
  417. this.dataColumn58 = new System.Data.DataColumn();
  418. this.dataColumn59 = new System.Data.DataColumn();
  419. this.dataColumn60 = new System.Data.DataColumn();
  420. this.dataColumn61 = new System.Data.DataColumn();
  421. this.dataColumn62 = new System.Data.DataColumn();
  422. this.dataColumn63 = new System.Data.DataColumn();
  423. this.dataColumn64 = new System.Data.DataColumn();
  424. this.dataColumn65 = new System.Data.DataColumn();
  425. this.dataColumn66 = new System.Data.DataColumn();
  426. this.dataColumn67 = new System.Data.DataColumn();
  427. this.dataColumn68 = new System.Data.DataColumn();
  428. this.dataColumn69 = new System.Data.DataColumn();
  429. this.dataColumn70 = new System.Data.DataColumn();
  430. this.dataColumn71 = new System.Data.DataColumn();
  431. this.dataColumn72 = new System.Data.DataColumn();
  432. this.dataColumn111 = new System.Data.DataColumn();
  433. this.dataColumn73 = new System.Data.DataColumn();
  434. this.dataColumn116 = new System.Data.DataColumn();
  435. this.dataColumn117 = new System.Data.DataColumn();
  436. this.dataColumn118 = new System.Data.DataColumn();
  437. this.dataColumn119 = new System.Data.DataColumn();
  438. this.dataColumn120 = new System.Data.DataColumn();
  439. this.dataColumn4 = new System.Data.DataColumn();
  440. this.dataColumn6 = new System.Data.DataColumn();
  441. this.dataColumn7 = new System.Data.DataColumn();
  442. this.dataColumn8 = new System.Data.DataColumn();
  443. this.dataColumn9 = new System.Data.DataColumn();
  444. this.dataColumn28 = new System.Data.DataColumn();
  445. this.dataColumn29 = new System.Data.DataColumn();
  446. this.dataColumn40 = new System.Data.DataColumn();
  447. this.dataColumn41 = new System.Data.DataColumn();
  448. this.dataColumn76 = new System.Data.DataColumn();
  449. this.dataColumn77 = new System.Data.DataColumn();
  450. this.dataTable6 = new System.Data.DataTable();
  451. this.dataColumn78 = new System.Data.DataColumn();
  452. this.dataColumn79 = new System.Data.DataColumn();
  453. this.dataColumn80 = new System.Data.DataColumn();
  454. this.dataColumn81 = new System.Data.DataColumn();
  455. this.dataColumn82 = new System.Data.DataColumn();
  456. this.dataColumn83 = new System.Data.DataColumn();
  457. this.dataColumn84 = new System.Data.DataColumn();
  458. this.dataColumn85 = new System.Data.DataColumn();
  459. this.dataColumn86 = new System.Data.DataColumn();
  460. this.ultraTabPageControl15 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  461. this.ultraGrid7 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  462. this.ultraTabPageControl14 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  463. this.lblStationPath = new System.Windows.Forms.RichTextBox();
  464. this.ultraTextEditor8 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  465. this.ultraTabPageControl6 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  466. this.ultraTabControl2 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
  467. this.ultraTabSharedControlsPage2 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
  468. this.ultraTabPageControl8 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  469. this.splitContainer4 = new System.Windows.Forms.SplitContainer();
  470. this.ultraGrid4 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  471. this.panel2 = new System.Windows.Forms.Panel();
  472. this.ultraTabControl4 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
  473. this.ultraTabSharedControlsPage4 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
  474. this.ultraTabPageControl11 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  475. this.ctrlMscJg1 = new Core.StlMes.Client.Qcm.CtrlMscJg();
  476. this.ultraTabPageControl12 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  477. this.ctrlMscBl1 = new Core.StlMes.Client.Qcm.CtrlMscBl();
  478. this.ultraGrid2 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  479. this.ultraTabPageControl2 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  480. this.ultraLabel1 = new Infragistics.Win.Misc.UltraLabel();
  481. this.ultraTabPageControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  482. this.ultraTabPageControl1_Fill_Panel = new System.Windows.Forms.Panel();
  483. this.splitContainer3 = new System.Windows.Forms.SplitContainer();
  484. this.splitContainer2 = new System.Windows.Forms.SplitContainer();
  485. this.controlMsc1 = new Core.StlMes.Client.Qcm.ControlMsc();
  486. this.ultraExpandableGroupBox3 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
  487. this.ultraExpandableGroupBoxPanel3 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
  488. this.Panel2_Fill_Panel = new System.Windows.Forms.Panel();
  489. this.ultraTabControl3 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
  490. this.ultraTabSharedControlsPage3 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
  491. this._Panel2_Toolbars_Dock_Area_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  492. this.ultraToolbarsManager1 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
  493. this._Panel2_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  494. this._Panel2_Toolbars_Dock_Area_Top = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  495. this._Panel2_Toolbars_Dock_Area_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  496. this.ultraPanel1 = new Infragistics.Win.Misc.UltraPanel();
  497. this.label13 = new System.Windows.Forms.Label();
  498. this.textBox1 = new System.Windows.Forms.TextBox();
  499. this.label12 = new System.Windows.Forms.Label();
  500. this.txtUnit = new System.Windows.Forms.TextBox();
  501. this.label11 = new System.Windows.Forms.Label();
  502. this.txtMsc = new System.Windows.Forms.TextBox();
  503. this.cmbProduct = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  504. this.label4 = new System.Windows.Forms.Label();
  505. this.label3 = new System.Windows.Forms.Label();
  506. this.txtSteel = new System.Windows.Forms.TextBox();
  507. this.label2 = new System.Windows.Forms.Label();
  508. this.txtStd = new System.Windows.Forms.TextBox();
  509. this.splitContainer1 = new System.Windows.Forms.SplitContainer();
  510. this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
  511. this.ultraExpandableGroupBox2 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
  512. this.ultraExpandableGroupBoxPanel2 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
  513. this.ultraGroupBox6 = new Infragistics.Win.Misc.UltraGroupBox();
  514. this.treeMsc = new System.Windows.Forms.TreeView();
  515. this.panel3 = new System.Windows.Forms.Panel();
  516. this.ultraLabel2 = new Infragistics.Win.Misc.UltraLabel();
  517. this.lblMsc = new System.Windows.Forms.Label();
  518. this.ultraExpandableGroupBox1 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
  519. this.ultraExpandableGroupBoxPanel1 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
  520. this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  521. this.ultraTabControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
  522. this.ultraTabSharedControlsPage1 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
  523. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).BeginInit();
  524. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor16)).BeginInit();
  525. this.ultraTabPageControl4.SuspendLayout();
  526. ((System.ComponentModel.ISupportInitialize)(this.craftImg)).BeginInit();
  527. this.ultraTabPageControl5.SuspendLayout();
  528. this.ultraPanel3.ClientArea.SuspendLayout();
  529. this.ultraPanel3.SuspendLayout();
  530. this.ultraTabPageControl7.SuspendLayout();
  531. this.ultraPanel2.ClientArea.SuspendLayout();
  532. this.ultraPanel2.SuspendLayout();
  533. this.ultraTabPageControl10.SuspendLayout();
  534. this.ultraPanel4.ClientArea.SuspendLayout();
  535. this.ultraPanel4.SuspendLayout();
  536. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor1)).BeginInit();
  537. this.ultraTabPageControl13.SuspendLayout();
  538. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid5)).BeginInit();
  539. ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
  540. ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
  541. ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).BeginInit();
  542. ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).BeginInit();
  543. ((System.ComponentModel.ISupportInitialize)(this.dataTable4)).BeginInit();
  544. ((System.ComponentModel.ISupportInitialize)(this.dataTable5)).BeginInit();
  545. ((System.ComponentModel.ISupportInitialize)(this.dataTable6)).BeginInit();
  546. this.ultraTabPageControl15.SuspendLayout();
  547. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid7)).BeginInit();
  548. this.ultraTabPageControl14.SuspendLayout();
  549. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor8)).BeginInit();
  550. this.ultraTabPageControl6.SuspendLayout();
  551. ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl2)).BeginInit();
  552. this.ultraTabControl2.SuspendLayout();
  553. this.ultraTabPageControl8.SuspendLayout();
  554. ((System.ComponentModel.ISupportInitialize)(this.splitContainer4)).BeginInit();
  555. this.splitContainer4.Panel1.SuspendLayout();
  556. this.splitContainer4.Panel2.SuspendLayout();
  557. this.splitContainer4.SuspendLayout();
  558. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid4)).BeginInit();
  559. this.panel2.SuspendLayout();
  560. ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl4)).BeginInit();
  561. this.ultraTabControl4.SuspendLayout();
  562. this.ultraTabPageControl11.SuspendLayout();
  563. this.ultraTabPageControl12.SuspendLayout();
  564. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).BeginInit();
  565. this.ultraTabPageControl2.SuspendLayout();
  566. this.ultraTabPageControl1.SuspendLayout();
  567. this.ultraTabPageControl1_Fill_Panel.SuspendLayout();
  568. ((System.ComponentModel.ISupportInitialize)(this.splitContainer3)).BeginInit();
  569. this.splitContainer3.Panel1.SuspendLayout();
  570. this.splitContainer3.Panel2.SuspendLayout();
  571. this.splitContainer3.SuspendLayout();
  572. ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
  573. this.splitContainer2.Panel1.SuspendLayout();
  574. this.splitContainer2.Panel2.SuspendLayout();
  575. this.splitContainer2.SuspendLayout();
  576. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox3)).BeginInit();
  577. this.ultraExpandableGroupBox3.SuspendLayout();
  578. this.Panel2_Fill_Panel.SuspendLayout();
  579. ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl3)).BeginInit();
  580. this.ultraTabControl3.SuspendLayout();
  581. ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).BeginInit();
  582. this.ultraPanel1.ClientArea.SuspendLayout();
  583. this.ultraPanel1.SuspendLayout();
  584. ((System.ComponentModel.ISupportInitialize)(this.cmbProduct)).BeginInit();
  585. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
  586. this.splitContainer1.Panel1.SuspendLayout();
  587. this.splitContainer1.Panel2.SuspendLayout();
  588. this.splitContainer1.SuspendLayout();
  589. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
  590. this.ultraGroupBox1.SuspendLayout();
  591. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox2)).BeginInit();
  592. this.ultraExpandableGroupBox2.SuspendLayout();
  593. this.ultraExpandableGroupBoxPanel2.SuspendLayout();
  594. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox6)).BeginInit();
  595. this.ultraGroupBox6.SuspendLayout();
  596. this.panel3.SuspendLayout();
  597. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).BeginInit();
  598. this.ultraExpandableGroupBox1.SuspendLayout();
  599. this.ultraExpandableGroupBoxPanel1.SuspendLayout();
  600. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
  601. ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).BeginInit();
  602. this.ultraTabControl1.SuspendLayout();
  603. this.SuspendLayout();
  604. //
  605. // ultraTextEditor1
  606. //
  607. editorButton1.Text = "编辑";
  608. this.ultraTextEditor1.ButtonsRight.Add(editorButton1);
  609. this.ultraTextEditor1.Location = new System.Drawing.Point(13, 122);
  610. this.ultraTextEditor1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  611. this.ultraTextEditor1.Name = "ultraTextEditor1";
  612. this.ultraTextEditor1.Size = new System.Drawing.Size(75, 21);
  613. this.ultraTextEditor1.TabIndex = 1;
  614. this.ultraTextEditor1.Visible = false;
  615. this.ultraTextEditor1.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.ultraTextEditor1_EditorButtonClick);
  616. //
  617. // ultraTextEditor16
  618. //
  619. editorButton2.Key = "Show";
  620. editorButton2.Text = "查看";
  621. this.ultraTextEditor16.ButtonsLeft.Add(editorButton2);
  622. editorButton3.Key = "Upload";
  623. editorButton3.Text = "上传";
  624. this.ultraTextEditor16.ButtonsRight.Add(editorButton3);
  625. this.ultraTextEditor16.Location = new System.Drawing.Point(205, 124);
  626. this.ultraTextEditor16.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  627. this.ultraTextEditor16.Name = "ultraTextEditor16";
  628. this.ultraTextEditor16.ReadOnly = true;
  629. this.ultraTextEditor16.Size = new System.Drawing.Size(91, 21);
  630. this.ultraTextEditor16.TabIndex = 75;
  631. this.ultraTextEditor16.Visible = false;
  632. this.ultraTextEditor16.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.ultraTextEditor16_EditorButtonClick);
  633. //
  634. // ultraTabPageControl4
  635. //
  636. this.ultraTabPageControl4.Controls.Add(this.craftImg);
  637. this.ultraTabPageControl4.Controls.Add(this.label1);
  638. this.ultraTabPageControl4.Controls.Add(this.txtPscCode);
  639. this.ultraTabPageControl4.Controls.Add(this.ckbDeleteFilter);
  640. this.ultraTabPageControl4.Location = new System.Drawing.Point(2, 21);
  641. this.ultraTabPageControl4.Name = "ultraTabPageControl4";
  642. this.ultraTabPageControl4.Size = new System.Drawing.Size(619, 371);
  643. //
  644. // craftImg
  645. //
  646. editorButton4.Key = "select";
  647. editorButton4.Text = "查看";
  648. this.craftImg.ButtonsLeft.Add(editorButton4);
  649. editorButton5.Key = "choice";
  650. editorButton5.Text = "上传";
  651. this.craftImg.ButtonsRight.Add(editorButton5);
  652. this.craftImg.Location = new System.Drawing.Point(386, 105);
  653. this.craftImg.Name = "craftImg";
  654. this.craftImg.Size = new System.Drawing.Size(137, 21);
  655. this.craftImg.TabIndex = 42;
  656. this.craftImg.Visible = false;
  657. this.craftImg.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.craftImg_EditorButtonClick);
  658. //
  659. // label1
  660. //
  661. this.label1.AutoSize = true;
  662. this.label1.Location = new System.Drawing.Point(34, 114);
  663. this.label1.Name = "label1";
  664. this.label1.Size = new System.Drawing.Size(65, 12);
  665. this.label1.TabIndex = 0;
  666. this.label1.Text = "产品规范码";
  667. this.label1.Visible = false;
  668. //
  669. // txtPscCode
  670. //
  671. this.txtPscCode.AcceptsTab = true;
  672. this.txtPscCode.Location = new System.Drawing.Point(114, 110);
  673. this.txtPscCode.Name = "txtPscCode";
  674. this.txtPscCode.Size = new System.Drawing.Size(149, 21);
  675. this.txtPscCode.TabIndex = 1;
  676. this.txtPscCode.Visible = false;
  677. //
  678. // ckbDeleteFilter
  679. //
  680. this.ckbDeleteFilter.AutoSize = true;
  681. this.ckbDeleteFilter.Checked = true;
  682. this.ckbDeleteFilter.CheckState = System.Windows.Forms.CheckState.Checked;
  683. this.ckbDeleteFilter.Location = new System.Drawing.Point(284, 112);
  684. this.ckbDeleteFilter.Name = "ckbDeleteFilter";
  685. this.ckbDeleteFilter.Size = new System.Drawing.Size(72, 16);
  686. this.ckbDeleteFilter.TabIndex = 12;
  687. this.ckbDeleteFilter.Text = "包含无效";
  688. this.ckbDeleteFilter.UseVisualStyleBackColor = true;
  689. this.ckbDeleteFilter.Visible = false;
  690. //
  691. // ultraTabPageControl5
  692. //
  693. this.ultraTabPageControl5.Controls.Add(this.ultraPanel3);
  694. this.ultraTabPageControl5.Location = new System.Drawing.Point(-7500, -8000);
  695. this.ultraTabPageControl5.Name = "ultraTabPageControl5";
  696. this.ultraTabPageControl5.Size = new System.Drawing.Size(619, 371);
  697. //
  698. // ultraPanel3
  699. //
  700. appearance29.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(202)))), ((int)(((byte)(222)))), ((int)(((byte)(247)))));
  701. this.ultraPanel3.Appearance = appearance29;
  702. //
  703. // ultraPanel3.ClientArea
  704. //
  705. this.ultraPanel3.ClientArea.Controls.Add(this.label6);
  706. this.ultraPanel3.ClientArea.Controls.Add(this.label5);
  707. this.ultraPanel3.Dock = System.Windows.Forms.DockStyle.Top;
  708. this.ultraPanel3.Location = new System.Drawing.Point(0, 0);
  709. this.ultraPanel3.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  710. this.ultraPanel3.Name = "ultraPanel3";
  711. this.ultraPanel3.Size = new System.Drawing.Size(619, 22);
  712. this.ultraPanel3.TabIndex = 15;
  713. //
  714. // label6
  715. //
  716. this.label6.AutoSize = true;
  717. this.label6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  718. this.label6.Location = new System.Drawing.Point(9, 6);
  719. this.label6.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  720. this.label6.Name = "label6";
  721. this.label6.Size = new System.Drawing.Size(70, 12);
  722. this.label6.TabIndex = 14;
  723. this.label6.Text = "理化公式:";
  724. //
  725. // label5
  726. //
  727. this.label5.AutoSize = true;
  728. this.label5.Location = new System.Drawing.Point(72, 6);
  729. this.label5.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  730. this.label5.Name = "label5";
  731. this.label5.Size = new System.Drawing.Size(551, 12);
  732. this.label5.TabIndex = 13;
  733. this.label5.Text = "Axc-拉伸试样面积,^-幂次方(例:5的3次方表示为:5^3),t-规定壁厚,C-碳含量,Value-附加标准符号";
  734. //
  735. // ultraTabPageControl7
  736. //
  737. this.ultraTabPageControl7.Controls.Add(this.ultraPanel2);
  738. this.ultraTabPageControl7.Location = new System.Drawing.Point(-7500, -8000);
  739. this.ultraTabPageControl7.Name = "ultraTabPageControl7";
  740. this.ultraTabPageControl7.Size = new System.Drawing.Size(619, 371);
  741. //
  742. // ultraPanel2
  743. //
  744. appearance30.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(202)))), ((int)(((byte)(222)))), ((int)(((byte)(247)))));
  745. this.ultraPanel2.Appearance = appearance30;
  746. //
  747. // ultraPanel2.ClientArea
  748. //
  749. this.ultraPanel2.ClientArea.Controls.Add(this.label8);
  750. this.ultraPanel2.ClientArea.Controls.Add(this.label7);
  751. this.ultraPanel2.Dock = System.Windows.Forms.DockStyle.Top;
  752. this.ultraPanel2.Location = new System.Drawing.Point(0, 0);
  753. this.ultraPanel2.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  754. this.ultraPanel2.Name = "ultraPanel2";
  755. this.ultraPanel2.Size = new System.Drawing.Size(619, 19);
  756. this.ultraPanel2.TabIndex = 15;
  757. //
  758. // label8
  759. //
  760. this.label8.AutoSize = true;
  761. this.label8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  762. this.label8.Location = new System.Drawing.Point(8, 4);
  763. this.label8.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  764. this.label8.Name = "label8";
  765. this.label8.Size = new System.Drawing.Size(70, 12);
  766. this.label8.TabIndex = 15;
  767. this.label8.Text = "公差公式:";
  768. //
  769. // label7
  770. //
  771. this.label7.AutoSize = true;
  772. this.label7.Location = new System.Drawing.Point(73, 4);
  773. this.label7.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  774. this.label7.Name = "label7";
  775. this.label7.Size = new System.Drawing.Size(125, 12);
  776. this.label7.TabIndex = 14;
  777. this.label7.Text = "t-壁厚 D-外径 L-长度";
  778. //
  779. // ultraTabPageControl9
  780. //
  781. this.ultraTabPageControl9.Location = new System.Drawing.Point(-7500, -8000);
  782. this.ultraTabPageControl9.Name = "ultraTabPageControl9";
  783. this.ultraTabPageControl9.Size = new System.Drawing.Size(619, 371);
  784. //
  785. // ultraTabPageControl10
  786. //
  787. this.ultraTabPageControl10.Controls.Add(this.ultraPanel4);
  788. this.ultraTabPageControl10.Location = new System.Drawing.Point(-7500, -8000);
  789. this.ultraTabPageControl10.Name = "ultraTabPageControl10";
  790. this.ultraTabPageControl10.Size = new System.Drawing.Size(619, 371);
  791. //
  792. // ultraPanel4
  793. //
  794. appearance31.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(202)))), ((int)(((byte)(222)))), ((int)(((byte)(247)))));
  795. this.ultraPanel4.Appearance = appearance31;
  796. //
  797. // ultraPanel4.ClientArea
  798. //
  799. this.ultraPanel4.ClientArea.Controls.Add(this.label9);
  800. this.ultraPanel4.ClientArea.Controls.Add(this.label10);
  801. this.ultraPanel4.Dock = System.Windows.Forms.DockStyle.Top;
  802. this.ultraPanel4.Location = new System.Drawing.Point(0, 0);
  803. this.ultraPanel4.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  804. this.ultraPanel4.Name = "ultraPanel4";
  805. this.ultraPanel4.Size = new System.Drawing.Size(619, 21);
  806. this.ultraPanel4.TabIndex = 15;
  807. //
  808. // label9
  809. //
  810. this.label9.AutoSize = true;
  811. this.label9.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  812. this.label9.Location = new System.Drawing.Point(2, 4);
  813. this.label9.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  814. this.label9.Name = "label9";
  815. this.label9.Size = new System.Drawing.Size(97, 12);
  816. this.label9.TabIndex = 17;
  817. this.label9.Text = "试验压力(公式)";
  818. //
  819. // label10
  820. //
  821. this.label10.AutoSize = true;
  822. this.label10.Location = new System.Drawing.Point(98, 4);
  823. this.label10.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  824. this.label10.Name = "label10";
  825. this.label10.Size = new System.Drawing.Size(413, 12);
  826. this.label10.TabIndex = 16;
  827. this.label10.Text = "f-水压系数,YS-最小屈服强度,TS-最小抗拉强度,D:规定外径,t:规定壁厚";
  828. //
  829. // ultraTabPageControl3
  830. //
  831. this.ultraTabPageControl3.Location = new System.Drawing.Point(-7500, -8000);
  832. this.ultraTabPageControl3.Name = "ultraTabPageControl3";
  833. this.ultraTabPageControl3.Size = new System.Drawing.Size(619, 371);
  834. //
  835. // ultraComboEditor1
  836. //
  837. valueListItem1.DataValue = "0";
  838. valueListItem1.DisplayText = "否";
  839. valueListItem2.DataValue = "1";
  840. valueListItem2.DisplayText = "是";
  841. this.ultraComboEditor1.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  842. valueListItem1,
  843. valueListItem2});
  844. this.ultraComboEditor1.Location = new System.Drawing.Point(103, 124);
  845. this.ultraComboEditor1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  846. this.ultraComboEditor1.Name = "ultraComboEditor1";
  847. this.ultraComboEditor1.Size = new System.Drawing.Size(84, 21);
  848. this.ultraComboEditor1.TabIndex = 2;
  849. this.ultraComboEditor1.Text = "是否自动工艺文件";
  850. this.ultraComboEditor1.Visible = false;
  851. //
  852. // ultraTabPageControl13
  853. //
  854. this.ultraTabPageControl13.Controls.Add(this.ultraTextEditor16);
  855. this.ultraTabPageControl13.Controls.Add(this.ultraTextEditor1);
  856. this.ultraTabPageControl13.Controls.Add(this.ultraComboEditor1);
  857. this.ultraTabPageControl13.Controls.Add(this.ultraGrid5);
  858. this.ultraTabPageControl13.Location = new System.Drawing.Point(1, 23);
  859. this.ultraTabPageControl13.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  860. this.ultraTabPageControl13.Name = "ultraTabPageControl13";
  861. this.ultraTabPageControl13.Size = new System.Drawing.Size(619, 298);
  862. //
  863. // ultraGrid5
  864. //
  865. this.ultraGrid5.DataMember = "COM_BASE_PROCESS";
  866. this.ultraGrid5.DataSource = this.dataSet1;
  867. appearance71.BackColor = System.Drawing.SystemColors.Window;
  868. appearance71.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  869. this.ultraGrid5.DisplayLayout.Appearance = appearance71;
  870. ultraGridColumn1.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  871. ultraGridColumn1.Header.VisiblePosition = 0;
  872. ultraGridColumn1.RowLayoutColumnInfo.OriginX = 1;
  873. ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
  874. ultraGridColumn1.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(45, 0);
  875. ultraGridColumn1.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 52);
  876. ultraGridColumn1.RowLayoutColumnInfo.SpanX = 1;
  877. ultraGridColumn1.RowLayoutColumnInfo.SpanY = 2;
  878. ultraGridColumn1.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  879. ultraGridColumn2.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  880. ultraGridColumn2.Header.VisiblePosition = 1;
  881. ultraGridColumn2.RowLayoutColumnInfo.OriginX = 2;
  882. ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
  883. ultraGridColumn2.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(84, 0);
  884. ultraGridColumn2.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 52);
  885. ultraGridColumn2.RowLayoutColumnInfo.SpanX = 1;
  886. ultraGridColumn2.RowLayoutColumnInfo.SpanY = 2;
  887. ultraGridColumn2.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  888. ultraGridColumn3.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  889. ultraGridColumn3.Header.VisiblePosition = 2;
  890. ultraGridColumn3.Hidden = true;
  891. ultraGridColumn3.RowLayoutColumnInfo.OriginX = 14;
  892. ultraGridColumn3.RowLayoutColumnInfo.OriginY = 0;
  893. ultraGridColumn3.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(75, 0);
  894. ultraGridColumn3.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 52);
  895. ultraGridColumn3.RowLayoutColumnInfo.SpanX = 1;
  896. ultraGridColumn3.RowLayoutColumnInfo.SpanY = 2;
  897. ultraGridColumn3.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  898. ultraGridColumn4.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  899. ultraGridColumn4.Header.VisiblePosition = 4;
  900. ultraGridColumn4.Hidden = true;
  901. ultraGridColumn4.RowLayoutColumnInfo.OriginX = 15;
  902. ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
  903. ultraGridColumn4.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(82, 0);
  904. ultraGridColumn4.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 52);
  905. ultraGridColumn4.RowLayoutColumnInfo.SpanX = 1;
  906. ultraGridColumn4.RowLayoutColumnInfo.SpanY = 2;
  907. ultraGridColumn4.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  908. appearance9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
  909. ultraGridColumn5.CellAppearance = appearance9;
  910. ultraGridColumn5.Header.VisiblePosition = 5;
  911. ultraGridColumn5.RowLayoutColumnInfo.OriginX = 8;
  912. ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
  913. ultraGridColumn5.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(44, 0);
  914. ultraGridColumn5.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 52);
  915. ultraGridColumn5.RowLayoutColumnInfo.SpanX = 1;
  916. ultraGridColumn5.RowLayoutColumnInfo.SpanY = 2;
  917. ultraGridColumn5.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  918. ultraGridColumn6.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  919. ultraGridColumn6.Header.VisiblePosition = 6;
  920. ultraGridColumn6.Hidden = true;
  921. ultraGridColumn6.RowLayoutColumnInfo.OriginX = 24;
  922. ultraGridColumn6.RowLayoutColumnInfo.OriginY = 0;
  923. ultraGridColumn6.RowLayoutColumnInfo.SpanX = 2;
  924. ultraGridColumn6.RowLayoutColumnInfo.SpanY = 2;
  925. ultraGridColumn6.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  926. ultraGridColumn7.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  927. ultraGridColumn7.Header.VisiblePosition = 7;
  928. ultraGridColumn7.Hidden = true;
  929. ultraGridColumn7.RowLayoutColumnInfo.OriginX = 26;
  930. ultraGridColumn7.RowLayoutColumnInfo.OriginY = 0;
  931. ultraGridColumn7.RowLayoutColumnInfo.SpanX = 2;
  932. ultraGridColumn7.RowLayoutColumnInfo.SpanY = 2;
  933. ultraGridColumn7.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  934. ultraGridColumn8.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  935. ultraGridColumn8.Header.VisiblePosition = 8;
  936. ultraGridColumn8.Hidden = true;
  937. ultraGridColumn8.RowLayoutColumnInfo.OriginX = 28;
  938. ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
  939. ultraGridColumn8.RowLayoutColumnInfo.SpanX = 2;
  940. ultraGridColumn8.RowLayoutColumnInfo.SpanY = 2;
  941. ultraGridColumn8.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  942. ultraGridColumn9.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  943. ultraGridColumn9.Header.VisiblePosition = 9;
  944. ultraGridColumn9.Hidden = true;
  945. ultraGridColumn9.RowLayoutColumnInfo.OriginX = 30;
  946. ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
  947. ultraGridColumn9.RowLayoutColumnInfo.SpanX = 2;
  948. ultraGridColumn9.RowLayoutColumnInfo.SpanY = 2;
  949. ultraGridColumn9.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  950. ultraGridColumn10.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  951. ultraGridColumn10.Header.VisiblePosition = 10;
  952. ultraGridColumn10.Hidden = true;
  953. ultraGridColumn10.RowLayoutColumnInfo.OriginX = 32;
  954. ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
  955. ultraGridColumn10.RowLayoutColumnInfo.SpanX = 2;
  956. ultraGridColumn10.RowLayoutColumnInfo.SpanY = 2;
  957. ultraGridColumn10.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  958. ultraGridColumn11.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  959. ultraGridColumn11.Header.VisiblePosition = 11;
  960. ultraGridColumn11.Hidden = true;
  961. ultraGridColumn11.RowLayoutColumnInfo.OriginX = 36;
  962. ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
  963. ultraGridColumn11.RowLayoutColumnInfo.SpanX = 2;
  964. ultraGridColumn11.RowLayoutColumnInfo.SpanY = 2;
  965. ultraGridColumn11.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  966. ultraGridColumn12.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  967. ultraGridColumn12.Header.VisiblePosition = 12;
  968. ultraGridColumn12.Hidden = true;
  969. ultraGridColumn12.RowLayoutColumnInfo.OriginX = 22;
  970. ultraGridColumn12.RowLayoutColumnInfo.OriginY = 0;
  971. ultraGridColumn12.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(76, 0);
  972. ultraGridColumn12.RowLayoutColumnInfo.SpanX = 2;
  973. ultraGridColumn12.RowLayoutColumnInfo.SpanY = 2;
  974. ultraGridColumn12.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  975. ultraGridColumn13.ButtonDisplayStyle = Infragistics.Win.UltraWinGrid.ButtonDisplayStyle.Always;
  976. ultraGridColumn13.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  977. ultraGridColumn13.EditorComponent = this.ultraTextEditor1;
  978. ultraGridColumn13.Header.VisiblePosition = 3;
  979. ultraGridColumn13.RowLayoutColumnInfo.OriginX = 9;
  980. ultraGridColumn13.RowLayoutColumnInfo.OriginY = 0;
  981. ultraGridColumn13.RowLayoutColumnInfo.SpanX = 2;
  982. ultraGridColumn13.RowLayoutColumnInfo.SpanY = 2;
  983. ultraGridColumn13.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  984. ultraGridColumn14.Header.VisiblePosition = 13;
  985. ultraGridColumn14.RowLayoutColumnInfo.OriginX = 0;
  986. ultraGridColumn14.RowLayoutColumnInfo.OriginY = 0;
  987. ultraGridColumn14.RowLayoutColumnInfo.ParentGroupIndex = 0;
  988. ultraGridColumn14.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
  989. ultraGridColumn14.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(52, 0);
  990. ultraGridColumn14.RowLayoutColumnInfo.SpanX = 1;
  991. ultraGridColumn14.RowLayoutColumnInfo.SpanY = 1;
  992. ultraGridColumn14.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  993. ultraGridColumn15.Header.VisiblePosition = 14;
  994. ultraGridColumn15.RowLayoutColumnInfo.OriginX = 1;
  995. ultraGridColumn15.RowLayoutColumnInfo.OriginY = 0;
  996. ultraGridColumn15.RowLayoutColumnInfo.ParentGroupIndex = 0;
  997. ultraGridColumn15.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
  998. ultraGridColumn15.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(54, 0);
  999. ultraGridColumn15.RowLayoutColumnInfo.SpanX = 1;
  1000. ultraGridColumn15.RowLayoutColumnInfo.SpanY = 1;
  1001. ultraGridColumn15.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1002. ultraGridColumn16.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1003. ultraGridColumn16.Header.VisiblePosition = 15;
  1004. ultraGridColumn16.Hidden = true;
  1005. ultraGridColumn16.RowLayoutColumnInfo.OriginX = 38;
  1006. ultraGridColumn16.RowLayoutColumnInfo.OriginY = 0;
  1007. ultraGridColumn16.RowLayoutColumnInfo.SpanX = 2;
  1008. ultraGridColumn16.RowLayoutColumnInfo.SpanY = 2;
  1009. ultraGridColumn16.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1010. ultraGridColumn17.Header.VisiblePosition = 16;
  1011. ultraGridColumn17.RowLayoutColumnInfo.OriginX = 7;
  1012. ultraGridColumn17.RowLayoutColumnInfo.OriginY = 0;
  1013. ultraGridColumn17.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(63, 0);
  1014. ultraGridColumn17.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 52);
  1015. ultraGridColumn17.RowLayoutColumnInfo.SpanX = 1;
  1016. ultraGridColumn17.RowLayoutColumnInfo.SpanY = 2;
  1017. ultraGridColumn17.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1018. ultraGridColumn18.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1019. ultraGridColumn18.Header.VisiblePosition = 17;
  1020. ultraGridColumn18.Hidden = true;
  1021. ultraGridColumn18.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1022. ultraGridColumn19.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1023. ultraGridColumn19.Header.VisiblePosition = 18;
  1024. ultraGridColumn19.Hidden = true;
  1025. ultraGridColumn19.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1026. ultraGridColumn20.Header.VisiblePosition = 19;
  1027. ultraGridColumn20.Hidden = true;
  1028. ultraGridColumn20.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1029. ultraGridColumn21.Header.VisiblePosition = 20;
  1030. ultraGridColumn21.Hidden = true;
  1031. ultraGridColumn21.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1032. ultraGridColumn22.Header.VisiblePosition = 21;
  1033. ultraGridColumn22.Hidden = true;
  1034. ultraGridColumn22.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1035. ultraGridColumn23.Header.VisiblePosition = 22;
  1036. ultraGridColumn23.Hidden = true;
  1037. ultraGridColumn23.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1038. ultraGridColumn24.Header.VisiblePosition = 23;
  1039. ultraGridColumn24.Hidden = true;
  1040. ultraGridColumn24.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1041. ultraGridColumn25.Header.VisiblePosition = 24;
  1042. ultraGridColumn25.RowLayoutColumnInfo.OriginX = 3;
  1043. ultraGridColumn25.RowLayoutColumnInfo.OriginY = 0;
  1044. ultraGridColumn25.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(83, 0);
  1045. ultraGridColumn25.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 52);
  1046. ultraGridColumn25.RowLayoutColumnInfo.SpanX = 1;
  1047. ultraGridColumn25.RowLayoutColumnInfo.SpanY = 2;
  1048. ultraGridColumn25.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1049. ultraGridColumn26.Header.VisiblePosition = 25;
  1050. ultraGridColumn26.Hidden = true;
  1051. ultraGridColumn26.RowLayoutColumnInfo.OriginX = 6;
  1052. ultraGridColumn26.RowLayoutColumnInfo.OriginY = 0;
  1053. ultraGridColumn26.RowLayoutColumnInfo.SpanX = 1;
  1054. ultraGridColumn26.RowLayoutColumnInfo.SpanY = 1;
  1055. ultraGridColumn26.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1056. ultraGridColumn27.Header.VisiblePosition = 26;
  1057. ultraGridColumn27.Hidden = true;
  1058. ultraGridColumn27.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1059. ultraGridColumn28.Header.VisiblePosition = 27;
  1060. ultraGridColumn28.Hidden = true;
  1061. ultraGridColumn28.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1062. ultraGridColumn29.Header.VisiblePosition = 28;
  1063. ultraGridColumn29.Hidden = true;
  1064. ultraGridColumn29.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1065. ultraGridColumn30.Header.VisiblePosition = 29;
  1066. ultraGridColumn30.RowLayoutColumnInfo.OriginX = 2;
  1067. ultraGridColumn30.RowLayoutColumnInfo.OriginY = 0;
  1068. ultraGridColumn30.RowLayoutColumnInfo.ParentGroupIndex = 0;
  1069. ultraGridColumn30.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
  1070. ultraGridColumn30.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(86, 0);
  1071. ultraGridColumn30.RowLayoutColumnInfo.SpanX = 1;
  1072. ultraGridColumn30.RowLayoutColumnInfo.SpanY = 1;
  1073. ultraGridColumn30.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1074. ultraGridColumn31.Header.VisiblePosition = 30;
  1075. ultraGridColumn31.RowLayoutColumnInfo.OriginX = 0;
  1076. ultraGridColumn31.RowLayoutColumnInfo.OriginY = 0;
  1077. ultraGridColumn31.RowLayoutColumnInfo.ParentGroupIndex = 1;
  1078. ultraGridColumn31.RowLayoutColumnInfo.ParentGroupKey = "NewGroup1";
  1079. ultraGridColumn31.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(51, 0);
  1080. ultraGridColumn31.RowLayoutColumnInfo.SpanX = 1;
  1081. ultraGridColumn31.RowLayoutColumnInfo.SpanY = 1;
  1082. ultraGridColumn31.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1083. ultraGridColumn32.Header.VisiblePosition = 31;
  1084. ultraGridColumn32.RowLayoutColumnInfo.OriginX = 1;
  1085. ultraGridColumn32.RowLayoutColumnInfo.OriginY = 0;
  1086. ultraGridColumn32.RowLayoutColumnInfo.ParentGroupIndex = 1;
  1087. ultraGridColumn32.RowLayoutColumnInfo.ParentGroupKey = "NewGroup1";
  1088. ultraGridColumn32.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(53, 0);
  1089. ultraGridColumn32.RowLayoutColumnInfo.SpanX = 1;
  1090. ultraGridColumn32.RowLayoutColumnInfo.SpanY = 1;
  1091. ultraGridColumn32.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1092. ultraGridColumn33.Header.VisiblePosition = 32;
  1093. ultraGridColumn33.RowLayoutColumnInfo.OriginX = 2;
  1094. ultraGridColumn33.RowLayoutColumnInfo.OriginY = 0;
  1095. ultraGridColumn33.RowLayoutColumnInfo.ParentGroupIndex = 1;
  1096. ultraGridColumn33.RowLayoutColumnInfo.ParentGroupKey = "NewGroup1";
  1097. ultraGridColumn33.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(84, 0);
  1098. ultraGridColumn33.RowLayoutColumnInfo.SpanX = 1;
  1099. ultraGridColumn33.RowLayoutColumnInfo.SpanY = 1;
  1100. ultraGridColumn33.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1101. ultraGridColumn34.ButtonDisplayStyle = Infragistics.Win.UltraWinGrid.ButtonDisplayStyle.Always;
  1102. ultraGridColumn34.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1103. ultraGridColumn34.EditorComponent = this.ultraTextEditor16;
  1104. ultraGridColumn34.Header.VisiblePosition = 33;
  1105. ultraGridColumn34.Hidden = true;
  1106. ultraGridColumn34.RowLayoutColumnInfo.OriginX = 11;
  1107. ultraGridColumn34.RowLayoutColumnInfo.OriginY = 0;
  1108. ultraGridColumn34.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(209, 0);
  1109. ultraGridColumn34.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 58);
  1110. ultraGridColumn34.RowLayoutColumnInfo.SpanX = 1;
  1111. ultraGridColumn34.RowLayoutColumnInfo.SpanY = 2;
  1112. ultraGridColumn34.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1113. ultraGridColumn35.ButtonDisplayStyle = Infragistics.Win.UltraWinGrid.ButtonDisplayStyle.Always;
  1114. ultraGridColumn35.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1115. ultraGridColumn35.EditorComponent = this.ultraTextEditor16;
  1116. ultraGridColumn35.Header.VisiblePosition = 34;
  1117. ultraGridColumn35.RowLayoutColumnInfo.OriginX = 12;
  1118. ultraGridColumn35.RowLayoutColumnInfo.OriginY = 0;
  1119. ultraGridColumn35.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(201, 0);
  1120. ultraGridColumn35.RowLayoutColumnInfo.SpanX = 2;
  1121. ultraGridColumn35.RowLayoutColumnInfo.SpanY = 2;
  1122. ultraGridColumn35.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1123. appearance10.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
  1124. ultraGridColumn36.CellAppearance = appearance10;
  1125. ultraGridColumn36.DataType = typeof(bool);
  1126. ultraGridColumn36.Header.Caption = "选择";
  1127. ultraGridColumn36.Header.VisiblePosition = 35;
  1128. ultraGridColumn36.RowLayoutColumnInfo.OriginX = 0;
  1129. ultraGridColumn36.RowLayoutColumnInfo.OriginY = 0;
  1130. ultraGridColumn36.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(35, 0);
  1131. ultraGridColumn36.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 52);
  1132. ultraGridColumn36.RowLayoutColumnInfo.SpanX = 1;
  1133. ultraGridColumn36.RowLayoutColumnInfo.SpanY = 2;
  1134. ultraGridColumn36.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1135. ultraGridColumn36.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.CheckBox;
  1136. appearance11.TextHAlignAsString = "Center";
  1137. ultraGridColumn37.CellAppearance = appearance11;
  1138. ultraGridColumn37.DefaultCellValue = "选择";
  1139. ultraGridColumn37.Header.Caption = "工序点维护";
  1140. ultraGridColumn37.Header.VisiblePosition = 36;
  1141. ultraGridColumn37.RowLayoutColumnInfo.OriginX = 4;
  1142. ultraGridColumn37.RowLayoutColumnInfo.OriginY = 0;
  1143. ultraGridColumn37.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(61, 0);
  1144. ultraGridColumn37.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 52);
  1145. ultraGridColumn37.RowLayoutColumnInfo.SpanX = 1;
  1146. ultraGridColumn37.RowLayoutColumnInfo.SpanY = 2;
  1147. ultraGridColumn37.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1148. ultraGridColumn37.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.Button;
  1149. appearance13.TextHAlignAsString = "Center";
  1150. ultraGridColumn38.CellAppearance = appearance13;
  1151. ultraGridColumn38.Header.Caption = "内控标准维护";
  1152. ultraGridColumn38.Header.VisiblePosition = 37;
  1153. ultraGridColumn38.RowLayoutColumnInfo.OriginX = 5;
  1154. ultraGridColumn38.RowLayoutColumnInfo.OriginY = 0;
  1155. ultraGridColumn38.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(66, 0);
  1156. ultraGridColumn38.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 52);
  1157. ultraGridColumn38.RowLayoutColumnInfo.SpanX = 1;
  1158. ultraGridColumn38.RowLayoutColumnInfo.SpanY = 2;
  1159. ultraGridColumn38.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1160. ultraGridColumn38.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.Button;
  1161. appearance14.TextHAlignAsString = "Center";
  1162. ultraGridColumn39.CellAppearance = appearance14;
  1163. ultraGridColumn39.Header.Caption = "工艺参数";
  1164. ultraGridColumn39.Header.VisiblePosition = 38;
  1165. ultraGridColumn39.RowLayoutColumnInfo.OriginX = 6;
  1166. ultraGridColumn39.RowLayoutColumnInfo.OriginY = 0;
  1167. ultraGridColumn39.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(46, 0);
  1168. ultraGridColumn39.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 52);
  1169. ultraGridColumn39.RowLayoutColumnInfo.SpanX = 1;
  1170. ultraGridColumn39.RowLayoutColumnInfo.SpanY = 2;
  1171. ultraGridColumn39.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1172. ultraGridColumn39.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.Button;
  1173. ultraGridBand1.Columns.AddRange(new object[] {
  1174. ultraGridColumn1,
  1175. ultraGridColumn2,
  1176. ultraGridColumn3,
  1177. ultraGridColumn4,
  1178. ultraGridColumn5,
  1179. ultraGridColumn6,
  1180. ultraGridColumn7,
  1181. ultraGridColumn8,
  1182. ultraGridColumn9,
  1183. ultraGridColumn10,
  1184. ultraGridColumn11,
  1185. ultraGridColumn12,
  1186. ultraGridColumn13,
  1187. ultraGridColumn14,
  1188. ultraGridColumn15,
  1189. ultraGridColumn16,
  1190. ultraGridColumn17,
  1191. ultraGridColumn18,
  1192. ultraGridColumn19,
  1193. ultraGridColumn20,
  1194. ultraGridColumn21,
  1195. ultraGridColumn22,
  1196. ultraGridColumn23,
  1197. ultraGridColumn24,
  1198. ultraGridColumn25,
  1199. ultraGridColumn26,
  1200. ultraGridColumn27,
  1201. ultraGridColumn28,
  1202. ultraGridColumn29,
  1203. ultraGridColumn30,
  1204. ultraGridColumn31,
  1205. ultraGridColumn32,
  1206. ultraGridColumn33,
  1207. ultraGridColumn34,
  1208. ultraGridColumn35,
  1209. ultraGridColumn36,
  1210. ultraGridColumn37,
  1211. ultraGridColumn38,
  1212. ultraGridColumn39});
  1213. ultraGridGroup1.Header.Caption = "自炼(小时/百吨)";
  1214. ultraGridGroup1.Key = "NewGroup0";
  1215. ultraGridGroup1.RowLayoutGroupInfo.LabelSpan = 1;
  1216. ultraGridGroup1.RowLayoutGroupInfo.OriginX = 14;
  1217. ultraGridGroup1.RowLayoutGroupInfo.OriginY = 0;
  1218. ultraGridGroup1.RowLayoutGroupInfo.PreferredLabelSize = new System.Drawing.Size(0, 24);
  1219. ultraGridGroup1.RowLayoutGroupInfo.SpanX = 3;
  1220. ultraGridGroup1.RowLayoutGroupInfo.SpanY = 2;
  1221. ultraGridGroup2.Header.Caption = "外购(小时/百吨)";
  1222. ultraGridGroup2.Key = "NewGroup1";
  1223. ultraGridGroup2.RowLayoutGroupInfo.LabelSpan = 1;
  1224. ultraGridGroup2.RowLayoutGroupInfo.OriginX = 17;
  1225. ultraGridGroup2.RowLayoutGroupInfo.OriginY = 0;
  1226. ultraGridGroup2.RowLayoutGroupInfo.PreferredLabelSize = new System.Drawing.Size(0, 24);
  1227. ultraGridGroup2.RowLayoutGroupInfo.SpanX = 3;
  1228. ultraGridGroup2.RowLayoutGroupInfo.SpanY = 2;
  1229. ultraGridBand1.Groups.AddRange(new Infragistics.Win.UltraWinGrid.UltraGridGroup[] {
  1230. ultraGridGroup1,
  1231. ultraGridGroup2});
  1232. ultraGridBand1.Override.SelectedAppearancesEnabled = Infragistics.Win.DefaultableBoolean.False;
  1233. ultraGridBand1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
  1234. this.ultraGrid5.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
  1235. this.ultraGrid5.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1236. this.ultraGrid5.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  1237. appearance78.BackColor = System.Drawing.SystemColors.ActiveBorder;
  1238. appearance78.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1239. appearance78.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  1240. appearance78.BorderColor = System.Drawing.SystemColors.Window;
  1241. this.ultraGrid5.DisplayLayout.GroupByBox.Appearance = appearance78;
  1242. appearance79.ForeColor = System.Drawing.SystemColors.GrayText;
  1243. this.ultraGrid5.DisplayLayout.GroupByBox.BandLabelAppearance = appearance79;
  1244. this.ultraGrid5.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1245. this.ultraGrid5.DisplayLayout.GroupByBox.Hidden = true;
  1246. appearance80.BackColor = System.Drawing.SystemColors.ControlLightLight;
  1247. appearance80.BackColor2 = System.Drawing.SystemColors.Control;
  1248. appearance80.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1249. appearance80.ForeColor = System.Drawing.SystemColors.GrayText;
  1250. this.ultraGrid5.DisplayLayout.GroupByBox.PromptAppearance = appearance80;
  1251. this.ultraGrid5.DisplayLayout.MaxColScrollRegions = 1;
  1252. this.ultraGrid5.DisplayLayout.MaxRowScrollRegions = 1;
  1253. appearance81.BackColor = System.Drawing.SystemColors.Window;
  1254. appearance81.ForeColor = System.Drawing.SystemColors.ControlText;
  1255. this.ultraGrid5.DisplayLayout.Override.ActiveCellAppearance = appearance81;
  1256. appearance82.BackColor = System.Drawing.SystemColors.Highlight;
  1257. appearance82.ForeColor = System.Drawing.SystemColors.HighlightText;
  1258. this.ultraGrid5.DisplayLayout.Override.ActiveRowAppearance = appearance82;
  1259. this.ultraGrid5.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  1260. this.ultraGrid5.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  1261. appearance83.BackColor = System.Drawing.SystemColors.Window;
  1262. this.ultraGrid5.DisplayLayout.Override.CardAreaAppearance = appearance83;
  1263. appearance84.BorderColor = System.Drawing.Color.Silver;
  1264. appearance84.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  1265. this.ultraGrid5.DisplayLayout.Override.CellAppearance = appearance84;
  1266. this.ultraGrid5.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  1267. this.ultraGrid5.DisplayLayout.Override.CellPadding = 0;
  1268. appearance97.BackColor = System.Drawing.SystemColors.Control;
  1269. appearance97.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1270. appearance97.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  1271. appearance97.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1272. appearance97.BorderColor = System.Drawing.SystemColors.Window;
  1273. this.ultraGrid5.DisplayLayout.Override.GroupByRowAppearance = appearance97;
  1274. appearance98.TextHAlignAsString = "Left";
  1275. this.ultraGrid5.DisplayLayout.Override.HeaderAppearance = appearance98;
  1276. this.ultraGrid5.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  1277. this.ultraGrid5.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  1278. appearance99.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
  1279. this.ultraGrid5.DisplayLayout.Override.HotTrackRowCellAppearance = appearance99;
  1280. appearance100.BackColor = System.Drawing.SystemColors.Window;
  1281. appearance100.BorderColor = System.Drawing.Color.Silver;
  1282. this.ultraGrid5.DisplayLayout.Override.RowAppearance = appearance100;
  1283. this.ultraGrid5.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  1284. appearance101.BackColor = System.Drawing.SystemColors.ControlLight;
  1285. this.ultraGrid5.DisplayLayout.Override.TemplateAddRowAppearance = appearance101;
  1286. this.ultraGrid5.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  1287. this.ultraGrid5.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  1288. this.ultraGrid5.Dock = System.Windows.Forms.DockStyle.Fill;
  1289. this.ultraGrid5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1290. this.ultraGrid5.Location = new System.Drawing.Point(0, 0);
  1291. this.ultraGrid5.Name = "ultraGrid5";
  1292. this.ultraGrid5.Size = new System.Drawing.Size(619, 298);
  1293. this.ultraGrid5.TabIndex = 0;
  1294. this.ultraGrid5.Text = "ultraGrid5";
  1295. this.ultraGrid5.InitializeRow += new Infragistics.Win.UltraWinGrid.InitializeRowEventHandler(this.ultraGrid5_InitializeRow);
  1296. this.ultraGrid5.CellChange += new Infragistics.Win.UltraWinGrid.CellEventHandler(this.ultraGrid5_CellChange);
  1297. this.ultraGrid5.ClickCellButton += new Infragistics.Win.UltraWinGrid.CellEventHandler(this.ultraGrid5_ClickCellButton);
  1298. //
  1299. // dataSet1
  1300. //
  1301. this.dataSet1.DataSetName = "NewDataSet";
  1302. this.dataSet1.Relations.AddRange(new System.Data.DataRelation[] {
  1303. new System.Data.DataRelation("Relation1", "dataTable1", "dataTable2", new string[] {
  1304. "MSC",
  1305. "MSC_PLINE",
  1306. "GRADECODE"}, new string[] {
  1307. "MSC",
  1308. "MSC_PLINE",
  1309. "GRADECODE"}, false)});
  1310. this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
  1311. this.dataTable1,
  1312. this.dataTable2,
  1313. this.dataTable3,
  1314. this.dataTable4,
  1315. this.dataTable5,
  1316. this.dataTable6});
  1317. //
  1318. // dataTable1
  1319. //
  1320. this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
  1321. this.dataColumn94,
  1322. this.dataColumn95,
  1323. this.dataColumn96,
  1324. this.dataColumn97,
  1325. this.dataColumn98,
  1326. this.dataColumn99,
  1327. this.dataColumn100,
  1328. this.dataColumn101,
  1329. this.dataColumn102,
  1330. this.dataColumn103,
  1331. this.dataColumn104,
  1332. this.dataColumn105,
  1333. this.dataColumn106,
  1334. this.dataColumn107,
  1335. this.dataColumn108,
  1336. this.dataColumn109,
  1337. this.dataColumn110,
  1338. this.dataColumn75});
  1339. this.dataTable1.Constraints.AddRange(new System.Data.Constraint[] {
  1340. new System.Data.UniqueConstraint("Constraint1", new string[] {
  1341. "MSC",
  1342. "MSC_PLINE",
  1343. "GRADECODE"}, false)});
  1344. this.dataTable1.TableName = "dataTable1";
  1345. //
  1346. // dataColumn94
  1347. //
  1348. this.dataColumn94.Caption = "钢种代码";
  1349. this.dataColumn94.ColumnName = "GRADECODE";
  1350. //
  1351. // dataColumn95
  1352. //
  1353. this.dataColumn95.Caption = "钢种名称";
  1354. this.dataColumn95.ColumnName = "GRADENAME";
  1355. //
  1356. // dataColumn96
  1357. //
  1358. this.dataColumn96.Caption = "钢种分类代码";
  1359. this.dataColumn96.ColumnName = "ASSORTMENT_CODE";
  1360. //
  1361. // dataColumn97
  1362. //
  1363. this.dataColumn97.Caption = "钢种分类名称";
  1364. this.dataColumn97.ColumnName = "ASSORTMENT_NAME";
  1365. //
  1366. // dataColumn98
  1367. //
  1368. this.dataColumn98.Caption = "创建人";
  1369. this.dataColumn98.ColumnName = "CREATE_NAME";
  1370. //
  1371. // dataColumn99
  1372. //
  1373. this.dataColumn99.Caption = "创建时间";
  1374. this.dataColumn99.ColumnName = "CREATE_TIME";
  1375. //
  1376. // dataColumn100
  1377. //
  1378. this.dataColumn100.Caption = "修改人";
  1379. this.dataColumn100.ColumnName = "UPDATE_NAME";
  1380. //
  1381. // dataColumn101
  1382. //
  1383. this.dataColumn101.Caption = "修改时间";
  1384. this.dataColumn101.ColumnName = "UPDATE_TIME";
  1385. //
  1386. // dataColumn102
  1387. //
  1388. this.dataColumn102.Caption = "删除人";
  1389. this.dataColumn102.ColumnName = "DELETE_NAME";
  1390. //
  1391. // dataColumn103
  1392. //
  1393. this.dataColumn103.Caption = "删除时间";
  1394. this.dataColumn103.ColumnName = "DELETE_TIME";
  1395. //
  1396. // dataColumn104
  1397. //
  1398. this.dataColumn104.Caption = "有效标志";
  1399. this.dataColumn104.ColumnName = "VALIDFLAG";
  1400. //
  1401. // dataColumn105
  1402. //
  1403. this.dataColumn105.Caption = "备注";
  1404. this.dataColumn105.ColumnName = "MEMO";
  1405. //
  1406. // dataColumn106
  1407. //
  1408. this.dataColumn106.Caption = "冶金规范码";
  1409. this.dataColumn106.ColumnName = "MSC";
  1410. //
  1411. // dataColumn107
  1412. //
  1413. this.dataColumn107.Caption = "产线号";
  1414. this.dataColumn107.ColumnName = "MSC_PLINE";
  1415. //
  1416. // dataColumn108
  1417. //
  1418. this.dataColumn108.Caption = "内控标准代码";
  1419. this.dataColumn108.ColumnName = "STD_CODE";
  1420. //
  1421. // dataColumn109
  1422. //
  1423. this.dataColumn109.Caption = "内控标准名称";
  1424. this.dataColumn109.ColumnName = "STD_NAME";
  1425. //
  1426. // dataColumn110
  1427. //
  1428. this.dataColumn110.Caption = "成分标准索引号";
  1429. this.dataColumn110.ColumnName = "CIC";
  1430. //
  1431. // dataColumn75
  1432. //
  1433. this.dataColumn75.Caption = "优先级";
  1434. this.dataColumn75.ColumnName = "PRIORITY";
  1435. //
  1436. // dataTable2
  1437. //
  1438. this.dataTable2.Columns.AddRange(new System.Data.DataColumn[] {
  1439. this.dataColumn11,
  1440. this.dataColumn12,
  1441. this.dataColumn13,
  1442. this.dataColumn14,
  1443. this.dataColumn15,
  1444. this.dataColumn16,
  1445. this.dataColumn17,
  1446. this.dataColumn18,
  1447. this.dataColumn19,
  1448. this.dataColumn20,
  1449. this.dataColumn21,
  1450. this.dataColumn22,
  1451. this.dataColumn23,
  1452. this.dataColumn24,
  1453. this.dataColumn25,
  1454. this.dataColumn26});
  1455. this.dataTable2.Constraints.AddRange(new System.Data.Constraint[] {
  1456. new System.Data.ForeignKeyConstraint("Relation1", "dataTable1", new string[] {
  1457. "MSC",
  1458. "MSC_PLINE",
  1459. "GRADECODE"}, new string[] {
  1460. "MSC",
  1461. "MSC_PLINE",
  1462. "GRADECODE"}, System.Data.AcceptRejectRule.None, System.Data.Rule.Cascade, System.Data.Rule.Cascade)});
  1463. this.dataTable2.TableName = "dataTable2";
  1464. //
  1465. // dataColumn11
  1466. //
  1467. this.dataColumn11.Caption = "冶金规范码";
  1468. this.dataColumn11.ColumnName = "MSC";
  1469. //
  1470. // dataColumn12
  1471. //
  1472. this.dataColumn12.Caption = "全程产线号";
  1473. this.dataColumn12.ColumnName = "MSC_PLINE";
  1474. //
  1475. // dataColumn13
  1476. //
  1477. this.dataColumn13.Caption = "钢种代码";
  1478. this.dataColumn13.ColumnName = "GRADECODE";
  1479. //
  1480. // dataColumn14
  1481. //
  1482. this.dataColumn14.Caption = "钢种名称";
  1483. this.dataColumn14.ColumnName = "GRADENAME";
  1484. //
  1485. // dataColumn15
  1486. //
  1487. this.dataColumn15.Caption = "壁厚(下限)";
  1488. this.dataColumn15.ColumnName = "HEIGHT_MIN";
  1489. //
  1490. // dataColumn16
  1491. //
  1492. this.dataColumn16.Caption = "外径(下限)";
  1493. this.dataColumn16.ColumnName = "DIMATER_MIN";
  1494. //
  1495. // dataColumn17
  1496. //
  1497. this.dataColumn17.Caption = "外径(上限)";
  1498. this.dataColumn17.ColumnName = "DIMATER_MAX";
  1499. //
  1500. // dataColumn18
  1501. //
  1502. this.dataColumn18.Caption = "壁厚(上限)";
  1503. this.dataColumn18.ColumnName = "HEIGHT_MIAX";
  1504. //
  1505. // dataColumn19
  1506. //
  1507. this.dataColumn19.Caption = "创建人";
  1508. this.dataColumn19.ColumnName = "CREATE_NAME";
  1509. //
  1510. // dataColumn20
  1511. //
  1512. this.dataColumn20.Caption = "创建时间";
  1513. this.dataColumn20.ColumnName = "CREATE_TIME";
  1514. //
  1515. // dataColumn21
  1516. //
  1517. this.dataColumn21.Caption = "修改人";
  1518. this.dataColumn21.ColumnName = "UPDATE_NAME";
  1519. //
  1520. // dataColumn22
  1521. //
  1522. this.dataColumn22.Caption = "修改时间";
  1523. this.dataColumn22.ColumnName = "UPDATE_TIME";
  1524. //
  1525. // dataColumn23
  1526. //
  1527. this.dataColumn23.Caption = "删除人";
  1528. this.dataColumn23.ColumnName = "DELETE_NAME";
  1529. //
  1530. // dataColumn24
  1531. //
  1532. this.dataColumn24.Caption = "删除时间";
  1533. this.dataColumn24.ColumnName = "DELETE_TIME";
  1534. //
  1535. // dataColumn25
  1536. //
  1537. this.dataColumn25.Caption = "有效标志";
  1538. this.dataColumn25.ColumnName = "VALIDFLAG";
  1539. //
  1540. // dataColumn26
  1541. //
  1542. this.dataColumn26.Caption = "备注";
  1543. this.dataColumn26.ColumnName = "MEMO";
  1544. //
  1545. // dataTable3
  1546. //
  1547. this.dataTable3.Columns.AddRange(new System.Data.DataColumn[] {
  1548. this.dataColumn1,
  1549. this.dataColumn2,
  1550. this.dataColumn3,
  1551. this.dataColumn30,
  1552. this.dataColumn31,
  1553. this.dataColumn32,
  1554. this.dataColumn33,
  1555. this.dataColumn34,
  1556. this.dataColumn35,
  1557. this.dataColumn36,
  1558. this.dataColumn37,
  1559. this.dataColumn38,
  1560. this.dataColumn39,
  1561. this.dataColumn5,
  1562. this.dataColumn10});
  1563. this.dataTable3.TableName = "COM_PSC";
  1564. //
  1565. // dataColumn1
  1566. //
  1567. this.dataColumn1.Caption = "产品规范码";
  1568. this.dataColumn1.ColumnName = "PSC";
  1569. //
  1570. // dataColumn2
  1571. //
  1572. this.dataColumn2.Caption = "产品规范描述";
  1573. this.dataColumn2.ColumnName = "PSC_DESC";
  1574. //
  1575. // dataColumn3
  1576. //
  1577. this.dataColumn3.Caption = "备注";
  1578. this.dataColumn3.ColumnName = "MEMO";
  1579. //
  1580. // dataColumn30
  1581. //
  1582. this.dataColumn30.ColumnName = "PRODUCCODE";
  1583. //
  1584. // dataColumn31
  1585. //
  1586. this.dataColumn31.ColumnName = "PRODUCNAME";
  1587. //
  1588. // dataColumn32
  1589. //
  1590. this.dataColumn32.ColumnName = "STD_CODE";
  1591. //
  1592. // dataColumn33
  1593. //
  1594. this.dataColumn33.ColumnName = "STD_NAME";
  1595. //
  1596. // dataColumn34
  1597. //
  1598. this.dataColumn34.ColumnName = "STEELCODE";
  1599. //
  1600. // dataColumn35
  1601. //
  1602. this.dataColumn35.ColumnName = "STEELNAME";
  1603. //
  1604. // dataColumn36
  1605. //
  1606. this.dataColumn36.ColumnName = "STD_STYLE";
  1607. //
  1608. // dataColumn37
  1609. //
  1610. this.dataColumn37.ColumnName = "STD_STYLE_DESC";
  1611. //
  1612. // dataColumn38
  1613. //
  1614. this.dataColumn38.ColumnName = "NEW_PROC_CODE";
  1615. //
  1616. // dataColumn39
  1617. //
  1618. this.dataColumn39.ColumnName = "NEW_PROC_DESC";
  1619. //
  1620. // dataColumn5
  1621. //
  1622. this.dataColumn5.Caption = "产品大类";
  1623. this.dataColumn5.ColumnName = "PRODUC_HEAD";
  1624. //
  1625. // dataColumn10
  1626. //
  1627. this.dataColumn10.Caption = "是否有非无效的MSC";
  1628. this.dataColumn10.ColumnName = "HAVE_MSC";
  1629. //
  1630. // dataTable4
  1631. //
  1632. this.dataTable4.Columns.AddRange(new System.Data.DataColumn[] {
  1633. this.dataColumn43,
  1634. this.dataColumn44,
  1635. this.dataColumn45,
  1636. this.dataColumn46,
  1637. this.dataColumn47,
  1638. this.dataColumn48,
  1639. this.dataColumn49,
  1640. this.dataColumn50,
  1641. this.dataColumn51,
  1642. this.dataColumn52,
  1643. this.dataColumn53,
  1644. this.dataColumn54,
  1645. this.dataColumn55,
  1646. this.dataColumn27,
  1647. this.dataColumn42,
  1648. this.dataColumn74,
  1649. this.dataColumn87});
  1650. this.dataTable4.TableName = "COM_MSC_BACKLOG";
  1651. //
  1652. // dataColumn43
  1653. //
  1654. this.dataColumn43.Caption = "冶金规范码";
  1655. this.dataColumn43.ColumnName = "MSC";
  1656. //
  1657. // dataColumn44
  1658. //
  1659. this.dataColumn44.Caption = "全程产线号";
  1660. this.dataColumn44.ColumnName = "MSC_PLINE";
  1661. //
  1662. // dataColumn45
  1663. //
  1664. this.dataColumn45.Caption = "全程途径码";
  1665. this.dataColumn45.ColumnName = "WHOLE_BACKLOG";
  1666. //
  1667. // dataColumn46
  1668. //
  1669. this.dataColumn46.Caption = "全程途径描述";
  1670. this.dataColumn46.ColumnName = "WHOLE_BACKLOG_DESC";
  1671. //
  1672. // dataColumn47
  1673. //
  1674. this.dataColumn47.Caption = "创建人";
  1675. this.dataColumn47.ColumnName = "CREATE_NAME";
  1676. //
  1677. // dataColumn48
  1678. //
  1679. this.dataColumn48.Caption = "创建时间";
  1680. this.dataColumn48.ColumnName = "CREATE_TIME";
  1681. //
  1682. // dataColumn49
  1683. //
  1684. this.dataColumn49.Caption = "修改人";
  1685. this.dataColumn49.ColumnName = "UPDATE_NAME";
  1686. //
  1687. // dataColumn50
  1688. //
  1689. this.dataColumn50.Caption = "修改时间";
  1690. this.dataColumn50.ColumnName = "UPDATE_TIME";
  1691. //
  1692. // dataColumn51
  1693. //
  1694. this.dataColumn51.Caption = "作废人";
  1695. this.dataColumn51.ColumnName = "DELETE_NAME";
  1696. //
  1697. // dataColumn52
  1698. //
  1699. this.dataColumn52.Caption = "作废时间";
  1700. this.dataColumn52.ColumnName = "DELETE_TIME";
  1701. //
  1702. // dataColumn53
  1703. //
  1704. this.dataColumn53.Caption = "有效标志代码";
  1705. this.dataColumn53.ColumnName = "VALIDFLAG";
  1706. //
  1707. // dataColumn54
  1708. //
  1709. this.dataColumn54.Caption = "状态";
  1710. this.dataColumn54.ColumnName = "VALIDFLAG_NAME";
  1711. //
  1712. // dataColumn55
  1713. //
  1714. this.dataColumn55.Caption = "备注";
  1715. this.dataColumn55.ColumnName = "MEMO";
  1716. //
  1717. // dataColumn27
  1718. //
  1719. this.dataColumn27.Caption = "TPCO工艺单号";
  1720. this.dataColumn27.ColumnName = "PROCESS_NO";
  1721. //
  1722. // dataColumn42
  1723. //
  1724. this.dataColumn42.Caption = "工艺文件";
  1725. this.dataColumn42.ColumnName = "CRAFT_PATH";
  1726. //
  1727. // dataColumn74
  1728. //
  1729. this.dataColumn74.Caption = "是否自动生成工艺文件";
  1730. this.dataColumn74.ColumnName = "AUTO_CRAFT";
  1731. //
  1732. // dataColumn87
  1733. //
  1734. this.dataColumn87.Caption = "复制制程";
  1735. this.dataColumn87.ColumnName = "COPY_MSC_PLINE";
  1736. //
  1737. // dataTable5
  1738. //
  1739. this.dataTable5.Columns.AddRange(new System.Data.DataColumn[] {
  1740. this.dataColumn56,
  1741. this.dataColumn57,
  1742. this.dataColumn58,
  1743. this.dataColumn59,
  1744. this.dataColumn60,
  1745. this.dataColumn61,
  1746. this.dataColumn62,
  1747. this.dataColumn63,
  1748. this.dataColumn64,
  1749. this.dataColumn65,
  1750. this.dataColumn66,
  1751. this.dataColumn67,
  1752. this.dataColumn68,
  1753. this.dataColumn69,
  1754. this.dataColumn70,
  1755. this.dataColumn71,
  1756. this.dataColumn72,
  1757. this.dataColumn111,
  1758. this.dataColumn73,
  1759. this.dataColumn116,
  1760. this.dataColumn117,
  1761. this.dataColumn118,
  1762. this.dataColumn119,
  1763. this.dataColumn120,
  1764. this.dataColumn4,
  1765. this.dataColumn6,
  1766. this.dataColumn7,
  1767. this.dataColumn8,
  1768. this.dataColumn9,
  1769. this.dataColumn28,
  1770. this.dataColumn29,
  1771. this.dataColumn40,
  1772. this.dataColumn41,
  1773. this.dataColumn76,
  1774. this.dataColumn77});
  1775. this.dataTable5.TableName = "COM_BASE_PROCESS";
  1776. //
  1777. // dataColumn56
  1778. //
  1779. this.dataColumn56.Caption = "工序代码";
  1780. this.dataColumn56.ColumnName = "PROCESS_CODE";
  1781. //
  1782. // dataColumn57
  1783. //
  1784. this.dataColumn57.Caption = "工序名称";
  1785. this.dataColumn57.ColumnName = "PROCESS_DESC";
  1786. //
  1787. // dataColumn58
  1788. //
  1789. this.dataColumn58.Caption = "工序类型";
  1790. this.dataColumn58.ColumnName = "STYLE";
  1791. //
  1792. // dataColumn59
  1793. //
  1794. this.dataColumn59.Caption = "工序顺序号";
  1795. this.dataColumn59.ColumnName = "PROCESS_ID";
  1796. //
  1797. // dataColumn60
  1798. //
  1799. this.dataColumn60.Caption = "工序成本";
  1800. this.dataColumn60.ColumnName = "COST";
  1801. //
  1802. // dataColumn61
  1803. //
  1804. this.dataColumn61.Caption = "创建人";
  1805. this.dataColumn61.ColumnName = "CREATE_NAME";
  1806. //
  1807. // dataColumn62
  1808. //
  1809. this.dataColumn62.Caption = "创建时间";
  1810. this.dataColumn62.ColumnName = "CREATE_TIME";
  1811. //
  1812. // dataColumn63
  1813. //
  1814. this.dataColumn63.Caption = "修改人";
  1815. this.dataColumn63.ColumnName = "UPDATE_NAME";
  1816. //
  1817. // dataColumn64
  1818. //
  1819. this.dataColumn64.Caption = "修改时间";
  1820. this.dataColumn64.ColumnName = "UPDATE_TIME";
  1821. //
  1822. // dataColumn65
  1823. //
  1824. this.dataColumn65.Caption = "作废人";
  1825. this.dataColumn65.ColumnName = "DELETE_NAME";
  1826. //
  1827. // dataColumn66
  1828. //
  1829. this.dataColumn66.Caption = "作废时间";
  1830. this.dataColumn66.ColumnName = "DELETE_TIME";
  1831. //
  1832. // dataColumn67
  1833. //
  1834. this.dataColumn67.Caption = "有效标识代码";
  1835. this.dataColumn67.ColumnName = "VALIDFLAG";
  1836. //
  1837. // dataColumn68
  1838. //
  1839. this.dataColumn68.Caption = "工艺要点说明";
  1840. this.dataColumn68.ColumnName = "MEMO";
  1841. //
  1842. // dataColumn69
  1843. //
  1844. this.dataColumn69.Caption = "生产";
  1845. this.dataColumn69.ColumnName = "MINUTE_PRODUCT";
  1846. //
  1847. // dataColumn70
  1848. //
  1849. this.dataColumn70.Caption = "等待";
  1850. this.dataColumn70.ColumnName = "MINUTE_WAITE";
  1851. //
  1852. // dataColumn71
  1853. //
  1854. this.dataColumn71.Caption = "冶金规范码";
  1855. this.dataColumn71.ColumnName = "MSC";
  1856. //
  1857. // dataColumn72
  1858. //
  1859. this.dataColumn72.Caption = "工序循环次数";
  1860. this.dataColumn72.ColumnName = "ICOUNT";
  1861. //
  1862. // dataColumn111
  1863. //
  1864. this.dataColumn111.Caption = "有效标识";
  1865. this.dataColumn111.ColumnName = "VALIDFLAG_NAME";
  1866. //
  1867. // dataColumn73
  1868. //
  1869. this.dataColumn73.Caption = "全程工序顺序号";
  1870. this.dataColumn73.ColumnName = "BACKLOG_SEQ";
  1871. //
  1872. // dataColumn116
  1873. //
  1874. this.dataColumn116.Caption = "成分索引";
  1875. this.dataColumn116.ColumnName = "CIC";
  1876. //
  1877. // dataColumn117
  1878. //
  1879. this.dataColumn117.Caption = "理化索引";
  1880. this.dataColumn117.ColumnName = "PIC";
  1881. //
  1882. // dataColumn118
  1883. //
  1884. this.dataColumn118.Caption = "公差索引";
  1885. this.dataColumn118.ColumnName = "SIC";
  1886. //
  1887. // dataColumn119
  1888. //
  1889. this.dataColumn119.Caption = "探伤索引";
  1890. this.dataColumn119.ColumnName = "DIC";
  1891. //
  1892. // dataColumn120
  1893. //
  1894. this.dataColumn120.Caption = "水压索引";
  1895. this.dataColumn120.ColumnName = "WIC";
  1896. //
  1897. // dataColumn4
  1898. //
  1899. this.dataColumn4.Caption = "二级工序";
  1900. this.dataColumn4.ColumnName = "PROCESS_CODE_C";
  1901. //
  1902. // dataColumn6
  1903. //
  1904. this.dataColumn6.Caption = "最大工序循环次数";
  1905. this.dataColumn6.ColumnName = "MAX_COUNT";
  1906. //
  1907. // dataColumn7
  1908. //
  1909. this.dataColumn7.Caption = "循环次数旧";
  1910. this.dataColumn7.ColumnName = "PROCESS_SEQ_OLD";
  1911. //
  1912. // dataColumn8
  1913. //
  1914. this.dataColumn8.Caption = "二级工序代码旧";
  1915. this.dataColumn8.ColumnName = "PROCESS_CODE_C_OLD";
  1916. //
  1917. // dataColumn9
  1918. //
  1919. this.dataColumn9.Caption = "加工索引";
  1920. this.dataColumn9.ColumnName = "GIC";
  1921. //
  1922. // dataColumn28
  1923. //
  1924. this.dataColumn28.Caption = "批量等待";
  1925. this.dataColumn28.ColumnName = "BATCH_WAITE";
  1926. //
  1927. // dataColumn29
  1928. //
  1929. this.dataColumn29.Caption = "生产";
  1930. this.dataColumn29.ColumnName = "MINUTE_PRODUCT_OUT";
  1931. //
  1932. // dataColumn40
  1933. //
  1934. this.dataColumn40.Caption = "等待";
  1935. this.dataColumn40.ColumnName = "MINUTE_WAITE_OUT";
  1936. //
  1937. // dataColumn41
  1938. //
  1939. this.dataColumn41.Caption = "批量等待";
  1940. this.dataColumn41.ColumnName = "BATCH_WAITE_OUT";
  1941. //
  1942. // dataColumn76
  1943. //
  1944. this.dataColumn76.Caption = "工艺贴图";
  1945. this.dataColumn76.ColumnName = "PROCESS_FILE";
  1946. //
  1947. // dataColumn77
  1948. //
  1949. this.dataColumn77.Caption = "工艺贴图";
  1950. this.dataColumn77.ColumnName = "PROCESS_FILE_NAME";
  1951. //
  1952. // dataTable6
  1953. //
  1954. this.dataTable6.Columns.AddRange(new System.Data.DataColumn[] {
  1955. this.dataColumn78,
  1956. this.dataColumn79,
  1957. this.dataColumn80,
  1958. this.dataColumn81,
  1959. this.dataColumn82,
  1960. this.dataColumn83,
  1961. this.dataColumn84,
  1962. this.dataColumn85,
  1963. this.dataColumn86});
  1964. this.dataTable6.TableName = "Table1";
  1965. //
  1966. // dataColumn78
  1967. //
  1968. this.dataColumn78.Caption = "其他规格集合";
  1969. this.dataColumn78.ColumnName = "SPEC_NAME";
  1970. //
  1971. // dataColumn79
  1972. //
  1973. this.dataColumn79.Caption = "壁厚最小";
  1974. this.dataColumn79.ColumnName = "MIN_H";
  1975. //
  1976. // dataColumn80
  1977. //
  1978. this.dataColumn80.Caption = "壁厚最大";
  1979. this.dataColumn80.ColumnName = "MAX_H";
  1980. //
  1981. // dataColumn81
  1982. //
  1983. this.dataColumn81.Caption = "外径最小";
  1984. this.dataColumn81.ColumnName = "MIN_D";
  1985. //
  1986. // dataColumn82
  1987. //
  1988. this.dataColumn82.Caption = "外径最大";
  1989. this.dataColumn82.ColumnName = "MAX_D";
  1990. //
  1991. // dataColumn83
  1992. //
  1993. this.dataColumn83.Caption = "扣型集合";
  1994. this.dataColumn83.ColumnName = "MODEL_DESC";
  1995. //
  1996. // dataColumn84
  1997. //
  1998. this.dataColumn84.Caption = "备注";
  1999. this.dataColumn84.ColumnName = "MEMO";
  2000. //
  2001. // dataColumn85
  2002. //
  2003. this.dataColumn85.ColumnName = "SPEC_CODE";
  2004. //
  2005. // dataColumn86
  2006. //
  2007. this.dataColumn86.ColumnName = "MODEL_CODE";
  2008. //
  2009. // ultraTabPageControl15
  2010. //
  2011. this.ultraTabPageControl15.Controls.Add(this.ultraGrid7);
  2012. this.ultraTabPageControl15.Location = new System.Drawing.Point(-7500, -8000);
  2013. this.ultraTabPageControl15.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  2014. this.ultraTabPageControl15.Name = "ultraTabPageControl15";
  2015. this.ultraTabPageControl15.Size = new System.Drawing.Size(619, 298);
  2016. //
  2017. // ultraGrid7
  2018. //
  2019. this.ultraGrid7.DataMember = "dataTable1";
  2020. this.ultraGrid7.DataSource = this.dataSet1;
  2021. appearance85.BackColor = System.Drawing.SystemColors.Window;
  2022. appearance85.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  2023. this.ultraGrid7.DisplayLayout.Appearance = appearance85;
  2024. ultraGridColumn40.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2025. ultraGridColumn40.Header.VisiblePosition = 0;
  2026. ultraGridColumn40.Hidden = true;
  2027. ultraGridColumn40.RowLayoutColumnInfo.OriginX = 6;
  2028. ultraGridColumn40.RowLayoutColumnInfo.OriginY = 0;
  2029. ultraGridColumn40.RowLayoutColumnInfo.SpanX = 2;
  2030. ultraGridColumn40.RowLayoutColumnInfo.SpanY = 2;
  2031. ultraGridColumn41.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2032. ultraGridColumn41.Header.VisiblePosition = 1;
  2033. ultraGridColumn41.RowLayoutColumnInfo.OriginX = 0;
  2034. ultraGridColumn41.RowLayoutColumnInfo.OriginY = 0;
  2035. ultraGridColumn41.RowLayoutColumnInfo.SpanX = 1;
  2036. ultraGridColumn41.RowLayoutColumnInfo.SpanY = 1;
  2037. ultraGridColumn42.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2038. ultraGridColumn42.Header.VisiblePosition = 2;
  2039. ultraGridColumn42.Hidden = true;
  2040. ultraGridColumn42.RowLayoutColumnInfo.OriginX = 8;
  2041. ultraGridColumn42.RowLayoutColumnInfo.OriginY = 0;
  2042. ultraGridColumn42.RowLayoutColumnInfo.SpanX = 2;
  2043. ultraGridColumn42.RowLayoutColumnInfo.SpanY = 2;
  2044. ultraGridColumn43.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2045. ultraGridColumn43.Header.VisiblePosition = 4;
  2046. ultraGridColumn43.Hidden = true;
  2047. ultraGridColumn43.RowLayoutColumnInfo.OriginX = 12;
  2048. ultraGridColumn43.RowLayoutColumnInfo.OriginY = 0;
  2049. ultraGridColumn43.RowLayoutColumnInfo.SpanX = 2;
  2050. ultraGridColumn43.RowLayoutColumnInfo.SpanY = 2;
  2051. ultraGridColumn44.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2052. ultraGridColumn44.Header.VisiblePosition = 5;
  2053. ultraGridColumn44.Hidden = true;
  2054. ultraGridColumn44.RowLayoutColumnInfo.OriginX = 14;
  2055. ultraGridColumn44.RowLayoutColumnInfo.OriginY = 0;
  2056. ultraGridColumn44.RowLayoutColumnInfo.SpanX = 2;
  2057. ultraGridColumn44.RowLayoutColumnInfo.SpanY = 2;
  2058. ultraGridColumn45.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2059. ultraGridColumn45.Header.VisiblePosition = 6;
  2060. ultraGridColumn45.Hidden = true;
  2061. ultraGridColumn45.RowLayoutColumnInfo.OriginX = 16;
  2062. ultraGridColumn45.RowLayoutColumnInfo.OriginY = 0;
  2063. ultraGridColumn45.RowLayoutColumnInfo.SpanX = 2;
  2064. ultraGridColumn45.RowLayoutColumnInfo.SpanY = 2;
  2065. ultraGridColumn46.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2066. ultraGridColumn46.Header.VisiblePosition = 8;
  2067. ultraGridColumn46.Hidden = true;
  2068. ultraGridColumn46.RowLayoutColumnInfo.OriginX = 18;
  2069. ultraGridColumn46.RowLayoutColumnInfo.OriginY = 0;
  2070. ultraGridColumn46.RowLayoutColumnInfo.SpanX = 2;
  2071. ultraGridColumn46.RowLayoutColumnInfo.SpanY = 2;
  2072. ultraGridColumn47.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2073. ultraGridColumn47.Header.VisiblePosition = 10;
  2074. ultraGridColumn47.Hidden = true;
  2075. ultraGridColumn47.RowLayoutColumnInfo.OriginX = 22;
  2076. ultraGridColumn47.RowLayoutColumnInfo.OriginY = 0;
  2077. ultraGridColumn47.RowLayoutColumnInfo.SpanX = 2;
  2078. ultraGridColumn47.RowLayoutColumnInfo.SpanY = 2;
  2079. ultraGridColumn48.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2080. ultraGridColumn48.Header.VisiblePosition = 11;
  2081. ultraGridColumn48.Hidden = true;
  2082. ultraGridColumn48.RowLayoutColumnInfo.OriginX = 24;
  2083. ultraGridColumn48.RowLayoutColumnInfo.OriginY = 0;
  2084. ultraGridColumn48.RowLayoutColumnInfo.SpanX = 2;
  2085. ultraGridColumn48.RowLayoutColumnInfo.SpanY = 2;
  2086. ultraGridColumn49.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2087. ultraGridColumn49.Header.VisiblePosition = 12;
  2088. ultraGridColumn49.Hidden = true;
  2089. ultraGridColumn49.RowLayoutColumnInfo.OriginX = 26;
  2090. ultraGridColumn49.RowLayoutColumnInfo.OriginY = 0;
  2091. ultraGridColumn49.RowLayoutColumnInfo.SpanX = 2;
  2092. ultraGridColumn49.RowLayoutColumnInfo.SpanY = 2;
  2093. ultraGridColumn50.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2094. ultraGridColumn50.Header.VisiblePosition = 13;
  2095. ultraGridColumn50.Hidden = true;
  2096. ultraGridColumn50.RowLayoutColumnInfo.OriginX = 8;
  2097. ultraGridColumn50.RowLayoutColumnInfo.OriginY = 0;
  2098. ultraGridColumn50.RowLayoutColumnInfo.SpanX = 2;
  2099. ultraGridColumn50.RowLayoutColumnInfo.SpanY = 2;
  2100. ultraGridColumn51.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2101. ultraGridColumn51.Header.VisiblePosition = 3;
  2102. ultraGridColumn51.Hidden = true;
  2103. ultraGridColumn51.RowLayoutColumnInfo.OriginX = 6;
  2104. ultraGridColumn51.RowLayoutColumnInfo.OriginY = 0;
  2105. ultraGridColumn51.RowLayoutColumnInfo.SpanX = 2;
  2106. ultraGridColumn51.RowLayoutColumnInfo.SpanY = 2;
  2107. ultraGridColumn52.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2108. ultraGridColumn52.Header.VisiblePosition = 14;
  2109. ultraGridColumn52.Hidden = true;
  2110. ultraGridColumn52.RowLayoutColumnInfo.OriginX = 30;
  2111. ultraGridColumn52.RowLayoutColumnInfo.OriginY = 0;
  2112. ultraGridColumn52.RowLayoutColumnInfo.SpanX = 2;
  2113. ultraGridColumn52.RowLayoutColumnInfo.SpanY = 2;
  2114. ultraGridColumn53.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2115. ultraGridColumn53.Header.VisiblePosition = 15;
  2116. ultraGridColumn53.Hidden = true;
  2117. ultraGridColumn53.RowLayoutColumnInfo.OriginX = 32;
  2118. ultraGridColumn53.RowLayoutColumnInfo.OriginY = 0;
  2119. ultraGridColumn53.RowLayoutColumnInfo.SpanX = 2;
  2120. ultraGridColumn53.RowLayoutColumnInfo.SpanY = 2;
  2121. ultraGridColumn54.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2122. ultraGridColumn54.Header.VisiblePosition = 7;
  2123. ultraGridColumn54.Hidden = true;
  2124. ultraGridColumn54.RowLayoutColumnInfo.OriginX = 2;
  2125. ultraGridColumn54.RowLayoutColumnInfo.OriginY = 0;
  2126. ultraGridColumn54.RowLayoutColumnInfo.SpanX = 2;
  2127. ultraGridColumn54.RowLayoutColumnInfo.SpanY = 2;
  2128. ultraGridColumn55.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2129. ultraGridColumn55.Header.VisiblePosition = 9;
  2130. ultraGridColumn55.Hidden = true;
  2131. ultraGridColumn55.RowLayoutColumnInfo.OriginX = 2;
  2132. ultraGridColumn55.RowLayoutColumnInfo.OriginY = 0;
  2133. ultraGridColumn55.RowLayoutColumnInfo.SpanX = 2;
  2134. ultraGridColumn55.RowLayoutColumnInfo.SpanY = 2;
  2135. ultraGridColumn56.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2136. ultraGridColumn56.Header.VisiblePosition = 16;
  2137. ultraGridColumn56.Hidden = true;
  2138. ultraGridColumn56.RowLayoutColumnInfo.OriginX = 4;
  2139. ultraGridColumn56.RowLayoutColumnInfo.OriginY = 0;
  2140. ultraGridColumn56.RowLayoutColumnInfo.SpanX = 2;
  2141. ultraGridColumn56.RowLayoutColumnInfo.SpanY = 2;
  2142. ultraGridColumn57.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2143. ultraGridColumn57.Header.VisiblePosition = 17;
  2144. ultraGridColumn57.RowLayoutColumnInfo.OriginX = 1;
  2145. ultraGridColumn57.RowLayoutColumnInfo.OriginY = 0;
  2146. ultraGridColumn57.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(103, 0);
  2147. ultraGridColumn57.RowLayoutColumnInfo.SpanX = 1;
  2148. ultraGridColumn57.RowLayoutColumnInfo.SpanY = 1;
  2149. ultraGridColumn58.Header.VisiblePosition = 20;
  2150. ultraGridColumn59.Header.Caption = "钢种规格";
  2151. ultraGridColumn59.Header.VisiblePosition = 18;
  2152. ultraGridColumn59.RowLayoutColumnInfo.OriginX = 2;
  2153. ultraGridColumn59.RowLayoutColumnInfo.OriginY = 0;
  2154. ultraGridColumn59.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(93, 0);
  2155. ultraGridColumn59.RowLayoutColumnInfo.SpanX = 1;
  2156. ultraGridColumn59.RowLayoutColumnInfo.SpanY = 1;
  2157. ultraGridColumn59.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.Button;
  2158. ultraGridColumn60.Header.Caption = "删除";
  2159. ultraGridColumn60.Header.VisiblePosition = 19;
  2160. ultraGridColumn60.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(72, 0);
  2161. ultraGridColumn60.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.Button;
  2162. ultraGridBand2.Columns.AddRange(new object[] {
  2163. ultraGridColumn40,
  2164. ultraGridColumn41,
  2165. ultraGridColumn42,
  2166. ultraGridColumn43,
  2167. ultraGridColumn44,
  2168. ultraGridColumn45,
  2169. ultraGridColumn46,
  2170. ultraGridColumn47,
  2171. ultraGridColumn48,
  2172. ultraGridColumn49,
  2173. ultraGridColumn50,
  2174. ultraGridColumn51,
  2175. ultraGridColumn52,
  2176. ultraGridColumn53,
  2177. ultraGridColumn54,
  2178. ultraGridColumn55,
  2179. ultraGridColumn56,
  2180. ultraGridColumn57,
  2181. ultraGridColumn58,
  2182. ultraGridColumn59,
  2183. ultraGridColumn60});
  2184. ultraGridBand2.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
  2185. ultraGridColumn61.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2186. ultraGridColumn61.Header.VisiblePosition = 0;
  2187. ultraGridColumn61.Hidden = true;
  2188. ultraGridColumn61.RowLayoutColumnInfo.OriginX = 0;
  2189. ultraGridColumn61.RowLayoutColumnInfo.OriginY = 0;
  2190. ultraGridColumn61.RowLayoutColumnInfo.SpanX = 1;
  2191. ultraGridColumn61.RowLayoutColumnInfo.SpanY = 1;
  2192. ultraGridColumn62.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2193. ultraGridColumn62.Header.VisiblePosition = 1;
  2194. ultraGridColumn62.Hidden = true;
  2195. ultraGridColumn62.RowLayoutColumnInfo.OriginX = 1;
  2196. ultraGridColumn62.RowLayoutColumnInfo.OriginY = 0;
  2197. ultraGridColumn62.RowLayoutColumnInfo.SpanX = 1;
  2198. ultraGridColumn62.RowLayoutColumnInfo.SpanY = 1;
  2199. ultraGridColumn63.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2200. ultraGridColumn63.Header.VisiblePosition = 2;
  2201. ultraGridColumn63.Hidden = true;
  2202. ultraGridColumn63.RowLayoutColumnInfo.OriginX = 2;
  2203. ultraGridColumn63.RowLayoutColumnInfo.OriginY = 0;
  2204. ultraGridColumn63.RowLayoutColumnInfo.SpanX = 1;
  2205. ultraGridColumn63.RowLayoutColumnInfo.SpanY = 1;
  2206. ultraGridColumn64.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2207. ultraGridColumn64.Header.VisiblePosition = 3;
  2208. ultraGridColumn64.Hidden = true;
  2209. ultraGridColumn64.RowLayoutColumnInfo.OriginX = 3;
  2210. ultraGridColumn64.RowLayoutColumnInfo.OriginY = 0;
  2211. ultraGridColumn64.RowLayoutColumnInfo.SpanX = 1;
  2212. ultraGridColumn64.RowLayoutColumnInfo.SpanY = 1;
  2213. ultraGridColumn65.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2214. ultraGridColumn65.Header.VisiblePosition = 4;
  2215. ultraGridColumn65.RowLayoutColumnInfo.OriginX = 2;
  2216. ultraGridColumn65.RowLayoutColumnInfo.OriginY = 0;
  2217. ultraGridColumn65.RowLayoutColumnInfo.SpanX = 1;
  2218. ultraGridColumn65.RowLayoutColumnInfo.SpanY = 1;
  2219. ultraGridColumn66.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2220. ultraGridColumn66.Header.VisiblePosition = 5;
  2221. ultraGridColumn66.RowLayoutColumnInfo.OriginX = 0;
  2222. ultraGridColumn66.RowLayoutColumnInfo.OriginY = 0;
  2223. ultraGridColumn66.RowLayoutColumnInfo.SpanX = 1;
  2224. ultraGridColumn66.RowLayoutColumnInfo.SpanY = 1;
  2225. ultraGridColumn67.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2226. ultraGridColumn67.Header.VisiblePosition = 6;
  2227. ultraGridColumn67.RowLayoutColumnInfo.OriginX = 1;
  2228. ultraGridColumn67.RowLayoutColumnInfo.OriginY = 0;
  2229. ultraGridColumn67.RowLayoutColumnInfo.SpanX = 1;
  2230. ultraGridColumn67.RowLayoutColumnInfo.SpanY = 1;
  2231. ultraGridColumn68.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2232. ultraGridColumn68.Header.VisiblePosition = 7;
  2233. ultraGridColumn68.RowLayoutColumnInfo.OriginX = 3;
  2234. ultraGridColumn68.RowLayoutColumnInfo.OriginY = 0;
  2235. ultraGridColumn68.RowLayoutColumnInfo.SpanX = 1;
  2236. ultraGridColumn68.RowLayoutColumnInfo.SpanY = 1;
  2237. ultraGridColumn69.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2238. ultraGridColumn69.Header.VisiblePosition = 8;
  2239. ultraGridColumn69.Hidden = true;
  2240. ultraGridColumn69.RowLayoutColumnInfo.OriginX = 8;
  2241. ultraGridColumn69.RowLayoutColumnInfo.OriginY = 0;
  2242. ultraGridColumn69.RowLayoutColumnInfo.SpanX = 1;
  2243. ultraGridColumn69.RowLayoutColumnInfo.SpanY = 1;
  2244. ultraGridColumn70.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2245. ultraGridColumn70.Header.VisiblePosition = 9;
  2246. ultraGridColumn70.Hidden = true;
  2247. ultraGridColumn70.RowLayoutColumnInfo.OriginX = 9;
  2248. ultraGridColumn70.RowLayoutColumnInfo.OriginY = 0;
  2249. ultraGridColumn70.RowLayoutColumnInfo.SpanX = 1;
  2250. ultraGridColumn70.RowLayoutColumnInfo.SpanY = 1;
  2251. ultraGridColumn71.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2252. ultraGridColumn71.Header.VisiblePosition = 10;
  2253. ultraGridColumn71.Hidden = true;
  2254. ultraGridColumn71.RowLayoutColumnInfo.OriginX = 10;
  2255. ultraGridColumn71.RowLayoutColumnInfo.OriginY = 0;
  2256. ultraGridColumn71.RowLayoutColumnInfo.SpanX = 1;
  2257. ultraGridColumn71.RowLayoutColumnInfo.SpanY = 1;
  2258. ultraGridColumn72.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2259. ultraGridColumn72.Header.VisiblePosition = 11;
  2260. ultraGridColumn72.Hidden = true;
  2261. ultraGridColumn72.RowLayoutColumnInfo.OriginX = 11;
  2262. ultraGridColumn72.RowLayoutColumnInfo.OriginY = 0;
  2263. ultraGridColumn72.RowLayoutColumnInfo.SpanX = 1;
  2264. ultraGridColumn72.RowLayoutColumnInfo.SpanY = 1;
  2265. ultraGridColumn73.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2266. ultraGridColumn73.Header.VisiblePosition = 12;
  2267. ultraGridColumn73.Hidden = true;
  2268. ultraGridColumn73.RowLayoutColumnInfo.OriginX = 12;
  2269. ultraGridColumn73.RowLayoutColumnInfo.OriginY = 0;
  2270. ultraGridColumn73.RowLayoutColumnInfo.SpanX = 1;
  2271. ultraGridColumn73.RowLayoutColumnInfo.SpanY = 1;
  2272. ultraGridColumn74.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2273. ultraGridColumn74.Header.VisiblePosition = 13;
  2274. ultraGridColumn74.Hidden = true;
  2275. ultraGridColumn74.RowLayoutColumnInfo.OriginX = 13;
  2276. ultraGridColumn74.RowLayoutColumnInfo.OriginY = 0;
  2277. ultraGridColumn74.RowLayoutColumnInfo.SpanX = 1;
  2278. ultraGridColumn74.RowLayoutColumnInfo.SpanY = 1;
  2279. ultraGridColumn75.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2280. ultraGridColumn75.Header.VisiblePosition = 14;
  2281. ultraGridColumn75.Hidden = true;
  2282. ultraGridColumn75.RowLayoutColumnInfo.OriginX = 14;
  2283. ultraGridColumn75.RowLayoutColumnInfo.OriginY = 0;
  2284. ultraGridColumn75.RowLayoutColumnInfo.SpanX = 1;
  2285. ultraGridColumn75.RowLayoutColumnInfo.SpanY = 1;
  2286. ultraGridColumn76.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2287. ultraGridColumn76.Header.VisiblePosition = 15;
  2288. ultraGridColumn76.Hidden = true;
  2289. ultraGridColumn76.RowLayoutColumnInfo.OriginX = 15;
  2290. ultraGridColumn76.RowLayoutColumnInfo.OriginY = 0;
  2291. ultraGridColumn76.RowLayoutColumnInfo.SpanX = 1;
  2292. ultraGridColumn76.RowLayoutColumnInfo.SpanY = 1;
  2293. ultraGridBand3.Columns.AddRange(new object[] {
  2294. ultraGridColumn61,
  2295. ultraGridColumn62,
  2296. ultraGridColumn63,
  2297. ultraGridColumn64,
  2298. ultraGridColumn65,
  2299. ultraGridColumn66,
  2300. ultraGridColumn67,
  2301. ultraGridColumn68,
  2302. ultraGridColumn69,
  2303. ultraGridColumn70,
  2304. ultraGridColumn71,
  2305. ultraGridColumn72,
  2306. ultraGridColumn73,
  2307. ultraGridColumn74,
  2308. ultraGridColumn75,
  2309. ultraGridColumn76});
  2310. ultraGridBand3.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
  2311. this.ultraGrid7.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
  2312. this.ultraGrid7.DisplayLayout.BandsSerializer.Add(ultraGridBand3);
  2313. this.ultraGrid7.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  2314. this.ultraGrid7.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  2315. appearance86.BackColor = System.Drawing.SystemColors.ActiveBorder;
  2316. appearance86.BackColor2 = System.Drawing.SystemColors.ControlDark;
  2317. appearance86.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  2318. appearance86.BorderColor = System.Drawing.SystemColors.Window;
  2319. this.ultraGrid7.DisplayLayout.GroupByBox.Appearance = appearance86;
  2320. appearance87.ForeColor = System.Drawing.SystemColors.GrayText;
  2321. this.ultraGrid7.DisplayLayout.GroupByBox.BandLabelAppearance = appearance87;
  2322. this.ultraGrid7.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  2323. appearance88.BackColor = System.Drawing.SystemColors.ControlLightLight;
  2324. appearance88.BackColor2 = System.Drawing.SystemColors.Control;
  2325. appearance88.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  2326. appearance88.ForeColor = System.Drawing.SystemColors.GrayText;
  2327. this.ultraGrid7.DisplayLayout.GroupByBox.PromptAppearance = appearance88;
  2328. this.ultraGrid7.DisplayLayout.MaxColScrollRegions = 1;
  2329. this.ultraGrid7.DisplayLayout.MaxRowScrollRegions = 1;
  2330. appearance89.BackColor = System.Drawing.SystemColors.Window;
  2331. appearance89.ForeColor = System.Drawing.SystemColors.ControlText;
  2332. this.ultraGrid7.DisplayLayout.Override.ActiveCellAppearance = appearance89;
  2333. appearance90.BackColor = System.Drawing.SystemColors.Highlight;
  2334. appearance90.ForeColor = System.Drawing.SystemColors.HighlightText;
  2335. this.ultraGrid7.DisplayLayout.Override.ActiveRowAppearance = appearance90;
  2336. this.ultraGrid7.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  2337. this.ultraGrid7.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  2338. appearance91.BackColor = System.Drawing.SystemColors.Window;
  2339. this.ultraGrid7.DisplayLayout.Override.CardAreaAppearance = appearance91;
  2340. appearance92.BorderColor = System.Drawing.Color.Silver;
  2341. appearance92.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  2342. this.ultraGrid7.DisplayLayout.Override.CellAppearance = appearance92;
  2343. this.ultraGrid7.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  2344. this.ultraGrid7.DisplayLayout.Override.CellPadding = 0;
  2345. appearance93.BackColor = System.Drawing.SystemColors.Control;
  2346. appearance93.BackColor2 = System.Drawing.SystemColors.ControlDark;
  2347. appearance93.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  2348. appearance93.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  2349. appearance93.BorderColor = System.Drawing.SystemColors.Window;
  2350. this.ultraGrid7.DisplayLayout.Override.GroupByRowAppearance = appearance93;
  2351. appearance94.TextHAlignAsString = "Left";
  2352. this.ultraGrid7.DisplayLayout.Override.HeaderAppearance = appearance94;
  2353. this.ultraGrid7.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  2354. this.ultraGrid7.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  2355. appearance95.BackColor = System.Drawing.SystemColors.Window;
  2356. appearance95.BorderColor = System.Drawing.Color.Silver;
  2357. this.ultraGrid7.DisplayLayout.Override.RowAppearance = appearance95;
  2358. this.ultraGrid7.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  2359. appearance96.BackColor = System.Drawing.SystemColors.ControlLight;
  2360. this.ultraGrid7.DisplayLayout.Override.TemplateAddRowAppearance = appearance96;
  2361. this.ultraGrid7.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  2362. this.ultraGrid7.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  2363. this.ultraGrid7.Dock = System.Windows.Forms.DockStyle.Fill;
  2364. this.ultraGrid7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2365. this.ultraGrid7.Location = new System.Drawing.Point(0, 0);
  2366. this.ultraGrid7.Name = "ultraGrid7";
  2367. this.ultraGrid7.Size = new System.Drawing.Size(619, 298);
  2368. this.ultraGrid7.TabIndex = 0;
  2369. this.ultraGrid7.Text = "ultraGrid7";
  2370. this.ultraGrid7.ClickCellButton += new Infragistics.Win.UltraWinGrid.CellEventHandler(this.ultraGrid7_ClickCellButton);
  2371. //
  2372. // ultraTabPageControl14
  2373. //
  2374. this.ultraTabPageControl14.Controls.Add(this.lblStationPath);
  2375. this.ultraTabPageControl14.Location = new System.Drawing.Point(-7500, -8000);
  2376. this.ultraTabPageControl14.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  2377. this.ultraTabPageControl14.Name = "ultraTabPageControl14";
  2378. this.ultraTabPageControl14.Size = new System.Drawing.Size(619, 298);
  2379. //
  2380. // lblStationPath
  2381. //
  2382. this.lblStationPath.Dock = System.Windows.Forms.DockStyle.Fill;
  2383. this.lblStationPath.Location = new System.Drawing.Point(0, 0);
  2384. this.lblStationPath.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  2385. this.lblStationPath.Name = "lblStationPath";
  2386. this.lblStationPath.Size = new System.Drawing.Size(619, 298);
  2387. this.lblStationPath.TabIndex = 0;
  2388. this.lblStationPath.Text = "";
  2389. //
  2390. // ultraTextEditor8
  2391. //
  2392. editorButton6.Text = "查看";
  2393. this.ultraTextEditor8.ButtonsRight.Add(editorButton6);
  2394. this.ultraTextEditor8.Location = new System.Drawing.Point(63, 323);
  2395. this.ultraTextEditor8.Name = "ultraTextEditor8";
  2396. this.ultraTextEditor8.ReadOnly = true;
  2397. this.ultraTextEditor8.Size = new System.Drawing.Size(120, 21);
  2398. this.ultraTextEditor8.TabIndex = 41;
  2399. this.ultraTextEditor8.Visible = false;
  2400. this.ultraTextEditor8.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.ultraTextEditor8_EditorButtonClick);
  2401. //
  2402. // ultraTabPageControl6
  2403. //
  2404. this.ultraTabPageControl6.Controls.Add(this.ultraTabControl2);
  2405. this.ultraTabPageControl6.Location = new System.Drawing.Point(2, 21);
  2406. this.ultraTabPageControl6.Name = "ultraTabPageControl6";
  2407. this.ultraTabPageControl6.Size = new System.Drawing.Size(623, 394);
  2408. //
  2409. // ultraTabControl2
  2410. //
  2411. this.ultraTabControl2.Controls.Add(this.ultraTabSharedControlsPage2);
  2412. this.ultraTabControl2.Controls.Add(this.ultraTabPageControl4);
  2413. this.ultraTabControl2.Controls.Add(this.ultraTabPageControl5);
  2414. this.ultraTabControl2.Controls.Add(this.ultraTabPageControl7);
  2415. this.ultraTabControl2.Controls.Add(this.ultraTabPageControl9);
  2416. this.ultraTabControl2.Controls.Add(this.ultraTabPageControl10);
  2417. this.ultraTabControl2.Controls.Add(this.ultraTabPageControl3);
  2418. this.ultraTabControl2.Dock = System.Windows.Forms.DockStyle.Fill;
  2419. this.ultraTabControl2.Location = new System.Drawing.Point(0, 0);
  2420. this.ultraTabControl2.Name = "ultraTabControl2";
  2421. this.ultraTabControl2.SharedControlsPage = this.ultraTabSharedControlsPage2;
  2422. this.ultraTabControl2.Size = new System.Drawing.Size(623, 394);
  2423. this.ultraTabControl2.TabIndex = 0;
  2424. ultraTab2.Key = "ChemStand";
  2425. ultraTab2.TabPage = this.ultraTabPageControl4;
  2426. ultraTab2.Text = "成分标准";
  2427. ultraTab6.Key = "MaterialStand";
  2428. ultraTab6.TabPage = this.ultraTabPageControl5;
  2429. ultraTab6.Text = "理化标准";
  2430. ultraTab7.Key = "TolerancesStand";
  2431. ultraTab7.TabPage = this.ultraTabPageControl7;
  2432. ultraTab7.Text = "公差标准";
  2433. ultraTab9.Key = "ComMSCStdDetection";
  2434. ultraTab9.TabPage = this.ultraTabPageControl9;
  2435. ultraTab9.Text = "探伤标准";
  2436. ultraTab10.Key = "ProductWater";
  2437. ultraTab10.TabPage = this.ultraTabPageControl10;
  2438. ultraTab10.Text = "水压标准";
  2439. ultraTab5.Key = "ComMSCStdProcess";
  2440. ultraTab5.TabPage = this.ultraTabPageControl3;
  2441. ultraTab5.Text = "加工标准";
  2442. this.ultraTabControl2.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
  2443. ultraTab2,
  2444. ultraTab6,
  2445. ultraTab7,
  2446. ultraTab9,
  2447. ultraTab10,
  2448. ultraTab5});
  2449. this.ultraTabControl2.UseFlatMode = Infragistics.Win.DefaultableBoolean.False;
  2450. this.ultraTabControl2.ViewStyle = Infragistics.Win.UltraWinTabControl.ViewStyle.VisualStudio2005;
  2451. this.ultraTabControl2.SelectedTabChanging += new Infragistics.Win.UltraWinTabControl.SelectedTabChangingEventHandler(this.ultraTabControl2_SelectedTabChanging);
  2452. this.ultraTabControl2.SelectedTabChanged += new Infragistics.Win.UltraWinTabControl.SelectedTabChangedEventHandler(this.ultraTabControl2_SelectedTabChanged);
  2453. //
  2454. // ultraTabSharedControlsPage2
  2455. //
  2456. this.ultraTabSharedControlsPage2.Location = new System.Drawing.Point(-10000, -10000);
  2457. this.ultraTabSharedControlsPage2.Name = "ultraTabSharedControlsPage2";
  2458. this.ultraTabSharedControlsPage2.Size = new System.Drawing.Size(619, 371);
  2459. //
  2460. // ultraTabPageControl8
  2461. //
  2462. this.ultraTabPageControl8.Controls.Add(this.splitContainer4);
  2463. this.ultraTabPageControl8.Location = new System.Drawing.Point(-7500, -8000);
  2464. this.ultraTabPageControl8.Name = "ultraTabPageControl8";
  2465. this.ultraTabPageControl8.Size = new System.Drawing.Size(623, 394);
  2466. //
  2467. // splitContainer4
  2468. //
  2469. this.splitContainer4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  2470. this.splitContainer4.Dock = System.Windows.Forms.DockStyle.Fill;
  2471. this.splitContainer4.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
  2472. this.splitContainer4.Location = new System.Drawing.Point(0, 0);
  2473. this.splitContainer4.Name = "splitContainer4";
  2474. this.splitContainer4.Orientation = System.Windows.Forms.Orientation.Horizontal;
  2475. //
  2476. // splitContainer4.Panel1
  2477. //
  2478. this.splitContainer4.Panel1.Controls.Add(this.ultraGrid4);
  2479. //
  2480. // splitContainer4.Panel2
  2481. //
  2482. this.splitContainer4.Panel2.Controls.Add(this.panel2);
  2483. this.splitContainer4.Size = new System.Drawing.Size(623, 394);
  2484. this.splitContainer4.SplitterDistance = 66;
  2485. this.splitContainer4.TabIndex = 5;
  2486. //
  2487. // ultraGrid4
  2488. //
  2489. this.ultraGrid4.DataMember = "COM_MSC_BACKLOG";
  2490. this.ultraGrid4.DataSource = this.dataSet1;
  2491. appearance37.BackColor = System.Drawing.SystemColors.Window;
  2492. appearance37.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  2493. this.ultraGrid4.DisplayLayout.Appearance = appearance37;
  2494. ultraGridColumn77.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2495. ultraGridColumn77.Header.VisiblePosition = 0;
  2496. ultraGridColumn77.Hidden = true;
  2497. ultraGridColumn77.RowLayoutColumnInfo.OriginX = 6;
  2498. ultraGridColumn77.RowLayoutColumnInfo.OriginY = 0;
  2499. ultraGridColumn77.RowLayoutColumnInfo.SpanX = 2;
  2500. ultraGridColumn77.RowLayoutColumnInfo.SpanY = 2;
  2501. ultraGridColumn78.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2502. ultraGridColumn78.Header.VisiblePosition = 1;
  2503. ultraGridColumn78.RowLayoutColumnInfo.OriginX = 1;
  2504. ultraGridColumn78.RowLayoutColumnInfo.OriginY = 0;
  2505. ultraGridColumn78.RowLayoutColumnInfo.SpanX = 1;
  2506. ultraGridColumn78.RowLayoutColumnInfo.SpanY = 1;
  2507. ultraGridColumn79.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2508. ultraGridColumn79.Header.VisiblePosition = 2;
  2509. ultraGridColumn79.RowLayoutColumnInfo.OriginX = 2;
  2510. ultraGridColumn79.RowLayoutColumnInfo.OriginY = 0;
  2511. ultraGridColumn79.RowLayoutColumnInfo.SpanX = 1;
  2512. ultraGridColumn79.RowLayoutColumnInfo.SpanY = 1;
  2513. ultraGridColumn80.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2514. ultraGridColumn80.Header.VisiblePosition = 4;
  2515. ultraGridColumn80.RowLayoutColumnInfo.OriginX = 3;
  2516. ultraGridColumn80.RowLayoutColumnInfo.OriginY = 0;
  2517. ultraGridColumn80.RowLayoutColumnInfo.SpanX = 1;
  2518. ultraGridColumn80.RowLayoutColumnInfo.SpanY = 1;
  2519. ultraGridColumn81.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2520. ultraGridColumn81.Header.VisiblePosition = 5;
  2521. ultraGridColumn81.RowLayoutColumnInfo.OriginX = 12;
  2522. ultraGridColumn81.RowLayoutColumnInfo.OriginY = 0;
  2523. ultraGridColumn81.RowLayoutColumnInfo.SpanX = 1;
  2524. ultraGridColumn81.RowLayoutColumnInfo.SpanY = 1;
  2525. ultraGridColumn82.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2526. ultraGridColumn82.Header.VisiblePosition = 6;
  2527. ultraGridColumn82.RowLayoutColumnInfo.OriginX = 13;
  2528. ultraGridColumn82.RowLayoutColumnInfo.OriginY = 0;
  2529. ultraGridColumn82.RowLayoutColumnInfo.SpanX = 1;
  2530. ultraGridColumn82.RowLayoutColumnInfo.SpanY = 1;
  2531. ultraGridColumn83.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2532. ultraGridColumn83.Header.VisiblePosition = 7;
  2533. ultraGridColumn83.RowLayoutColumnInfo.OriginX = 14;
  2534. ultraGridColumn83.RowLayoutColumnInfo.OriginY = 0;
  2535. ultraGridColumn83.RowLayoutColumnInfo.SpanX = 1;
  2536. ultraGridColumn83.RowLayoutColumnInfo.SpanY = 1;
  2537. ultraGridColumn84.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2538. ultraGridColumn84.Header.VisiblePosition = 8;
  2539. ultraGridColumn84.RowLayoutColumnInfo.OriginX = 15;
  2540. ultraGridColumn84.RowLayoutColumnInfo.OriginY = 0;
  2541. ultraGridColumn84.RowLayoutColumnInfo.SpanX = 1;
  2542. ultraGridColumn84.RowLayoutColumnInfo.SpanY = 1;
  2543. ultraGridColumn85.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2544. ultraGridColumn85.Header.VisiblePosition = 9;
  2545. ultraGridColumn85.RowLayoutColumnInfo.OriginX = 16;
  2546. ultraGridColumn85.RowLayoutColumnInfo.OriginY = 0;
  2547. ultraGridColumn85.RowLayoutColumnInfo.SpanX = 1;
  2548. ultraGridColumn85.RowLayoutColumnInfo.SpanY = 1;
  2549. ultraGridColumn86.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2550. ultraGridColumn86.Header.VisiblePosition = 10;
  2551. ultraGridColumn86.RowLayoutColumnInfo.OriginX = 17;
  2552. ultraGridColumn86.RowLayoutColumnInfo.OriginY = 0;
  2553. ultraGridColumn86.RowLayoutColumnInfo.SpanX = 1;
  2554. ultraGridColumn86.RowLayoutColumnInfo.SpanY = 1;
  2555. ultraGridColumn87.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2556. ultraGridColumn87.Header.VisiblePosition = 11;
  2557. ultraGridColumn87.Hidden = true;
  2558. ultraGridColumn87.RowLayoutColumnInfo.OriginX = 8;
  2559. ultraGridColumn87.RowLayoutColumnInfo.OriginY = 0;
  2560. ultraGridColumn87.RowLayoutColumnInfo.SpanX = 2;
  2561. ultraGridColumn87.RowLayoutColumnInfo.SpanY = 2;
  2562. ultraGridColumn88.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2563. ultraGridColumn88.Header.VisiblePosition = 12;
  2564. ultraGridColumn88.RowLayoutColumnInfo.OriginX = 7;
  2565. ultraGridColumn88.RowLayoutColumnInfo.OriginY = 0;
  2566. ultraGridColumn88.RowLayoutColumnInfo.SpanX = 1;
  2567. ultraGridColumn88.RowLayoutColumnInfo.SpanY = 1;
  2568. appearance15.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
  2569. ultraGridColumn89.CellAppearance = appearance15;
  2570. ultraGridColumn89.Header.VisiblePosition = 3;
  2571. ultraGridColumn89.RowLayoutColumnInfo.OriginX = 8;
  2572. ultraGridColumn89.RowLayoutColumnInfo.OriginY = 0;
  2573. ultraGridColumn89.RowLayoutColumnInfo.SpanX = 2;
  2574. ultraGridColumn89.RowLayoutColumnInfo.SpanY = 2;
  2575. appearance16.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
  2576. ultraGridColumn90.CellAppearance = appearance16;
  2577. ultraGridColumn90.Header.Caption = "工艺文件号";
  2578. ultraGridColumn90.Header.VisiblePosition = 13;
  2579. ultraGridColumn90.RowLayoutColumnInfo.OriginX = 5;
  2580. ultraGridColumn90.RowLayoutColumnInfo.OriginY = 0;
  2581. ultraGridColumn90.RowLayoutColumnInfo.SpanX = 1;
  2582. ultraGridColumn90.RowLayoutColumnInfo.SpanY = 1;
  2583. ultraGridColumn91.ButtonDisplayStyle = Infragistics.Win.UltraWinGrid.ButtonDisplayStyle.Always;
  2584. appearance17.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
  2585. ultraGridColumn91.CellAppearance = appearance17;
  2586. ultraGridColumn91.EditorComponent = this.craftImg;
  2587. ultraGridColumn91.Header.VisiblePosition = 14;
  2588. ultraGridColumn91.RowLayoutColumnInfo.OriginX = 6;
  2589. ultraGridColumn91.RowLayoutColumnInfo.OriginY = 0;
  2590. ultraGridColumn91.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(188, 0);
  2591. ultraGridColumn91.RowLayoutColumnInfo.SpanX = 1;
  2592. ultraGridColumn91.RowLayoutColumnInfo.SpanY = 1;
  2593. ultraGridColumn92.EditorComponent = this.ultraComboEditor1;
  2594. ultraGridColumn92.Header.VisiblePosition = 15;
  2595. ultraGridColumn92.RowLayoutColumnInfo.OriginX = 4;
  2596. ultraGridColumn92.RowLayoutColumnInfo.OriginY = 0;
  2597. ultraGridColumn92.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(99, 0);
  2598. ultraGridColumn92.RowLayoutColumnInfo.SpanX = 1;
  2599. ultraGridColumn92.RowLayoutColumnInfo.SpanY = 1;
  2600. ultraGridColumn92.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.DropDownList;
  2601. ultraGridColumn93.Header.VisiblePosition = 16;
  2602. ultraGridColumn93.RowLayoutColumnInfo.OriginX = 10;
  2603. ultraGridColumn93.RowLayoutColumnInfo.OriginY = 0;
  2604. ultraGridColumn93.RowLayoutColumnInfo.SpanX = 2;
  2605. ultraGridColumn93.RowLayoutColumnInfo.SpanY = 2;
  2606. ultraGridColumn93.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.Button;
  2607. ultraGridColumn94.Header.Caption = "钢种维护";
  2608. ultraGridColumn94.Header.VisiblePosition = 17;
  2609. ultraGridColumn94.RowLayoutColumnInfo.OriginX = 0;
  2610. ultraGridColumn94.RowLayoutColumnInfo.OriginY = 0;
  2611. ultraGridColumn94.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(69, 0);
  2612. ultraGridColumn94.RowLayoutColumnInfo.SpanX = 1;
  2613. ultraGridColumn94.RowLayoutColumnInfo.SpanY = 1;
  2614. ultraGridColumn94.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.Button;
  2615. ultraGridBand4.Columns.AddRange(new object[] {
  2616. ultraGridColumn77,
  2617. ultraGridColumn78,
  2618. ultraGridColumn79,
  2619. ultraGridColumn80,
  2620. ultraGridColumn81,
  2621. ultraGridColumn82,
  2622. ultraGridColumn83,
  2623. ultraGridColumn84,
  2624. ultraGridColumn85,
  2625. ultraGridColumn86,
  2626. ultraGridColumn87,
  2627. ultraGridColumn88,
  2628. ultraGridColumn89,
  2629. ultraGridColumn90,
  2630. ultraGridColumn91,
  2631. ultraGridColumn92,
  2632. ultraGridColumn93,
  2633. ultraGridColumn94});
  2634. ultraGridBand4.Override.SelectedAppearancesEnabled = Infragistics.Win.DefaultableBoolean.False;
  2635. ultraGridBand4.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
  2636. this.ultraGrid4.DisplayLayout.BandsSerializer.Add(ultraGridBand4);
  2637. this.ultraGrid4.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  2638. this.ultraGrid4.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  2639. appearance38.BackColor = System.Drawing.SystemColors.ActiveBorder;
  2640. appearance38.BackColor2 = System.Drawing.SystemColors.ControlDark;
  2641. appearance38.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  2642. appearance38.BorderColor = System.Drawing.SystemColors.Window;
  2643. this.ultraGrid4.DisplayLayout.GroupByBox.Appearance = appearance38;
  2644. appearance39.ForeColor = System.Drawing.SystemColors.GrayText;
  2645. this.ultraGrid4.DisplayLayout.GroupByBox.BandLabelAppearance = appearance39;
  2646. this.ultraGrid4.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  2647. this.ultraGrid4.DisplayLayout.GroupByBox.Hidden = true;
  2648. appearance40.BackColor = System.Drawing.SystemColors.ControlLightLight;
  2649. appearance40.BackColor2 = System.Drawing.SystemColors.Control;
  2650. appearance40.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  2651. appearance40.ForeColor = System.Drawing.SystemColors.GrayText;
  2652. this.ultraGrid4.DisplayLayout.GroupByBox.PromptAppearance = appearance40;
  2653. this.ultraGrid4.DisplayLayout.MaxColScrollRegions = 1;
  2654. this.ultraGrid4.DisplayLayout.MaxRowScrollRegions = 1;
  2655. appearance41.BackColor = System.Drawing.SystemColors.Window;
  2656. appearance41.ForeColor = System.Drawing.SystemColors.ControlText;
  2657. this.ultraGrid4.DisplayLayout.Override.ActiveCellAppearance = appearance41;
  2658. appearance42.BackColor = System.Drawing.SystemColors.Highlight;
  2659. appearance42.ForeColor = System.Drawing.SystemColors.HighlightText;
  2660. this.ultraGrid4.DisplayLayout.Override.ActiveRowAppearance = appearance42;
  2661. this.ultraGrid4.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  2662. this.ultraGrid4.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  2663. appearance43.BackColor = System.Drawing.SystemColors.Window;
  2664. this.ultraGrid4.DisplayLayout.Override.CardAreaAppearance = appearance43;
  2665. appearance44.BorderColor = System.Drawing.Color.Silver;
  2666. appearance44.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  2667. this.ultraGrid4.DisplayLayout.Override.CellAppearance = appearance44;
  2668. this.ultraGrid4.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  2669. this.ultraGrid4.DisplayLayout.Override.CellPadding = 0;
  2670. appearance45.BackColor = System.Drawing.SystemColors.Control;
  2671. appearance45.BackColor2 = System.Drawing.SystemColors.ControlDark;
  2672. appearance45.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  2673. appearance45.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  2674. appearance45.BorderColor = System.Drawing.SystemColors.Window;
  2675. this.ultraGrid4.DisplayLayout.Override.GroupByRowAppearance = appearance45;
  2676. appearance46.TextHAlignAsString = "Left";
  2677. this.ultraGrid4.DisplayLayout.Override.HeaderAppearance = appearance46;
  2678. this.ultraGrid4.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  2679. this.ultraGrid4.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  2680. appearance47.BackColor = System.Drawing.SystemColors.Window;
  2681. appearance47.BorderColor = System.Drawing.Color.Silver;
  2682. this.ultraGrid4.DisplayLayout.Override.RowAppearance = appearance47;
  2683. this.ultraGrid4.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  2684. appearance48.BackColor = System.Drawing.SystemColors.ControlLight;
  2685. this.ultraGrid4.DisplayLayout.Override.TemplateAddRowAppearance = appearance48;
  2686. this.ultraGrid4.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  2687. this.ultraGrid4.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  2688. this.ultraGrid4.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  2689. this.ultraGrid4.Dock = System.Windows.Forms.DockStyle.Fill;
  2690. this.ultraGrid4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2691. this.ultraGrid4.Location = new System.Drawing.Point(0, 0);
  2692. this.ultraGrid4.Name = "ultraGrid4";
  2693. this.ultraGrid4.Size = new System.Drawing.Size(623, 66);
  2694. this.ultraGrid4.TabIndex = 3;
  2695. this.ultraGrid4.Text = "ultraGrid4";
  2696. this.ultraGrid4.InitializeRow += new Infragistics.Win.UltraWinGrid.InitializeRowEventHandler(this.ultraGrid4_InitializeRow);
  2697. this.ultraGrid4.AfterRowActivate += new System.EventHandler(this.ultraGrid4_AfterRowActivate);
  2698. this.ultraGrid4.CellChange += new Infragistics.Win.UltraWinGrid.CellEventHandler(this.ultraGrid4_CellChange);
  2699. this.ultraGrid4.ClickCellButton += new Infragistics.Win.UltraWinGrid.CellEventHandler(this.ultraGrid4_ClickCellButton);
  2700. //
  2701. // panel2
  2702. //
  2703. this.panel2.Controls.Add(this.ultraTabControl4);
  2704. this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
  2705. this.panel2.Location = new System.Drawing.Point(0, 0);
  2706. this.panel2.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  2707. this.panel2.Name = "panel2";
  2708. this.panel2.Size = new System.Drawing.Size(623, 324);
  2709. this.panel2.TabIndex = 2;
  2710. //
  2711. // ultraTabControl4
  2712. //
  2713. this.ultraTabControl4.Controls.Add(this.ultraTabSharedControlsPage4);
  2714. this.ultraTabControl4.Controls.Add(this.ultraTabPageControl13);
  2715. this.ultraTabControl4.Controls.Add(this.ultraTabPageControl14);
  2716. this.ultraTabControl4.Controls.Add(this.ultraTabPageControl15);
  2717. this.ultraTabControl4.Dock = System.Windows.Forms.DockStyle.Fill;
  2718. this.ultraTabControl4.Location = new System.Drawing.Point(0, 0);
  2719. this.ultraTabControl4.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  2720. this.ultraTabControl4.Name = "ultraTabControl4";
  2721. this.ultraTabControl4.SharedControlsPage = this.ultraTabSharedControlsPage4;
  2722. this.ultraTabControl4.Size = new System.Drawing.Size(623, 324);
  2723. this.ultraTabControl4.TabIndex = 0;
  2724. ultraTab13.TabPage = this.ultraTabPageControl13;
  2725. ultraTab13.Text = "工序";
  2726. ultraTab15.TabPage = this.ultraTabPageControl15;
  2727. ultraTab15.Text = "钢种";
  2728. ultraTab14.TabPage = this.ultraTabPageControl14;
  2729. ultraTab14.Text = "工序点路径";
  2730. this.ultraTabControl4.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
  2731. ultraTab13,
  2732. ultraTab15,
  2733. ultraTab14});
  2734. //
  2735. // ultraTabSharedControlsPage4
  2736. //
  2737. this.ultraTabSharedControlsPage4.Location = new System.Drawing.Point(-10000, -10000);
  2738. this.ultraTabSharedControlsPage4.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  2739. this.ultraTabSharedControlsPage4.Name = "ultraTabSharedControlsPage4";
  2740. this.ultraTabSharedControlsPage4.Size = new System.Drawing.Size(619, 298);
  2741. //
  2742. // ultraTabPageControl11
  2743. //
  2744. this.ultraTabPageControl11.Controls.Add(this.ctrlMscJg1);
  2745. this.ultraTabPageControl11.Location = new System.Drawing.Point(-7500, -8000);
  2746. this.ultraTabPageControl11.Name = "ultraTabPageControl11";
  2747. this.ultraTabPageControl11.Size = new System.Drawing.Size(623, 394);
  2748. //
  2749. // ctrlMscJg1
  2750. //
  2751. this.ctrlMscJg1.Dock = System.Windows.Forms.DockStyle.Fill;
  2752. this.ctrlMscJg1.DtBaseQcm = null;
  2753. this.ctrlMscJg1.FrmProPscMsc2 = null;
  2754. this.ctrlMscJg1.Location = new System.Drawing.Point(0, 0);
  2755. this.ctrlMscJg1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  2756. this.ctrlMscJg1.Name = "ctrlMscJg1";
  2757. this.ctrlMscJg1.Size = new System.Drawing.Size(623, 394);
  2758. this.ctrlMscJg1.TabIndex = 0;
  2759. //
  2760. // ultraTabPageControl12
  2761. //
  2762. this.ultraTabPageControl12.Controls.Add(this.ultraTextEditor8);
  2763. this.ultraTabPageControl12.Controls.Add(this.ctrlMscBl1);
  2764. this.ultraTabPageControl12.Controls.Add(this.ultraGrid2);
  2765. this.ultraTabPageControl12.Location = new System.Drawing.Point(-7500, -8000);
  2766. this.ultraTabPageControl12.Name = "ultraTabPageControl12";
  2767. this.ultraTabPageControl12.Size = new System.Drawing.Size(623, 394);
  2768. //
  2769. // ctrlMscBl1
  2770. //
  2771. this.ctrlMscBl1.Dock = System.Windows.Forms.DockStyle.Fill;
  2772. this.ctrlMscBl1.DtBaseQcm = null;
  2773. this.ctrlMscBl1.FrmProPscMsc2 = null;
  2774. this.ctrlMscBl1.Location = new System.Drawing.Point(0, 0);
  2775. this.ctrlMscBl1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  2776. this.ctrlMscBl1.Name = "ctrlMscBl1";
  2777. this.ctrlMscBl1.Size = new System.Drawing.Size(623, 212);
  2778. this.ctrlMscBl1.TabIndex = 0;
  2779. //
  2780. // ultraGrid2
  2781. //
  2782. this.ultraGrid2.DataMember = "Table1";
  2783. this.ultraGrid2.DataSource = this.dataSet1;
  2784. appearance21.BackColor = System.Drawing.SystemColors.Window;
  2785. appearance21.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  2786. this.ultraGrid2.DisplayLayout.Appearance = appearance21;
  2787. ultraGridColumn95.ButtonDisplayStyle = Infragistics.Win.UltraWinGrid.ButtonDisplayStyle.Always;
  2788. ultraGridColumn95.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2789. ultraGridColumn95.EditorComponent = this.ultraTextEditor8;
  2790. ultraGridColumn95.Header.VisiblePosition = 0;
  2791. ultraGridColumn95.RowLayoutColumnInfo.OriginX = 0;
  2792. ultraGridColumn95.RowLayoutColumnInfo.OriginY = 0;
  2793. ultraGridColumn95.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(239, 0);
  2794. ultraGridColumn95.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 58);
  2795. ultraGridColumn95.RowLayoutColumnInfo.SpanX = 1;
  2796. ultraGridColumn95.RowLayoutColumnInfo.SpanY = 3;
  2797. ultraGridColumn96.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2798. ultraGridColumn96.Header.VisiblePosition = 2;
  2799. ultraGridColumn96.RowLayoutColumnInfo.OriginX = 0;
  2800. ultraGridColumn96.RowLayoutColumnInfo.OriginY = 0;
  2801. ultraGridColumn96.RowLayoutColumnInfo.ParentGroupIndex = 0;
  2802. ultraGridColumn96.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
  2803. ultraGridColumn96.RowLayoutColumnInfo.SpanX = 1;
  2804. ultraGridColumn96.RowLayoutColumnInfo.SpanY = 1;
  2805. ultraGridColumn97.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2806. ultraGridColumn97.Header.VisiblePosition = 3;
  2807. ultraGridColumn97.RowLayoutColumnInfo.OriginX = 1;
  2808. ultraGridColumn97.RowLayoutColumnInfo.OriginY = 0;
  2809. ultraGridColumn97.RowLayoutColumnInfo.ParentGroupIndex = 0;
  2810. ultraGridColumn97.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
  2811. ultraGridColumn97.RowLayoutColumnInfo.SpanX = 1;
  2812. ultraGridColumn97.RowLayoutColumnInfo.SpanY = 1;
  2813. ultraGridColumn98.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2814. ultraGridColumn98.Header.VisiblePosition = 4;
  2815. ultraGridColumn98.RowLayoutColumnInfo.OriginX = 2;
  2816. ultraGridColumn98.RowLayoutColumnInfo.OriginY = 0;
  2817. ultraGridColumn98.RowLayoutColumnInfo.ParentGroupIndex = 0;
  2818. ultraGridColumn98.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
  2819. ultraGridColumn98.RowLayoutColumnInfo.SpanX = 1;
  2820. ultraGridColumn98.RowLayoutColumnInfo.SpanY = 1;
  2821. ultraGridColumn99.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2822. ultraGridColumn99.Header.VisiblePosition = 5;
  2823. ultraGridColumn99.RowLayoutColumnInfo.OriginX = 3;
  2824. ultraGridColumn99.RowLayoutColumnInfo.OriginY = 0;
  2825. ultraGridColumn99.RowLayoutColumnInfo.ParentGroupIndex = 0;
  2826. ultraGridColumn99.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
  2827. ultraGridColumn99.RowLayoutColumnInfo.SpanX = 1;
  2828. ultraGridColumn99.RowLayoutColumnInfo.SpanY = 1;
  2829. ultraGridColumn100.ButtonDisplayStyle = Infragistics.Win.UltraWinGrid.ButtonDisplayStyle.Always;
  2830. ultraGridColumn100.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2831. ultraGridColumn100.EditorComponent = this.ultraTextEditor8;
  2832. ultraGridColumn100.Header.VisiblePosition = 1;
  2833. ultraGridColumn100.RowLayoutColumnInfo.OriginX = 1;
  2834. ultraGridColumn100.RowLayoutColumnInfo.OriginY = 0;
  2835. ultraGridColumn100.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(228, 0);
  2836. ultraGridColumn100.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 58);
  2837. ultraGridColumn100.RowLayoutColumnInfo.SpanX = 1;
  2838. ultraGridColumn100.RowLayoutColumnInfo.SpanY = 3;
  2839. ultraGridColumn101.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2840. ultraGridColumn101.Header.VisiblePosition = 6;
  2841. ultraGridColumn101.RowLayoutColumnInfo.OriginX = 6;
  2842. ultraGridColumn101.RowLayoutColumnInfo.OriginY = 0;
  2843. ultraGridColumn101.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(176, 0);
  2844. ultraGridColumn101.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 58);
  2845. ultraGridColumn101.RowLayoutColumnInfo.SpanX = 1;
  2846. ultraGridColumn101.RowLayoutColumnInfo.SpanY = 3;
  2847. ultraGridColumn102.Header.VisiblePosition = 7;
  2848. ultraGridColumn102.Hidden = true;
  2849. ultraGridColumn103.Header.VisiblePosition = 8;
  2850. ultraGridColumn103.Hidden = true;
  2851. ultraGridBand5.Columns.AddRange(new object[] {
  2852. ultraGridColumn95,
  2853. ultraGridColumn96,
  2854. ultraGridColumn97,
  2855. ultraGridColumn98,
  2856. ultraGridColumn99,
  2857. ultraGridColumn100,
  2858. ultraGridColumn101,
  2859. ultraGridColumn102,
  2860. ultraGridColumn103});
  2861. ultraGridGroup3.Header.Caption = "适用成品规格";
  2862. ultraGridGroup3.Key = "NewGroup0";
  2863. ultraGridGroup3.RowLayoutGroupInfo.OriginX = 2;
  2864. ultraGridGroup3.RowLayoutGroupInfo.OriginY = 0;
  2865. ultraGridGroup3.RowLayoutGroupInfo.SpanX = 4;
  2866. ultraGridGroup3.RowLayoutGroupInfo.SpanY = 3;
  2867. ultraGridBand5.Groups.AddRange(new Infragistics.Win.UltraWinGrid.UltraGridGroup[] {
  2868. ultraGridGroup3});
  2869. ultraGridBand5.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
  2870. this.ultraGrid2.DisplayLayout.BandsSerializer.Add(ultraGridBand5);
  2871. this.ultraGrid2.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  2872. this.ultraGrid2.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  2873. appearance22.BackColor = System.Drawing.SystemColors.ActiveBorder;
  2874. appearance22.BackColor2 = System.Drawing.SystemColors.ControlDark;
  2875. appearance22.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  2876. appearance22.BorderColor = System.Drawing.SystemColors.Window;
  2877. this.ultraGrid2.DisplayLayout.GroupByBox.Appearance = appearance22;
  2878. appearance24.ForeColor = System.Drawing.SystemColors.GrayText;
  2879. this.ultraGrid2.DisplayLayout.GroupByBox.BandLabelAppearance = appearance24;
  2880. this.ultraGrid2.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  2881. appearance23.BackColor = System.Drawing.SystemColors.ControlLightLight;
  2882. appearance23.BackColor2 = System.Drawing.SystemColors.Control;
  2883. appearance23.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  2884. appearance23.ForeColor = System.Drawing.SystemColors.GrayText;
  2885. this.ultraGrid2.DisplayLayout.GroupByBox.PromptAppearance = appearance23;
  2886. this.ultraGrid2.DisplayLayout.MaxColScrollRegions = 1;
  2887. this.ultraGrid2.DisplayLayout.MaxRowScrollRegions = 1;
  2888. appearance32.BackColor = System.Drawing.SystemColors.Window;
  2889. appearance32.ForeColor = System.Drawing.SystemColors.ControlText;
  2890. this.ultraGrid2.DisplayLayout.Override.ActiveCellAppearance = appearance32;
  2891. appearance66.BackColor = System.Drawing.SystemColors.Highlight;
  2892. appearance66.ForeColor = System.Drawing.SystemColors.HighlightText;
  2893. this.ultraGrid2.DisplayLayout.Override.ActiveRowAppearance = appearance66;
  2894. this.ultraGrid2.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  2895. this.ultraGrid2.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  2896. appearance72.BackColor = System.Drawing.SystemColors.Window;
  2897. this.ultraGrid2.DisplayLayout.Override.CardAreaAppearance = appearance72;
  2898. appearance33.BorderColor = System.Drawing.Color.Silver;
  2899. appearance33.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  2900. this.ultraGrid2.DisplayLayout.Override.CellAppearance = appearance33;
  2901. this.ultraGrid2.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  2902. this.ultraGrid2.DisplayLayout.Override.CellPadding = 0;
  2903. appearance27.BackColor = System.Drawing.SystemColors.Control;
  2904. appearance27.BackColor2 = System.Drawing.SystemColors.ControlDark;
  2905. appearance27.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  2906. appearance27.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  2907. appearance27.BorderColor = System.Drawing.SystemColors.Window;
  2908. this.ultraGrid2.DisplayLayout.Override.GroupByRowAppearance = appearance27;
  2909. appearance25.TextHAlignAsString = "Left";
  2910. this.ultraGrid2.DisplayLayout.Override.HeaderAppearance = appearance25;
  2911. this.ultraGrid2.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  2912. this.ultraGrid2.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  2913. appearance69.BackColor = System.Drawing.SystemColors.Window;
  2914. appearance69.BorderColor = System.Drawing.Color.Silver;
  2915. this.ultraGrid2.DisplayLayout.Override.RowAppearance = appearance69;
  2916. this.ultraGrid2.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  2917. appearance65.BackColor = System.Drawing.SystemColors.ControlLight;
  2918. this.ultraGrid2.DisplayLayout.Override.TemplateAddRowAppearance = appearance65;
  2919. this.ultraGrid2.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  2920. this.ultraGrid2.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  2921. this.ultraGrid2.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  2922. this.ultraGrid2.Dock = System.Windows.Forms.DockStyle.Bottom;
  2923. this.ultraGrid2.Location = new System.Drawing.Point(0, 212);
  2924. this.ultraGrid2.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  2925. this.ultraGrid2.Name = "ultraGrid2";
  2926. this.ultraGrid2.Size = new System.Drawing.Size(623, 182);
  2927. this.ultraGrid2.TabIndex = 1;
  2928. this.ultraGrid2.Text = "ultraGrid2";
  2929. //
  2930. // ultraTabPageControl2
  2931. //
  2932. this.ultraTabPageControl2.AutoScroll = true;
  2933. this.ultraTabPageControl2.Controls.Add(this.ultraLabel1);
  2934. this.ultraTabPageControl2.Location = new System.Drawing.Point(-7500, -8000);
  2935. this.ultraTabPageControl2.Name = "ultraTabPageControl2";
  2936. this.ultraTabPageControl2.Size = new System.Drawing.Size(623, 394);
  2937. //
  2938. // ultraLabel1
  2939. //
  2940. appearance12.FontData.BoldAsString = "True";
  2941. appearance12.TextHAlignAsString = "Center";
  2942. appearance12.TextVAlignAsString = "Middle";
  2943. this.ultraLabel1.Appearance = appearance12;
  2944. this.ultraLabel1.Dock = System.Windows.Forms.DockStyle.Top;
  2945. this.ultraLabel1.Location = new System.Drawing.Point(0, 0);
  2946. this.ultraLabel1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  2947. this.ultraLabel1.Name = "ultraLabel1";
  2948. this.ultraLabel1.Size = new System.Drawing.Size(623, 18);
  2949. this.ultraLabel1.TabIndex = 0;
  2950. this.ultraLabel1.Text = "图片文件:";
  2951. //
  2952. // ultraTabPageControl1
  2953. //
  2954. this.ultraTabPageControl1.Controls.Add(this.ultraTabPageControl1_Fill_Panel);
  2955. this.ultraTabPageControl1.Location = new System.Drawing.Point(2, 21);
  2956. this.ultraTabPageControl1.Name = "ultraTabPageControl1";
  2957. this.ultraTabPageControl1.Size = new System.Drawing.Size(627, 554);
  2958. //
  2959. // ultraTabPageControl1_Fill_Panel
  2960. //
  2961. this.ultraTabPageControl1_Fill_Panel.Controls.Add(this.splitContainer3);
  2962. this.ultraTabPageControl1_Fill_Panel.Cursor = System.Windows.Forms.Cursors.Default;
  2963. this.ultraTabPageControl1_Fill_Panel.Dock = System.Windows.Forms.DockStyle.Fill;
  2964. this.ultraTabPageControl1_Fill_Panel.Location = new System.Drawing.Point(0, 0);
  2965. this.ultraTabPageControl1_Fill_Panel.Name = "ultraTabPageControl1_Fill_Panel";
  2966. this.ultraTabPageControl1_Fill_Panel.Size = new System.Drawing.Size(627, 554);
  2967. this.ultraTabPageControl1_Fill_Panel.TabIndex = 0;
  2968. //
  2969. // splitContainer3
  2970. //
  2971. this.splitContainer3.Dock = System.Windows.Forms.DockStyle.Fill;
  2972. this.splitContainer3.Location = new System.Drawing.Point(0, 0);
  2973. this.splitContainer3.Name = "splitContainer3";
  2974. this.splitContainer3.Orientation = System.Windows.Forms.Orientation.Horizontal;
  2975. //
  2976. // splitContainer3.Panel1
  2977. //
  2978. this.splitContainer3.Panel1.Controls.Add(this.splitContainer2);
  2979. //
  2980. // splitContainer3.Panel2
  2981. //
  2982. this.splitContainer3.Panel2.Controls.Add(this.Panel2_Fill_Panel);
  2983. this.splitContainer3.Panel2.Controls.Add(this._Panel2_Toolbars_Dock_Area_Left);
  2984. this.splitContainer3.Panel2.Controls.Add(this._Panel2_Toolbars_Dock_Area_Right);
  2985. this.splitContainer3.Panel2.Controls.Add(this._Panel2_Toolbars_Dock_Area_Top);
  2986. this.splitContainer3.Panel2.Controls.Add(this._Panel2_Toolbars_Dock_Area_Bottom);
  2987. this.splitContainer3.Size = new System.Drawing.Size(627, 554);
  2988. this.splitContainer3.SplitterDistance = 116;
  2989. this.splitContainer3.TabIndex = 2;
  2990. this.splitContainer3.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(this.splitContainer3_SplitterMoved);
  2991. //
  2992. // splitContainer2
  2993. //
  2994. this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
  2995. this.splitContainer2.Location = new System.Drawing.Point(0, 0);
  2996. this.splitContainer2.Name = "splitContainer2";
  2997. //
  2998. // splitContainer2.Panel1
  2999. //
  3000. this.splitContainer2.Panel1.Controls.Add(this.controlMsc1);
  3001. //
  3002. // splitContainer2.Panel2
  3003. //
  3004. this.splitContainer2.Panel2.Controls.Add(this.ultraExpandableGroupBox3);
  3005. this.splitContainer2.Panel2Collapsed = true;
  3006. this.splitContainer2.Size = new System.Drawing.Size(627, 116);
  3007. this.splitContainer2.SplitterDistance = 454;
  3008. this.splitContainer2.TabIndex = 1;
  3009. this.splitContainer2.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(this.splitContainer2_SplitterMoved);
  3010. //
  3011. // controlMsc1
  3012. //
  3013. this.controlMsc1.CopyMsc = "";
  3014. this.controlMsc1.DepartmentCode = "";
  3015. this.controlMsc1.Dock = System.Windows.Forms.DockStyle.Fill;
  3016. this.controlMsc1.DtBaseQcm = null;
  3017. this.controlMsc1.FrmProPscMsc2 = null;
  3018. this.controlMsc1.JgRow = null;
  3019. this.controlMsc1.Location = new System.Drawing.Point(0, 0);
  3020. this.controlMsc1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  3021. this.controlMsc1.Msc = null;
  3022. this.controlMsc1.MscRow = null;
  3023. this.controlMsc1.Name = "controlMsc1";
  3024. this.controlMsc1.Size = new System.Drawing.Size(627, 116);
  3025. this.controlMsc1.TabIndex = 0;
  3026. this.controlMsc1.UnitCode = "";
  3027. //
  3028. // ultraExpandableGroupBox3
  3029. //
  3030. this.ultraExpandableGroupBox3.Controls.Add(this.ultraExpandableGroupBoxPanel3);
  3031. this.ultraExpandableGroupBox3.Dock = System.Windows.Forms.DockStyle.Fill;
  3032. this.ultraExpandableGroupBox3.ExpandedSize = new System.Drawing.Size(72, 80);
  3033. this.ultraExpandableGroupBox3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(200)), true);
  3034. appearance4.FontData.Name = "宋体";
  3035. appearance4.FontData.SizeInPoints = 9F;
  3036. this.ultraExpandableGroupBox3.HeaderAppearance = appearance4;
  3037. this.ultraExpandableGroupBox3.HeaderPosition = Infragistics.Win.Misc.GroupBoxHeaderPosition.LeftOnBorder;
  3038. this.ultraExpandableGroupBox3.Location = new System.Drawing.Point(0, 0);
  3039. this.ultraExpandableGroupBox3.Name = "ultraExpandableGroupBox3";
  3040. this.ultraExpandableGroupBox3.RightToLeft = System.Windows.Forms.RightToLeft.No;
  3041. this.ultraExpandableGroupBox3.Size = new System.Drawing.Size(72, 80);
  3042. this.ultraExpandableGroupBox3.TabIndex = 1;
  3043. this.ultraExpandableGroupBox3.Text = "冶金规范项目1";
  3044. this.ultraExpandableGroupBox3.VerticalTextOrientation = Infragistics.Win.Misc.GroupBoxVerticalTextOrientation.TopToBottom;
  3045. //
  3046. // ultraExpandableGroupBoxPanel3
  3047. //
  3048. this.ultraExpandableGroupBoxPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
  3049. this.ultraExpandableGroupBoxPanel3.Location = new System.Drawing.Point(32, 3);
  3050. this.ultraExpandableGroupBoxPanel3.Name = "ultraExpandableGroupBoxPanel3";
  3051. this.ultraExpandableGroupBoxPanel3.Size = new System.Drawing.Size(37, 74);
  3052. this.ultraExpandableGroupBoxPanel3.TabIndex = 0;
  3053. //
  3054. // Panel2_Fill_Panel
  3055. //
  3056. this.Panel2_Fill_Panel.Controls.Add(this.ultraTabControl3);
  3057. this.Panel2_Fill_Panel.Cursor = System.Windows.Forms.Cursors.Default;
  3058. this.Panel2_Fill_Panel.Dock = System.Windows.Forms.DockStyle.Fill;
  3059. this.Panel2_Fill_Panel.Location = new System.Drawing.Point(0, 17);
  3060. this.Panel2_Fill_Panel.Name = "Panel2_Fill_Panel";
  3061. this.Panel2_Fill_Panel.Size = new System.Drawing.Size(627, 417);
  3062. this.Panel2_Fill_Panel.TabIndex = 0;
  3063. //
  3064. // ultraTabControl3
  3065. //
  3066. this.ultraTabControl3.Controls.Add(this.ultraTabSharedControlsPage3);
  3067. this.ultraTabControl3.Controls.Add(this.ultraTabPageControl6);
  3068. this.ultraTabControl3.Controls.Add(this.ultraTabPageControl8);
  3069. this.ultraTabControl3.Controls.Add(this.ultraTabPageControl11);
  3070. this.ultraTabControl3.Controls.Add(this.ultraTabPageControl12);
  3071. this.ultraTabControl3.Controls.Add(this.ultraTabPageControl2);
  3072. this.ultraTabControl3.Dock = System.Windows.Forms.DockStyle.Fill;
  3073. this.ultraTabControl3.Location = new System.Drawing.Point(0, 0);
  3074. this.ultraTabControl3.Name = "ultraTabControl3";
  3075. this.ultraTabControl3.SharedControlsPage = this.ultraTabSharedControlsPage3;
  3076. this.ultraTabControl3.Size = new System.Drawing.Size(627, 417);
  3077. this.ultraTabControl3.TabIndex = 1;
  3078. ultraTab1.Key = "STAND_PAY";
  3079. ultraTab1.TabPage = this.ultraTabPageControl6;
  3080. ultraTab1.Text = "交付标准";
  3081. ultraTab8.Key = "PROCEDURE";
  3082. ultraTab8.TabPage = this.ultraTabPageControl8;
  3083. ultraTab8.Text = "制程";
  3084. ultraTab11.Key = "JG";
  3085. ultraTab11.TabPage = this.ultraTabPageControl11;
  3086. ultraTab11.Text = "接箍码";
  3087. ultraTab12.Key = "BL";
  3088. ultraTab12.TabPage = this.ultraTabPageControl12;
  3089. ultraTab12.Text = "备料码";
  3090. ultraTab3.Key = "IMG";
  3091. ultraTab3.TabPage = this.ultraTabPageControl2;
  3092. ultraTab3.Text = "附件图片";
  3093. this.ultraTabControl3.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
  3094. ultraTab1,
  3095. ultraTab8,
  3096. ultraTab11,
  3097. ultraTab12,
  3098. ultraTab3});
  3099. this.ultraTabControl3.ViewStyle = Infragistics.Win.UltraWinTabControl.ViewStyle.VisualStudio2005;
  3100. this.ultraTabControl3.SelectedTabChanging += new Infragistics.Win.UltraWinTabControl.SelectedTabChangingEventHandler(this.ultraTabControl3_SelectedTabChanging);
  3101. this.ultraTabControl3.SelectedTabChanged += new Infragistics.Win.UltraWinTabControl.SelectedTabChangedEventHandler(this.ultraTabControl3_SelectedTabChanged);
  3102. //
  3103. // ultraTabSharedControlsPage3
  3104. //
  3105. this.ultraTabSharedControlsPage3.Location = new System.Drawing.Point(-10000, -10000);
  3106. this.ultraTabSharedControlsPage3.Name = "ultraTabSharedControlsPage3";
  3107. this.ultraTabSharedControlsPage3.Size = new System.Drawing.Size(623, 394);
  3108. //
  3109. // _Panel2_Toolbars_Dock_Area_Left
  3110. //
  3111. this._Panel2_Toolbars_Dock_Area_Left.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  3112. this._Panel2_Toolbars_Dock_Area_Left.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(251)))), ((int)(((byte)(250)))), ((int)(((byte)(247)))));
  3113. this._Panel2_Toolbars_Dock_Area_Left.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
  3114. this._Panel2_Toolbars_Dock_Area_Left.ForeColor = System.Drawing.SystemColors.ControlText;
  3115. this._Panel2_Toolbars_Dock_Area_Left.Location = new System.Drawing.Point(0, 17);
  3116. this._Panel2_Toolbars_Dock_Area_Left.Name = "_Panel2_Toolbars_Dock_Area_Left";
  3117. this._Panel2_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 417);
  3118. this._Panel2_Toolbars_Dock_Area_Left.ToolbarsManager = this.ultraToolbarsManager1;
  3119. //
  3120. // ultraToolbarsManager1
  3121. //
  3122. this.ultraToolbarsManager1.DesignerFlags = 1;
  3123. this.ultraToolbarsManager1.DockWithinContainer = this.splitContainer3.Panel2;
  3124. this.ultraToolbarsManager1.ShowFullMenusDelay = 500;
  3125. this.ultraToolbarsManager1.ShowQuickCustomizeButton = false;
  3126. ultraToolbar1.DockedColumn = 0;
  3127. ultraToolbar1.DockedRow = 0;
  3128. ultraToolbar1.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
  3129. buttonTool3,
  3130. buttonTool4,
  3131. buttonTool17,
  3132. buttonTool7,
  3133. buttonTool11,
  3134. buttonTool12,
  3135. buttonTool9,
  3136. buttonTool22,
  3137. buttonTool1,
  3138. buttonTool20,
  3139. buttonTool25,
  3140. buttonTool15,
  3141. buttonTool18,
  3142. buttonTool28,
  3143. buttonTool30,
  3144. buttonTool31,
  3145. buttonTool33,
  3146. buttonTool35,
  3147. buttonTool37,
  3148. buttonTool38,
  3149. buttonTool41});
  3150. ultraToolbar1.Text = "UltraToolbar1";
  3151. this.ultraToolbarsManager1.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
  3152. ultraToolbar1});
  3153. appearance36.Image = ((object)(resources.GetObject("appearance36.Image")));
  3154. buttonTool10.SharedPropsInternal.AppearancesSmall.Appearance = appearance36;
  3155. buttonTool10.SharedPropsInternal.Caption = "保存";
  3156. buttonTool10.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  3157. buttonTool10.SharedPropsInternal.Visible = false;
  3158. appearance118.Image = ((object)(resources.GetObject("appearance118.Image")));
  3159. buttonTool13.SharedPropsInternal.AppearancesSmall.Appearance = appearance118;
  3160. buttonTool13.SharedPropsInternal.Caption = "作废";
  3161. buttonTool13.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  3162. buttonTool13.SharedPropsInternal.Visible = false;
  3163. appearance119.Image = ((object)(resources.GetObject("appearance119.Image")));
  3164. buttonTool14.SharedPropsInternal.AppearancesSmall.Appearance = appearance119;
  3165. buttonTool14.SharedPropsInternal.Caption = "恢复";
  3166. buttonTool14.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  3167. buttonTool14.SharedPropsInternal.Visible = false;
  3168. appearance142.Image = ((object)(resources.GetObject("appearance142.Image")));
  3169. buttonTool2.SharedPropsInternal.AppearancesSmall.Appearance = appearance142;
  3170. buttonTool2.SharedPropsInternal.Caption = "分组";
  3171. buttonTool2.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  3172. buttonTool2.SharedPropsInternal.Visible = false;
  3173. appearance63.Image = ((object)(resources.GetObject("appearance63.Image")));
  3174. buttonTool5.SharedPropsInternal.AppearancesSmall.Appearance = appearance63;
  3175. buttonTool5.SharedPropsInternal.Caption = "新增";
  3176. buttonTool5.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  3177. buttonTool5.SharedPropsInternal.Visible = false;
  3178. appearance64.Image = ((object)(resources.GetObject("appearance64.Image")));
  3179. buttonTool6.SharedPropsInternal.AppearancesSmall.Appearance = appearance64;
  3180. buttonTool6.SharedPropsInternal.Caption = "修改";
  3181. buttonTool6.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  3182. buttonTool6.SharedPropsInternal.Visible = false;
  3183. appearance133.Image = ((object)(resources.GetObject("appearance133.Image")));
  3184. buttonTool8.SharedPropsInternal.AppearancesSmall.Appearance = appearance133;
  3185. buttonTool8.SharedPropsInternal.Caption = "接箍码维护";
  3186. buttonTool8.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  3187. buttonTool8.SharedPropsInternal.Visible = false;
  3188. appearance134.Image = ((object)(resources.GetObject("appearance134.Image")));
  3189. buttonTool16.SharedPropsInternal.AppearancesSmall.Appearance = appearance134;
  3190. buttonTool16.SharedPropsInternal.Caption = "备料码维护";
  3191. buttonTool16.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  3192. buttonTool16.SharedPropsInternal.Visible = false;
  3193. appearance28.Image = ((object)(resources.GetObject("appearance28.Image")));
  3194. buttonTool19.SharedPropsInternal.AppearancesSmall.Appearance = appearance28;
  3195. buttonTool19.SharedPropsInternal.Caption = "上传附件图片";
  3196. buttonTool19.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  3197. buttonTool19.SharedPropsInternal.Visible = false;
  3198. appearance34.Image = ((object)(resources.GetObject("appearance34.Image")));
  3199. buttonTool21.SharedPropsInternal.AppearancesSmall.Appearance = appearance34;
  3200. buttonTool21.SharedPropsInternal.Caption = "取消分组";
  3201. buttonTool21.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  3202. buttonTool21.SharedPropsInternal.Visible = false;
  3203. appearance35.Image = ((object)(resources.GetObject("appearance35.Image")));
  3204. buttonTool23.SharedPropsInternal.AppearancesSmall.Appearance = appearance35;
  3205. buttonTool23.SharedPropsInternal.Caption = "复制";
  3206. buttonTool23.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  3207. buttonTool23.SharedPropsInternal.Visible = false;
  3208. appearance61.Image = ((object)(resources.GetObject("appearance61.Image")));
  3209. buttonTool24.SharedPropsInternal.AppearancesSmall.Appearance = appearance61;
  3210. buttonTool24.SharedPropsInternal.Caption = "粘贴";
  3211. buttonTool24.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  3212. buttonTool24.SharedPropsInternal.Visible = false;
  3213. appearance62.Image = ((object)(resources.GetObject("appearance62.Image")));
  3214. buttonTool26.SharedPropsInternal.AppearancesSmall.Appearance = appearance62;
  3215. buttonTool26.SharedPropsInternal.Caption = "刷新";
  3216. buttonTool26.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  3217. buttonTool26.SharedPropsInternal.Visible = false;
  3218. appearance70.Image = ((object)(resources.GetObject("appearance70.Image")));
  3219. buttonTool27.SharedPropsInternal.AppearancesSmall.Appearance = appearance70;
  3220. buttonTool27.SharedPropsInternal.Caption = "规格维护";
  3221. buttonTool27.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  3222. buttonTool27.SharedPropsInternal.Visible = false;
  3223. appearance68.Image = ((object)(resources.GetObject("appearance68.Image")));
  3224. buttonTool29.SharedPropsInternal.AppearancesSmall.Appearance = appearance68;
  3225. buttonTool29.SharedPropsInternal.Caption = "设定制程";
  3226. buttonTool29.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  3227. buttonTool29.SharedPropsInternal.Visible = false;
  3228. appearance73.Image = ((object)(resources.GetObject("appearance73.Image")));
  3229. buttonTool32.SharedPropsInternal.AppearancesSmall.Appearance = appearance73;
  3230. buttonTool32.SharedPropsInternal.Caption = "复制基础MSC制程";
  3231. buttonTool32.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  3232. buttonTool32.SharedPropsInternal.Visible = false;
  3233. appearance26.Image = ((object)(resources.GetObject("appearance26.Image")));
  3234. buttonTool34.SharedPropsInternal.AppearancesSmall.Appearance = appearance26;
  3235. buttonTool34.SharedPropsInternal.Caption = "设定接箍";
  3236. buttonTool34.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  3237. buttonTool34.SharedPropsInternal.Visible = false;
  3238. appearance67.Image = ((object)(resources.GetObject("appearance67.Image")));
  3239. buttonTool36.SharedPropsInternal.AppearancesSmall.Appearance = appearance67;
  3240. buttonTool36.SharedPropsInternal.Caption = "设定附件图片";
  3241. buttonTool36.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  3242. buttonTool36.SharedPropsInternal.Visible = false;
  3243. appearance76.Image = ((object)(resources.GetObject("appearance76.Image")));
  3244. buttonTool39.SharedPropsInternal.AppearancesSmall.Appearance = appearance76;
  3245. buttonTool39.SharedPropsInternal.Caption = "保存拧接";
  3246. buttonTool39.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  3247. buttonTool39.SharedPropsInternal.Visible = false;
  3248. appearance77.Image = ((object)(resources.GetObject("appearance77.Image")));
  3249. buttonTool40.SharedPropsInternal.AppearancesSmall.Appearance = appearance77;
  3250. buttonTool40.SharedPropsInternal.Caption = "删除拧接";
  3251. buttonTool40.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  3252. buttonTool40.SharedPropsInternal.Visible = false;
  3253. buttonTool42.SharedPropsInternal.Caption = "保存模板";
  3254. buttonTool42.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  3255. buttonTool42.SharedPropsInternal.Visible = false;
  3256. this.ultraToolbarsManager1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
  3257. buttonTool10,
  3258. buttonTool13,
  3259. buttonTool14,
  3260. buttonTool2,
  3261. buttonTool5,
  3262. buttonTool6,
  3263. buttonTool8,
  3264. buttonTool16,
  3265. buttonTool19,
  3266. buttonTool21,
  3267. buttonTool23,
  3268. buttonTool24,
  3269. buttonTool26,
  3270. buttonTool27,
  3271. buttonTool29,
  3272. buttonTool32,
  3273. buttonTool34,
  3274. buttonTool36,
  3275. buttonTool39,
  3276. buttonTool40,
  3277. buttonTool42});
  3278. this.ultraToolbarsManager1.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.ultraToolbarsManager1_ToolClick);
  3279. //
  3280. // _Panel2_Toolbars_Dock_Area_Right
  3281. //
  3282. this._Panel2_Toolbars_Dock_Area_Right.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  3283. this._Panel2_Toolbars_Dock_Area_Right.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(251)))), ((int)(((byte)(250)))), ((int)(((byte)(247)))));
  3284. this._Panel2_Toolbars_Dock_Area_Right.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
  3285. this._Panel2_Toolbars_Dock_Area_Right.ForeColor = System.Drawing.SystemColors.ControlText;
  3286. this._Panel2_Toolbars_Dock_Area_Right.Location = new System.Drawing.Point(627, 17);
  3287. this._Panel2_Toolbars_Dock_Area_Right.Name = "_Panel2_Toolbars_Dock_Area_Right";
  3288. this._Panel2_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 417);
  3289. this._Panel2_Toolbars_Dock_Area_Right.ToolbarsManager = this.ultraToolbarsManager1;
  3290. //
  3291. // _Panel2_Toolbars_Dock_Area_Top
  3292. //
  3293. this._Panel2_Toolbars_Dock_Area_Top.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  3294. this._Panel2_Toolbars_Dock_Area_Top.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(251)))), ((int)(((byte)(250)))), ((int)(((byte)(247)))));
  3295. this._Panel2_Toolbars_Dock_Area_Top.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
  3296. this._Panel2_Toolbars_Dock_Area_Top.ForeColor = System.Drawing.SystemColors.ControlText;
  3297. this._Panel2_Toolbars_Dock_Area_Top.Location = new System.Drawing.Point(0, 0);
  3298. this._Panel2_Toolbars_Dock_Area_Top.Name = "_Panel2_Toolbars_Dock_Area_Top";
  3299. this._Panel2_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(627, 17);
  3300. this._Panel2_Toolbars_Dock_Area_Top.ToolbarsManager = this.ultraToolbarsManager1;
  3301. //
  3302. // _Panel2_Toolbars_Dock_Area_Bottom
  3303. //
  3304. this._Panel2_Toolbars_Dock_Area_Bottom.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  3305. this._Panel2_Toolbars_Dock_Area_Bottom.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(251)))), ((int)(((byte)(250)))), ((int)(((byte)(247)))));
  3306. this._Panel2_Toolbars_Dock_Area_Bottom.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
  3307. this._Panel2_Toolbars_Dock_Area_Bottom.ForeColor = System.Drawing.SystemColors.ControlText;
  3308. this._Panel2_Toolbars_Dock_Area_Bottom.Location = new System.Drawing.Point(0, 434);
  3309. this._Panel2_Toolbars_Dock_Area_Bottom.Name = "_Panel2_Toolbars_Dock_Area_Bottom";
  3310. this._Panel2_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(627, 0);
  3311. this._Panel2_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.ultraToolbarsManager1;
  3312. //
  3313. // ultraPanel1
  3314. //
  3315. this.ultraPanel1.AutoScroll = true;
  3316. //
  3317. // ultraPanel1.ClientArea
  3318. //
  3319. this.ultraPanel1.ClientArea.Controls.Add(this.label13);
  3320. this.ultraPanel1.ClientArea.Controls.Add(this.textBox1);
  3321. this.ultraPanel1.ClientArea.Controls.Add(this.label12);
  3322. this.ultraPanel1.ClientArea.Controls.Add(this.txtUnit);
  3323. this.ultraPanel1.ClientArea.Controls.Add(this.label11);
  3324. this.ultraPanel1.ClientArea.Controls.Add(this.txtMsc);
  3325. this.ultraPanel1.ClientArea.Controls.Add(this.cmbProduct);
  3326. this.ultraPanel1.ClientArea.Controls.Add(this.label4);
  3327. this.ultraPanel1.ClientArea.Controls.Add(this.label3);
  3328. this.ultraPanel1.ClientArea.Controls.Add(this.txtSteel);
  3329. this.ultraPanel1.ClientArea.Controls.Add(this.label2);
  3330. this.ultraPanel1.ClientArea.Controls.Add(this.txtStd);
  3331. this.ultraPanel1.Dock = System.Windows.Forms.DockStyle.Top;
  3332. this.ultraPanel1.Location = new System.Drawing.Point(0, 0);
  3333. this.ultraPanel1.Name = "ultraPanel1";
  3334. this.ultraPanel1.Size = new System.Drawing.Size(318, 152);
  3335. this.ultraPanel1.TabIndex = 0;
  3336. //
  3337. // label13
  3338. //
  3339. this.label13.AutoSize = true;
  3340. this.label13.Location = new System.Drawing.Point(13, 100);
  3341. this.label13.Name = "label13";
  3342. this.label13.Size = new System.Drawing.Size(53, 12);
  3343. this.label13.TabIndex = 19;
  3344. this.label13.Text = "用途描述";
  3345. //
  3346. // textBox1
  3347. //
  3348. this.textBox1.Location = new System.Drawing.Point(91, 97);
  3349. this.textBox1.Name = "textBox1";
  3350. this.textBox1.Size = new System.Drawing.Size(149, 21);
  3351. this.textBox1.TabIndex = 18;
  3352. //
  3353. // label12
  3354. //
  3355. this.label12.AutoSize = true;
  3356. this.label12.Location = new System.Drawing.Point(13, 126);
  3357. this.label12.Name = "label12";
  3358. this.label12.Size = new System.Drawing.Size(53, 12);
  3359. this.label12.TabIndex = 17;
  3360. this.label12.Text = "第一科室";
  3361. //
  3362. // txtUnit
  3363. //
  3364. this.txtUnit.Location = new System.Drawing.Point(91, 122);
  3365. this.txtUnit.Name = "txtUnit";
  3366. this.txtUnit.Size = new System.Drawing.Size(149, 21);
  3367. this.txtUnit.TabIndex = 16;
  3368. //
  3369. // label11
  3370. //
  3371. this.label11.AutoSize = true;
  3372. this.label11.Location = new System.Drawing.Point(13, 75);
  3373. this.label11.Name = "label11";
  3374. this.label11.Size = new System.Drawing.Size(23, 12);
  3375. this.label11.TabIndex = 15;
  3376. this.label11.Text = "MSC";
  3377. //
  3378. // txtMsc
  3379. //
  3380. this.txtMsc.Location = new System.Drawing.Point(91, 72);
  3381. this.txtMsc.Name = "txtMsc";
  3382. this.txtMsc.Size = new System.Drawing.Size(149, 21);
  3383. this.txtMsc.TabIndex = 14;
  3384. //
  3385. // cmbProduct
  3386. //
  3387. this.cmbProduct.AutoCompleteMode = Infragistics.Win.AutoCompleteMode.None;
  3388. this.cmbProduct.ImeMode = System.Windows.Forms.ImeMode.Hangul;
  3389. this.cmbProduct.Location = new System.Drawing.Point(92, 3);
  3390. this.cmbProduct.Name = "cmbProduct";
  3391. this.cmbProduct.Size = new System.Drawing.Size(148, 21);
  3392. this.cmbProduct.TabIndex = 13;
  3393. this.cmbProduct.ValueChanged += new System.EventHandler(this.cmbProduct_ValueChanged);
  3394. //
  3395. // label4
  3396. //
  3397. this.label4.AutoSize = true;
  3398. this.label4.Location = new System.Drawing.Point(12, 50);
  3399. this.label4.Name = "label4";
  3400. this.label4.Size = new System.Drawing.Size(77, 12);
  3401. this.label4.TabIndex = 7;
  3402. this.label4.Text = "钢级(牌号)";
  3403. //
  3404. // label3
  3405. //
  3406. this.label3.AutoSize = true;
  3407. this.label3.Location = new System.Drawing.Point(12, 28);
  3408. this.label3.Name = "label3";
  3409. this.label3.Size = new System.Drawing.Size(53, 12);
  3410. this.label3.TabIndex = 4;
  3411. this.label3.Text = "标准名称";
  3412. //
  3413. // txtSteel
  3414. //
  3415. this.txtSteel.Location = new System.Drawing.Point(91, 49);
  3416. this.txtSteel.Name = "txtSteel";
  3417. this.txtSteel.Size = new System.Drawing.Size(149, 21);
  3418. this.txtSteel.TabIndex = 6;
  3419. //
  3420. // label2
  3421. //
  3422. this.label2.AutoSize = true;
  3423. this.label2.Location = new System.Drawing.Point(12, 8);
  3424. this.label2.Name = "label2";
  3425. this.label2.Size = new System.Drawing.Size(29, 12);
  3426. this.label2.TabIndex = 2;
  3427. this.label2.Text = "品名";
  3428. //
  3429. // txtStd
  3430. //
  3431. this.txtStd.Location = new System.Drawing.Point(91, 26);
  3432. this.txtStd.Name = "txtStd";
  3433. this.txtStd.Size = new System.Drawing.Size(149, 21);
  3434. this.txtStd.TabIndex = 5;
  3435. //
  3436. // splitContainer1
  3437. //
  3438. this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
  3439. this.splitContainer1.Location = new System.Drawing.Point(0, 0);
  3440. this.splitContainer1.Name = "splitContainer1";
  3441. //
  3442. // splitContainer1.Panel1
  3443. //
  3444. this.splitContainer1.Panel1.Controls.Add(this.ultraGroupBox1);
  3445. //
  3446. // splitContainer1.Panel2
  3447. //
  3448. this.splitContainer1.Panel2.Controls.Add(this.ultraTabControl1);
  3449. this.splitContainer1.Size = new System.Drawing.Size(979, 577);
  3450. this.splitContainer1.SplitterDistance = 344;
  3451. this.splitContainer1.TabIndex = 1;
  3452. this.splitContainer1.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(this.splitContainer1_SplitterMoved);
  3453. //
  3454. // ultraGroupBox1
  3455. //
  3456. this.ultraGroupBox1.Controls.Add(this.ultraExpandableGroupBox2);
  3457. this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
  3458. this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
  3459. this.ultraGroupBox1.Name = "ultraGroupBox1";
  3460. this.ultraGroupBox1.Size = new System.Drawing.Size(344, 577);
  3461. this.ultraGroupBox1.TabIndex = 1;
  3462. //
  3463. // ultraExpandableGroupBox2
  3464. //
  3465. this.ultraExpandableGroupBox2.BorderStyle = Infragistics.Win.Misc.GroupBoxBorderStyle.None;
  3466. this.ultraExpandableGroupBox2.Controls.Add(this.ultraExpandableGroupBoxPanel2);
  3467. this.ultraExpandableGroupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
  3468. this.ultraExpandableGroupBox2.ExpandedSize = new System.Drawing.Size(338, 574);
  3469. this.ultraExpandableGroupBox2.HeaderPosition = Infragistics.Win.Misc.GroupBoxHeaderPosition.RightOnBorder;
  3470. this.ultraExpandableGroupBox2.Location = new System.Drawing.Point(3, 0);
  3471. this.ultraExpandableGroupBox2.Name = "ultraExpandableGroupBox2";
  3472. this.ultraExpandableGroupBox2.Size = new System.Drawing.Size(338, 574);
  3473. this.ultraExpandableGroupBox2.TabIndex = 1;
  3474. this.ultraExpandableGroupBox2.VerticalTextOrientation = Infragistics.Win.Misc.GroupBoxVerticalTextOrientation.TopToBottom;
  3475. this.ultraExpandableGroupBox2.ExpandedStateChanged += new System.EventHandler(this.ultraExpandableGroupBox2_ExpandedStateChanged);
  3476. //
  3477. // ultraExpandableGroupBoxPanel2
  3478. //
  3479. this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraGroupBox6);
  3480. this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraExpandableGroupBox1);
  3481. this.ultraExpandableGroupBoxPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
  3482. this.ultraExpandableGroupBoxPanel2.Location = new System.Drawing.Point(1, 1);
  3483. this.ultraExpandableGroupBoxPanel2.Name = "ultraExpandableGroupBoxPanel2";
  3484. this.ultraExpandableGroupBoxPanel2.Size = new System.Drawing.Size(320, 572);
  3485. this.ultraExpandableGroupBoxPanel2.TabIndex = 0;
  3486. //
  3487. // ultraGroupBox6
  3488. //
  3489. this.ultraGroupBox6.Controls.Add(this.treeMsc);
  3490. this.ultraGroupBox6.Controls.Add(this.panel3);
  3491. this.ultraGroupBox6.Dock = System.Windows.Forms.DockStyle.Fill;
  3492. this.ultraGroupBox6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3493. this.ultraGroupBox6.Location = new System.Drawing.Point(0, 362);
  3494. this.ultraGroupBox6.Name = "ultraGroupBox6";
  3495. this.ultraGroupBox6.Size = new System.Drawing.Size(320, 210);
  3496. this.ultraGroupBox6.TabIndex = 1;
  3497. //
  3498. // treeMsc
  3499. //
  3500. this.treeMsc.Dock = System.Windows.Forms.DockStyle.Fill;
  3501. this.treeMsc.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3502. this.treeMsc.ItemHeight = 15;
  3503. this.treeMsc.Location = new System.Drawing.Point(3, 28);
  3504. this.treeMsc.Name = "treeMsc";
  3505. this.treeMsc.Size = new System.Drawing.Size(314, 179);
  3506. this.treeMsc.TabIndex = 0;
  3507. this.treeMsc.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeMsc_AfterSelect);
  3508. //
  3509. // panel3
  3510. //
  3511. this.panel3.Controls.Add(this.ultraLabel2);
  3512. this.panel3.Controls.Add(this.lblMsc);
  3513. this.panel3.Dock = System.Windows.Forms.DockStyle.Top;
  3514. this.panel3.Location = new System.Drawing.Point(3, 0);
  3515. this.panel3.Name = "panel3";
  3516. this.panel3.Size = new System.Drawing.Size(314, 28);
  3517. this.panel3.TabIndex = 1;
  3518. //
  3519. // ultraLabel2
  3520. //
  3521. appearance2.TextHAlignAsString = "Right";
  3522. this.ultraLabel2.Appearance = appearance2;
  3523. this.ultraLabel2.AutoSize = true;
  3524. this.ultraLabel2.Location = new System.Drawing.Point(12, 7);
  3525. this.ultraLabel2.Name = "ultraLabel2";
  3526. this.ultraLabel2.Size = new System.Drawing.Size(79, 16);
  3527. this.ultraLabel2.TabIndex = 12;
  3528. this.ultraLabel2.Text = "冶金规范码:";
  3529. //
  3530. // lblMsc
  3531. //
  3532. this.lblMsc.AutoSize = true;
  3533. this.lblMsc.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3534. this.lblMsc.Location = new System.Drawing.Point(95, 9);
  3535. this.lblMsc.Name = "lblMsc";
  3536. this.lblMsc.Size = new System.Drawing.Size(17, 12);
  3537. this.lblMsc.TabIndex = 1;
  3538. this.lblMsc.Text = "无";
  3539. //
  3540. // ultraExpandableGroupBox1
  3541. //
  3542. this.ultraExpandableGroupBox1.BorderStyle = Infragistics.Win.Misc.GroupBoxBorderStyle.None;
  3543. this.ultraExpandableGroupBox1.Controls.Add(this.ultraExpandableGroupBoxPanel1);
  3544. this.ultraExpandableGroupBox1.Dock = System.Windows.Forms.DockStyle.Top;
  3545. this.ultraExpandableGroupBox1.ExpandedSize = new System.Drawing.Size(320, 362);
  3546. this.ultraExpandableGroupBox1.Location = new System.Drawing.Point(0, 0);
  3547. this.ultraExpandableGroupBox1.Name = "ultraExpandableGroupBox1";
  3548. this.ultraExpandableGroupBox1.Size = new System.Drawing.Size(320, 362);
  3549. this.ultraExpandableGroupBox1.TabIndex = 0;
  3550. //
  3551. // ultraExpandableGroupBoxPanel1
  3552. //
  3553. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraGrid1);
  3554. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraPanel1);
  3555. this.ultraExpandableGroupBoxPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  3556. this.ultraExpandableGroupBoxPanel1.Location = new System.Drawing.Point(1, 17);
  3557. this.ultraExpandableGroupBoxPanel1.Name = "ultraExpandableGroupBoxPanel1";
  3558. this.ultraExpandableGroupBoxPanel1.Size = new System.Drawing.Size(318, 344);
  3559. this.ultraExpandableGroupBoxPanel1.TabIndex = 0;
  3560. //
  3561. // ultraGrid1
  3562. //
  3563. this.ultraGrid1.DataMember = "COM_PSC";
  3564. this.ultraGrid1.DataSource = this.dataSet1;
  3565. appearance49.BackColor = System.Drawing.SystemColors.Window;
  3566. appearance49.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  3567. this.ultraGrid1.DisplayLayout.Appearance = appearance49;
  3568. ultraGridColumn104.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  3569. ultraGridColumn104.Header.VisiblePosition = 1;
  3570. ultraGridColumn105.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  3571. ultraGridColumn105.Header.VisiblePosition = 0;
  3572. ultraGridColumn105.Width = 233;
  3573. ultraGridColumn106.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  3574. ultraGridColumn106.Header.VisiblePosition = 2;
  3575. ultraGridColumn107.Header.VisiblePosition = 3;
  3576. ultraGridColumn107.Hidden = true;
  3577. ultraGridColumn108.Header.VisiblePosition = 4;
  3578. ultraGridColumn108.Hidden = true;
  3579. ultraGridColumn109.Header.VisiblePosition = 5;
  3580. ultraGridColumn109.Hidden = true;
  3581. ultraGridColumn110.Header.VisiblePosition = 6;
  3582. ultraGridColumn110.Hidden = true;
  3583. ultraGridColumn111.Header.VisiblePosition = 7;
  3584. ultraGridColumn111.Hidden = true;
  3585. ultraGridColumn112.Header.VisiblePosition = 8;
  3586. ultraGridColumn112.Hidden = true;
  3587. ultraGridColumn113.Header.VisiblePosition = 9;
  3588. ultraGridColumn113.Hidden = true;
  3589. ultraGridColumn114.Header.VisiblePosition = 10;
  3590. ultraGridColumn114.Hidden = true;
  3591. ultraGridColumn115.Header.VisiblePosition = 11;
  3592. ultraGridColumn115.Hidden = true;
  3593. ultraGridColumn116.Header.VisiblePosition = 12;
  3594. ultraGridColumn116.Hidden = true;
  3595. ultraGridColumn117.Header.VisiblePosition = 13;
  3596. ultraGridColumn117.Hidden = true;
  3597. ultraGridColumn118.Header.VisiblePosition = 14;
  3598. ultraGridColumn118.Hidden = true;
  3599. ultraGridBand6.Columns.AddRange(new object[] {
  3600. ultraGridColumn104,
  3601. ultraGridColumn105,
  3602. ultraGridColumn106,
  3603. ultraGridColumn107,
  3604. ultraGridColumn108,
  3605. ultraGridColumn109,
  3606. ultraGridColumn110,
  3607. ultraGridColumn111,
  3608. ultraGridColumn112,
  3609. ultraGridColumn113,
  3610. ultraGridColumn114,
  3611. ultraGridColumn115,
  3612. ultraGridColumn116,
  3613. ultraGridColumn117,
  3614. ultraGridColumn118});
  3615. ultraGridBand6.Override.SelectedAppearancesEnabled = Infragistics.Win.DefaultableBoolean.False;
  3616. this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand6);
  3617. this.ultraGrid1.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  3618. this.ultraGrid1.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  3619. appearance50.BackColor = System.Drawing.SystemColors.ActiveBorder;
  3620. appearance50.BackColor2 = System.Drawing.SystemColors.ControlDark;
  3621. appearance50.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  3622. appearance50.BorderColor = System.Drawing.SystemColors.Window;
  3623. this.ultraGrid1.DisplayLayout.GroupByBox.Appearance = appearance50;
  3624. appearance51.ForeColor = System.Drawing.SystemColors.GrayText;
  3625. this.ultraGrid1.DisplayLayout.GroupByBox.BandLabelAppearance = appearance51;
  3626. this.ultraGrid1.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  3627. this.ultraGrid1.DisplayLayout.GroupByBox.Hidden = true;
  3628. appearance52.BackColor = System.Drawing.SystemColors.ControlLightLight;
  3629. appearance52.BackColor2 = System.Drawing.SystemColors.Control;
  3630. appearance52.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  3631. appearance52.ForeColor = System.Drawing.SystemColors.GrayText;
  3632. this.ultraGrid1.DisplayLayout.GroupByBox.PromptAppearance = appearance52;
  3633. this.ultraGrid1.DisplayLayout.MaxColScrollRegions = 1;
  3634. this.ultraGrid1.DisplayLayout.MaxRowScrollRegions = 1;
  3635. appearance53.BackColor = System.Drawing.SystemColors.Window;
  3636. appearance53.ForeColor = System.Drawing.SystemColors.ControlText;
  3637. this.ultraGrid1.DisplayLayout.Override.ActiveCellAppearance = appearance53;
  3638. appearance54.BackColor = System.Drawing.SystemColors.Highlight;
  3639. appearance54.ForeColor = System.Drawing.SystemColors.HighlightText;
  3640. this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance = appearance54;
  3641. this.ultraGrid1.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  3642. this.ultraGrid1.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  3643. appearance55.BackColor = System.Drawing.SystemColors.Window;
  3644. this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance55;
  3645. appearance56.BorderColor = System.Drawing.Color.Silver;
  3646. appearance56.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  3647. this.ultraGrid1.DisplayLayout.Override.CellAppearance = appearance56;
  3648. this.ultraGrid1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  3649. this.ultraGrid1.DisplayLayout.Override.CellPadding = 0;
  3650. appearance57.BackColor = System.Drawing.SystemColors.Control;
  3651. appearance57.BackColor2 = System.Drawing.SystemColors.ControlDark;
  3652. appearance57.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  3653. appearance57.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  3654. appearance57.BorderColor = System.Drawing.SystemColors.Window;
  3655. this.ultraGrid1.DisplayLayout.Override.GroupByRowAppearance = appearance57;
  3656. appearance58.TextHAlignAsString = "Left";
  3657. this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance58;
  3658. this.ultraGrid1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  3659. this.ultraGrid1.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  3660. appearance1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
  3661. this.ultraGrid1.DisplayLayout.Override.HotTrackRowCellAppearance = appearance1;
  3662. appearance59.BackColor = System.Drawing.SystemColors.Window;
  3663. appearance59.BorderColor = System.Drawing.Color.Silver;
  3664. this.ultraGrid1.DisplayLayout.Override.RowAppearance = appearance59;
  3665. this.ultraGrid1.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  3666. appearance60.BackColor = System.Drawing.SystemColors.ControlLight;
  3667. this.ultraGrid1.DisplayLayout.Override.TemplateAddRowAppearance = appearance60;
  3668. this.ultraGrid1.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  3669. this.ultraGrid1.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  3670. this.ultraGrid1.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  3671. this.ultraGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
  3672. this.ultraGrid1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3673. this.ultraGrid1.Location = new System.Drawing.Point(0, 152);
  3674. this.ultraGrid1.Name = "ultraGrid1";
  3675. this.ultraGrid1.Size = new System.Drawing.Size(318, 192);
  3676. this.ultraGrid1.TabIndex = 0;
  3677. this.ultraGrid1.Text = "ultraGrid1";
  3678. this.ultraGrid1.AfterRowActivate += new System.EventHandler(this.ultraGrid1_AfterRowActivate);
  3679. this.ultraGrid1.BeforeRowDeactivate += new System.ComponentModel.CancelEventHandler(this.ultraGrid1_BeforeRowDeactivate);
  3680. //
  3681. // ultraTabControl1
  3682. //
  3683. this.ultraTabControl1.Controls.Add(this.ultraTabSharedControlsPage1);
  3684. this.ultraTabControl1.Controls.Add(this.ultraTabPageControl1);
  3685. this.ultraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
  3686. this.ultraTabControl1.Location = new System.Drawing.Point(0, 0);
  3687. this.ultraTabControl1.Name = "ultraTabControl1";
  3688. this.ultraTabControl1.SharedControlsPage = this.ultraTabSharedControlsPage1;
  3689. this.ultraTabControl1.Size = new System.Drawing.Size(631, 577);
  3690. this.ultraTabControl1.TabIndex = 4;
  3691. ultraTab4.Key = "MSC";
  3692. ultraTab4.TabPage = this.ultraTabPageControl1;
  3693. ultraTab4.Text = "MSC";
  3694. this.ultraTabControl1.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
  3695. ultraTab4});
  3696. this.ultraTabControl1.ViewStyle = Infragistics.Win.UltraWinTabControl.ViewStyle.VisualStudio2005;
  3697. this.ultraTabControl1.SelectedTabChanged += new Infragistics.Win.UltraWinTabControl.SelectedTabChangedEventHandler(this.ultraTabControl1_SelectedTabChanged);
  3698. //
  3699. // ultraTabSharedControlsPage1
  3700. //
  3701. this.ultraTabSharedControlsPage1.Location = new System.Drawing.Point(-7500, -8000);
  3702. this.ultraTabSharedControlsPage1.Name = "ultraTabSharedControlsPage1";
  3703. this.ultraTabSharedControlsPage1.Size = new System.Drawing.Size(627, 554);
  3704. //
  3705. // FrmProPSCMSC2
  3706. //
  3707. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  3708. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  3709. this.ClientSize = new System.Drawing.Size(979, 577);
  3710. this.Controls.Add(this.splitContainer1);
  3711. this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  3712. this.Name = "FrmProPSCMSC2";
  3713. this.Text = "冶金规范管理";
  3714. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmProPSCMSC2_FormClosing);
  3715. this.Load += new System.EventHandler(this.FrmProPSCMSC2_Load);
  3716. this.Shown += new System.EventHandler(this.FrmProPSCMSC2_Shown);
  3717. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).EndInit();
  3718. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor16)).EndInit();
  3719. this.ultraTabPageControl4.ResumeLayout(false);
  3720. this.ultraTabPageControl4.PerformLayout();
  3721. ((System.ComponentModel.ISupportInitialize)(this.craftImg)).EndInit();
  3722. this.ultraTabPageControl5.ResumeLayout(false);
  3723. this.ultraPanel3.ClientArea.ResumeLayout(false);
  3724. this.ultraPanel3.ClientArea.PerformLayout();
  3725. this.ultraPanel3.ResumeLayout(false);
  3726. this.ultraTabPageControl7.ResumeLayout(false);
  3727. this.ultraPanel2.ClientArea.ResumeLayout(false);
  3728. this.ultraPanel2.ClientArea.PerformLayout();
  3729. this.ultraPanel2.ResumeLayout(false);
  3730. this.ultraTabPageControl10.ResumeLayout(false);
  3731. this.ultraPanel4.ClientArea.ResumeLayout(false);
  3732. this.ultraPanel4.ClientArea.PerformLayout();
  3733. this.ultraPanel4.ResumeLayout(false);
  3734. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor1)).EndInit();
  3735. this.ultraTabPageControl13.ResumeLayout(false);
  3736. this.ultraTabPageControl13.PerformLayout();
  3737. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid5)).EndInit();
  3738. ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
  3739. ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
  3740. ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).EndInit();
  3741. ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).EndInit();
  3742. ((System.ComponentModel.ISupportInitialize)(this.dataTable4)).EndInit();
  3743. ((System.ComponentModel.ISupportInitialize)(this.dataTable5)).EndInit();
  3744. ((System.ComponentModel.ISupportInitialize)(this.dataTable6)).EndInit();
  3745. this.ultraTabPageControl15.ResumeLayout(false);
  3746. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid7)).EndInit();
  3747. this.ultraTabPageControl14.ResumeLayout(false);
  3748. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor8)).EndInit();
  3749. this.ultraTabPageControl6.ResumeLayout(false);
  3750. ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl2)).EndInit();
  3751. this.ultraTabControl2.ResumeLayout(false);
  3752. this.ultraTabPageControl8.ResumeLayout(false);
  3753. this.splitContainer4.Panel1.ResumeLayout(false);
  3754. this.splitContainer4.Panel2.ResumeLayout(false);
  3755. ((System.ComponentModel.ISupportInitialize)(this.splitContainer4)).EndInit();
  3756. this.splitContainer4.ResumeLayout(false);
  3757. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid4)).EndInit();
  3758. this.panel2.ResumeLayout(false);
  3759. ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl4)).EndInit();
  3760. this.ultraTabControl4.ResumeLayout(false);
  3761. this.ultraTabPageControl11.ResumeLayout(false);
  3762. this.ultraTabPageControl12.ResumeLayout(false);
  3763. this.ultraTabPageControl12.PerformLayout();
  3764. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).EndInit();
  3765. this.ultraTabPageControl2.ResumeLayout(false);
  3766. this.ultraTabPageControl1.ResumeLayout(false);
  3767. this.ultraTabPageControl1_Fill_Panel.ResumeLayout(false);
  3768. this.splitContainer3.Panel1.ResumeLayout(false);
  3769. this.splitContainer3.Panel2.ResumeLayout(false);
  3770. ((System.ComponentModel.ISupportInitialize)(this.splitContainer3)).EndInit();
  3771. this.splitContainer3.ResumeLayout(false);
  3772. this.splitContainer2.Panel1.ResumeLayout(false);
  3773. this.splitContainer2.Panel2.ResumeLayout(false);
  3774. ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
  3775. this.splitContainer2.ResumeLayout(false);
  3776. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox3)).EndInit();
  3777. this.ultraExpandableGroupBox3.ResumeLayout(false);
  3778. this.Panel2_Fill_Panel.ResumeLayout(false);
  3779. ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl3)).EndInit();
  3780. this.ultraTabControl3.ResumeLayout(false);
  3781. ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).EndInit();
  3782. this.ultraPanel1.ClientArea.ResumeLayout(false);
  3783. this.ultraPanel1.ClientArea.PerformLayout();
  3784. this.ultraPanel1.ResumeLayout(false);
  3785. ((System.ComponentModel.ISupportInitialize)(this.cmbProduct)).EndInit();
  3786. this.splitContainer1.Panel1.ResumeLayout(false);
  3787. this.splitContainer1.Panel2.ResumeLayout(false);
  3788. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
  3789. this.splitContainer1.ResumeLayout(false);
  3790. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
  3791. this.ultraGroupBox1.ResumeLayout(false);
  3792. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox2)).EndInit();
  3793. this.ultraExpandableGroupBox2.ResumeLayout(false);
  3794. this.ultraExpandableGroupBoxPanel2.ResumeLayout(false);
  3795. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox6)).EndInit();
  3796. this.ultraGroupBox6.ResumeLayout(false);
  3797. this.panel3.ResumeLayout(false);
  3798. this.panel3.PerformLayout();
  3799. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).EndInit();
  3800. this.ultraExpandableGroupBox1.ResumeLayout(false);
  3801. this.ultraExpandableGroupBoxPanel1.ResumeLayout(false);
  3802. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
  3803. ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).EndInit();
  3804. this.ultraTabControl1.ResumeLayout(false);
  3805. this.ResumeLayout(false);
  3806. }
  3807. #endregion
  3808. private Infragistics.Win.Misc.UltraPanel ultraPanel1;
  3809. public Infragistics.Win.Misc.UltraPanel UltraPanel1
  3810. {
  3811. get { return ultraPanel1; }
  3812. set { ultraPanel1 = value; }
  3813. }
  3814. private System.Windows.Forms.Label label1;
  3815. private System.Windows.Forms.Label label2;
  3816. private System.Windows.Forms.Label label3;
  3817. private System.Windows.Forms.Label label4;
  3818. private System.Windows.Forms.SplitContainer splitContainer1;
  3819. public System.Windows.Forms.SplitContainer SplitContainer1
  3820. {
  3821. get { return splitContainer1; }
  3822. set { splitContainer1 = value; }
  3823. }
  3824. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox1;
  3825. private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox1;
  3826. private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel1;
  3827. private System.Data.DataSet dataSet1;
  3828. private System.Data.DataColumn dataColumn1;
  3829. private System.Data.DataColumn dataColumn2;
  3830. private System.Data.DataColumn dataColumn3;
  3831. private System.Windows.Forms.TreeView treeMsc;
  3832. private System.Windows.Forms.TextBox txtPscCode;
  3833. internal System.Windows.Forms.TextBox TxtPscCode
  3834. {
  3835. get { return txtPscCode; }
  3836. set { txtPscCode = value; }
  3837. }
  3838. internal System.Windows.Forms.TextBox txtStd;
  3839. internal System.Windows.Forms.TextBox txtSteel;
  3840. internal System.Data.DataTable dataTable3;
  3841. internal Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid1;
  3842. private System.Data.DataColumn dataColumn30;
  3843. private System.Data.DataColumn dataColumn31;
  3844. private System.Data.DataColumn dataColumn32;
  3845. private System.Data.DataColumn dataColumn33;
  3846. private System.Data.DataColumn dataColumn34;
  3847. private System.Data.DataColumn dataColumn35;
  3848. private System.Data.DataColumn dataColumn36;
  3849. private System.Data.DataColumn dataColumn37;
  3850. private System.Data.DataColumn dataColumn38;
  3851. private System.Data.DataColumn dataColumn39;
  3852. private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox2;
  3853. public Infragistics.Win.Misc.UltraExpandableGroupBox UltraExpandableGroupBox2
  3854. {
  3855. get { return ultraExpandableGroupBox2; }
  3856. set { ultraExpandableGroupBox2 = value; }
  3857. }
  3858. private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel2;
  3859. private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage1;
  3860. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl1;
  3861. private System.Data.DataTable dataTable4;
  3862. private System.Data.DataColumn dataColumn43;
  3863. private System.Data.DataColumn dataColumn44;
  3864. private System.Data.DataColumn dataColumn45;
  3865. private System.Data.DataColumn dataColumn46;
  3866. private System.Data.DataColumn dataColumn47;
  3867. private System.Data.DataColumn dataColumn48;
  3868. private System.Data.DataColumn dataColumn49;
  3869. private System.Data.DataColumn dataColumn50;
  3870. private System.Data.DataColumn dataColumn51;
  3871. private System.Data.DataColumn dataColumn52;
  3872. private System.Data.DataColumn dataColumn53;
  3873. private System.Data.DataColumn dataColumn54;
  3874. private System.Data.DataColumn dataColumn55;
  3875. private System.Data.DataTable dataTable5;
  3876. private System.Data.DataColumn dataColumn56;
  3877. private System.Data.DataColumn dataColumn57;
  3878. private System.Data.DataColumn dataColumn58;
  3879. private System.Data.DataColumn dataColumn59;
  3880. private System.Data.DataColumn dataColumn60;
  3881. private System.Data.DataColumn dataColumn61;
  3882. private System.Data.DataColumn dataColumn62;
  3883. private System.Data.DataColumn dataColumn63;
  3884. private System.Data.DataColumn dataColumn64;
  3885. private System.Data.DataColumn dataColumn65;
  3886. private System.Data.DataColumn dataColumn66;
  3887. private System.Data.DataColumn dataColumn67;
  3888. private System.Data.DataColumn dataColumn68;
  3889. private System.Data.DataColumn dataColumn69;
  3890. private System.Data.DataColumn dataColumn70;
  3891. private System.Data.DataColumn dataColumn71;
  3892. private System.Data.DataColumn dataColumn72;
  3893. private System.Data.DataTable dataTable1;
  3894. public System.Data.DataTable COM_MSC_GRADE1
  3895. {
  3896. get { return dataTable1; }
  3897. set { dataTable1 = value; }
  3898. }
  3899. private System.Data.DataColumn dataColumn94;
  3900. private System.Data.DataColumn dataColumn95;
  3901. private System.Data.DataColumn dataColumn96;
  3902. private System.Data.DataColumn dataColumn97;
  3903. private System.Data.DataColumn dataColumn98;
  3904. private System.Data.DataColumn dataColumn99;
  3905. private System.Data.DataColumn dataColumn100;
  3906. private System.Data.DataColumn dataColumn101;
  3907. private System.Data.DataColumn dataColumn102;
  3908. private System.Data.DataColumn dataColumn103;
  3909. private System.Data.DataColumn dataColumn104;
  3910. private System.Data.DataColumn dataColumn105;
  3911. private System.Data.DataColumn dataColumn106;
  3912. private System.Data.DataColumn dataColumn107;
  3913. private System.Data.DataColumn dataColumn108;
  3914. private System.Data.DataColumn dataColumn109;
  3915. private System.Data.DataColumn dataColumn110;
  3916. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid7;
  3917. public Infragistics.Win.UltraWinGrid.UltraGrid UltraGrid7
  3918. {
  3919. get { return ultraGrid7; }
  3920. set { ultraGrid7 = value; }
  3921. }
  3922. private Infragistics.Win.UltraWinDock.WindowDockingArea windowDockingArea4;
  3923. private Infragistics.Win.UltraWinDock.WindowDockingArea windowDockingArea1;
  3924. private Infragistics.Win.UltraWinDock.DockableWindow dockableWindow2;
  3925. private System.Data.DataColumn dataColumn111;
  3926. private System.Data.DataColumn dataColumn73;
  3927. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox6;
  3928. private System.Windows.Forms.Panel panel3;
  3929. private System.Windows.Forms.Label lblMsc;
  3930. private Infragistics.Win.UltraWinEditors.UltraNumericEditor ultraNumericEditor1;
  3931. internal System.Windows.Forms.CheckBox ckbDeleteFilter;
  3932. internal Infragistics.Win.UltraWinTabControl.UltraTabControl ultraTabControl1;
  3933. private System.Windows.Forms.SplitContainer splitContainer3;
  3934. public System.Windows.Forms.SplitContainer SplitContainer3
  3935. {
  3936. get { return splitContainer3; }
  3937. set { splitContainer3 = value; }
  3938. }
  3939. private System.Windows.Forms.SplitContainer splitContainer2;
  3940. public System.Windows.Forms.SplitContainer SplitContainer2
  3941. {
  3942. get { return splitContainer2; }
  3943. set { splitContainer2 = value; }
  3944. }
  3945. private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox3;
  3946. private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel3;
  3947. private Infragistics.Win.UltraWinTabControl.UltraTabControl ultraTabControl2;
  3948. private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage2;
  3949. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl4;
  3950. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl5;
  3951. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl7;
  3952. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl9;
  3953. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl10;
  3954. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid5;
  3955. internal Infragistics.Win.UltraWinGrid.UltraGrid UltraGrid5
  3956. {
  3957. get { return ultraGrid5; }
  3958. set { ultraGrid5 = value; }
  3959. }
  3960. private System.Windows.Forms.Panel panel2;
  3961. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid4;
  3962. internal Infragistics.Win.UltraWinGrid.UltraGrid UltraGrid4
  3963. {
  3964. get { return ultraGrid4; }
  3965. set { ultraGrid4 = value; }
  3966. }
  3967. private System.Windows.Forms.SplitContainer splitContainer4;
  3968. private System.Windows.Forms.Panel ultraTabPageControl1_Fill_Panel;
  3969. private System.Windows.Forms.Panel Panel2_Fill_Panel;
  3970. private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _Panel2_Toolbars_Dock_Area_Left;
  3971. private Infragistics.Win.UltraWinToolbars.UltraToolbarsManager ultraToolbarsManager1;
  3972. public Infragistics.Win.UltraWinToolbars.UltraToolbarsManager UltraToolbarsManager1
  3973. {
  3974. get { return ultraToolbarsManager1; }
  3975. set { ultraToolbarsManager1 = value; }
  3976. }
  3977. private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _Panel2_Toolbars_Dock_Area_Right;
  3978. private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _Panel2_Toolbars_Dock_Area_Top;
  3979. private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _Panel2_Toolbars_Dock_Area_Bottom;
  3980. private System.Data.DataColumn dataColumn116;
  3981. private System.Data.DataColumn dataColumn117;
  3982. private System.Data.DataColumn dataColumn118;
  3983. private System.Data.DataColumn dataColumn119;
  3984. private System.Data.DataColumn dataColumn120;
  3985. private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage3;
  3986. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl6;
  3987. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl8;
  3988. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl11;
  3989. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl12;
  3990. private CtrlMscJg ctrlMscJg1;
  3991. public CtrlMscJg CtrlMscJg1
  3992. {
  3993. get { return ctrlMscJg1; }
  3994. set { ctrlMscJg1 = value; }
  3995. }
  3996. private Infragistics.Win.UltraWinTabControl.UltraTabControl ultraTabControl3;
  3997. internal Infragistics.Win.UltraWinTabControl.UltraTabControl UltraTabControl3
  3998. {
  3999. get { return ultraTabControl3; }
  4000. set { ultraTabControl3 = value; }
  4001. }
  4002. private ControlMsc controlMsc1;
  4003. private CtrlMscBl ctrlMscBl1;
  4004. public CtrlMscBl CtrlMscBl1
  4005. {
  4006. get { return ctrlMscBl1; }
  4007. set { ctrlMscBl1 = value; }
  4008. }
  4009. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl2;
  4010. private System.Data.DataColumn dataColumn4;
  4011. private System.Data.DataColumn dataColumn5;
  4012. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl3;
  4013. private System.Data.DataColumn dataColumn6;
  4014. private System.Data.DataColumn dataColumn7;
  4015. private System.Data.DataColumn dataColumn8;
  4016. private System.Data.DataColumn dataColumn9;
  4017. private System.Data.DataColumn dataColumn10;
  4018. private System.Data.DataTable dataTable2;
  4019. public System.Data.DataTable COM_MSC_GRADE_R_SPEC1
  4020. {
  4021. get { return dataTable2; }
  4022. set { dataTable2 = value; }
  4023. }
  4024. private System.Data.DataColumn dataColumn11;
  4025. private System.Data.DataColumn dataColumn12;
  4026. private System.Data.DataColumn dataColumn13;
  4027. private System.Data.DataColumn dataColumn14;
  4028. private System.Data.DataColumn dataColumn15;
  4029. private System.Data.DataColumn dataColumn16;
  4030. private System.Data.DataColumn dataColumn17;
  4031. private System.Data.DataColumn dataColumn18;
  4032. private System.Data.DataColumn dataColumn19;
  4033. private System.Data.DataColumn dataColumn20;
  4034. private System.Data.DataColumn dataColumn21;
  4035. private System.Data.DataColumn dataColumn22;
  4036. private System.Data.DataColumn dataColumn23;
  4037. private System.Data.DataColumn dataColumn24;
  4038. private System.Data.DataColumn dataColumn25;
  4039. private System.Data.DataColumn dataColumn26;
  4040. private System.Data.DataColumn dataColumn27;
  4041. private Infragistics.Win.Misc.UltraLabel ultraLabel2;
  4042. private Infragistics.Win.UltraWinEditors.UltraComboEditor cmbProduct;
  4043. private System.Data.DataColumn dataColumn28;
  4044. private System.Data.DataColumn dataColumn29;
  4045. private System.Data.DataColumn dataColumn40;
  4046. private System.Data.DataColumn dataColumn41;
  4047. private Infragistics.Win.Misc.UltraPanel ultraPanel2;
  4048. private Infragistics.Win.Misc.UltraPanel ultraPanel3;
  4049. private Infragistics.Win.Misc.UltraPanel ultraPanel4;
  4050. private System.Windows.Forms.Label label5;
  4051. private System.Windows.Forms.Label label6;
  4052. private System.Windows.Forms.Label label7;
  4053. private System.Windows.Forms.Label label8;
  4054. private System.Windows.Forms.Label label9;
  4055. private System.Windows.Forms.Label label10;
  4056. private Infragistics.Win.UltraWinEditors.UltraTextEditor craftImg;
  4057. private System.Data.DataColumn dataColumn42;
  4058. private System.Windows.Forms.Label label11;
  4059. internal System.Windows.Forms.TextBox txtMsc;
  4060. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor1;
  4061. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor1;
  4062. private System.Data.DataColumn dataColumn74;
  4063. private Infragistics.Win.UltraWinTabControl.UltraTabControl ultraTabControl4;
  4064. public Infragistics.Win.UltraWinTabControl.UltraTabControl UltraTabControl4
  4065. {
  4066. get { return ultraTabControl4; }
  4067. set { ultraTabControl4 = value; }
  4068. }
  4069. private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage4;
  4070. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl13;
  4071. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl14;
  4072. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl15;
  4073. private System.Windows.Forms.RichTextBox lblStationPath;
  4074. private System.Data.DataColumn dataColumn75;
  4075. private System.Data.DataColumn dataColumn76;
  4076. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor16;
  4077. private System.Data.DataColumn dataColumn77;
  4078. private System.Windows.Forms.Label label12;
  4079. internal System.Windows.Forms.TextBox txtUnit;
  4080. private Infragistics.Win.Misc.UltraLabel ultraLabel1;
  4081. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid2;
  4082. private System.Data.DataTable dataTable6;
  4083. private System.Data.DataColumn dataColumn78;
  4084. private System.Data.DataColumn dataColumn79;
  4085. private System.Data.DataColumn dataColumn80;
  4086. private System.Data.DataColumn dataColumn81;
  4087. private System.Data.DataColumn dataColumn82;
  4088. private System.Data.DataColumn dataColumn83;
  4089. private System.Data.DataColumn dataColumn84;
  4090. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor8;
  4091. private System.Data.DataColumn dataColumn85;
  4092. private System.Data.DataColumn dataColumn86;
  4093. private System.Windows.Forms.Label label13;
  4094. internal System.Windows.Forms.TextBox textBox1;
  4095. private System.Data.DataColumn dataColumn87;
  4096. public Infragistics.Win.UltraWinEditors.UltraComboEditor CmbProduct
  4097. {
  4098. get { return cmbProduct; }
  4099. set { cmbProduct = value; }
  4100. }
  4101. }
  4102. }