FrmMaterialAdministration.Designer.cs 251 KB

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