| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161 |
- namespace Core.StlMes.Client.Qcm
- {
- partial class FrmMaterialAdministration
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- Infragistics.Win.UltraWinEditors.EditorButton editorButton1 = new Infragistics.Win.UltraWinEditors.EditorButton("select");
- Infragistics.Win.Appearance appearance45 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PHY_CODE", -1, null, 0, Infragistics.Win.UltraWinGrid.SortIndicator.Ascending, false);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PHY_TYPE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PHY_STD");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATE_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATE_TIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UPDATE_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UPDATE_TIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DELETE_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DELETE_TIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("VALIDFLAG");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MEMO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("VALIDFLAGNAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STD_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SAMPLE_COUNT");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PHY_DEPTID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PHY_DEPTNAME");
- Infragistics.Win.Appearance appearance46 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance47 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance48 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance49 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance50 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance51 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance52 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance53 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance55 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance56 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance57 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinEditors.EditorButton editorButton2 = new Infragistics.Win.UltraWinEditors.EditorButton("select");
- Infragistics.Win.Appearance appearance111 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance59 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance58 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance138 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table2", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PHY_CODE", -1, null, 0, Infragistics.Win.UltraWinGrid.SortIndicator.Ascending, false);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PHY_TYPE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATE_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATE_TIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UPDATE_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UPDATE_TIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DELETE_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DELETE_TIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("VALIDFLAG");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MEMO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PHY_TYPE_M");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("VALIDFLAGNAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PHY_TYPE_NAME_M");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PHY_DEPTID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PHY_DEPTNAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORDER_SEQ");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SPLINE_COUNT");
- Infragistics.Win.Appearance appearance139 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance140 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance141 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance143 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance144 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance145 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance146 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance147 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance148 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance149 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance150 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance70 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance106 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance104 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance96 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance108 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand3 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table3", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PHY_CODE", -1, null, 0, Infragistics.Win.UltraWinGrid.SortIndicator.Ascending, false);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PHY_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PHY_TYPE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PHY_TYPE_C");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PHY_UNIT");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATE_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATE_TIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UPDATE_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UPDATE_TIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DELETE_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn44 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DELETE_TIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn45 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("VALIDFLAG");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn46 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MEMO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn47 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("VALIDFLAGNAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn48 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("HOUR_READY");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn49 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("HOUR_TEST");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn50 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PHY_TYPE_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn51 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PHY_TYPE_NAME_C");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn52 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STATION_CODE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn53 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STATION_DESC");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn54 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORDER_SEQ");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn55 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FORMULA_SIGN");
- Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinEditors.EditorButton editorButton3 = new Infragistics.Win.UltraWinEditors.EditorButton();
- Infragistics.Win.Appearance appearance121 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance122 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance124 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance126 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance37 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance38 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance39 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance40 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance41 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance78 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance54 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance79 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance80 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance81 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance82 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance83 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand4 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table4", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn56 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEM_CODE", -1, null, 0, Infragistics.Win.UltraWinGrid.SortIndicator.Ascending, false);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn57 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEM_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn58 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEM_STYLE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn59 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATE_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn60 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATE_TIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn61 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UPDATE_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn62 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UPDATE_TIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn63 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DELETE_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn64 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DELETE_TIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn65 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("VALIDFLAG");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn66 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MEMO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn67 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEM_STYLENAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn68 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("VALIDFLAGNAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn69 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORDER_SEQ");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn70 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("chk", 0);
- Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance20 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance42 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance43 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance44 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance112 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance67 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance68 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance71 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance25 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance26 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance27 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance28 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance29 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance30 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance31 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance32 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance33 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance34 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance35 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance36 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance151 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand5 = new Infragistics.Win.UltraWinGrid.UltraGridBand("CZGLTable", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn71 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PHY_CODE", -1, null, 0, Infragistics.Win.UltraWinGrid.SortIndicator.Ascending, false);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn72 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PHY_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn73 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("COUNT1");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn74 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PHY_TYPE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn75 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PHY_TYPE_C");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn76 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PHY_TYPE_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn77 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PHY_TYPE_NAME_C");
- Infragistics.Win.Appearance appearance152 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance153 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance154 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance155 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance156 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance157 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance158 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance159 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance160 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance161 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance162 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance76 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand6 = new Infragistics.Win.UltraWinGrid.UltraGridBand("WDTable", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn78 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEM_CODE_C");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn79 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEM_CODE_W");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn80 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATE_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn81 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATE_TIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn82 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UPDATE_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn83 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UPDATE_TIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn84 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DELETE_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn85 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DELETE_TIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn86 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("VALIDFLAG");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn87 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("VALIDFLAGNAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn88 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MEMO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn89 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEM_CODE_F");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn90 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PHY_CODE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn91 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PHY_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn92 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PHY_TYPE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn93 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PHY_TYPE_C");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn94 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEM_CODE_F2");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn95 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEM_CODE_C2");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn96 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEM_CODE_W2");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn97 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CHK2");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn98 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ROWID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn99 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CHK", 0);
- Infragistics.Win.Appearance appearance77 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance84 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance85 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance86 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance87 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance88 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance89 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance90 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance91 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance92 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance93 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance60 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand7 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table5", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn100 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PHY_CODE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn101 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PHY_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn102 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PHY_NAME_C");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn103 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CNT");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn104 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PHY_NAME_B");
- Infragistics.Win.Appearance appearance61 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance63 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance62 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance66 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance74 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance94 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance72 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance65 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance64 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance75 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance73 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance95 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand8 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table6", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn105 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEM_CODE_W");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn106 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATE_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn107 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATE_TIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn108 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UPDATE_TIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn109 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UPDATE_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn110 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DELETE_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn111 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DELETE_TIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn112 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEM_CODE_W2");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn113 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("VALIDFLAG");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn114 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEM_CODE_P");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn115 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CHK", 0);
- Infragistics.Win.Appearance appearance97 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance99 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance98 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance102 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance107 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance110 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance103 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance101 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance100 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance109 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance105 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab1 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab2 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab3 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab4 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab5 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab6 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.Appearance appearance69 = new Infragistics.Win.Appearance();
- this.ultraTextEditor1 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.cmbItem_C = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraComboEditor2 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraTabPageControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.dataSet1 = new System.Data.DataSet();
- this.dataTable1 = new System.Data.DataTable();
- this.dataColumn1 = new System.Data.DataColumn();
- this.dataColumn2 = new System.Data.DataColumn();
- this.dataColumn3 = new System.Data.DataColumn();
- this.dataColumn5 = new System.Data.DataColumn();
- this.dataColumn6 = new System.Data.DataColumn();
- this.dataColumn7 = new System.Data.DataColumn();
- this.dataColumn8 = new System.Data.DataColumn();
- this.dataColumn9 = new System.Data.DataColumn();
- this.dataColumn10 = new System.Data.DataColumn();
- this.dataColumn11 = new System.Data.DataColumn();
- this.dataColumn12 = new System.Data.DataColumn();
- this.dataColumn64 = new System.Data.DataColumn();
- this.dataColumn72 = new System.Data.DataColumn();
- this.dataColumn85 = new System.Data.DataColumn();
- this.dataColumn88 = new System.Data.DataColumn();
- this.dataColumn89 = new System.Data.DataColumn();
- this.dataTable2 = new System.Data.DataTable();
- this.dataColumn13 = new System.Data.DataColumn();
- this.dataColumn14 = new System.Data.DataColumn();
- this.dataColumn22 = new System.Data.DataColumn();
- this.dataColumn23 = new System.Data.DataColumn();
- this.dataColumn24 = new System.Data.DataColumn();
- this.dataColumn25 = new System.Data.DataColumn();
- this.dataColumn26 = new System.Data.DataColumn();
- this.dataColumn27 = new System.Data.DataColumn();
- this.dataColumn28 = new System.Data.DataColumn();
- this.dataColumn29 = new System.Data.DataColumn();
- this.dataColumn46 = new System.Data.DataColumn();
- this.dataColumn65 = new System.Data.DataColumn();
- this.dataColumn71 = new System.Data.DataColumn();
- this.dataColumn94 = new System.Data.DataColumn();
- this.dataColumn104 = new System.Data.DataColumn();
- this.dataColumn107 = new System.Data.DataColumn();
- this.dataColumn111 = new System.Data.DataColumn();
- this.dataTable3 = new System.Data.DataTable();
- this.dataColumn4 = new System.Data.DataColumn();
- this.dataColumn15 = new System.Data.DataColumn();
- this.dataColumn16 = new System.Data.DataColumn();
- this.dataColumn17 = new System.Data.DataColumn();
- this.dataColumn18 = new System.Data.DataColumn();
- this.dataColumn30 = new System.Data.DataColumn();
- this.dataColumn31 = new System.Data.DataColumn();
- this.dataColumn32 = new System.Data.DataColumn();
- this.dataColumn33 = new System.Data.DataColumn();
- this.dataColumn34 = new System.Data.DataColumn();
- this.dataColumn35 = new System.Data.DataColumn();
- this.dataColumn36 = new System.Data.DataColumn();
- this.dataColumn37 = new System.Data.DataColumn();
- this.dataColumn66 = new System.Data.DataColumn();
- this.dataColumn67 = new System.Data.DataColumn();
- this.dataColumn68 = new System.Data.DataColumn();
- this.dataColumn73 = new System.Data.DataColumn();
- this.dataColumn74 = new System.Data.DataColumn();
- this.dataColumn86 = new System.Data.DataColumn();
- this.dataColumn87 = new System.Data.DataColumn();
- this.dataColumn108 = new System.Data.DataColumn();
- this.dataColumn109 = new System.Data.DataColumn();
- this.dataTable4 = new System.Data.DataTable();
- this.dataColumn19 = new System.Data.DataColumn();
- this.dataColumn20 = new System.Data.DataColumn();
- this.dataColumn21 = new System.Data.DataColumn();
- this.dataColumn38 = new System.Data.DataColumn();
- this.dataColumn39 = new System.Data.DataColumn();
- this.dataColumn40 = new System.Data.DataColumn();
- this.dataColumn41 = new System.Data.DataColumn();
- this.dataColumn42 = new System.Data.DataColumn();
- this.dataColumn43 = new System.Data.DataColumn();
- this.dataColumn44 = new System.Data.DataColumn();
- this.dataColumn45 = new System.Data.DataColumn();
- this.dataColumn69 = new System.Data.DataColumn();
- this.dataColumn70 = new System.Data.DataColumn();
- this.CZGLTable = new System.Data.DataTable();
- this.dataColumn47 = new System.Data.DataColumn();
- this.dataColumn52 = new System.Data.DataColumn();
- this.dataColumn82 = new System.Data.DataColumn();
- this.dataColumn80 = new System.Data.DataColumn();
- this.dataColumn81 = new System.Data.DataColumn();
- this.dataColumn83 = new System.Data.DataColumn();
- this.dataColumn84 = new System.Data.DataColumn();
- this.WDTable = new System.Data.DataTable();
- this.dataColumn49 = new System.Data.DataColumn();
- this.dataColumn50 = new System.Data.DataColumn();
- this.dataColumn53 = new System.Data.DataColumn();
- this.dataColumn54 = new System.Data.DataColumn();
- this.dataColumn55 = new System.Data.DataColumn();
- this.dataColumn56 = new System.Data.DataColumn();
- this.dataColumn57 = new System.Data.DataColumn();
- this.dataColumn58 = new System.Data.DataColumn();
- this.dataColumn59 = new System.Data.DataColumn();
- this.dataColumn60 = new System.Data.DataColumn();
- this.dataColumn61 = new System.Data.DataColumn();
- this.dataColumn62 = new System.Data.DataColumn();
- this.dataColumn63 = new System.Data.DataColumn();
- this.dataColumn77 = new System.Data.DataColumn();
- this.dataColumn78 = new System.Data.DataColumn();
- this.dataColumn79 = new System.Data.DataColumn();
- this.dataColumn48 = new System.Data.DataColumn();
- this.dataColumn75 = new System.Data.DataColumn();
- this.dataColumn76 = new System.Data.DataColumn();
- this.dataColumn51 = new System.Data.DataColumn();
- this.dataColumn90 = new System.Data.DataColumn();
- this.dataTable5 = new System.Data.DataTable();
- this.dataColumn91 = new System.Data.DataColumn();
- this.dataColumn92 = new System.Data.DataColumn();
- this.dataColumn93 = new System.Data.DataColumn();
- this.dataColumn102 = new System.Data.DataColumn();
- this.dataColumn103 = new System.Data.DataColumn();
- this.dataTable6 = new System.Data.DataTable();
- this.dataColumn95 = new System.Data.DataColumn();
- this.dataColumn96 = new System.Data.DataColumn();
- this.dataColumn97 = new System.Data.DataColumn();
- this.dataColumn98 = new System.Data.DataColumn();
- this.dataColumn99 = new System.Data.DataColumn();
- this.dataColumn100 = new System.Data.DataColumn();
- this.dataColumn101 = new System.Data.DataColumn();
- this.dataColumn105 = new System.Data.DataColumn();
- this.dataColumn106 = new System.Data.DataColumn();
- this.dataColumn110 = new System.Data.DataColumn();
- this.ultraExpandableGroupBox1 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
- this.ultraExpandableGroupBoxPanel1 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
- this.panel5 = new System.Windows.Forms.Panel();
- this.txtSampleCount = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.ultraLabel3 = new Infragistics.Win.Misc.UltraLabel();
- this.txtDept = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel9 = new Infragistics.Win.Misc.UltraLabel();
- this.txtMemo = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel6 = new Infragistics.Win.Misc.UltraLabel();
- this.txtPhyType = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel4 = new Infragistics.Win.Misc.UltraLabel();
- this.panel2 = new System.Windows.Forms.Panel();
- this.chkValid = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.txtPhyTitle = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel1 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTabPageControl2 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.ultraGrid2 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.ultraExpandableGroupBox2 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
- this.ultraExpandableGroupBoxPanel2 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
- this.panel6 = new System.Windows.Forms.Panel();
- this.ultraNumericEditor3 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.ultraLabel19 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraNumericEditor1 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.ultraLabel15 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel11 = new Infragistics.Win.Misc.UltraLabel();
- this.cmbPhyMaxCode = new System.Windows.Forms.ComboBox();
- this.ultraLabel7 = new Infragistics.Win.Misc.UltraLabel();
- this.txtMemoC = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel8 = new Infragistics.Win.Misc.UltraLabel();
- this.txtPhyTypeC = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel10 = new Infragistics.Win.Misc.UltraLabel();
- this.panel1 = new System.Windows.Forms.Panel();
- this.chkValidC = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.txtPhyTitleC = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel12 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTabPageControl3 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.ultraGrid5 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.ultraExpandableGroupBox3 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
- this.ultraExpandableGroupBoxPanel3 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
- this.panel7 = new System.Windows.Forms.Panel();
- this.ultraNumericEditor2 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.ultraLabel17 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel5 = new Infragistics.Win.Misc.UltraLabel();
- this.txtStation = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.cmbPhyProjectTypeC = new System.Windows.Forms.ComboBox();
- this.numHour_Test = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.numHour_Ready = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.label2 = new System.Windows.Forms.Label();
- this.label1 = new System.Windows.Forms.Label();
- this.ultraLabel13 = new Infragistics.Win.Misc.UltraLabel();
- this.txtPhyUnit = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel2 = new Infragistics.Win.Misc.UltraLabel();
- this.txtMemoCProject = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel14 = new Infragistics.Win.Misc.UltraLabel();
- this.txtPhyProjectName = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel16 = new Infragistics.Win.Misc.UltraLabel();
- this.panel3 = new System.Windows.Forms.Panel();
- this.chkValidProject = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.txtPhyProjectTitle = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel18 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraGrid3 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.ultraTabPageControl4 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.ultraGrid6 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.ultraExpandableGroupBox4 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
- this.ultraExpandableGroupBoxPanel4 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
- this.panel8 = new System.Windows.Forms.Panel();
- this.cmbItemType = new System.Windows.Forms.ComboBox();
- this.txtMemoItem = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel20 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel21 = new Infragistics.Win.Misc.UltraLabel();
- this.txtItemName = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel22 = new Infragistics.Win.Misc.UltraLabel();
- this.panel4 = new System.Windows.Forms.Panel();
- this.chkValidItem = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.txtItemTitle = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel24 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraGrid4 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.ultraTabPageControl5 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.splitContainer1 = new System.Windows.Forms.SplitContainer();
- this.ultraCZGL = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.cmbPhyC = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.cmbPhyR = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.cmbItem_W = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.cmbItem_F = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraWD = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.ultraTabPageControl6 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.splitContainer2 = new System.Windows.Forms.SplitContainer();
- this.ultraGrid7 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.ultraGrid8 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.utcPhy = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
- this.ultraTabSharedControlsPage1 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
- this.dataColumn112 = new System.Data.DataColumn();
- this.ultraLabel23 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraNumericEditor4 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmbItem_C)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor2)).BeginInit();
- this.ultraTabPageControl1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable4)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.CZGLTable)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.WDTable)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable5)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable6)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).BeginInit();
- this.ultraExpandableGroupBox1.SuspendLayout();
- this.ultraExpandableGroupBoxPanel1.SuspendLayout();
- this.panel5.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txtSampleCount)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtDept)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtMemo)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtPhyType)).BeginInit();
- this.panel2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.chkValid)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtPhyTitle)).BeginInit();
- this.ultraTabPageControl2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox2)).BeginInit();
- this.ultraExpandableGroupBox2.SuspendLayout();
- this.ultraExpandableGroupBoxPanel2.SuspendLayout();
- this.panel6.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraNumericEditor3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraNumericEditor1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtMemoC)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtPhyTypeC)).BeginInit();
- this.panel1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.chkValidC)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtPhyTitleC)).BeginInit();
- this.ultraTabPageControl3.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid5)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox3)).BeginInit();
- this.ultraExpandableGroupBox3.SuspendLayout();
- this.ultraExpandableGroupBoxPanel3.SuspendLayout();
- this.panel7.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraNumericEditor2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtStation)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numHour_Test)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numHour_Ready)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtPhyUnit)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtMemoCProject)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtPhyProjectName)).BeginInit();
- this.panel3.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.chkValidProject)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtPhyProjectTitle)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).BeginInit();
- this.ultraTabPageControl4.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid6)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox4)).BeginInit();
- this.ultraExpandableGroupBox4.SuspendLayout();
- this.ultraExpandableGroupBoxPanel4.SuspendLayout();
- this.panel8.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txtMemoItem)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtItemName)).BeginInit();
- this.panel4.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.chkValidItem)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtItemTitle)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid4)).BeginInit();
- this.ultraTabPageControl5.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
- this.splitContainer1.Panel1.SuspendLayout();
- this.splitContainer1.Panel2.SuspendLayout();
- this.splitContainer1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraCZGL)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmbPhyC)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmbPhyR)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmbItem_W)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmbItem_F)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraWD)).BeginInit();
- this.ultraTabPageControl6.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
- this.splitContainer2.Panel1.SuspendLayout();
- this.splitContainer2.Panel2.SuspendLayout();
- this.splitContainer2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid7)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid8)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.utcPhy)).BeginInit();
- this.utcPhy.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraNumericEditor4)).BeginInit();
- this.SuspendLayout();
- //
- // ultraTextEditor1
- //
- editorButton1.Key = "select";
- editorButton1.Text = "选择";
- this.ultraTextEditor1.ButtonsRight.Add(editorButton1);
- this.ultraTextEditor1.Location = new System.Drawing.Point(566, 14);
- this.ultraTextEditor1.Margin = new System.Windows.Forms.Padding(4);
- this.ultraTextEditor1.MaxLength = 100;
- this.ultraTextEditor1.Name = "ultraTextEditor1";
- this.ultraTextEditor1.ReadOnly = true;
- this.ultraTextEditor1.Size = new System.Drawing.Size(249, 24);
- this.ultraTextEditor1.TabIndex = 21;
- this.ultraTextEditor1.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.ultraTextEditor1_EditorButtonClick_1);
- //
- // cmbItem_C
- //
- this.cmbItem_C.Location = new System.Drawing.Point(208, 285);
- this.cmbItem_C.Margin = new System.Windows.Forms.Padding(4);
- this.cmbItem_C.Name = "cmbItem_C";
- this.cmbItem_C.Size = new System.Drawing.Size(112, 24);
- this.cmbItem_C.TabIndex = 34;
- this.cmbItem_C.Text = "ultraComboEditor2";
- this.cmbItem_C.Visible = false;
- //
- // ultraComboEditor2
- //
- this.ultraComboEditor2.Location = new System.Drawing.Point(190, 146);
- this.ultraComboEditor2.Name = "ultraComboEditor2";
- this.ultraComboEditor2.Size = new System.Drawing.Size(112, 24);
- this.ultraComboEditor2.TabIndex = 2;
- this.ultraComboEditor2.Text = "温度";
- this.ultraComboEditor2.Visible = false;
- //
- // ultraTabPageControl1
- //
- this.ultraTabPageControl1.Controls.Add(this.ultraGrid1);
- this.ultraTabPageControl1.Controls.Add(this.ultraExpandableGroupBox1);
- this.ultraTabPageControl1.Controls.Add(this.panel2);
- this.ultraTabPageControl1.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabPageControl1.Margin = new System.Windows.Forms.Padding(4);
- this.ultraTabPageControl1.Name = "ultraTabPageControl1";
- this.ultraTabPageControl1.Size = new System.Drawing.Size(1458, 417);
- //
- // ultraGrid1
- //
- this.ultraGrid1.DataMember = "Table1";
- this.ultraGrid1.DataSource = this.dataSet1;
- appearance45.BackColor = System.Drawing.SystemColors.Window;
- appearance45.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid1.DisplayLayout.Appearance = appearance45;
- ultraGridColumn1.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn1.Header.VisiblePosition = 0;
- ultraGridColumn1.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn1.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn1.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn2.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn2.Header.VisiblePosition = 1;
- ultraGridColumn2.RowLayoutColumnInfo.OriginX = 1;
- ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn2.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn2.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn3.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn3.Header.VisiblePosition = 2;
- ultraGridColumn3.Hidden = true;
- ultraGridColumn3.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn3.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn3.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn3.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn4.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn4.Header.VisiblePosition = 5;
- ultraGridColumn4.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn4.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn4.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn5.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn5.Header.VisiblePosition = 6;
- ultraGridColumn5.RowLayoutColumnInfo.OriginX = 7;
- ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn5.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn5.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn6.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn6.Header.VisiblePosition = 7;
- ultraGridColumn6.RowLayoutColumnInfo.OriginX = 8;
- ultraGridColumn6.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn6.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn6.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn7.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn7.Header.VisiblePosition = 8;
- ultraGridColumn7.RowLayoutColumnInfo.OriginX = 9;
- ultraGridColumn7.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn7.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn7.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn8.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn8.Header.VisiblePosition = 9;
- ultraGridColumn8.RowLayoutColumnInfo.OriginX = 10;
- ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn8.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn8.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn9.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn9.Header.VisiblePosition = 10;
- ultraGridColumn9.RowLayoutColumnInfo.OriginX = 11;
- ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn9.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn9.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn10.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn10.Header.VisiblePosition = 11;
- ultraGridColumn10.Hidden = true;
- ultraGridColumn10.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn10.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn11.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn11.Header.VisiblePosition = 4;
- ultraGridColumn11.RowLayoutColumnInfo.OriginX = 5;
- ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn11.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn11.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn12.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn12.Header.VisiblePosition = 3;
- ultraGridColumn12.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn12.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn12.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn12.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn13.Header.VisiblePosition = 12;
- ultraGridColumn13.Hidden = true;
- ultraGridColumn13.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn13.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn13.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn13.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn14.Header.VisiblePosition = 13;
- ultraGridColumn14.Hidden = true;
- ultraGridColumn14.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn14.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn14.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn14.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn15.Header.VisiblePosition = 14;
- ultraGridColumn15.Hidden = true;
- ultraGridColumn15.RowLayoutColumnInfo.OriginX = 3;
- ultraGridColumn15.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn15.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn15.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn16.Header.VisiblePosition = 15;
- ultraGridColumn16.RowLayoutColumnInfo.OriginX = 3;
- ultraGridColumn16.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn16.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(184, 0);
- ultraGridColumn16.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn16.RowLayoutColumnInfo.SpanY = 1;
- ultraGridBand1.Columns.AddRange(new object[] {
- ultraGridColumn1,
- ultraGridColumn2,
- ultraGridColumn3,
- ultraGridColumn4,
- ultraGridColumn5,
- ultraGridColumn6,
- ultraGridColumn7,
- ultraGridColumn8,
- ultraGridColumn9,
- ultraGridColumn10,
- ultraGridColumn11,
- ultraGridColumn12,
- ultraGridColumn13,
- ultraGridColumn14,
- ultraGridColumn15,
- ultraGridColumn16});
- ultraGridBand1.Override.SelectedAppearancesEnabled = Infragistics.Win.DefaultableBoolean.False;
- ultraGridBand1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
- this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
- this.ultraGrid1.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid1.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance46.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance46.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance46.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance46.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid1.DisplayLayout.GroupByBox.Appearance = appearance46;
- appearance47.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid1.DisplayLayout.GroupByBox.BandLabelAppearance = appearance47;
- this.ultraGrid1.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance48.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance48.BackColor2 = System.Drawing.SystemColors.Control;
- appearance48.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance48.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid1.DisplayLayout.GroupByBox.PromptAppearance = appearance48;
- this.ultraGrid1.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid1.DisplayLayout.MaxRowScrollRegions = 1;
- appearance49.BackColor = System.Drawing.SystemColors.Window;
- appearance49.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid1.DisplayLayout.Override.ActiveCellAppearance = appearance49;
- appearance50.BackColor = System.Drawing.SystemColors.Highlight;
- appearance50.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance = appearance50;
- this.ultraGrid1.DisplayLayout.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.No;
- this.ultraGrid1.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid1.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid1.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance51.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance51;
- appearance52.BorderColor = System.Drawing.Color.Silver;
- appearance52.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid1.DisplayLayout.Override.CellAppearance = appearance52;
- this.ultraGrid1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid1.DisplayLayout.Override.CellPadding = 0;
- appearance53.BackColor = System.Drawing.SystemColors.Control;
- appearance53.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance53.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance53.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance53.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid1.DisplayLayout.Override.GroupByRowAppearance = appearance53;
- appearance55.TextHAlignAsString = "Left";
- this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance55;
- this.ultraGrid1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid1.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance56.BackColor = System.Drawing.SystemColors.Window;
- appearance56.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid1.DisplayLayout.Override.RowAppearance = appearance56;
- this.ultraGrid1.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance57.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid1.DisplayLayout.Override.TemplateAddRowAppearance = appearance57;
- this.ultraGrid1.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid1.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid1.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraGrid1.Location = new System.Drawing.Point(0, 54);
- this.ultraGrid1.Margin = new System.Windows.Forms.Padding(4);
- this.ultraGrid1.Name = "ultraGrid1";
- this.ultraGrid1.Size = new System.Drawing.Size(1458, 287);
- this.ultraGrid1.TabIndex = 25;
- this.ultraGrid1.Text = "ultraGrid1";
- this.ultraGrid1.InitializeRow += new Infragistics.Win.UltraWinGrid.InitializeRowEventHandler(this.ultraGrid1_InitializeRow);
- this.ultraGrid1.AfterRowActivate += new System.EventHandler(this.ultraGrid1_AfterRowActivate);
- //
- // dataSet1
- //
- this.dataSet1.DataSetName = "NewDataSet";
- this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
- this.dataTable1,
- this.dataTable2,
- this.dataTable3,
- this.dataTable4,
- this.CZGLTable,
- this.WDTable,
- this.dataTable5,
- this.dataTable6});
- //
- // dataTable1
- //
- this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn1,
- this.dataColumn2,
- this.dataColumn3,
- this.dataColumn5,
- this.dataColumn6,
- this.dataColumn7,
- this.dataColumn8,
- this.dataColumn9,
- this.dataColumn10,
- this.dataColumn11,
- this.dataColumn12,
- this.dataColumn64,
- this.dataColumn72,
- this.dataColumn85,
- this.dataColumn88,
- this.dataColumn89});
- this.dataTable1.TableName = "Table1";
- //
- // dataColumn1
- //
- this.dataColumn1.Caption = "检验大项代码";
- this.dataColumn1.ColumnName = "PHY_CODE";
- //
- // dataColumn2
- //
- this.dataColumn2.Caption = "检验大项";
- this.dataColumn2.ColumnName = "PHY_TYPE";
- //
- // dataColumn3
- //
- this.dataColumn3.Caption = "试验标准号";
- this.dataColumn3.ColumnName = "PHY_STD";
- //
- // dataColumn5
- //
- this.dataColumn5.Caption = "创建人";
- this.dataColumn5.ColumnName = "CREATE_NAME";
- //
- // dataColumn6
- //
- this.dataColumn6.Caption = "创建时间";
- this.dataColumn6.ColumnName = "CREATE_TIME";
- //
- // dataColumn7
- //
- this.dataColumn7.Caption = "修改人";
- this.dataColumn7.ColumnName = "UPDATE_NAME";
- //
- // dataColumn8
- //
- this.dataColumn8.Caption = "修改时间";
- this.dataColumn8.ColumnName = "UPDATE_TIME";
- //
- // dataColumn9
- //
- this.dataColumn9.Caption = "作废人";
- this.dataColumn9.ColumnName = "DELETE_NAME";
- //
- // dataColumn10
- //
- this.dataColumn10.Caption = "作废时间";
- this.dataColumn10.ColumnName = "DELETE_TIME";
- //
- // dataColumn11
- //
- this.dataColumn11.Caption = "有效标志";
- this.dataColumn11.ColumnName = "VALIDFLAG";
- //
- // dataColumn12
- //
- this.dataColumn12.Caption = "备注";
- this.dataColumn12.ColumnName = "MEMO";
- //
- // dataColumn64
- //
- this.dataColumn64.Caption = "有效标识";
- this.dataColumn64.ColumnName = "VALIDFLAGNAME";
- //
- // dataColumn72
- //
- this.dataColumn72.Caption = "试验标准";
- this.dataColumn72.ColumnName = "STD_NAME";
- //
- // dataColumn85
- //
- this.dataColumn85.Caption = "试验样条数";
- this.dataColumn85.ColumnName = "SAMPLE_COUNT";
- //
- // dataColumn88
- //
- this.dataColumn88.ColumnName = "PHY_DEPTID";
- //
- // dataColumn89
- //
- this.dataColumn89.Caption = "试验科室集合";
- this.dataColumn89.ColumnName = "PHY_DEPTNAME";
- //
- // dataTable2
- //
- this.dataTable2.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn13,
- this.dataColumn14,
- this.dataColumn22,
- this.dataColumn23,
- this.dataColumn24,
- this.dataColumn25,
- this.dataColumn26,
- this.dataColumn27,
- this.dataColumn28,
- this.dataColumn29,
- this.dataColumn46,
- this.dataColumn65,
- this.dataColumn71,
- this.dataColumn94,
- this.dataColumn104,
- this.dataColumn107,
- this.dataColumn111});
- this.dataTable2.TableName = "Table2";
- //
- // dataColumn13
- //
- this.dataColumn13.Caption = "试样组";
- this.dataColumn13.ColumnName = "PHY_CODE";
- //
- // dataColumn14
- //
- this.dataColumn14.Caption = "试样组";
- this.dataColumn14.ColumnName = "PHY_TYPE";
- //
- // dataColumn22
- //
- this.dataColumn22.Caption = "创建人";
- this.dataColumn22.ColumnName = "CREATE_NAME";
- //
- // dataColumn23
- //
- this.dataColumn23.Caption = "创建时间";
- this.dataColumn23.ColumnName = "CREATE_TIME";
- //
- // dataColumn24
- //
- this.dataColumn24.Caption = "修改人";
- this.dataColumn24.ColumnName = "UPDATE_NAME";
- //
- // dataColumn25
- //
- this.dataColumn25.Caption = "修改时间";
- this.dataColumn25.ColumnName = "UPDATE_TIME";
- //
- // dataColumn26
- //
- this.dataColumn26.Caption = "作废人";
- this.dataColumn26.ColumnName = "DELETE_NAME";
- //
- // dataColumn27
- //
- this.dataColumn27.Caption = "作废时间";
- this.dataColumn27.ColumnName = "DELETE_TIME";
- //
- // dataColumn28
- //
- this.dataColumn28.Caption = "有效标志";
- this.dataColumn28.ColumnName = "VALIDFLAG";
- //
- // dataColumn29
- //
- this.dataColumn29.Caption = "备注";
- this.dataColumn29.ColumnName = "MEMO";
- //
- // dataColumn46
- //
- this.dataColumn46.Caption = "材质大类代码";
- this.dataColumn46.ColumnName = "PHY_TYPE_M";
- //
- // dataColumn65
- //
- this.dataColumn65.Caption = "有效标识";
- this.dataColumn65.ColumnName = "VALIDFLAGNAME";
- //
- // dataColumn71
- //
- this.dataColumn71.Caption = "检验大项";
- this.dataColumn71.ColumnName = "PHY_TYPE_NAME_M";
- //
- // dataColumn94
- //
- this.dataColumn94.ColumnName = "PHY_DEPTID";
- //
- // dataColumn104
- //
- this.dataColumn104.Caption = "试验科室集合";
- this.dataColumn104.ColumnName = "PHY_DEPTNAME";
- //
- // dataColumn107
- //
- this.dataColumn107.Caption = "序号";
- this.dataColumn107.ColumnName = "ORDER_SEQ";
- this.dataColumn107.DataType = typeof(int);
- //
- // dataColumn111
- //
- this.dataColumn111.Caption = "样条数";
- this.dataColumn111.ColumnName = "SPLINE_COUNT";
- this.dataColumn111.DataType = typeof(int);
- //
- // dataTable3
- //
- this.dataTable3.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn4,
- this.dataColumn15,
- this.dataColumn16,
- this.dataColumn17,
- this.dataColumn18,
- this.dataColumn30,
- this.dataColumn31,
- this.dataColumn32,
- this.dataColumn33,
- this.dataColumn34,
- this.dataColumn35,
- this.dataColumn36,
- this.dataColumn37,
- this.dataColumn66,
- this.dataColumn67,
- this.dataColumn68,
- this.dataColumn73,
- this.dataColumn74,
- this.dataColumn86,
- this.dataColumn87,
- this.dataColumn108,
- this.dataColumn109});
- this.dataTable3.TableName = "Table3";
- //
- // dataColumn4
- //
- this.dataColumn4.Caption = "检验项代码";
- this.dataColumn4.ColumnName = "PHY_CODE";
- //
- // dataColumn15
- //
- this.dataColumn15.Caption = "检验项";
- this.dataColumn15.ColumnName = "PHY_NAME";
- //
- // dataColumn16
- //
- this.dataColumn16.Caption = "材质大类代码";
- this.dataColumn16.ColumnName = "PHY_TYPE";
- //
- // dataColumn17
- //
- this.dataColumn17.Caption = "材质小类代码";
- this.dataColumn17.ColumnName = "PHY_TYPE_C";
- //
- // dataColumn18
- //
- this.dataColumn18.Caption = "值单位";
- this.dataColumn18.ColumnName = "PHY_UNIT";
- //
- // dataColumn30
- //
- this.dataColumn30.Caption = "创建人";
- this.dataColumn30.ColumnName = "CREATE_NAME";
- //
- // dataColumn31
- //
- this.dataColumn31.Caption = "创建时间";
- this.dataColumn31.ColumnName = "CREATE_TIME";
- //
- // dataColumn32
- //
- this.dataColumn32.Caption = "修改人";
- this.dataColumn32.ColumnName = "UPDATE_NAME";
- //
- // dataColumn33
- //
- this.dataColumn33.Caption = "修改时间";
- this.dataColumn33.ColumnName = "UPDATE_TIME";
- //
- // dataColumn34
- //
- this.dataColumn34.Caption = "作废人";
- this.dataColumn34.ColumnName = "DELETE_NAME";
- //
- // dataColumn35
- //
- this.dataColumn35.Caption = "作废时间";
- this.dataColumn35.ColumnName = "DELETE_TIME";
- //
- // dataColumn36
- //
- this.dataColumn36.Caption = "有效标志";
- this.dataColumn36.ColumnName = "VALIDFLAG";
- //
- // dataColumn37
- //
- this.dataColumn37.Caption = "备注";
- this.dataColumn37.ColumnName = "MEMO";
- //
- // dataColumn66
- //
- this.dataColumn66.Caption = "有效标识";
- this.dataColumn66.ColumnName = "VALIDFLAGNAME";
- //
- // dataColumn67
- //
- this.dataColumn67.Caption = "准备时间(小时)";
- this.dataColumn67.ColumnName = "HOUR_READY";
- //
- // dataColumn68
- //
- this.dataColumn68.Caption = "试验时间(小时)";
- this.dataColumn68.ColumnName = "HOUR_TEST";
- //
- // dataColumn73
- //
- this.dataColumn73.Caption = "检验大项";
- this.dataColumn73.ColumnName = "PHY_TYPE_NAME";
- //
- // dataColumn74
- //
- this.dataColumn74.Caption = "试样组";
- this.dataColumn74.ColumnName = "PHY_TYPE_NAME_C";
- //
- // dataColumn86
- //
- this.dataColumn86.Caption = "工序点";
- this.dataColumn86.ColumnName = "STATION_CODE";
- //
- // dataColumn87
- //
- this.dataColumn87.Caption = "工序点";
- this.dataColumn87.ColumnName = "STATION_DESC";
- //
- // dataColumn108
- //
- this.dataColumn108.Caption = "序号";
- this.dataColumn108.ColumnName = "ORDER_SEQ";
- this.dataColumn108.DataType = typeof(int);
- //
- // dataColumn109
- //
- this.dataColumn109.Caption = "公式占位符";
- this.dataColumn109.ColumnName = "FORMULA_SIGN";
- //
- // dataTable4
- //
- this.dataTable4.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn19,
- this.dataColumn20,
- this.dataColumn21,
- this.dataColumn38,
- this.dataColumn39,
- this.dataColumn40,
- this.dataColumn41,
- this.dataColumn42,
- this.dataColumn43,
- this.dataColumn44,
- this.dataColumn45,
- this.dataColumn69,
- this.dataColumn70,
- this.dataColumn112});
- this.dataTable4.TableName = "Table4";
- //
- // dataColumn19
- //
- this.dataColumn19.Caption = "项目代码";
- this.dataColumn19.ColumnName = "ITEM_CODE";
- //
- // dataColumn20
- //
- this.dataColumn20.Caption = "项目名称";
- this.dataColumn20.ColumnName = "ITEM_NAME";
- //
- // dataColumn21
- //
- this.dataColumn21.Caption = "项目类型编码";
- this.dataColumn21.ColumnName = "ITEM_STYLE";
- //
- // dataColumn38
- //
- this.dataColumn38.Caption = "创建人";
- this.dataColumn38.ColumnName = "CREATE_NAME";
- //
- // dataColumn39
- //
- this.dataColumn39.Caption = "创建时间";
- this.dataColumn39.ColumnName = "CREATE_TIME";
- //
- // dataColumn40
- //
- this.dataColumn40.Caption = "修改人";
- this.dataColumn40.ColumnName = "UPDATE_NAME";
- //
- // dataColumn41
- //
- this.dataColumn41.Caption = "修改时间";
- this.dataColumn41.ColumnName = "UPDATE_TIME";
- //
- // dataColumn42
- //
- this.dataColumn42.Caption = "作废人";
- this.dataColumn42.ColumnName = "DELETE_NAME";
- //
- // dataColumn43
- //
- this.dataColumn43.Caption = "作废时间";
- this.dataColumn43.ColumnName = "DELETE_TIME";
- //
- // dataColumn44
- //
- this.dataColumn44.Caption = "有效标志";
- this.dataColumn44.ColumnName = "VALIDFLAG";
- //
- // dataColumn45
- //
- this.dataColumn45.Caption = "备注";
- this.dataColumn45.ColumnName = "MEMO";
- //
- // dataColumn69
- //
- this.dataColumn69.Caption = "项目类型";
- this.dataColumn69.ColumnName = "ITEM_STYLENAME";
- //
- // dataColumn70
- //
- this.dataColumn70.Caption = "有效标识";
- this.dataColumn70.ColumnName = "VALIDFLAGNAME";
- //
- // CZGLTable
- //
- this.CZGLTable.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn47,
- this.dataColumn52,
- this.dataColumn82,
- this.dataColumn80,
- this.dataColumn81,
- this.dataColumn83,
- this.dataColumn84});
- this.CZGLTable.TableName = "CZGLTable";
- //
- // dataColumn47
- //
- this.dataColumn47.Caption = "材质检验项代码";
- this.dataColumn47.ColumnName = "PHY_CODE";
- //
- // dataColumn52
- //
- this.dataColumn52.Caption = "检验项";
- this.dataColumn52.ColumnName = "PHY_NAME";
- //
- // dataColumn82
- //
- this.dataColumn82.Caption = "数目";
- this.dataColumn82.ColumnName = "COUNT1";
- this.dataColumn82.DataType = typeof(decimal);
- //
- // dataColumn80
- //
- this.dataColumn80.Caption = "检验大项代码";
- this.dataColumn80.ColumnName = "PHY_TYPE";
- //
- // dataColumn81
- //
- this.dataColumn81.Caption = "试样组代码";
- this.dataColumn81.ColumnName = "PHY_TYPE_C";
- //
- // dataColumn83
- //
- this.dataColumn83.Caption = "检验大项";
- this.dataColumn83.ColumnName = "PHY_TYPE_NAME";
- //
- // dataColumn84
- //
- this.dataColumn84.Caption = "试样组";
- this.dataColumn84.ColumnName = "PHY_TYPE_NAME_C";
- //
- // WDTable
- //
- this.WDTable.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn49,
- this.dataColumn50,
- this.dataColumn53,
- this.dataColumn54,
- this.dataColumn55,
- this.dataColumn56,
- this.dataColumn57,
- this.dataColumn58,
- this.dataColumn59,
- this.dataColumn60,
- this.dataColumn61,
- this.dataColumn62,
- this.dataColumn63,
- this.dataColumn77,
- this.dataColumn78,
- this.dataColumn79,
- this.dataColumn48,
- this.dataColumn75,
- this.dataColumn76,
- this.dataColumn51,
- this.dataColumn90});
- this.WDTable.TableName = "WDTable";
- //
- // dataColumn49
- //
- this.dataColumn49.Caption = "试验尺寸代码";
- this.dataColumn49.ColumnName = "ITEM_CODE_C";
- //
- // dataColumn50
- //
- this.dataColumn50.Caption = "试验温度代码";
- this.dataColumn50.ColumnName = "ITEM_CODE_W";
- //
- // dataColumn53
- //
- this.dataColumn53.Caption = "创建人";
- this.dataColumn53.ColumnName = "CREATE_NAME";
- //
- // dataColumn54
- //
- this.dataColumn54.Caption = "创建时间";
- this.dataColumn54.ColumnName = "CREATE_TIME";
- //
- // dataColumn55
- //
- this.dataColumn55.Caption = "修改人";
- this.dataColumn55.ColumnName = "UPDATE_NAME";
- //
- // dataColumn56
- //
- this.dataColumn56.Caption = "修改时间";
- this.dataColumn56.ColumnName = "UPDATE_TIME";
- //
- // dataColumn57
- //
- this.dataColumn57.Caption = "作废人";
- this.dataColumn57.ColumnName = "DELETE_NAME";
- //
- // dataColumn58
- //
- this.dataColumn58.Caption = "作废时间";
- this.dataColumn58.ColumnName = "DELETE_TIME";
- //
- // dataColumn59
- //
- this.dataColumn59.Caption = "有效标志";
- this.dataColumn59.ColumnName = "VALIDFLAG";
- //
- // dataColumn60
- //
- this.dataColumn60.Caption = "有效标志";
- this.dataColumn60.ColumnName = "VALIDFLAGNAME";
- //
- // dataColumn61
- //
- this.dataColumn61.Caption = "备注";
- this.dataColumn61.ColumnName = "MEMO";
- //
- // dataColumn62
- //
- this.dataColumn62.Caption = "试验方向代码";
- this.dataColumn62.ColumnName = "ITEM_CODE_F";
- //
- // dataColumn63
- //
- this.dataColumn63.Caption = "材质检验项代码";
- this.dataColumn63.ColumnName = "PHY_CODE";
- //
- // dataColumn77
- //
- this.dataColumn77.Caption = "材质检验项目名称";
- this.dataColumn77.ColumnName = "PHY_NAME";
- //
- // dataColumn78
- //
- this.dataColumn78.Caption = "材质大类";
- this.dataColumn78.ColumnName = "PHY_TYPE";
- //
- // dataColumn79
- //
- this.dataColumn79.Caption = "材质小类";
- this.dataColumn79.ColumnName = "PHY_TYPE_C";
- //
- // dataColumn48
- //
- this.dataColumn48.Caption = "试验方向";
- this.dataColumn48.ColumnName = "ITEM_CODE_F2";
- //
- // dataColumn75
- //
- this.dataColumn75.Caption = "试验尺寸";
- this.dataColumn75.ColumnName = "ITEM_CODE_C2";
- //
- // dataColumn76
- //
- this.dataColumn76.Caption = "试验温度";
- this.dataColumn76.ColumnName = "ITEM_CODE_W2";
- //
- // dataColumn51
- //
- this.dataColumn51.Caption = "CHK2";
- this.dataColumn51.ColumnName = "CHK2";
- this.dataColumn51.DataType = typeof(bool);
- //
- // dataColumn90
- //
- this.dataColumn90.ColumnName = "ROWID";
- //
- // dataTable5
- //
- this.dataTable5.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn91,
- this.dataColumn92,
- this.dataColumn93,
- this.dataColumn102,
- this.dataColumn103});
- this.dataTable5.TableName = "Table5";
- //
- // dataColumn91
- //
- this.dataColumn91.ColumnName = "PHY_CODE";
- //
- // dataColumn92
- //
- this.dataColumn92.Caption = "检验项";
- this.dataColumn92.ColumnName = "PHY_NAME";
- //
- // dataColumn93
- //
- this.dataColumn93.Caption = "试样组";
- this.dataColumn93.ColumnName = "PHY_NAME_C";
- //
- // dataColumn102
- //
- this.dataColumn102.Caption = "数目";
- this.dataColumn102.ColumnName = "CNT";
- //
- // dataColumn103
- //
- this.dataColumn103.Caption = "检验大项";
- this.dataColumn103.ColumnName = "PHY_NAME_B";
- //
- // dataTable6
- //
- this.dataTable6.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn95,
- this.dataColumn96,
- this.dataColumn97,
- this.dataColumn98,
- this.dataColumn99,
- this.dataColumn100,
- this.dataColumn101,
- this.dataColumn105,
- this.dataColumn106,
- this.dataColumn110});
- this.dataTable6.TableName = "Table6";
- //
- // dataColumn95
- //
- this.dataColumn95.Caption = "试验温度";
- this.dataColumn95.ColumnName = "ITEM_CODE_W";
- //
- // dataColumn96
- //
- this.dataColumn96.Caption = "创建人";
- this.dataColumn96.ColumnName = "CREATE_NAME";
- //
- // dataColumn97
- //
- this.dataColumn97.Caption = "创建时间";
- this.dataColumn97.ColumnName = "CREATE_TIME";
- //
- // dataColumn98
- //
- this.dataColumn98.Caption = "修改时间";
- this.dataColumn98.ColumnName = "UPDATE_TIME";
- //
- // dataColumn99
- //
- this.dataColumn99.Caption = "修改人";
- this.dataColumn99.ColumnName = "UPDATE_NAME";
- //
- // dataColumn100
- //
- this.dataColumn100.Caption = "作废人";
- this.dataColumn100.ColumnName = "DELETE_NAME";
- //
- // dataColumn101
- //
- this.dataColumn101.Caption = "作废时间";
- this.dataColumn101.ColumnName = "DELETE_TIME";
- //
- // dataColumn105
- //
- this.dataColumn105.Caption = "试验条件";
- this.dataColumn105.ColumnName = "ITEM_CODE_W2";
- //
- // dataColumn106
- //
- this.dataColumn106.Caption = "有效标志";
- this.dataColumn106.ColumnName = "VALIDFLAG";
- //
- // dataColumn110
- //
- this.dataColumn110.ColumnName = "ITEM_CODE_P";
- //
- // ultraExpandableGroupBox1
- //
- this.ultraExpandableGroupBox1.Controls.Add(this.ultraExpandableGroupBoxPanel1);
- this.ultraExpandableGroupBox1.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.ultraExpandableGroupBox1.ExpandedSize = new System.Drawing.Size(1458, 76);
- this.ultraExpandableGroupBox1.Location = new System.Drawing.Point(0, 341);
- this.ultraExpandableGroupBox1.Margin = new System.Windows.Forms.Padding(4);
- this.ultraExpandableGroupBox1.Name = "ultraExpandableGroupBox1";
- this.ultraExpandableGroupBox1.Size = new System.Drawing.Size(1458, 76);
- this.ultraExpandableGroupBox1.TabIndex = 23;
- this.ultraExpandableGroupBox1.Text = "编辑区域";
- //
- // ultraExpandableGroupBoxPanel1
- //
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.panel5);
- this.ultraExpandableGroupBoxPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraExpandableGroupBoxPanel1.Location = new System.Drawing.Point(3, 21);
- this.ultraExpandableGroupBoxPanel1.Margin = new System.Windows.Forms.Padding(4);
- this.ultraExpandableGroupBoxPanel1.Name = "ultraExpandableGroupBoxPanel1";
- this.ultraExpandableGroupBoxPanel1.Size = new System.Drawing.Size(1452, 52);
- this.ultraExpandableGroupBoxPanel1.TabIndex = 0;
- //
- // panel5
- //
- this.panel5.Controls.Add(this.txtSampleCount);
- this.panel5.Controls.Add(this.ultraLabel3);
- this.panel5.Controls.Add(this.txtDept);
- this.panel5.Controls.Add(this.ultraLabel9);
- this.panel5.Controls.Add(this.txtMemo);
- this.panel5.Controls.Add(this.ultraLabel6);
- this.panel5.Controls.Add(this.txtPhyType);
- this.panel5.Controls.Add(this.ultraLabel4);
- this.panel5.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel5.Location = new System.Drawing.Point(0, 0);
- this.panel5.Margin = new System.Windows.Forms.Padding(4);
- this.panel5.Name = "panel5";
- this.panel5.Size = new System.Drawing.Size(1452, 52);
- this.panel5.TabIndex = 0;
- //
- // txtSampleCount
- //
- this.txtSampleCount.FormatString = "";
- this.txtSampleCount.Location = new System.Drawing.Point(1215, 13);
- this.txtSampleCount.Margin = new System.Windows.Forms.Padding(4);
- this.txtSampleCount.MaskInput = "nnn";
- this.txtSampleCount.MinValue = 0;
- this.txtSampleCount.Name = "txtSampleCount";
- this.txtSampleCount.Nullable = true;
- this.txtSampleCount.Size = new System.Drawing.Size(51, 24);
- this.txtSampleCount.TabIndex = 23;
- this.txtSampleCount.Visible = false;
- //
- // ultraLabel3
- //
- appearance15.TextHAlignAsString = "Center";
- appearance15.TextVAlignAsString = "Middle";
- this.ultraLabel3.Appearance = appearance15;
- this.ultraLabel3.AutoSize = true;
- this.ultraLabel3.Location = new System.Drawing.Point(1128, 18);
- this.ultraLabel3.Margin = new System.Windows.Forms.Padding(4);
- this.ultraLabel3.Name = "ultraLabel3";
- this.ultraLabel3.Size = new System.Drawing.Size(83, 19);
- this.ultraLabel3.TabIndex = 22;
- this.ultraLabel3.Text = "试验样条数";
- this.ultraLabel3.Visible = false;
- //
- // txtDept
- //
- editorButton2.Key = "select";
- editorButton2.Text = "选择";
- this.txtDept.ButtonsRight.Add(editorButton2);
- this.txtDept.Location = new System.Drawing.Point(375, 14);
- this.txtDept.Margin = new System.Windows.Forms.Padding(4);
- this.txtDept.MaxLength = 100;
- this.txtDept.Name = "txtDept";
- this.txtDept.ReadOnly = true;
- this.txtDept.Size = new System.Drawing.Size(395, 24);
- this.txtDept.TabIndex = 3;
- this.txtDept.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.txtDept_EditorButtonClick);
- //
- // ultraLabel9
- //
- appearance111.TextHAlignAsString = "Center";
- appearance111.TextVAlignAsString = "Middle";
- this.ultraLabel9.Appearance = appearance111;
- this.ultraLabel9.AutoSize = true;
- this.ultraLabel9.Location = new System.Drawing.Point(301, 17);
- this.ultraLabel9.Margin = new System.Windows.Forms.Padding(4);
- this.ultraLabel9.Name = "ultraLabel9";
- this.ultraLabel9.Size = new System.Drawing.Size(67, 19);
- this.ultraLabel9.TabIndex = 20;
- this.ultraLabel9.Text = "试验科室";
- //
- // txtMemo
- //
- this.txtMemo.Location = new System.Drawing.Point(824, 13);
- this.txtMemo.Margin = new System.Windows.Forms.Padding(4);
- this.txtMemo.MaxLength = 100;
- this.txtMemo.Name = "txtMemo";
- this.txtMemo.Size = new System.Drawing.Size(296, 24);
- this.txtMemo.TabIndex = 3;
- //
- // ultraLabel6
- //
- appearance59.TextHAlignAsString = "Center";
- appearance59.TextVAlignAsString = "Middle";
- this.ultraLabel6.Appearance = appearance59;
- this.ultraLabel6.AutoSize = true;
- this.ultraLabel6.Location = new System.Drawing.Point(783, 18);
- this.ultraLabel6.Margin = new System.Windows.Forms.Padding(4);
- this.ultraLabel6.Name = "ultraLabel6";
- this.ultraLabel6.Size = new System.Drawing.Size(36, 19);
- this.ultraLabel6.TabIndex = 20;
- this.ultraLabel6.Text = "备注";
- //
- // txtPhyType
- //
- this.txtPhyType.Location = new System.Drawing.Point(97, 14);
- this.txtPhyType.Margin = new System.Windows.Forms.Padding(4);
- this.txtPhyType.MaxLength = 50;
- this.txtPhyType.Name = "txtPhyType";
- this.txtPhyType.Size = new System.Drawing.Size(189, 24);
- this.txtPhyType.TabIndex = 1;
- //
- // ultraLabel4
- //
- appearance58.TextHAlignAsString = "Center";
- appearance58.TextVAlignAsString = "Middle";
- this.ultraLabel4.Appearance = appearance58;
- this.ultraLabel4.AutoSize = true;
- this.ultraLabel4.Location = new System.Drawing.Point(23, 17);
- this.ultraLabel4.Margin = new System.Windows.Forms.Padding(4);
- this.ultraLabel4.Name = "ultraLabel4";
- this.ultraLabel4.Size = new System.Drawing.Size(67, 19);
- this.ultraLabel4.TabIndex = 17;
- this.ultraLabel4.Text = "检验大项";
- //
- // panel2
- //
- this.panel2.Controls.Add(this.chkValid);
- this.panel2.Controls.Add(this.txtPhyTitle);
- this.panel2.Controls.Add(this.ultraLabel1);
- this.panel2.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel2.Location = new System.Drawing.Point(0, 0);
- this.panel2.Margin = new System.Windows.Forms.Padding(4);
- this.panel2.Name = "panel2";
- this.panel2.Size = new System.Drawing.Size(1458, 54);
- this.panel2.TabIndex = 22;
- //
- // chkValid
- //
- this.chkValid.Location = new System.Drawing.Point(279, 12);
- this.chkValid.Margin = new System.Windows.Forms.Padding(4);
- this.chkValid.Name = "chkValid";
- this.chkValid.Size = new System.Drawing.Size(95, 29);
- this.chkValid.TabIndex = 4;
- this.chkValid.Text = "包含无效";
- //
- // txtPhyTitle
- //
- this.txtPhyTitle.Location = new System.Drawing.Point(111, 14);
- this.txtPhyTitle.Margin = new System.Windows.Forms.Padding(4);
- this.txtPhyTitle.MaxLength = 50;
- this.txtPhyTitle.Name = "txtPhyTitle";
- this.txtPhyTitle.Size = new System.Drawing.Size(151, 24);
- this.txtPhyTitle.TabIndex = 1;
- //
- // ultraLabel1
- //
- appearance18.TextHAlignAsString = "Center";
- appearance18.TextVAlignAsString = "Middle";
- this.ultraLabel1.Appearance = appearance18;
- this.ultraLabel1.AutoSize = true;
- this.ultraLabel1.Location = new System.Drawing.Point(36, 17);
- this.ultraLabel1.Margin = new System.Windows.Forms.Padding(4);
- this.ultraLabel1.Name = "ultraLabel1";
- this.ultraLabel1.Size = new System.Drawing.Size(67, 19);
- this.ultraLabel1.TabIndex = 0;
- this.ultraLabel1.Text = "检验项目";
- //
- // ultraTabPageControl2
- //
- this.ultraTabPageControl2.Controls.Add(this.ultraGrid2);
- this.ultraTabPageControl2.Controls.Add(this.ultraExpandableGroupBox2);
- this.ultraTabPageControl2.Controls.Add(this.panel1);
- this.ultraTabPageControl2.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabPageControl2.Margin = new System.Windows.Forms.Padding(4);
- this.ultraTabPageControl2.Name = "ultraTabPageControl2";
- this.ultraTabPageControl2.Size = new System.Drawing.Size(1458, 417);
- //
- // ultraGrid2
- //
- this.ultraGrid2.DataMember = "Table2";
- this.ultraGrid2.DataSource = this.dataSet1;
- appearance138.BackColor = System.Drawing.SystemColors.Window;
- appearance138.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid2.DisplayLayout.Appearance = appearance138;
- ultraGridColumn17.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn17.Header.VisiblePosition = 0;
- ultraGridColumn17.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn17.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn17.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn17.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn18.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn18.Header.VisiblePosition = 1;
- ultraGridColumn18.RowLayoutColumnInfo.OriginX = 1;
- ultraGridColumn18.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn18.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn18.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn19.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn19.Header.VisiblePosition = 5;
- ultraGridColumn19.RowLayoutColumnInfo.OriginX = 8;
- ultraGridColumn19.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn19.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn19.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn20.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn20.Header.VisiblePosition = 6;
- ultraGridColumn20.RowLayoutColumnInfo.OriginX = 9;
- ultraGridColumn20.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn20.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn20.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn21.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn21.Header.VisiblePosition = 7;
- ultraGridColumn21.RowLayoutColumnInfo.OriginX = 10;
- ultraGridColumn21.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn21.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn21.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn22.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn22.Header.VisiblePosition = 8;
- ultraGridColumn22.RowLayoutColumnInfo.OriginX = 11;
- ultraGridColumn22.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn22.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn22.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn23.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn23.Header.VisiblePosition = 9;
- ultraGridColumn23.RowLayoutColumnInfo.OriginX = 12;
- ultraGridColumn23.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn23.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn23.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn24.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn24.Header.VisiblePosition = 10;
- ultraGridColumn24.RowLayoutColumnInfo.OriginX = 13;
- ultraGridColumn24.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn24.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn24.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn25.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn25.Header.VisiblePosition = 11;
- ultraGridColumn25.Hidden = true;
- ultraGridColumn25.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn25.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn26.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn26.Header.VisiblePosition = 4;
- ultraGridColumn26.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn26.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn26.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn26.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn27.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn27.Header.VisiblePosition = 2;
- ultraGridColumn27.Hidden = true;
- ultraGridColumn27.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn27.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn27.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn27.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn28.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn28.Header.VisiblePosition = 3;
- ultraGridColumn28.RowLayoutColumnInfo.OriginX = 7;
- ultraGridColumn28.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn28.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn28.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn29.Header.VisiblePosition = 12;
- ultraGridColumn29.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn29.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn29.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn29.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn30.Header.VisiblePosition = 13;
- ultraGridColumn30.Hidden = true;
- ultraGridColumn30.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn30.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn30.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn30.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn31.ButtonDisplayStyle = Infragistics.Win.UltraWinGrid.ButtonDisplayStyle.Always;
- ultraGridColumn31.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn31.EditorComponent = this.ultraTextEditor1;
- ultraGridColumn31.Header.VisiblePosition = 14;
- ultraGridColumn31.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn31.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn31.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn31.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn32.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn32.Header.VisiblePosition = 15;
- ultraGridColumn32.RowLayoutColumnInfo.OriginX = 5;
- ultraGridColumn32.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn32.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(59, 0);
- ultraGridColumn32.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn32.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn33.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn33.Header.VisiblePosition = 16;
- ultraGridColumn33.RowLayoutColumnInfo.OriginX = 3;
- ultraGridColumn33.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn33.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn33.RowLayoutColumnInfo.SpanY = 1;
- ultraGridBand2.Columns.AddRange(new object[] {
- ultraGridColumn17,
- ultraGridColumn18,
- ultraGridColumn19,
- ultraGridColumn20,
- ultraGridColumn21,
- ultraGridColumn22,
- ultraGridColumn23,
- ultraGridColumn24,
- ultraGridColumn25,
- ultraGridColumn26,
- ultraGridColumn27,
- ultraGridColumn28,
- ultraGridColumn29,
- ultraGridColumn30,
- ultraGridColumn31,
- ultraGridColumn32,
- ultraGridColumn33});
- ultraGridBand2.Override.SelectedAppearancesEnabled = Infragistics.Win.DefaultableBoolean.False;
- ultraGridBand2.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
- this.ultraGrid2.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
- this.ultraGrid2.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid2.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance139.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance139.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance139.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance139.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid2.DisplayLayout.GroupByBox.Appearance = appearance139;
- appearance140.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid2.DisplayLayout.GroupByBox.BandLabelAppearance = appearance140;
- this.ultraGrid2.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance141.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance141.BackColor2 = System.Drawing.SystemColors.Control;
- appearance141.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance141.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid2.DisplayLayout.GroupByBox.PromptAppearance = appearance141;
- this.ultraGrid2.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid2.DisplayLayout.MaxRowScrollRegions = 1;
- appearance143.BackColor = System.Drawing.SystemColors.Window;
- appearance143.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid2.DisplayLayout.Override.ActiveCellAppearance = appearance143;
- appearance144.BackColor = System.Drawing.SystemColors.Highlight;
- appearance144.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid2.DisplayLayout.Override.ActiveRowAppearance = appearance144;
- this.ultraGrid2.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid2.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid2.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance145.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid2.DisplayLayout.Override.CardAreaAppearance = appearance145;
- appearance146.BorderColor = System.Drawing.Color.Silver;
- appearance146.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid2.DisplayLayout.Override.CellAppearance = appearance146;
- this.ultraGrid2.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid2.DisplayLayout.Override.CellPadding = 0;
- appearance147.BackColor = System.Drawing.SystemColors.Control;
- appearance147.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance147.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance147.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance147.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid2.DisplayLayout.Override.GroupByRowAppearance = appearance147;
- appearance148.TextHAlignAsString = "Left";
- this.ultraGrid2.DisplayLayout.Override.HeaderAppearance = appearance148;
- this.ultraGrid2.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid2.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance149.BackColor = System.Drawing.SystemColors.Window;
- appearance149.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid2.DisplayLayout.Override.RowAppearance = appearance149;
- this.ultraGrid2.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance150.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid2.DisplayLayout.Override.TemplateAddRowAppearance = appearance150;
- this.ultraGrid2.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid2.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid2.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGrid2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraGrid2.Location = new System.Drawing.Point(0, 54);
- this.ultraGrid2.Margin = new System.Windows.Forms.Padding(4);
- this.ultraGrid2.Name = "ultraGrid2";
- this.ultraGrid2.Size = new System.Drawing.Size(1458, 285);
- this.ultraGrid2.TabIndex = 31;
- this.ultraGrid2.Text = "ultraGrid2";
- this.ultraGrid2.InitializeRow += new Infragistics.Win.UltraWinGrid.InitializeRowEventHandler(this.ultraGrid2_InitializeRow);
- this.ultraGrid2.AfterRowActivate += new System.EventHandler(this.ultraGrid2_AfterRowActivate);
- //
- // ultraExpandableGroupBox2
- //
- this.ultraExpandableGroupBox2.Controls.Add(this.ultraExpandableGroupBoxPanel2);
- this.ultraExpandableGroupBox2.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.ultraExpandableGroupBox2.ExpandedSize = new System.Drawing.Size(1458, 78);
- this.ultraExpandableGroupBox2.Location = new System.Drawing.Point(0, 339);
- this.ultraExpandableGroupBox2.Margin = new System.Windows.Forms.Padding(4);
- this.ultraExpandableGroupBox2.Name = "ultraExpandableGroupBox2";
- this.ultraExpandableGroupBox2.Size = new System.Drawing.Size(1458, 78);
- this.ultraExpandableGroupBox2.TabIndex = 29;
- this.ultraExpandableGroupBox2.Text = "编辑区域";
- //
- // ultraExpandableGroupBoxPanel2
- //
- this.ultraExpandableGroupBoxPanel2.Controls.Add(this.panel6);
- this.ultraExpandableGroupBoxPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraExpandableGroupBoxPanel2.Location = new System.Drawing.Point(3, 21);
- this.ultraExpandableGroupBoxPanel2.Margin = new System.Windows.Forms.Padding(4);
- this.ultraExpandableGroupBoxPanel2.Name = "ultraExpandableGroupBoxPanel2";
- this.ultraExpandableGroupBoxPanel2.Size = new System.Drawing.Size(1452, 54);
- this.ultraExpandableGroupBoxPanel2.TabIndex = 0;
- //
- // panel6
- //
- this.panel6.Controls.Add(this.ultraNumericEditor3);
- this.panel6.Controls.Add(this.ultraLabel19);
- this.panel6.Controls.Add(this.ultraNumericEditor1);
- this.panel6.Controls.Add(this.ultraLabel15);
- this.panel6.Controls.Add(this.ultraTextEditor1);
- this.panel6.Controls.Add(this.ultraLabel11);
- this.panel6.Controls.Add(this.cmbPhyMaxCode);
- this.panel6.Controls.Add(this.ultraLabel7);
- this.panel6.Controls.Add(this.txtMemoC);
- this.panel6.Controls.Add(this.ultraLabel8);
- this.panel6.Controls.Add(this.txtPhyTypeC);
- this.panel6.Controls.Add(this.ultraLabel10);
- this.panel6.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel6.Location = new System.Drawing.Point(0, 0);
- this.panel6.Margin = new System.Windows.Forms.Padding(4);
- this.panel6.Name = "panel6";
- this.panel6.Size = new System.Drawing.Size(1452, 54);
- this.panel6.TabIndex = 0;
- //
- // ultraNumericEditor3
- //
- this.ultraNumericEditor3.Location = new System.Drawing.Point(878, 14);
- this.ultraNumericEditor3.MaskInput = "nn";
- this.ultraNumericEditor3.Name = "ultraNumericEditor3";
- this.ultraNumericEditor3.Nullable = true;
- this.ultraNumericEditor3.Size = new System.Drawing.Size(37, 24);
- this.ultraNumericEditor3.TabIndex = 26;
- //
- // ultraLabel19
- //
- this.ultraLabel19.AutoSize = true;
- this.ultraLabel19.Location = new System.Drawing.Point(824, 18);
- this.ultraLabel19.Name = "ultraLabel19";
- this.ultraLabel19.Size = new System.Drawing.Size(52, 19);
- this.ultraLabel19.TabIndex = 25;
- this.ultraLabel19.Text = "样条数";
- //
- // ultraNumericEditor1
- //
- this.ultraNumericEditor1.Location = new System.Drawing.Point(964, 13);
- this.ultraNumericEditor1.MaskInput = "nnn";
- this.ultraNumericEditor1.Name = "ultraNumericEditor1";
- this.ultraNumericEditor1.Nullable = true;
- this.ultraNumericEditor1.Size = new System.Drawing.Size(61, 24);
- this.ultraNumericEditor1.TabIndex = 24;
- //
- // ultraLabel15
- //
- this.ultraLabel15.AutoSize = true;
- this.ultraLabel15.Location = new System.Drawing.Point(924, 18);
- this.ultraLabel15.Name = "ultraLabel15";
- this.ultraLabel15.Size = new System.Drawing.Size(36, 19);
- this.ultraLabel15.TabIndex = 23;
- this.ultraLabel15.Text = "序号";
- //
- // ultraLabel11
- //
- appearance70.TextHAlignAsString = "Center";
- appearance70.TextVAlignAsString = "Middle";
- this.ultraLabel11.Appearance = appearance70;
- this.ultraLabel11.AutoSize = true;
- this.ultraLabel11.Location = new System.Drawing.Point(496, 18);
- this.ultraLabel11.Margin = new System.Windows.Forms.Padding(4);
- this.ultraLabel11.Name = "ultraLabel11";
- this.ultraLabel11.Size = new System.Drawing.Size(67, 19);
- this.ultraLabel11.TabIndex = 22;
- this.ultraLabel11.Text = "试验科室";
- //
- // cmbPhyMaxCode
- //
- this.cmbPhyMaxCode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.cmbPhyMaxCode.FormattingEnabled = true;
- this.cmbPhyMaxCode.Location = new System.Drawing.Point(333, 15);
- this.cmbPhyMaxCode.Margin = new System.Windows.Forms.Padding(4);
- this.cmbPhyMaxCode.Name = "cmbPhyMaxCode";
- this.cmbPhyMaxCode.Size = new System.Drawing.Size(160, 23);
- this.cmbPhyMaxCode.TabIndex = 2;
- //
- // ultraLabel7
- //
- appearance106.TextHAlignAsString = "Center";
- appearance106.TextVAlignAsString = "Middle";
- this.ultraLabel7.Appearance = appearance106;
- this.ultraLabel7.AutoSize = true;
- this.ultraLabel7.Location = new System.Drawing.Point(260, 19);
- this.ultraLabel7.Margin = new System.Windows.Forms.Padding(4);
- this.ultraLabel7.Name = "ultraLabel7";
- this.ultraLabel7.Size = new System.Drawing.Size(67, 19);
- this.ultraLabel7.TabIndex = 16;
- this.ultraLabel7.Text = "检验大项";
- //
- // txtMemoC
- //
- this.txtMemoC.Location = new System.Drawing.Point(1083, 13);
- this.txtMemoC.Margin = new System.Windows.Forms.Padding(4);
- this.txtMemoC.MaxLength = 100;
- this.txtMemoC.Name = "txtMemoC";
- this.txtMemoC.Size = new System.Drawing.Size(216, 24);
- this.txtMemoC.TabIndex = 3;
- //
- // ultraLabel8
- //
- appearance104.TextHAlignAsString = "Center";
- appearance104.TextVAlignAsString = "Middle";
- this.ultraLabel8.Appearance = appearance104;
- this.ultraLabel8.AutoSize = true;
- this.ultraLabel8.Location = new System.Drawing.Point(1039, 17);
- this.ultraLabel8.Margin = new System.Windows.Forms.Padding(4);
- this.ultraLabel8.Name = "ultraLabel8";
- this.ultraLabel8.Size = new System.Drawing.Size(36, 19);
- this.ultraLabel8.TabIndex = 14;
- this.ultraLabel8.Text = "备注";
- //
- // txtPhyTypeC
- //
- this.txtPhyTypeC.Location = new System.Drawing.Point(64, 14);
- this.txtPhyTypeC.Margin = new System.Windows.Forms.Padding(4);
- this.txtPhyTypeC.MaxLength = 50;
- this.txtPhyTypeC.Name = "txtPhyTypeC";
- this.txtPhyTypeC.Size = new System.Drawing.Size(189, 24);
- this.txtPhyTypeC.TabIndex = 1;
- //
- // ultraLabel10
- //
- appearance96.TextHAlignAsString = "Center";
- appearance96.TextVAlignAsString = "Middle";
- this.ultraLabel10.Appearance = appearance96;
- this.ultraLabel10.AutoSize = true;
- this.ultraLabel10.Location = new System.Drawing.Point(7, 19);
- this.ultraLabel10.Margin = new System.Windows.Forms.Padding(4);
- this.ultraLabel10.Name = "ultraLabel10";
- this.ultraLabel10.Size = new System.Drawing.Size(52, 19);
- this.ultraLabel10.TabIndex = 12;
- this.ultraLabel10.Text = "试样组";
- //
- // panel1
- //
- this.panel1.Controls.Add(this.chkValidC);
- this.panel1.Controls.Add(this.txtPhyTitleC);
- this.panel1.Controls.Add(this.ultraLabel12);
- this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel1.Location = new System.Drawing.Point(0, 0);
- this.panel1.Margin = new System.Windows.Forms.Padding(4);
- this.panel1.Name = "panel1";
- this.panel1.Size = new System.Drawing.Size(1458, 54);
- this.panel1.TabIndex = 28;
- //
- // chkValidC
- //
- this.chkValidC.Location = new System.Drawing.Point(259, 13);
- this.chkValidC.Margin = new System.Windows.Forms.Padding(4);
- this.chkValidC.Name = "chkValidC";
- this.chkValidC.Size = new System.Drawing.Size(95, 29);
- this.chkValidC.TabIndex = 4;
- this.chkValidC.Text = "包含无效";
- //
- // txtPhyTitleC
- //
- this.txtPhyTitleC.Location = new System.Drawing.Point(83, 13);
- this.txtPhyTitleC.Margin = new System.Windows.Forms.Padding(4);
- this.txtPhyTitleC.MaxLength = 50;
- this.txtPhyTitleC.Name = "txtPhyTitleC";
- this.txtPhyTitleC.Size = new System.Drawing.Size(151, 24);
- this.txtPhyTitleC.TabIndex = 1;
- //
- // ultraLabel12
- //
- appearance108.TextHAlignAsString = "Center";
- appearance108.TextVAlignAsString = "Middle";
- this.ultraLabel12.Appearance = appearance108;
- this.ultraLabel12.AutoSize = true;
- this.ultraLabel12.Location = new System.Drawing.Point(27, 16);
- this.ultraLabel12.Margin = new System.Windows.Forms.Padding(4);
- this.ultraLabel12.Name = "ultraLabel12";
- this.ultraLabel12.Size = new System.Drawing.Size(52, 19);
- this.ultraLabel12.TabIndex = 0;
- this.ultraLabel12.Text = "试样组";
- //
- // ultraTabPageControl3
- //
- this.ultraTabPageControl3.Controls.Add(this.ultraGrid5);
- this.ultraTabPageControl3.Controls.Add(this.ultraExpandableGroupBox3);
- this.ultraTabPageControl3.Controls.Add(this.panel3);
- this.ultraTabPageControl3.Controls.Add(this.ultraGrid3);
- this.ultraTabPageControl3.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabPageControl3.Margin = new System.Windows.Forms.Padding(4);
- this.ultraTabPageControl3.Name = "ultraTabPageControl3";
- this.ultraTabPageControl3.Size = new System.Drawing.Size(1458, 417);
- //
- // ultraGrid5
- //
- this.ultraGrid5.DataMember = "Table3";
- this.ultraGrid5.DataSource = this.dataSet1;
- appearance1.BackColor = System.Drawing.SystemColors.Window;
- appearance1.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid5.DisplayLayout.Appearance = appearance1;
- ultraGridColumn34.Header.VisiblePosition = 0;
- ultraGridColumn34.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn34.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn34.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(78, 0);
- ultraGridColumn34.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn34.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn35.Header.VisiblePosition = 1;
- ultraGridColumn35.RowLayoutColumnInfo.OriginX = 3;
- ultraGridColumn35.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn35.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(198, 0);
- ultraGridColumn35.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn35.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn36.Header.VisiblePosition = 2;
- ultraGridColumn36.Hidden = true;
- ultraGridColumn36.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn36.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn36.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn36.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn37.Header.VisiblePosition = 3;
- ultraGridColumn37.Hidden = true;
- ultraGridColumn37.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn37.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn37.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn37.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn38.Header.VisiblePosition = 4;
- ultraGridColumn38.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn38.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn38.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(62, 0);
- ultraGridColumn38.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn38.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn39.Header.VisiblePosition = 7;
- ultraGridColumn39.RowLayoutColumnInfo.OriginX = 12;
- ultraGridColumn39.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn39.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(61, 0);
- ultraGridColumn39.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn39.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn40.Header.VisiblePosition = 8;
- ultraGridColumn40.RowLayoutColumnInfo.OriginX = 13;
- ultraGridColumn40.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn40.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(145, 0);
- ultraGridColumn40.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn40.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn41.Header.VisiblePosition = 9;
- ultraGridColumn41.RowLayoutColumnInfo.OriginX = 14;
- ultraGridColumn41.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn41.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(58, 0);
- ultraGridColumn41.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn41.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn42.Header.VisiblePosition = 10;
- ultraGridColumn42.RowLayoutColumnInfo.OriginX = 15;
- ultraGridColumn42.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn42.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(143, 0);
- ultraGridColumn42.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn42.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn43.Header.VisiblePosition = 11;
- ultraGridColumn43.RowLayoutColumnInfo.OriginX = 16;
- ultraGridColumn43.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn43.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(57, 0);
- ultraGridColumn43.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn43.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn44.Header.VisiblePosition = 12;
- ultraGridColumn44.RowLayoutColumnInfo.OriginX = 17;
- ultraGridColumn44.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn44.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(158, 0);
- ultraGridColumn44.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn44.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn45.Header.VisiblePosition = 13;
- ultraGridColumn45.Hidden = true;
- ultraGridColumn45.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn45.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn46.Header.VisiblePosition = 6;
- ultraGridColumn46.RowLayoutColumnInfo.OriginX = 11;
- ultraGridColumn46.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn46.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn46.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn47.Header.VisiblePosition = 5;
- ultraGridColumn47.RowLayoutColumnInfo.OriginX = 10;
- ultraGridColumn47.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn47.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(47, 0);
- ultraGridColumn47.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn47.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn48.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn48.Header.VisiblePosition = 14;
- ultraGridColumn48.RowLayoutColumnInfo.OriginX = 7;
- ultraGridColumn48.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn48.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(72, 0);
- ultraGridColumn48.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn48.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn49.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn49.Header.VisiblePosition = 15;
- ultraGridColumn49.RowLayoutColumnInfo.OriginX = 8;
- ultraGridColumn49.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn49.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(72, 0);
- ultraGridColumn49.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn49.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn50.Header.VisiblePosition = 16;
- ultraGridColumn50.RowLayoutColumnInfo.OriginX = 1;
- ultraGridColumn50.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn50.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn50.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn51.Header.VisiblePosition = 17;
- ultraGridColumn51.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn51.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn51.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(170, 0);
- ultraGridColumn51.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn51.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn52.Header.VisiblePosition = 18;
- ultraGridColumn52.Hidden = true;
- ultraGridColumn52.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn52.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn52.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn52.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn53.Header.VisiblePosition = 19;
- ultraGridColumn53.RowLayoutColumnInfo.OriginX = 9;
- ultraGridColumn53.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn53.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn53.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn54.Header.VisiblePosition = 20;
- ultraGridColumn54.RowLayoutColumnInfo.OriginX = 5;
- ultraGridColumn54.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn54.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(57, 0);
- ultraGridColumn54.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn54.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn55.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn55.Header.VisiblePosition = 21;
- ultraGridColumn55.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn55.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn55.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(97, 0);
- ultraGridColumn55.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn55.RowLayoutColumnInfo.SpanY = 1;
- ultraGridBand3.Columns.AddRange(new object[] {
- ultraGridColumn34,
- ultraGridColumn35,
- ultraGridColumn36,
- ultraGridColumn37,
- ultraGridColumn38,
- ultraGridColumn39,
- ultraGridColumn40,
- ultraGridColumn41,
- ultraGridColumn42,
- ultraGridColumn43,
- ultraGridColumn44,
- ultraGridColumn45,
- ultraGridColumn46,
- ultraGridColumn47,
- ultraGridColumn48,
- ultraGridColumn49,
- ultraGridColumn50,
- ultraGridColumn51,
- ultraGridColumn52,
- ultraGridColumn53,
- ultraGridColumn54,
- ultraGridColumn55});
- ultraGridBand3.Override.SelectedAppearancesEnabled = Infragistics.Win.DefaultableBoolean.False;
- ultraGridBand3.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
- this.ultraGrid5.DisplayLayout.BandsSerializer.Add(ultraGridBand3);
- this.ultraGrid5.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid5.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance2.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance2.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance2.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance2.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid5.DisplayLayout.GroupByBox.Appearance = appearance2;
- appearance3.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid5.DisplayLayout.GroupByBox.BandLabelAppearance = appearance3;
- this.ultraGrid5.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance4.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance4.BackColor2 = System.Drawing.SystemColors.Control;
- appearance4.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance4.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid5.DisplayLayout.GroupByBox.PromptAppearance = appearance4;
- this.ultraGrid5.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid5.DisplayLayout.MaxRowScrollRegions = 1;
- appearance5.BackColor = System.Drawing.SystemColors.Window;
- appearance5.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid5.DisplayLayout.Override.ActiveCellAppearance = appearance5;
- appearance6.BackColor = System.Drawing.SystemColors.Highlight;
- appearance6.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid5.DisplayLayout.Override.ActiveRowAppearance = appearance6;
- this.ultraGrid5.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid5.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid5.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance7.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid5.DisplayLayout.Override.CardAreaAppearance = appearance7;
- appearance8.BorderColor = System.Drawing.Color.Silver;
- appearance8.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid5.DisplayLayout.Override.CellAppearance = appearance8;
- this.ultraGrid5.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid5.DisplayLayout.Override.CellPadding = 0;
- appearance9.BackColor = System.Drawing.SystemColors.Control;
- appearance9.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance9.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance9.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance9.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid5.DisplayLayout.Override.GroupByRowAppearance = appearance9;
- appearance10.TextHAlignAsString = "Left";
- this.ultraGrid5.DisplayLayout.Override.HeaderAppearance = appearance10;
- this.ultraGrid5.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid5.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance11.BackColor = System.Drawing.SystemColors.Window;
- appearance11.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid5.DisplayLayout.Override.RowAppearance = appearance11;
- this.ultraGrid5.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance12.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid5.DisplayLayout.Override.TemplateAddRowAppearance = appearance12;
- this.ultraGrid5.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid5.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid5.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGrid5.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraGrid5.Location = new System.Drawing.Point(0, 54);
- this.ultraGrid5.Margin = new System.Windows.Forms.Padding(4);
- this.ultraGrid5.Name = "ultraGrid5";
- this.ultraGrid5.Size = new System.Drawing.Size(1458, 264);
- this.ultraGrid5.TabIndex = 31;
- this.ultraGrid5.Text = "ultraGrid5";
- this.ultraGrid5.InitializeRow += new Infragistics.Win.UltraWinGrid.InitializeRowEventHandler(this.ultraGrid5_InitializeRow);
- this.ultraGrid5.AfterRowActivate += new System.EventHandler(this.ultraGrid5_AfterRowActivate);
- //
- // ultraExpandableGroupBox3
- //
- this.ultraExpandableGroupBox3.Controls.Add(this.ultraExpandableGroupBoxPanel3);
- this.ultraExpandableGroupBox3.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.ultraExpandableGroupBox3.ExpandedSize = new System.Drawing.Size(1458, 99);
- this.ultraExpandableGroupBox3.Location = new System.Drawing.Point(0, 318);
- this.ultraExpandableGroupBox3.Margin = new System.Windows.Forms.Padding(4);
- this.ultraExpandableGroupBox3.Name = "ultraExpandableGroupBox3";
- this.ultraExpandableGroupBox3.Size = new System.Drawing.Size(1458, 99);
- this.ultraExpandableGroupBox3.TabIndex = 29;
- this.ultraExpandableGroupBox3.Text = "编辑区域";
- //
- // ultraExpandableGroupBoxPanel3
- //
- this.ultraExpandableGroupBoxPanel3.Controls.Add(this.panel7);
- this.ultraExpandableGroupBoxPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraExpandableGroupBoxPanel3.Location = new System.Drawing.Point(3, 21);
- this.ultraExpandableGroupBoxPanel3.Margin = new System.Windows.Forms.Padding(4);
- this.ultraExpandableGroupBoxPanel3.Name = "ultraExpandableGroupBoxPanel3";
- this.ultraExpandableGroupBoxPanel3.Size = new System.Drawing.Size(1452, 75);
- this.ultraExpandableGroupBoxPanel3.TabIndex = 0;
- //
- // panel7
- //
- this.panel7.Controls.Add(this.ultraNumericEditor2);
- this.panel7.Controls.Add(this.ultraLabel17);
- this.panel7.Controls.Add(this.ultraLabel5);
- this.panel7.Controls.Add(this.txtStation);
- this.panel7.Controls.Add(this.cmbPhyProjectTypeC);
- this.panel7.Controls.Add(this.numHour_Test);
- this.panel7.Controls.Add(this.numHour_Ready);
- this.panel7.Controls.Add(this.label2);
- this.panel7.Controls.Add(this.label1);
- this.panel7.Controls.Add(this.ultraLabel13);
- this.panel7.Controls.Add(this.txtPhyUnit);
- this.panel7.Controls.Add(this.ultraLabel2);
- this.panel7.Controls.Add(this.txtMemoCProject);
- this.panel7.Controls.Add(this.ultraLabel14);
- this.panel7.Controls.Add(this.txtPhyProjectName);
- this.panel7.Controls.Add(this.ultraLabel16);
- this.panel7.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel7.Location = new System.Drawing.Point(0, 0);
- this.panel7.Margin = new System.Windows.Forms.Padding(4);
- this.panel7.Name = "panel7";
- this.panel7.Size = new System.Drawing.Size(1452, 75);
- this.panel7.TabIndex = 0;
- //
- // ultraNumericEditor2
- //
- this.ultraNumericEditor2.Location = new System.Drawing.Point(578, 40);
- this.ultraNumericEditor2.MaskInput = "nnn";
- this.ultraNumericEditor2.Name = "ultraNumericEditor2";
- this.ultraNumericEditor2.Nullable = true;
- this.ultraNumericEditor2.Size = new System.Drawing.Size(61, 24);
- this.ultraNumericEditor2.TabIndex = 32;
- //
- // ultraLabel17
- //
- this.ultraLabel17.AutoSize = true;
- this.ultraLabel17.Location = new System.Drawing.Point(536, 45);
- this.ultraLabel17.Name = "ultraLabel17";
- this.ultraLabel17.Size = new System.Drawing.Size(36, 19);
- this.ultraLabel17.TabIndex = 31;
- this.ultraLabel17.Text = "序号";
- //
- // ultraLabel5
- //
- this.ultraLabel5.AutoSize = true;
- this.ultraLabel5.Location = new System.Drawing.Point(728, 12);
- this.ultraLabel5.Margin = new System.Windows.Forms.Padding(4);
- this.ultraLabel5.Name = "ultraLabel5";
- this.ultraLabel5.Size = new System.Drawing.Size(52, 19);
- this.ultraLabel5.TabIndex = 30;
- this.ultraLabel5.Text = "工序点";
- //
- // txtStation
- //
- editorButton3.Text = "选择";
- this.txtStation.ButtonsRight.Add(editorButton3);
- this.txtStation.Location = new System.Drawing.Point(784, 9);
- this.txtStation.Margin = new System.Windows.Forms.Padding(4);
- this.txtStation.Name = "txtStation";
- this.txtStation.ReadOnly = true;
- this.txtStation.Size = new System.Drawing.Size(203, 24);
- this.txtStation.TabIndex = 29;
- this.txtStation.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.ultraTextEditor1_EditorButtonClick);
- //
- // cmbPhyProjectTypeC
- //
- this.cmbPhyProjectTypeC.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.cmbPhyProjectTypeC.FormattingEnabled = true;
- this.cmbPhyProjectTypeC.Location = new System.Drawing.Point(84, 41);
- this.cmbPhyProjectTypeC.Margin = new System.Windows.Forms.Padding(4);
- this.cmbPhyProjectTypeC.Name = "cmbPhyProjectTypeC";
- this.cmbPhyProjectTypeC.Size = new System.Drawing.Size(188, 23);
- this.cmbPhyProjectTypeC.TabIndex = 4;
- //
- // numHour_Test
- //
- this.numHour_Test.AlwaysInEditMode = true;
- this.numHour_Test.Location = new System.Drawing.Point(420, 40);
- this.numHour_Test.Margin = new System.Windows.Forms.Padding(4);
- this.numHour_Test.MinValue = 0;
- this.numHour_Test.Name = "numHour_Test";
- this.numHour_Test.Size = new System.Drawing.Size(89, 24);
- this.numHour_Test.TabIndex = 5;
- //
- // numHour_Ready
- //
- this.numHour_Ready.AlwaysInEditMode = true;
- this.numHour_Ready.Location = new System.Drawing.Point(420, 8);
- this.numHour_Ready.Margin = new System.Windows.Forms.Padding(4);
- this.numHour_Ready.MaskInput = "nnnnnnnnn";
- this.numHour_Ready.MinValue = 0;
- this.numHour_Ready.Name = "numHour_Ready";
- this.numHour_Ready.Size = new System.Drawing.Size(89, 24);
- this.numHour_Ready.TabIndex = 2;
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.Location = new System.Drawing.Point(287, 45);
- this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(120, 15);
- this.label2.TabIndex = 28;
- this.label2.Text = "试验时间(小时)";
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Location = new System.Drawing.Point(281, 12);
- this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(127, 15);
- this.label1.TabIndex = 26;
- this.label1.Text = "准备时间(小时)";
- //
- // ultraLabel13
- //
- appearance121.TextHAlignAsString = "Center";
- appearance121.TextVAlignAsString = "Middle";
- this.ultraLabel13.Appearance = appearance121;
- this.ultraLabel13.AutoSize = true;
- this.ultraLabel13.Location = new System.Drawing.Point(23, 42);
- this.ultraLabel13.Margin = new System.Windows.Forms.Padding(4);
- this.ultraLabel13.Name = "ultraLabel13";
- this.ultraLabel13.Size = new System.Drawing.Size(52, 19);
- this.ultraLabel13.TabIndex = 23;
- this.ultraLabel13.Text = "试样组";
- //
- // txtPhyUnit
- //
- this.txtPhyUnit.Location = new System.Drawing.Point(578, 9);
- this.txtPhyUnit.Margin = new System.Windows.Forms.Padding(4);
- this.txtPhyUnit.MaxLength = 5;
- this.txtPhyUnit.Name = "txtPhyUnit";
- this.txtPhyUnit.Size = new System.Drawing.Size(125, 24);
- this.txtPhyUnit.TabIndex = 3;
- //
- // ultraLabel2
- //
- appearance122.TextHAlignAsString = "Center";
- appearance122.TextVAlignAsString = "Middle";
- this.ultraLabel2.Appearance = appearance122;
- this.ultraLabel2.AutoSize = true;
- this.ultraLabel2.Location = new System.Drawing.Point(519, 13);
- this.ultraLabel2.Margin = new System.Windows.Forms.Padding(4);
- this.ultraLabel2.Name = "ultraLabel2";
- this.ultraLabel2.Size = new System.Drawing.Size(52, 19);
- this.ultraLabel2.TabIndex = 20;
- this.ultraLabel2.Text = "值单位";
- //
- // txtMemoCProject
- //
- this.txtMemoCProject.Location = new System.Drawing.Point(784, 42);
- this.txtMemoCProject.Margin = new System.Windows.Forms.Padding(4);
- this.txtMemoCProject.MaxLength = 100;
- this.txtMemoCProject.Name = "txtMemoCProject";
- this.txtMemoCProject.Size = new System.Drawing.Size(203, 24);
- this.txtMemoCProject.TabIndex = 6;
- //
- // ultraLabel14
- //
- appearance13.TextHAlignAsString = "Center";
- appearance13.TextVAlignAsString = "Middle";
- this.ultraLabel14.Appearance = appearance13;
- this.ultraLabel14.AutoSize = true;
- this.ultraLabel14.Location = new System.Drawing.Point(743, 44);
- this.ultraLabel14.Margin = new System.Windows.Forms.Padding(4);
- this.ultraLabel14.Name = "ultraLabel14";
- this.ultraLabel14.Size = new System.Drawing.Size(36, 19);
- this.ultraLabel14.TabIndex = 19;
- this.ultraLabel14.Text = "备注";
- //
- // txtPhyProjectName
- //
- this.txtPhyProjectName.Location = new System.Drawing.Point(84, 8);
- this.txtPhyProjectName.Margin = new System.Windows.Forms.Padding(4);
- this.txtPhyProjectName.MaxLength = 50;
- this.txtPhyProjectName.Name = "txtPhyProjectName";
- this.txtPhyProjectName.Size = new System.Drawing.Size(189, 24);
- this.txtPhyProjectName.TabIndex = 1;
- //
- // ultraLabel16
- //
- appearance124.TextHAlignAsString = "Center";
- appearance124.TextVAlignAsString = "Middle";
- this.ultraLabel16.Appearance = appearance124;
- this.ultraLabel16.AutoSize = true;
- this.ultraLabel16.Location = new System.Drawing.Point(21, 10);
- this.ultraLabel16.Margin = new System.Windows.Forms.Padding(4);
- this.ultraLabel16.Name = "ultraLabel16";
- this.ultraLabel16.Size = new System.Drawing.Size(52, 19);
- this.ultraLabel16.TabIndex = 16;
- this.ultraLabel16.Text = "检验项";
- //
- // panel3
- //
- this.panel3.Controls.Add(this.chkValidProject);
- this.panel3.Controls.Add(this.txtPhyProjectTitle);
- this.panel3.Controls.Add(this.ultraLabel18);
- this.panel3.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel3.Location = new System.Drawing.Point(0, 0);
- this.panel3.Margin = new System.Windows.Forms.Padding(4);
- this.panel3.Name = "panel3";
- this.panel3.Size = new System.Drawing.Size(1458, 54);
- this.panel3.TabIndex = 28;
- //
- // chkValidProject
- //
- this.chkValidProject.Location = new System.Drawing.Point(279, 12);
- this.chkValidProject.Margin = new System.Windows.Forms.Padding(4);
- this.chkValidProject.Name = "chkValidProject";
- this.chkValidProject.Size = new System.Drawing.Size(95, 29);
- this.chkValidProject.TabIndex = 4;
- this.chkValidProject.Text = "包含无效";
- //
- // txtPhyProjectTitle
- //
- this.txtPhyProjectTitle.Location = new System.Drawing.Point(83, 15);
- this.txtPhyProjectTitle.Margin = new System.Windows.Forms.Padding(4);
- this.txtPhyProjectTitle.MaxLength = 50;
- this.txtPhyProjectTitle.Name = "txtPhyProjectTitle";
- this.txtPhyProjectTitle.Size = new System.Drawing.Size(151, 24);
- this.txtPhyProjectTitle.TabIndex = 1;
- //
- // ultraLabel18
- //
- appearance126.TextHAlignAsString = "Center";
- appearance126.TextVAlignAsString = "Middle";
- this.ultraLabel18.Appearance = appearance126;
- this.ultraLabel18.AutoSize = true;
- this.ultraLabel18.Location = new System.Drawing.Point(21, 18);
- this.ultraLabel18.Margin = new System.Windows.Forms.Padding(4);
- this.ultraLabel18.Name = "ultraLabel18";
- this.ultraLabel18.Size = new System.Drawing.Size(52, 19);
- this.ultraLabel18.TabIndex = 0;
- this.ultraLabel18.Text = "检验项";
- //
- // ultraGrid3
- //
- appearance37.BackColor = System.Drawing.SystemColors.Window;
- appearance37.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid3.DisplayLayout.Appearance = appearance37;
- this.ultraGrid3.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid3.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance38.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance38.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance38.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance38.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid3.DisplayLayout.GroupByBox.Appearance = appearance38;
- appearance39.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid3.DisplayLayout.GroupByBox.BandLabelAppearance = appearance39;
- this.ultraGrid3.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance40.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance40.BackColor2 = System.Drawing.SystemColors.Control;
- appearance40.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance40.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid3.DisplayLayout.GroupByBox.PromptAppearance = appearance40;
- this.ultraGrid3.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid3.DisplayLayout.MaxRowScrollRegions = 1;
- appearance41.BackColor = System.Drawing.SystemColors.Window;
- appearance41.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid3.DisplayLayout.Override.ActiveCellAppearance = appearance41;
- appearance78.BackColor = System.Drawing.SystemColors.Highlight;
- appearance78.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid3.DisplayLayout.Override.ActiveRowAppearance = appearance78;
- this.ultraGrid3.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid3.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance54.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid3.DisplayLayout.Override.CardAreaAppearance = appearance54;
- appearance79.BorderColor = System.Drawing.Color.Silver;
- appearance79.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid3.DisplayLayout.Override.CellAppearance = appearance79;
- this.ultraGrid3.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid3.DisplayLayout.Override.CellPadding = 0;
- appearance80.BackColor = System.Drawing.SystemColors.Control;
- appearance80.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance80.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance80.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance80.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid3.DisplayLayout.Override.GroupByRowAppearance = appearance80;
- appearance81.TextHAlignAsString = "Left";
- this.ultraGrid3.DisplayLayout.Override.HeaderAppearance = appearance81;
- this.ultraGrid3.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid3.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance82.BackColor = System.Drawing.SystemColors.Window;
- appearance82.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid3.DisplayLayout.Override.RowAppearance = appearance82;
- this.ultraGrid3.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance83.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid3.DisplayLayout.Override.TemplateAddRowAppearance = appearance83;
- this.ultraGrid3.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid3.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid3.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGrid3.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid3.Location = new System.Drawing.Point(0, 0);
- this.ultraGrid3.Margin = new System.Windows.Forms.Padding(4);
- this.ultraGrid3.Name = "ultraGrid3";
- this.ultraGrid3.Size = new System.Drawing.Size(1458, 417);
- this.ultraGrid3.TabIndex = 0;
- this.ultraGrid3.Text = "ultraGrid3";
- //
- // ultraTabPageControl4
- //
- this.ultraTabPageControl4.Controls.Add(this.ultraGrid6);
- this.ultraTabPageControl4.Controls.Add(this.ultraExpandableGroupBox4);
- this.ultraTabPageControl4.Controls.Add(this.panel4);
- this.ultraTabPageControl4.Controls.Add(this.ultraGrid4);
- this.ultraTabPageControl4.Location = new System.Drawing.Point(1, 26);
- this.ultraTabPageControl4.Margin = new System.Windows.Forms.Padding(4);
- this.ultraTabPageControl4.Name = "ultraTabPageControl4";
- this.ultraTabPageControl4.Size = new System.Drawing.Size(1458, 417);
- //
- // ultraGrid6
- //
- this.ultraGrid6.DataMember = "Table4";
- this.ultraGrid6.DataSource = this.dataSet1;
- appearance14.BackColor = System.Drawing.SystemColors.Window;
- appearance14.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid6.DisplayLayout.Appearance = appearance14;
- ultraGridColumn56.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn56.Header.VisiblePosition = 1;
- ultraGridColumn56.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn56.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn56.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn56.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn57.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn57.Header.VisiblePosition = 2;
- ultraGridColumn57.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn57.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn57.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn57.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn58.Header.VisiblePosition = 3;
- ultraGridColumn58.Hidden = true;
- ultraGridColumn58.RowLayoutColumnInfo.OriginX = 8;
- ultraGridColumn58.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn58.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn58.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn59.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn59.Header.VisiblePosition = 4;
- ultraGridColumn59.RowLayoutColumnInfo.OriginX = 9;
- ultraGridColumn59.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn59.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn59.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn60.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn60.Header.VisiblePosition = 5;
- ultraGridColumn60.RowLayoutColumnInfo.OriginX = 11;
- ultraGridColumn60.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn60.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn60.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn61.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn61.Header.VisiblePosition = 6;
- ultraGridColumn61.RowLayoutColumnInfo.OriginX = 13;
- ultraGridColumn61.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn61.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn61.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn62.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn62.Header.VisiblePosition = 7;
- ultraGridColumn62.RowLayoutColumnInfo.OriginX = 15;
- ultraGridColumn62.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn62.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn62.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn63.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn63.Header.VisiblePosition = 8;
- ultraGridColumn63.RowLayoutColumnInfo.OriginX = 17;
- ultraGridColumn63.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn63.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn63.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn64.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn64.Header.VisiblePosition = 9;
- ultraGridColumn64.RowLayoutColumnInfo.OriginX = 19;
- ultraGridColumn64.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn64.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn64.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn65.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn65.Header.VisiblePosition = 10;
- ultraGridColumn65.Hidden = true;
- ultraGridColumn65.RowLayoutColumnInfo.OriginX = 22;
- ultraGridColumn65.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn65.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn65.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn66.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn66.Header.VisiblePosition = 11;
- ultraGridColumn66.RowLayoutColumnInfo.OriginX = 21;
- ultraGridColumn66.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn66.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn66.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn67.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn67.Header.VisiblePosition = 12;
- ultraGridColumn67.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn67.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn67.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn67.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn68.Header.VisiblePosition = 13;
- ultraGridColumn68.RowLayoutColumnInfo.OriginX = 7;
- ultraGridColumn68.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn68.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn68.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn69.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn69.Header.VisiblePosition = 14;
- ultraGridColumn69.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn69.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn69.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn69.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn70.DataType = typeof(bool);
- ultraGridColumn70.Header.Caption = "选择";
- ultraGridColumn70.Header.VisiblePosition = 0;
- ultraGridColumn70.Hidden = true;
- ultraGridColumn70.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn70.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn70.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn70.RowLayoutColumnInfo.SpanY = 2;
- ultraGridBand4.Columns.AddRange(new object[] {
- ultraGridColumn56,
- ultraGridColumn57,
- ultraGridColumn58,
- ultraGridColumn59,
- ultraGridColumn60,
- ultraGridColumn61,
- ultraGridColumn62,
- ultraGridColumn63,
- ultraGridColumn64,
- ultraGridColumn65,
- ultraGridColumn66,
- ultraGridColumn67,
- ultraGridColumn68,
- ultraGridColumn69,
- ultraGridColumn70});
- ultraGridBand4.Override.SelectedAppearancesEnabled = Infragistics.Win.DefaultableBoolean.False;
- ultraGridBand4.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
- this.ultraGrid6.DisplayLayout.BandsSerializer.Add(ultraGridBand4);
- this.ultraGrid6.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid6.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance16.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance16.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance16.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance16.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid6.DisplayLayout.GroupByBox.Appearance = appearance16;
- appearance17.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid6.DisplayLayout.GroupByBox.BandLabelAppearance = appearance17;
- this.ultraGrid6.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance19.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance19.BackColor2 = System.Drawing.SystemColors.Control;
- appearance19.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance19.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid6.DisplayLayout.GroupByBox.PromptAppearance = appearance19;
- this.ultraGrid6.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid6.DisplayLayout.MaxRowScrollRegions = 1;
- appearance20.BackColor = System.Drawing.SystemColors.Window;
- appearance20.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid6.DisplayLayout.Override.ActiveCellAppearance = appearance20;
- appearance21.BackColor = System.Drawing.SystemColors.Highlight;
- appearance21.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid6.DisplayLayout.Override.ActiveRowAppearance = appearance21;
- this.ultraGrid6.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid6.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid6.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance22.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid6.DisplayLayout.Override.CardAreaAppearance = appearance22;
- appearance23.BorderColor = System.Drawing.Color.Silver;
- appearance23.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid6.DisplayLayout.Override.CellAppearance = appearance23;
- this.ultraGrid6.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid6.DisplayLayout.Override.CellPadding = 0;
- appearance24.BackColor = System.Drawing.SystemColors.Control;
- appearance24.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance24.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance24.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance24.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid6.DisplayLayout.Override.GroupByRowAppearance = appearance24;
- appearance42.TextHAlignAsString = "Left";
- this.ultraGrid6.DisplayLayout.Override.HeaderAppearance = appearance42;
- this.ultraGrid6.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid6.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance43.BackColor = System.Drawing.SystemColors.Window;
- appearance43.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid6.DisplayLayout.Override.RowAppearance = appearance43;
- this.ultraGrid6.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance44.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid6.DisplayLayout.Override.TemplateAddRowAppearance = appearance44;
- this.ultraGrid6.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid6.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid6.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGrid6.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraGrid6.Location = new System.Drawing.Point(0, 54);
- this.ultraGrid6.Margin = new System.Windows.Forms.Padding(4);
- this.ultraGrid6.Name = "ultraGrid6";
- this.ultraGrid6.Size = new System.Drawing.Size(1458, 288);
- this.ultraGrid6.TabIndex = 30;
- this.ultraGrid6.Text = "ultraGrid6";
- this.ultraGrid6.InitializeRow += new Infragistics.Win.UltraWinGrid.InitializeRowEventHandler(this.ultraGrid6_InitializeRow);
- this.ultraGrid6.AfterRowActivate += new System.EventHandler(this.ultraGrid6_AfterRowActivate);
- //
- // ultraExpandableGroupBox4
- //
- this.ultraExpandableGroupBox4.Controls.Add(this.ultraExpandableGroupBoxPanel4);
- this.ultraExpandableGroupBox4.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.ultraExpandableGroupBox4.ExpandedSize = new System.Drawing.Size(1458, 75);
- this.ultraExpandableGroupBox4.Location = new System.Drawing.Point(0, 342);
- this.ultraExpandableGroupBox4.Margin = new System.Windows.Forms.Padding(4);
- this.ultraExpandableGroupBox4.Name = "ultraExpandableGroupBox4";
- this.ultraExpandableGroupBox4.Size = new System.Drawing.Size(1458, 75);
- this.ultraExpandableGroupBox4.TabIndex = 29;
- this.ultraExpandableGroupBox4.Text = "编辑区域";
- //
- // ultraExpandableGroupBoxPanel4
- //
- this.ultraExpandableGroupBoxPanel4.Controls.Add(this.panel8);
- this.ultraExpandableGroupBoxPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraExpandableGroupBoxPanel4.Location = new System.Drawing.Point(3, 21);
- this.ultraExpandableGroupBoxPanel4.Margin = new System.Windows.Forms.Padding(4);
- this.ultraExpandableGroupBoxPanel4.Name = "ultraExpandableGroupBoxPanel4";
- this.ultraExpandableGroupBoxPanel4.Size = new System.Drawing.Size(1452, 51);
- this.ultraExpandableGroupBoxPanel4.TabIndex = 0;
- //
- // panel8
- //
- this.panel8.Controls.Add(this.ultraNumericEditor4);
- this.panel8.Controls.Add(this.cmbItemType);
- this.panel8.Controls.Add(this.ultraLabel23);
- this.panel8.Controls.Add(this.txtMemoItem);
- this.panel8.Controls.Add(this.ultraLabel20);
- this.panel8.Controls.Add(this.ultraLabel21);
- this.panel8.Controls.Add(this.txtItemName);
- this.panel8.Controls.Add(this.ultraLabel22);
- this.panel8.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel8.Location = new System.Drawing.Point(0, 0);
- this.panel8.Margin = new System.Windows.Forms.Padding(4);
- this.panel8.Name = "panel8";
- this.panel8.Size = new System.Drawing.Size(1452, 51);
- this.panel8.TabIndex = 0;
- //
- // cmbItemType
- //
- this.cmbItemType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.cmbItemType.FormattingEnabled = true;
- this.cmbItemType.Location = new System.Drawing.Point(95, 10);
- this.cmbItemType.Margin = new System.Windows.Forms.Padding(4);
- this.cmbItemType.Name = "cmbItemType";
- this.cmbItemType.Size = new System.Drawing.Size(187, 23);
- this.cmbItemType.TabIndex = 1;
- //
- // txtMemoItem
- //
- this.txtMemoItem.Location = new System.Drawing.Point(725, 11);
- this.txtMemoItem.Margin = new System.Windows.Forms.Padding(4);
- this.txtMemoItem.MaxLength = 200;
- this.txtMemoItem.Name = "txtMemoItem";
- this.txtMemoItem.Size = new System.Drawing.Size(296, 24);
- this.txtMemoItem.TabIndex = 3;
- //
- // ultraLabel20
- //
- appearance112.TextHAlignAsString = "Center";
- appearance112.TextVAlignAsString = "Middle";
- this.ultraLabel20.Appearance = appearance112;
- this.ultraLabel20.Location = new System.Drawing.Point(682, 10);
- this.ultraLabel20.Margin = new System.Windows.Forms.Padding(4);
- this.ultraLabel20.Name = "ultraLabel20";
- this.ultraLabel20.Size = new System.Drawing.Size(43, 29);
- this.ultraLabel20.TabIndex = 21;
- this.ultraLabel20.Text = "备注";
- //
- // ultraLabel21
- //
- appearance67.TextHAlignAsString = "Center";
- appearance67.TextVAlignAsString = "Middle";
- this.ultraLabel21.Appearance = appearance67;
- this.ultraLabel21.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraLabel21.Location = new System.Drawing.Point(20, 9);
- this.ultraLabel21.Margin = new System.Windows.Forms.Padding(4);
- this.ultraLabel21.Name = "ultraLabel21";
- this.ultraLabel21.Size = new System.Drawing.Size(73, 29);
- this.ultraLabel21.TabIndex = 20;
- this.ultraLabel21.Text = "项目类型";
- //
- // txtItemName
- //
- this.txtItemName.Location = new System.Drawing.Point(369, 10);
- this.txtItemName.Margin = new System.Windows.Forms.Padding(4);
- this.txtItemName.MaxLength = 50;
- this.txtItemName.Name = "txtItemName";
- this.txtItemName.Size = new System.Drawing.Size(189, 24);
- this.txtItemName.TabIndex = 2;
- //
- // ultraLabel22
- //
- appearance68.TextHAlignAsString = "Center";
- appearance68.TextVAlignAsString = "Middle";
- this.ultraLabel22.Appearance = appearance68;
- this.ultraLabel22.Location = new System.Drawing.Point(291, 10);
- this.ultraLabel22.Margin = new System.Windows.Forms.Padding(4);
- this.ultraLabel22.Name = "ultraLabel22";
- this.ultraLabel22.Size = new System.Drawing.Size(85, 29);
- this.ultraLabel22.TabIndex = 18;
- this.ultraLabel22.Text = "项目名称";
- //
- // panel4
- //
- this.panel4.Controls.Add(this.chkValidItem);
- this.panel4.Controls.Add(this.txtItemTitle);
- this.panel4.Controls.Add(this.ultraLabel24);
- this.panel4.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel4.Location = new System.Drawing.Point(0, 0);
- this.panel4.Margin = new System.Windows.Forms.Padding(4);
- this.panel4.Name = "panel4";
- this.panel4.Size = new System.Drawing.Size(1458, 54);
- this.panel4.TabIndex = 28;
- //
- // chkValidItem
- //
- this.chkValidItem.Location = new System.Drawing.Point(283, 14);
- this.chkValidItem.Margin = new System.Windows.Forms.Padding(4);
- this.chkValidItem.Name = "chkValidItem";
- this.chkValidItem.Size = new System.Drawing.Size(95, 29);
- this.chkValidItem.TabIndex = 4;
- this.chkValidItem.Text = "包含无效";
- //
- // txtItemTitle
- //
- this.txtItemTitle.Location = new System.Drawing.Point(111, 14);
- this.txtItemTitle.Margin = new System.Windows.Forms.Padding(4);
- this.txtItemTitle.MaxLength = 100;
- this.txtItemTitle.Name = "txtItemTitle";
- this.txtItemTitle.Size = new System.Drawing.Size(151, 24);
- this.txtItemTitle.TabIndex = 1;
- //
- // ultraLabel24
- //
- appearance71.TextHAlignAsString = "Center";
- appearance71.TextVAlignAsString = "Middle";
- this.ultraLabel24.Appearance = appearance71;
- this.ultraLabel24.Location = new System.Drawing.Point(29, 14);
- this.ultraLabel24.Margin = new System.Windows.Forms.Padding(4);
- this.ultraLabel24.Name = "ultraLabel24";
- this.ultraLabel24.Size = new System.Drawing.Size(84, 29);
- this.ultraLabel24.TabIndex = 0;
- this.ultraLabel24.Text = "项目名称";
- //
- // ultraGrid4
- //
- appearance25.BackColor = System.Drawing.SystemColors.Window;
- appearance25.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid4.DisplayLayout.Appearance = appearance25;
- this.ultraGrid4.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid4.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance26.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance26.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance26.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance26.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid4.DisplayLayout.GroupByBox.Appearance = appearance26;
- appearance27.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid4.DisplayLayout.GroupByBox.BandLabelAppearance = appearance27;
- this.ultraGrid4.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance28.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance28.BackColor2 = System.Drawing.SystemColors.Control;
- appearance28.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance28.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid4.DisplayLayout.GroupByBox.PromptAppearance = appearance28;
- this.ultraGrid4.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid4.DisplayLayout.MaxRowScrollRegions = 1;
- appearance29.BackColor = System.Drawing.SystemColors.Window;
- appearance29.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid4.DisplayLayout.Override.ActiveCellAppearance = appearance29;
- appearance30.BackColor = System.Drawing.SystemColors.Highlight;
- appearance30.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid4.DisplayLayout.Override.ActiveRowAppearance = appearance30;
- this.ultraGrid4.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid4.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance31.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid4.DisplayLayout.Override.CardAreaAppearance = appearance31;
- appearance32.BorderColor = System.Drawing.Color.Silver;
- appearance32.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid4.DisplayLayout.Override.CellAppearance = appearance32;
- this.ultraGrid4.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid4.DisplayLayout.Override.CellPadding = 0;
- appearance33.BackColor = System.Drawing.SystemColors.Control;
- appearance33.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance33.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance33.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance33.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid4.DisplayLayout.Override.GroupByRowAppearance = appearance33;
- appearance34.TextHAlignAsString = "Left";
- this.ultraGrid4.DisplayLayout.Override.HeaderAppearance = appearance34;
- this.ultraGrid4.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid4.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance35.BackColor = System.Drawing.SystemColors.Window;
- appearance35.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid4.DisplayLayout.Override.RowAppearance = appearance35;
- this.ultraGrid4.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance36.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid4.DisplayLayout.Override.TemplateAddRowAppearance = appearance36;
- this.ultraGrid4.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid4.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid4.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGrid4.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid4.Location = new System.Drawing.Point(0, 0);
- this.ultraGrid4.Margin = new System.Windows.Forms.Padding(4);
- this.ultraGrid4.Name = "ultraGrid4";
- this.ultraGrid4.Size = new System.Drawing.Size(1458, 417);
- this.ultraGrid4.TabIndex = 1;
- this.ultraGrid4.Text = "ultraGrid4";
- //
- // ultraTabPageControl5
- //
- this.ultraTabPageControl5.Controls.Add(this.splitContainer1);
- this.ultraTabPageControl5.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabPageControl5.Margin = new System.Windows.Forms.Padding(4);
- this.ultraTabPageControl5.Name = "ultraTabPageControl5";
- this.ultraTabPageControl5.Size = new System.Drawing.Size(1458, 417);
- //
- // splitContainer1
- //
- this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.splitContainer1.Location = new System.Drawing.Point(0, 0);
- this.splitContainer1.Margin = new System.Windows.Forms.Padding(4);
- this.splitContainer1.Name = "splitContainer1";
- //
- // splitContainer1.Panel1
- //
- this.splitContainer1.Panel1.Controls.Add(this.ultraCZGL);
- //
- // splitContainer1.Panel2
- //
- this.splitContainer1.Panel2.Controls.Add(this.cmbPhyC);
- this.splitContainer1.Panel2.Controls.Add(this.cmbPhyR);
- this.splitContainer1.Panel2.Controls.Add(this.cmbItem_W);
- this.splitContainer1.Panel2.Controls.Add(this.cmbItem_C);
- this.splitContainer1.Panel2.Controls.Add(this.cmbItem_F);
- this.splitContainer1.Panel2.Controls.Add(this.ultraWD);
- this.splitContainer1.Size = new System.Drawing.Size(1458, 417);
- this.splitContainer1.SplitterDistance = 569;
- this.splitContainer1.TabIndex = 33;
- //
- // ultraCZGL
- //
- this.ultraCZGL.DataMember = "CZGLTable";
- this.ultraCZGL.DataSource = this.dataSet1;
- appearance151.BackColor = System.Drawing.SystemColors.Window;
- appearance151.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraCZGL.DisplayLayout.Appearance = appearance151;
- ultraGridColumn71.Header.VisiblePosition = 0;
- ultraGridColumn71.Hidden = true;
- ultraGridColumn71.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn71.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn72.Header.VisiblePosition = 5;
- ultraGridColumn72.Hidden = true;
- ultraGridColumn72.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn72.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn72.Width = 136;
- ultraGridColumn73.Format = "";
- ultraGridColumn73.Header.VisiblePosition = 6;
- ultraGridColumn73.MaskInput = "";
- ultraGridColumn73.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn73.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn73.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(113, 0);
- ultraGridColumn73.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn73.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn73.Width = 78;
- ultraGridColumn74.Header.VisiblePosition = 1;
- ultraGridColumn74.Hidden = true;
- ultraGridColumn74.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn74.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn75.Header.VisiblePosition = 2;
- ultraGridColumn75.Hidden = true;
- ultraGridColumn75.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn75.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn76.Header.VisiblePosition = 3;
- ultraGridColumn76.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn76.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn76.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(154, 0);
- ultraGridColumn76.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn76.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn77.Header.VisiblePosition = 4;
- ultraGridColumn77.RowLayoutColumnInfo.OriginX = 1;
- ultraGridColumn77.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn77.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn77.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn77.Width = 170;
- ultraGridBand5.Columns.AddRange(new object[] {
- ultraGridColumn71,
- ultraGridColumn72,
- ultraGridColumn73,
- ultraGridColumn74,
- ultraGridColumn75,
- ultraGridColumn76,
- ultraGridColumn77});
- ultraGridBand5.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
- this.ultraCZGL.DisplayLayout.BandsSerializer.Add(ultraGridBand5);
- this.ultraCZGL.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraCZGL.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance152.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance152.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance152.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance152.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraCZGL.DisplayLayout.GroupByBox.Appearance = appearance152;
- appearance153.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraCZGL.DisplayLayout.GroupByBox.BandLabelAppearance = appearance153;
- this.ultraCZGL.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance154.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance154.BackColor2 = System.Drawing.SystemColors.Control;
- appearance154.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance154.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraCZGL.DisplayLayout.GroupByBox.PromptAppearance = appearance154;
- this.ultraCZGL.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraCZGL.DisplayLayout.MaxRowScrollRegions = 1;
- appearance155.BackColor = System.Drawing.SystemColors.Window;
- appearance155.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraCZGL.DisplayLayout.Override.ActiveCellAppearance = appearance155;
- appearance156.BackColor = System.Drawing.SystemColors.Highlight;
- appearance156.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraCZGL.DisplayLayout.Override.ActiveRowAppearance = appearance156;
- this.ultraCZGL.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
- this.ultraCZGL.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraCZGL.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance157.BackColor = System.Drawing.SystemColors.Window;
- this.ultraCZGL.DisplayLayout.Override.CardAreaAppearance = appearance157;
- appearance158.BorderColor = System.Drawing.Color.Silver;
- appearance158.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraCZGL.DisplayLayout.Override.CellAppearance = appearance158;
- this.ultraCZGL.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraCZGL.DisplayLayout.Override.CellPadding = 0;
- appearance159.BackColor = System.Drawing.SystemColors.Control;
- appearance159.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance159.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance159.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance159.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraCZGL.DisplayLayout.Override.GroupByRowAppearance = appearance159;
- appearance160.TextHAlignAsString = "Left";
- this.ultraCZGL.DisplayLayout.Override.HeaderAppearance = appearance160;
- this.ultraCZGL.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraCZGL.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance161.BackColor = System.Drawing.SystemColors.Window;
- appearance161.BorderColor = System.Drawing.Color.Silver;
- this.ultraCZGL.DisplayLayout.Override.RowAppearance = appearance161;
- this.ultraCZGL.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance162.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraCZGL.DisplayLayout.Override.TemplateAddRowAppearance = appearance162;
- this.ultraCZGL.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraCZGL.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraCZGL.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraCZGL.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraCZGL.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraCZGL.Location = new System.Drawing.Point(0, 0);
- this.ultraCZGL.Margin = new System.Windows.Forms.Padding(4);
- this.ultraCZGL.Name = "ultraCZGL";
- this.ultraCZGL.Size = new System.Drawing.Size(569, 417);
- this.ultraCZGL.TabIndex = 31;
- this.ultraCZGL.Text = "ultraGrid7";
- this.ultraCZGL.AfterRowActivate += new System.EventHandler(this.ultraCZGL_AfterRowActivate);
- this.ultraCZGL.AfterSortChange += new Infragistics.Win.UltraWinGrid.BandEventHandler(this.ultraCZGL_AfterSortChange);
- //
- // cmbPhyC
- //
- this.cmbPhyC.Location = new System.Drawing.Point(695, 284);
- this.cmbPhyC.Margin = new System.Windows.Forms.Padding(4);
- this.cmbPhyC.Name = "cmbPhyC";
- this.cmbPhyC.Size = new System.Drawing.Size(133, 24);
- this.cmbPhyC.TabIndex = 37;
- this.cmbPhyC.Text = "ultraComboEditor2";
- this.cmbPhyC.Visible = false;
- //
- // cmbPhyR
- //
- this.cmbPhyR.Location = new System.Drawing.Point(529, 285);
- this.cmbPhyR.Margin = new System.Windows.Forms.Padding(4);
- this.cmbPhyR.Name = "cmbPhyR";
- this.cmbPhyR.Size = new System.Drawing.Size(141, 24);
- this.cmbPhyR.TabIndex = 36;
- this.cmbPhyR.Text = "ultraComboEditor1";
- this.cmbPhyR.Visible = false;
- //
- // cmbItem_W
- //
- this.cmbItem_W.Location = new System.Drawing.Point(355, 284);
- this.cmbItem_W.Margin = new System.Windows.Forms.Padding(4);
- this.cmbItem_W.Name = "cmbItem_W";
- this.cmbItem_W.Size = new System.Drawing.Size(129, 24);
- this.cmbItem_W.TabIndex = 35;
- this.cmbItem_W.Text = "ultraComboEditor3";
- this.cmbItem_W.Visible = false;
- //
- // cmbItem_F
- //
- this.cmbItem_F.Location = new System.Drawing.Point(44, 286);
- this.cmbItem_F.Margin = new System.Windows.Forms.Padding(4);
- this.cmbItem_F.Name = "cmbItem_F";
- this.cmbItem_F.Size = new System.Drawing.Size(116, 24);
- this.cmbItem_F.TabIndex = 33;
- this.cmbItem_F.Text = "ultraComboEditor1";
- this.cmbItem_F.Visible = false;
- //
- // ultraWD
- //
- this.ultraWD.DataMember = "WDTable";
- this.ultraWD.DataSource = this.dataSet1;
- appearance76.BackColor = System.Drawing.SystemColors.Window;
- appearance76.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraWD.DisplayLayout.Appearance = appearance76;
- ultraGridColumn78.Header.VisiblePosition = 0;
- ultraGridColumn78.Hidden = true;
- ultraGridColumn78.RowLayoutColumnInfo.OriginX = 14;
- ultraGridColumn78.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn78.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn78.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn79.Header.VisiblePosition = 1;
- ultraGridColumn79.Hidden = true;
- ultraGridColumn79.RowLayoutColumnInfo.OriginX = 16;
- ultraGridColumn79.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn79.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn79.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn80.Header.VisiblePosition = 2;
- ultraGridColumn80.RowLayoutColumnInfo.OriginX = 12;
- ultraGridColumn80.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn80.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(71, 0);
- ultraGridColumn80.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn80.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn81.Header.VisiblePosition = 3;
- ultraGridColumn81.RowLayoutColumnInfo.OriginX = 14;
- ultraGridColumn81.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn81.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(176, 0);
- ultraGridColumn81.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn81.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn82.Header.VisiblePosition = 4;
- ultraGridColumn82.RowLayoutColumnInfo.OriginX = 16;
- ultraGridColumn82.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn82.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(61, 0);
- ultraGridColumn82.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn82.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn83.Header.VisiblePosition = 5;
- ultraGridColumn83.RowLayoutColumnInfo.OriginX = 18;
- ultraGridColumn83.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn83.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(169, 0);
- ultraGridColumn83.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn83.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn84.Header.VisiblePosition = 6;
- ultraGridColumn84.RowLayoutColumnInfo.OriginX = 20;
- ultraGridColumn84.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn84.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(63, 0);
- ultraGridColumn84.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn84.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn85.Header.VisiblePosition = 7;
- ultraGridColumn85.RowLayoutColumnInfo.OriginX = 22;
- ultraGridColumn85.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn85.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(172, 0);
- ultraGridColumn85.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn85.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn86.Header.VisiblePosition = 8;
- ultraGridColumn86.Hidden = true;
- ultraGridColumn86.RowLayoutColumnInfo.OriginX = 22;
- ultraGridColumn86.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn86.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn86.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn87.Header.VisiblePosition = 9;
- ultraGridColumn87.RowLayoutColumnInfo.OriginX = 8;
- ultraGridColumn87.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn87.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(53, 0);
- ultraGridColumn87.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn87.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn88.Header.VisiblePosition = 10;
- ultraGridColumn88.RowLayoutColumnInfo.OriginX = 10;
- ultraGridColumn88.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn88.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn88.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn89.Header.VisiblePosition = 12;
- ultraGridColumn89.Hidden = true;
- ultraGridColumn89.RowLayoutColumnInfo.OriginX = 18;
- ultraGridColumn89.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn89.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn89.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn90.Header.VisiblePosition = 11;
- ultraGridColumn90.Hidden = true;
- ultraGridColumn90.RowLayoutColumnInfo.OriginX = 12;
- ultraGridColumn90.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn90.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn90.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn91.Header.VisiblePosition = 14;
- ultraGridColumn91.Hidden = true;
- ultraGridColumn91.RowLayoutColumnInfo.OriginX = 34;
- ultraGridColumn91.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn91.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn91.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn92.Header.VisiblePosition = 13;
- ultraGridColumn92.Hidden = true;
- ultraGridColumn92.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn92.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn92.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn92.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn93.Header.VisiblePosition = 15;
- ultraGridColumn93.Hidden = true;
- ultraGridColumn93.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn93.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn93.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn93.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn94.Header.VisiblePosition = 16;
- ultraGridColumn94.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn94.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn94.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn94.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn95.EditorComponent = this.cmbItem_C;
- ultraGridColumn95.Header.VisiblePosition = 17;
- ultraGridColumn95.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn95.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn95.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn95.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn96.Header.VisiblePosition = 18;
- ultraGridColumn96.Hidden = true;
- ultraGridColumn96.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn96.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn96.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn96.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn97.Header.VisiblePosition = 19;
- ultraGridColumn97.Hidden = true;
- ultraGridColumn98.Header.VisiblePosition = 20;
- ultraGridColumn98.Hidden = true;
- ultraGridColumn99.DataType = typeof(bool);
- ultraGridColumn99.Header.Caption = "选择";
- ultraGridColumn99.Header.CheckBoxVisibility = Infragistics.Win.UltraWinGrid.HeaderCheckBoxVisibility.WhenUsingCheckEditor;
- ultraGridColumn99.Header.VisiblePosition = 21;
- ultraGridColumn99.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn99.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn99.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(62, 0);
- ultraGridColumn99.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn99.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn99.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.CheckBox;
- ultraGridBand6.Columns.AddRange(new object[] {
- ultraGridColumn78,
- ultraGridColumn79,
- ultraGridColumn80,
- ultraGridColumn81,
- ultraGridColumn82,
- ultraGridColumn83,
- ultraGridColumn84,
- ultraGridColumn85,
- ultraGridColumn86,
- ultraGridColumn87,
- ultraGridColumn88,
- ultraGridColumn89,
- ultraGridColumn90,
- ultraGridColumn91,
- ultraGridColumn92,
- ultraGridColumn93,
- ultraGridColumn94,
- ultraGridColumn95,
- ultraGridColumn96,
- ultraGridColumn97,
- ultraGridColumn98,
- ultraGridColumn99});
- ultraGridBand6.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
- this.ultraWD.DisplayLayout.BandsSerializer.Add(ultraGridBand6);
- this.ultraWD.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraWD.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance77.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance77.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance77.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance77.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraWD.DisplayLayout.GroupByBox.Appearance = appearance77;
- appearance84.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraWD.DisplayLayout.GroupByBox.BandLabelAppearance = appearance84;
- this.ultraWD.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance85.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance85.BackColor2 = System.Drawing.SystemColors.Control;
- appearance85.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance85.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraWD.DisplayLayout.GroupByBox.PromptAppearance = appearance85;
- this.ultraWD.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraWD.DisplayLayout.MaxRowScrollRegions = 1;
- appearance86.BackColor = System.Drawing.SystemColors.Window;
- appearance86.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraWD.DisplayLayout.Override.ActiveCellAppearance = appearance86;
- appearance87.BackColor = System.Drawing.SystemColors.Highlight;
- appearance87.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraWD.DisplayLayout.Override.ActiveRowAppearance = appearance87;
- this.ultraWD.DisplayLayout.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.TemplateOnBottom;
- this.ultraWD.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraWD.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance88.BackColor = System.Drawing.SystemColors.Window;
- this.ultraWD.DisplayLayout.Override.CardAreaAppearance = appearance88;
- appearance89.BorderColor = System.Drawing.Color.Silver;
- appearance89.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraWD.DisplayLayout.Override.CellAppearance = appearance89;
- this.ultraWD.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraWD.DisplayLayout.Override.CellPadding = 0;
- appearance90.BackColor = System.Drawing.SystemColors.Control;
- appearance90.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance90.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance90.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance90.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraWD.DisplayLayout.Override.GroupByRowAppearance = appearance90;
- appearance91.TextHAlignAsString = "Left";
- this.ultraWD.DisplayLayout.Override.HeaderAppearance = appearance91;
- this.ultraWD.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraWD.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance92.BackColor = System.Drawing.SystemColors.Window;
- appearance92.BorderColor = System.Drawing.Color.Silver;
- this.ultraWD.DisplayLayout.Override.RowAppearance = appearance92;
- this.ultraWD.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance93.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraWD.DisplayLayout.Override.TemplateAddRowAppearance = appearance93;
- this.ultraWD.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraWD.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraWD.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraWD.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraWD.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraWD.Location = new System.Drawing.Point(0, 0);
- this.ultraWD.Margin = new System.Windows.Forms.Padding(4);
- this.ultraWD.Name = "ultraWD";
- this.ultraWD.Size = new System.Drawing.Size(885, 417);
- this.ultraWD.TabIndex = 32;
- this.ultraWD.Text = "ultraGrid8";
- this.ultraWD.InitializeRow += new Infragistics.Win.UltraWinGrid.InitializeRowEventHandler(this.ultraWD_InitializeRow);
- this.ultraWD.AfterRowInsert += new Infragistics.Win.UltraWinGrid.RowEventHandler(this.ultraWD_AfterRowInsert);
- this.ultraWD.CellChange += new Infragistics.Win.UltraWinGrid.CellEventHandler(this.ultraWD_CellChange);
- this.ultraWD.BeforeRowInsert += new Infragistics.Win.UltraWinGrid.BeforeRowInsertEventHandler(this.ultraWD_BeforeRowInsert);
- //
- // ultraTabPageControl6
- //
- this.ultraTabPageControl6.Controls.Add(this.splitContainer2);
- this.ultraTabPageControl6.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabPageControl6.Name = "ultraTabPageControl6";
- this.ultraTabPageControl6.Size = new System.Drawing.Size(1458, 417);
- //
- // splitContainer2
- //
- this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.splitContainer2.Location = new System.Drawing.Point(0, 0);
- this.splitContainer2.Name = "splitContainer2";
- //
- // splitContainer2.Panel1
- //
- this.splitContainer2.Panel1.Controls.Add(this.ultraGrid7);
- //
- // splitContainer2.Panel2
- //
- this.splitContainer2.Panel2.Controls.Add(this.ultraComboEditor2);
- this.splitContainer2.Panel2.Controls.Add(this.ultraGrid8);
- this.splitContainer2.Size = new System.Drawing.Size(1458, 417);
- this.splitContainer2.SplitterDistance = 569;
- this.splitContainer2.TabIndex = 0;
- //
- // ultraGrid7
- //
- this.ultraGrid7.DataMember = "Table5";
- this.ultraGrid7.DataSource = this.dataSet1;
- appearance60.BackColor = System.Drawing.SystemColors.Window;
- appearance60.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid7.DisplayLayout.Appearance = appearance60;
- ultraGridColumn100.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn100.Header.VisiblePosition = 0;
- ultraGridColumn100.Hidden = true;
- ultraGridColumn101.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn101.Header.VisiblePosition = 3;
- ultraGridColumn101.Width = 175;
- ultraGridColumn102.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn102.Header.VisiblePosition = 2;
- ultraGridColumn102.Width = 141;
- ultraGridColumn103.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn103.Header.VisiblePosition = 4;
- ultraGridColumn103.Width = 53;
- ultraGridColumn104.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn104.Header.VisiblePosition = 1;
- ultraGridBand7.Columns.AddRange(new object[] {
- ultraGridColumn100,
- ultraGridColumn101,
- ultraGridColumn102,
- ultraGridColumn103,
- ultraGridColumn104});
- this.ultraGrid7.DisplayLayout.BandsSerializer.Add(ultraGridBand7);
- this.ultraGrid7.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid7.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance61.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance61.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance61.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance61.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid7.DisplayLayout.GroupByBox.Appearance = appearance61;
- appearance63.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid7.DisplayLayout.GroupByBox.BandLabelAppearance = appearance63;
- this.ultraGrid7.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance62.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance62.BackColor2 = System.Drawing.SystemColors.Control;
- appearance62.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance62.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid7.DisplayLayout.GroupByBox.PromptAppearance = appearance62;
- this.ultraGrid7.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid7.DisplayLayout.MaxRowScrollRegions = 1;
- appearance66.BackColor = System.Drawing.SystemColors.Window;
- appearance66.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid7.DisplayLayout.Override.ActiveCellAppearance = appearance66;
- appearance74.BackColor = System.Drawing.SystemColors.Highlight;
- appearance74.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid7.DisplayLayout.Override.ActiveRowAppearance = appearance74;
- this.ultraGrid7.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid7.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance94.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid7.DisplayLayout.Override.CardAreaAppearance = appearance94;
- appearance72.BorderColor = System.Drawing.Color.Silver;
- appearance72.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid7.DisplayLayout.Override.CellAppearance = appearance72;
- this.ultraGrid7.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid7.DisplayLayout.Override.CellPadding = 0;
- appearance65.BackColor = System.Drawing.SystemColors.Control;
- appearance65.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance65.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance65.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance65.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid7.DisplayLayout.Override.GroupByRowAppearance = appearance65;
- appearance64.TextHAlignAsString = "Left";
- this.ultraGrid7.DisplayLayout.Override.HeaderAppearance = appearance64;
- this.ultraGrid7.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid7.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance75.BackColor = System.Drawing.SystemColors.Window;
- appearance75.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid7.DisplayLayout.Override.RowAppearance = appearance75;
- this.ultraGrid7.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance73.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid7.DisplayLayout.Override.TemplateAddRowAppearance = appearance73;
- this.ultraGrid7.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid7.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid7.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGrid7.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid7.Location = new System.Drawing.Point(0, 0);
- this.ultraGrid7.Name = "ultraGrid7";
- this.ultraGrid7.Size = new System.Drawing.Size(569, 417);
- this.ultraGrid7.TabIndex = 0;
- this.ultraGrid7.Text = "ultraGrid7";
- this.ultraGrid7.AfterRowActivate += new System.EventHandler(this.ultraGrid7_AfterRowActivate);
- this.ultraGrid7.AfterSortChange += new Infragistics.Win.UltraWinGrid.BandEventHandler(this.ultraGrid7_AfterSortChange);
- //
- // ultraGrid8
- //
- this.ultraGrid8.DataMember = "Table6";
- this.ultraGrid8.DataSource = this.dataSet1;
- appearance95.BackColor = System.Drawing.SystemColors.Window;
- appearance95.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid8.DisplayLayout.Appearance = appearance95;
- ultraGridColumn105.Header.VisiblePosition = 1;
- ultraGridColumn105.Hidden = true;
- ultraGridColumn105.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.DropDownList;
- ultraGridColumn106.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn106.Header.VisiblePosition = 3;
- ultraGridColumn106.Width = 64;
- ultraGridColumn107.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn107.Header.VisiblePosition = 4;
- ultraGridColumn107.Width = 167;
- ultraGridColumn108.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn108.Header.VisiblePosition = 6;
- ultraGridColumn108.Width = 166;
- ultraGridColumn109.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn109.Header.VisiblePosition = 5;
- ultraGridColumn109.Width = 65;
- ultraGridColumn110.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn110.Header.VisiblePosition = 7;
- ultraGridColumn110.Width = 63;
- ultraGridColumn111.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn111.Header.VisiblePosition = 8;
- ultraGridColumn112.EditorComponent = this.ultraComboEditor2;
- ultraGridColumn112.Header.VisiblePosition = 2;
- ultraGridColumn112.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.DropDownList;
- ultraGridColumn113.Header.VisiblePosition = 9;
- ultraGridColumn113.Hidden = true;
- ultraGridColumn114.Header.VisiblePosition = 10;
- ultraGridColumn114.Hidden = true;
- ultraGridColumn115.DataType = typeof(bool);
- ultraGridColumn115.Header.Caption = "选择";
- ultraGridColumn115.Header.VisiblePosition = 0;
- ultraGridBand8.Columns.AddRange(new object[] {
- ultraGridColumn105,
- ultraGridColumn106,
- ultraGridColumn107,
- ultraGridColumn108,
- ultraGridColumn109,
- ultraGridColumn110,
- ultraGridColumn111,
- ultraGridColumn112,
- ultraGridColumn113,
- ultraGridColumn114,
- ultraGridColumn115});
- ultraGridBand8.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.TemplateOnBottom;
- this.ultraGrid8.DisplayLayout.BandsSerializer.Add(ultraGridBand8);
- this.ultraGrid8.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid8.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance97.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance97.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance97.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance97.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid8.DisplayLayout.GroupByBox.Appearance = appearance97;
- appearance99.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid8.DisplayLayout.GroupByBox.BandLabelAppearance = appearance99;
- this.ultraGrid8.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance98.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance98.BackColor2 = System.Drawing.SystemColors.Control;
- appearance98.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance98.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid8.DisplayLayout.GroupByBox.PromptAppearance = appearance98;
- this.ultraGrid8.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid8.DisplayLayout.MaxRowScrollRegions = 1;
- appearance102.BackColor = System.Drawing.SystemColors.Window;
- appearance102.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid8.DisplayLayout.Override.ActiveCellAppearance = appearance102;
- appearance107.BackColor = System.Drawing.SystemColors.Highlight;
- appearance107.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid8.DisplayLayout.Override.ActiveRowAppearance = appearance107;
- this.ultraGrid8.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid8.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance110.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid8.DisplayLayout.Override.CardAreaAppearance = appearance110;
- appearance103.BorderColor = System.Drawing.Color.Silver;
- appearance103.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid8.DisplayLayout.Override.CellAppearance = appearance103;
- this.ultraGrid8.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid8.DisplayLayout.Override.CellPadding = 0;
- appearance101.BackColor = System.Drawing.SystemColors.Control;
- appearance101.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance101.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance101.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance101.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid8.DisplayLayout.Override.GroupByRowAppearance = appearance101;
- appearance100.TextHAlignAsString = "Left";
- this.ultraGrid8.DisplayLayout.Override.HeaderAppearance = appearance100;
- this.ultraGrid8.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid8.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance109.BackColor = System.Drawing.SystemColors.Window;
- appearance109.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid8.DisplayLayout.Override.RowAppearance = appearance109;
- this.ultraGrid8.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance105.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid8.DisplayLayout.Override.TemplateAddRowAppearance = appearance105;
- this.ultraGrid8.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid8.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid8.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGrid8.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid8.Location = new System.Drawing.Point(0, 0);
- this.ultraGrid8.Name = "ultraGrid8";
- this.ultraGrid8.Size = new System.Drawing.Size(885, 417);
- this.ultraGrid8.TabIndex = 0;
- this.ultraGrid8.Text = "ultraGrid8";
- this.ultraGrid8.InitializeLayout += new Infragistics.Win.UltraWinGrid.InitializeLayoutEventHandler(this.ultraGrid8_InitializeLayout);
- this.ultraGrid8.InitializeRow += new Infragistics.Win.UltraWinGrid.InitializeRowEventHandler(this.ultraGrid8_InitializeRow);
- this.ultraGrid8.CellChange += new Infragistics.Win.UltraWinGrid.CellEventHandler(this.ultraGrid8_CellChange);
- //
- // utcPhy
- //
- this.utcPhy.Controls.Add(this.ultraTabSharedControlsPage1);
- this.utcPhy.Controls.Add(this.ultraTabPageControl1);
- this.utcPhy.Controls.Add(this.ultraTabPageControl2);
- this.utcPhy.Controls.Add(this.ultraTabPageControl3);
- this.utcPhy.Controls.Add(this.ultraTabPageControl4);
- this.utcPhy.Controls.Add(this.ultraTabPageControl5);
- this.utcPhy.Controls.Add(this.ultraTabPageControl6);
- this.utcPhy.Dock = System.Windows.Forms.DockStyle.Fill;
- this.utcPhy.Location = new System.Drawing.Point(0, 0);
- this.utcPhy.Margin = new System.Windows.Forms.Padding(4);
- this.utcPhy.Name = "utcPhy";
- this.utcPhy.SharedControlsPage = this.ultraTabSharedControlsPage1;
- this.utcPhy.Size = new System.Drawing.Size(1462, 446);
- this.utcPhy.TabIndex = 0;
- ultraTab1.Key = "Phy";
- ultraTab1.TabPage = this.ultraTabPageControl1;
- ultraTab1.Text = "检验大项管理";
- ultraTab2.Key = "PhyC";
- ultraTab2.TabPage = this.ultraTabPageControl2;
- ultraTab2.Text = "试样组管理";
- ultraTab3.Key = "PhyProject";
- ultraTab3.TabPage = this.ultraTabPageControl3;
- ultraTab3.Text = "检验项基础管理";
- ultraTab4.Key = "Item";
- ultraTab4.TabPage = this.ultraTabPageControl4;
- ultraTab4.Text = "检验项补充管理";
- ultraTab5.Key = "R_Item";
- ultraTab5.TabPage = this.ultraTabPageControl5;
- ultraTab5.Text = "试样组关系管理";
- ultraTab6.Key = "R_Pos";
- ultraTab6.TabPage = this.ultraTabPageControl6;
- ultraTab6.Text = "检验项关系管理";
- this.utcPhy.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
- ultraTab1,
- ultraTab2,
- ultraTab3,
- ultraTab4,
- ultraTab5,
- ultraTab6});
- this.utcPhy.SelectedTabChanged += new Infragistics.Win.UltraWinTabControl.SelectedTabChangedEventHandler(this.utcPhy_SelectedTabChanged);
- //
- // ultraTabSharedControlsPage1
- //
- this.ultraTabSharedControlsPage1.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabSharedControlsPage1.Margin = new System.Windows.Forms.Padding(4);
- this.ultraTabSharedControlsPage1.Name = "ultraTabSharedControlsPage1";
- this.ultraTabSharedControlsPage1.Size = new System.Drawing.Size(1458, 417);
- //
- // dataColumn112
- //
- this.dataColumn112.Caption = "序号";
- this.dataColumn112.ColumnName = "ORDER_SEQ";
- this.dataColumn112.DataType = typeof(int);
- //
- // ultraLabel23
- //
- appearance69.TextHAlignAsString = "Center";
- appearance69.TextVAlignAsString = "Middle";
- this.ultraLabel23.Appearance = appearance69;
- this.ultraLabel23.Location = new System.Drawing.Point(570, 11);
- this.ultraLabel23.Margin = new System.Windows.Forms.Padding(4);
- this.ultraLabel23.Name = "ultraLabel23";
- this.ultraLabel23.Size = new System.Drawing.Size(42, 29);
- this.ultraLabel23.TabIndex = 23;
- this.ultraLabel23.Text = "序号";
- //
- // ultraNumericEditor4
- //
- this.ultraNumericEditor4.Location = new System.Drawing.Point(614, 12);
- this.ultraNumericEditor4.MaskInput = "nnn";
- this.ultraNumericEditor4.Name = "ultraNumericEditor4";
- this.ultraNumericEditor4.Nullable = true;
- this.ultraNumericEditor4.Size = new System.Drawing.Size(52, 24);
- this.ultraNumericEditor4.TabIndex = 24;
- //
- // FrmMaterialAdministration
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(1462, 446);
- this.Controls.Add(this.utcPhy);
- this.Margin = new System.Windows.Forms.Padding(5);
- this.Name = "FrmMaterialAdministration";
- this.Text = "材质项目管理";
- this.Load += new System.EventHandler(this.FrmMaterialAdministration_Load);
- this.Shown += new System.EventHandler(this.FrmMaterialAdministration_Shown);
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmbItem_C)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor2)).EndInit();
- this.ultraTabPageControl1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable4)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.CZGLTable)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.WDTable)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable5)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable6)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).EndInit();
- this.ultraExpandableGroupBox1.ResumeLayout(false);
- this.ultraExpandableGroupBoxPanel1.ResumeLayout(false);
- this.panel5.ResumeLayout(false);
- this.panel5.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txtSampleCount)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtDept)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtMemo)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtPhyType)).EndInit();
- this.panel2.ResumeLayout(false);
- this.panel2.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.chkValid)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtPhyTitle)).EndInit();
- this.ultraTabPageControl2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox2)).EndInit();
- this.ultraExpandableGroupBox2.ResumeLayout(false);
- this.ultraExpandableGroupBoxPanel2.ResumeLayout(false);
- this.panel6.ResumeLayout(false);
- this.panel6.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraNumericEditor3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraNumericEditor1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtMemoC)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtPhyTypeC)).EndInit();
- this.panel1.ResumeLayout(false);
- this.panel1.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.chkValidC)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtPhyTitleC)).EndInit();
- this.ultraTabPageControl3.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid5)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox3)).EndInit();
- this.ultraExpandableGroupBox3.ResumeLayout(false);
- this.ultraExpandableGroupBoxPanel3.ResumeLayout(false);
- this.panel7.ResumeLayout(false);
- this.panel7.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraNumericEditor2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtStation)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numHour_Test)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numHour_Ready)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtPhyUnit)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtMemoCProject)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtPhyProjectName)).EndInit();
- this.panel3.ResumeLayout(false);
- this.panel3.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.chkValidProject)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtPhyProjectTitle)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).EndInit();
- this.ultraTabPageControl4.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid6)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox4)).EndInit();
- this.ultraExpandableGroupBox4.ResumeLayout(false);
- this.ultraExpandableGroupBoxPanel4.ResumeLayout(false);
- this.panel8.ResumeLayout(false);
- this.panel8.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txtMemoItem)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtItemName)).EndInit();
- this.panel4.ResumeLayout(false);
- this.panel4.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.chkValidItem)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtItemTitle)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid4)).EndInit();
- this.ultraTabPageControl5.ResumeLayout(false);
- this.splitContainer1.Panel1.ResumeLayout(false);
- this.splitContainer1.Panel2.ResumeLayout(false);
- this.splitContainer1.Panel2.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
- this.splitContainer1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraCZGL)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmbPhyC)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmbPhyR)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmbItem_W)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmbItem_F)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraWD)).EndInit();
- this.ultraTabPageControl6.ResumeLayout(false);
- this.splitContainer2.Panel1.ResumeLayout(false);
- this.splitContainer2.Panel2.ResumeLayout(false);
- this.splitContainer2.Panel2.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
- this.splitContainer2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid7)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid8)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.utcPhy)).EndInit();
- this.utcPhy.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraNumericEditor4)).EndInit();
- this.ResumeLayout(false);
- }
- #endregion
- private Infragistics.Win.UltraWinTabControl.UltraTabControl utcPhy;
- private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage1;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl1;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl2;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl3;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid3;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl4;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid4;
- private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox2;
- private System.Windows.Forms.Panel panel1;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor chkValidC;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtPhyTitleC;
- private Infragistics.Win.Misc.UltraLabel ultraLabel12;
- private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox3;
- private System.Windows.Forms.Panel panel3;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor chkValidProject;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtPhyProjectTitle;
- private Infragistics.Win.Misc.UltraLabel ultraLabel18;
- private System.Windows.Forms.Panel panel4;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor chkValidItem;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtItemTitle;
- private Infragistics.Win.Misc.UltraLabel ultraLabel24;
- private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox1;
- private System.Windows.Forms.Panel panel2;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor chkValid;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtPhyTitle;
- private Infragistics.Win.Misc.UltraLabel ultraLabel1;
- private System.Data.DataSet dataSet1;
- private System.Data.DataTable dataTable1;
- private System.Data.DataColumn dataColumn1;
- private System.Data.DataColumn dataColumn2;
- private System.Data.DataColumn dataColumn3;
- private System.Data.DataColumn dataColumn5;
- private System.Data.DataColumn dataColumn6;
- private System.Data.DataColumn dataColumn7;
- private System.Data.DataColumn dataColumn8;
- private System.Data.DataColumn dataColumn9;
- private System.Data.DataColumn dataColumn10;
- private System.Data.DataColumn dataColumn11;
- private System.Data.DataColumn dataColumn12;
- private System.Data.DataTable dataTable2;
- private System.Data.DataColumn dataColumn13;
- private System.Data.DataColumn dataColumn14;
- private System.Data.DataTable dataTable3;
- private System.Data.DataColumn dataColumn4;
- private System.Data.DataColumn dataColumn15;
- private System.Data.DataColumn dataColumn16;
- private System.Data.DataColumn dataColumn17;
- private System.Data.DataColumn dataColumn18;
- private System.Data.DataTable dataTable4;
- private System.Data.DataColumn dataColumn19;
- private System.Data.DataColumn dataColumn20;
- private System.Data.DataColumn dataColumn21;
- private System.Data.DataColumn dataColumn22;
- private System.Data.DataColumn dataColumn23;
- private System.Data.DataColumn dataColumn24;
- private System.Data.DataColumn dataColumn25;
- private System.Data.DataColumn dataColumn26;
- private System.Data.DataColumn dataColumn27;
- private System.Data.DataColumn dataColumn28;
- private System.Data.DataColumn dataColumn29;
- private System.Data.DataColumn dataColumn30;
- private System.Data.DataColumn dataColumn31;
- private System.Data.DataColumn dataColumn32;
- private System.Data.DataColumn dataColumn33;
- private System.Data.DataColumn dataColumn34;
- private System.Data.DataColumn dataColumn35;
- private System.Data.DataColumn dataColumn36;
- private System.Data.DataColumn dataColumn37;
- private System.Data.DataColumn dataColumn38;
- private System.Data.DataColumn dataColumn39;
- private System.Data.DataColumn dataColumn40;
- private System.Data.DataColumn dataColumn41;
- private System.Data.DataColumn dataColumn42;
- private System.Data.DataColumn dataColumn43;
- private System.Data.DataColumn dataColumn44;
- private System.Data.DataColumn dataColumn45;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid5;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid2;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid1;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid6;
- private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox4;
- private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel2;
- private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel3;
- private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel4;
- private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel1;
- private System.Windows.Forms.Panel panel5;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtMemo;
- private Infragistics.Win.Misc.UltraLabel ultraLabel6;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtPhyType;
- private Infragistics.Win.Misc.UltraLabel ultraLabel4;
- private System.Windows.Forms.Panel panel6;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtMemoC;
- private Infragistics.Win.Misc.UltraLabel ultraLabel8;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtPhyTypeC;
- private Infragistics.Win.Misc.UltraLabel ultraLabel10;
- private System.Windows.Forms.Panel panel7;
- private Infragistics.Win.Misc.UltraLabel ultraLabel13;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtPhyUnit;
- private Infragistics.Win.Misc.UltraLabel ultraLabel2;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtMemoCProject;
- private Infragistics.Win.Misc.UltraLabel ultraLabel14;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtPhyProjectName;
- private Infragistics.Win.Misc.UltraLabel ultraLabel16;
- private System.Windows.Forms.Panel panel8;
- private System.Windows.Forms.ComboBox cmbItemType;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtMemoItem;
- private Infragistics.Win.Misc.UltraLabel ultraLabel20;
- private Infragistics.Win.Misc.UltraLabel ultraLabel21;
- private Infragistics.Win.Misc.UltraLabel ultraLabel22;
- private System.Data.DataColumn dataColumn46;
- private Infragistics.Win.Misc.UltraLabel ultraLabel7;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl5;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraCZGL;
- private System.Data.DataTable CZGLTable;
- private System.Data.DataColumn dataColumn47;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraWD;
- private System.Data.DataTable WDTable;
- private System.Data.DataColumn dataColumn49;
- private System.Data.DataColumn dataColumn50;
- private System.Data.DataColumn dataColumn52;
- private System.Data.DataColumn dataColumn53;
- private System.Data.DataColumn dataColumn54;
- private System.Data.DataColumn dataColumn55;
- private System.Data.DataColumn dataColumn56;
- private System.Data.DataColumn dataColumn57;
- private System.Data.DataColumn dataColumn58;
- private System.Data.DataColumn dataColumn59;
- private System.Data.DataColumn dataColumn60;
- private System.Data.DataColumn dataColumn61;
- private System.Data.DataColumn dataColumn62;
- private System.Data.DataColumn dataColumn63;
- private System.Data.DataColumn dataColumn64;
- private System.Data.DataColumn dataColumn65;
- private System.Data.DataColumn dataColumn66;
- private System.Data.DataColumn dataColumn67;
- private System.Data.DataColumn dataColumn68;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Label label2;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor numHour_Ready;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor numHour_Test;
- private System.Data.DataColumn dataColumn69;
- private System.Data.DataColumn dataColumn70;
- private System.Data.DataColumn dataColumn71;
- private System.Data.DataColumn dataColumn72;
- private System.Windows.Forms.ComboBox cmbPhyMaxCode;
- private System.Windows.Forms.ComboBox cmbPhyProjectTypeC;
- private System.Data.DataColumn dataColumn73;
- private System.Data.DataColumn dataColumn74;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtItemName;
- private System.Windows.Forms.SplitContainer splitContainer1;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor cmbItem_F;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor cmbItem_C;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor cmbItem_W;
- private System.Data.DataColumn dataColumn77;
- private System.Data.DataColumn dataColumn78;
- private System.Data.DataColumn dataColumn79;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor cmbPhyC;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor cmbPhyR;
- private System.Data.DataColumn dataColumn82;
- private System.Data.DataColumn dataColumn48;
- private System.Data.DataColumn dataColumn75;
- private System.Data.DataColumn dataColumn76;
- private System.Data.DataColumn dataColumn80;
- private System.Data.DataColumn dataColumn81;
- private System.Data.DataColumn dataColumn51;
- private System.Data.DataColumn dataColumn83;
- private System.Data.DataColumn dataColumn84;
- private System.Data.DataColumn dataColumn85;
- private Infragistics.Win.Misc.UltraLabel ultraLabel3;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor txtSampleCount;
- private Infragistics.Win.Misc.UltraLabel ultraLabel5;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtStation;
- private System.Data.DataColumn dataColumn86;
- private System.Data.DataColumn dataColumn87;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtDept;
- private Infragistics.Win.Misc.UltraLabel ultraLabel9;
- private System.Data.DataColumn dataColumn88;
- private System.Data.DataColumn dataColumn89;
- private System.Data.DataColumn dataColumn90;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl6;
- private System.Data.DataTable dataTable5;
- private System.Data.DataColumn dataColumn91;
- private System.Data.DataColumn dataColumn92;
- private System.Data.DataColumn dataColumn93;
- private System.Data.DataTable dataTable6;
- private System.Windows.Forms.SplitContainer splitContainer2;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid7;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid8;
- private System.Data.DataColumn dataColumn95;
- private System.Data.DataColumn dataColumn96;
- private System.Data.DataColumn dataColumn97;
- private System.Data.DataColumn dataColumn98;
- private System.Data.DataColumn dataColumn99;
- private System.Data.DataColumn dataColumn100;
- private System.Data.DataColumn dataColumn101;
- private System.Data.DataColumn dataColumn102;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor2;
- private System.Data.DataColumn dataColumn103;
- private System.Data.DataColumn dataColumn105;
- private System.Data.DataColumn dataColumn106;
- private System.Data.DataColumn dataColumn94;
- private System.Data.DataColumn dataColumn104;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor1;
- private Infragistics.Win.Misc.UltraLabel ultraLabel11;
- private System.Data.DataColumn dataColumn107;
- private Infragistics.Win.Misc.UltraLabel ultraLabel15;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor ultraNumericEditor1;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor ultraNumericEditor2;
- private Infragistics.Win.Misc.UltraLabel ultraLabel17;
- private System.Data.DataColumn dataColumn108;
- private System.Data.DataColumn dataColumn109;
- private System.Data.DataColumn dataColumn110;
- private System.Data.DataColumn dataColumn111;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor ultraNumericEditor3;
- private Infragistics.Win.Misc.UltraLabel ultraLabel19;
- private System.Data.DataColumn dataColumn112;
- private Infragistics.Win.Misc.UltraLabel ultraLabel23;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor ultraNumericEditor4;
- }
- }
|