DevFrmMain.Designer.cs 375 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210
  1. namespace Uninpho.Tools
  2. {
  3. partial class DevFrmMain
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. DevExpress.XtraSplashScreen.SplashScreenManager splashScreenManager1 = new DevExpress.XtraSplashScreen.SplashScreenManager(this, typeof(global::Uninpho.LicManager.FrmSplashScreen), true, true);
  30. DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
  31. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
  32. DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
  33. DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
  34. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
  35. DevExpress.Utils.ToolTipItem toolTipItem2 = new DevExpress.Utils.ToolTipItem();
  36. DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
  37. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem3 = new DevExpress.Utils.ToolTipTitleItem();
  38. DevExpress.Utils.ToolTipItem toolTipItem3 = new DevExpress.Utils.ToolTipItem();
  39. DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
  40. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem4 = new DevExpress.Utils.ToolTipTitleItem();
  41. DevExpress.Utils.ToolTipItem toolTipItem4 = new DevExpress.Utils.ToolTipItem();
  42. DevExpress.Utils.SuperToolTip superToolTip5 = new DevExpress.Utils.SuperToolTip();
  43. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem5 = new DevExpress.Utils.ToolTipTitleItem();
  44. DevExpress.Utils.ToolTipItem toolTipItem5 = new DevExpress.Utils.ToolTipItem();
  45. DevExpress.Utils.SuperToolTip superToolTip6 = new DevExpress.Utils.SuperToolTip();
  46. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem6 = new DevExpress.Utils.ToolTipTitleItem();
  47. DevExpress.Utils.ToolTipItem toolTipItem6 = new DevExpress.Utils.ToolTipItem();
  48. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DevFrmMain));
  49. DevExpress.Utils.SuperToolTip superToolTip7 = new DevExpress.Utils.SuperToolTip();
  50. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem7 = new DevExpress.Utils.ToolTipTitleItem();
  51. DevExpress.Utils.ToolTipItem toolTipItem7 = new DevExpress.Utils.ToolTipItem();
  52. DevExpress.Utils.SuperToolTip superToolTip8 = new DevExpress.Utils.SuperToolTip();
  53. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem8 = new DevExpress.Utils.ToolTipTitleItem();
  54. DevExpress.Utils.ToolTipItem toolTipItem8 = new DevExpress.Utils.ToolTipItem();
  55. DevExpress.Utils.SuperToolTip superToolTip9 = new DevExpress.Utils.SuperToolTip();
  56. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem9 = new DevExpress.Utils.ToolTipTitleItem();
  57. DevExpress.Utils.ToolTipItem toolTipItem9 = new DevExpress.Utils.ToolTipItem();
  58. DevExpress.Utils.SuperToolTip superToolTip10 = new DevExpress.Utils.SuperToolTip();
  59. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem10 = new DevExpress.Utils.ToolTipTitleItem();
  60. DevExpress.Utils.ToolTipItem toolTipItem10 = new DevExpress.Utils.ToolTipItem();
  61. DevExpress.Utils.SuperToolTip superToolTip11 = new DevExpress.Utils.SuperToolTip();
  62. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem11 = new DevExpress.Utils.ToolTipTitleItem();
  63. DevExpress.Utils.ToolTipItem toolTipItem11 = new DevExpress.Utils.ToolTipItem();
  64. DevExpress.Utils.SuperToolTip superToolTip12 = new DevExpress.Utils.SuperToolTip();
  65. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem12 = new DevExpress.Utils.ToolTipTitleItem();
  66. DevExpress.Utils.ToolTipItem toolTipItem12 = new DevExpress.Utils.ToolTipItem();
  67. DevExpress.Utils.SuperToolTip superToolTip13 = new DevExpress.Utils.SuperToolTip();
  68. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem13 = new DevExpress.Utils.ToolTipTitleItem();
  69. DevExpress.Utils.ToolTipItem toolTipItem13 = new DevExpress.Utils.ToolTipItem();
  70. DevExpress.Utils.SuperToolTip superToolTip14 = new DevExpress.Utils.SuperToolTip();
  71. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem14 = new DevExpress.Utils.ToolTipTitleItem();
  72. DevExpress.Utils.ToolTipItem toolTipItem14 = new DevExpress.Utils.ToolTipItem();
  73. DevExpress.Utils.SuperToolTip superToolTip15 = new DevExpress.Utils.SuperToolTip();
  74. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem15 = new DevExpress.Utils.ToolTipTitleItem();
  75. DevExpress.Utils.ToolTipItem toolTipItem15 = new DevExpress.Utils.ToolTipItem();
  76. DevExpress.Utils.SuperToolTip superToolTip16 = new DevExpress.Utils.SuperToolTip();
  77. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem16 = new DevExpress.Utils.ToolTipTitleItem();
  78. DevExpress.Utils.ToolTipItem toolTipItem16 = new DevExpress.Utils.ToolTipItem();
  79. DevExpress.Utils.SuperToolTip superToolTip17 = new DevExpress.Utils.SuperToolTip();
  80. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem17 = new DevExpress.Utils.ToolTipTitleItem();
  81. DevExpress.Utils.ToolTipItem toolTipItem17 = new DevExpress.Utils.ToolTipItem();
  82. DevExpress.Utils.SuperToolTip superToolTip18 = new DevExpress.Utils.SuperToolTip();
  83. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem18 = new DevExpress.Utils.ToolTipTitleItem();
  84. DevExpress.Utils.ToolTipItem toolTipItem18 = new DevExpress.Utils.ToolTipItem();
  85. DevExpress.Utils.SuperToolTip superToolTip19 = new DevExpress.Utils.SuperToolTip();
  86. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem19 = new DevExpress.Utils.ToolTipTitleItem();
  87. DevExpress.Utils.ToolTipItem toolTipItem19 = new DevExpress.Utils.ToolTipItem();
  88. DevExpress.Utils.SuperToolTip superToolTip20 = new DevExpress.Utils.SuperToolTip();
  89. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem20 = new DevExpress.Utils.ToolTipTitleItem();
  90. DevExpress.Utils.ToolTipItem toolTipItem20 = new DevExpress.Utils.ToolTipItem();
  91. DevExpress.Utils.SuperToolTip superToolTip21 = new DevExpress.Utils.SuperToolTip();
  92. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem21 = new DevExpress.Utils.ToolTipTitleItem();
  93. DevExpress.Utils.ToolTipItem toolTipItem21 = new DevExpress.Utils.ToolTipItem();
  94. DevExpress.Utils.SuperToolTip superToolTip22 = new DevExpress.Utils.SuperToolTip();
  95. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem22 = new DevExpress.Utils.ToolTipTitleItem();
  96. DevExpress.Utils.ToolTipItem toolTipItem22 = new DevExpress.Utils.ToolTipItem();
  97. DevExpress.Utils.SuperToolTip superToolTip23 = new DevExpress.Utils.SuperToolTip();
  98. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem23 = new DevExpress.Utils.ToolTipTitleItem();
  99. DevExpress.Utils.ToolTipItem toolTipItem23 = new DevExpress.Utils.ToolTipItem();
  100. DevExpress.Utils.SuperToolTip superToolTip24 = new DevExpress.Utils.SuperToolTip();
  101. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem24 = new DevExpress.Utils.ToolTipTitleItem();
  102. DevExpress.Utils.ToolTipItem toolTipItem24 = new DevExpress.Utils.ToolTipItem();
  103. DevExpress.Utils.SuperToolTip superToolTip25 = new DevExpress.Utils.SuperToolTip();
  104. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem25 = new DevExpress.Utils.ToolTipTitleItem();
  105. DevExpress.Utils.ToolTipItem toolTipItem25 = new DevExpress.Utils.ToolTipItem();
  106. DevExpress.Utils.SuperToolTip superToolTip26 = new DevExpress.Utils.SuperToolTip();
  107. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem26 = new DevExpress.Utils.ToolTipTitleItem();
  108. DevExpress.Utils.ToolTipItem toolTipItem26 = new DevExpress.Utils.ToolTipItem();
  109. DevExpress.Utils.SuperToolTip superToolTip27 = new DevExpress.Utils.SuperToolTip();
  110. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem27 = new DevExpress.Utils.ToolTipTitleItem();
  111. DevExpress.Utils.ToolTipItem toolTipItem27 = new DevExpress.Utils.ToolTipItem();
  112. DevExpress.Utils.SuperToolTip superToolTip28 = new DevExpress.Utils.SuperToolTip();
  113. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem28 = new DevExpress.Utils.ToolTipTitleItem();
  114. DevExpress.Utils.ToolTipItem toolTipItem28 = new DevExpress.Utils.ToolTipItem();
  115. DevExpress.Utils.SuperToolTip superToolTip29 = new DevExpress.Utils.SuperToolTip();
  116. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem29 = new DevExpress.Utils.ToolTipTitleItem();
  117. DevExpress.Utils.ToolTipItem toolTipItem29 = new DevExpress.Utils.ToolTipItem();
  118. DevExpress.Utils.SuperToolTip superToolTip30 = new DevExpress.Utils.SuperToolTip();
  119. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem30 = new DevExpress.Utils.ToolTipTitleItem();
  120. DevExpress.Utils.ToolTipItem toolTipItem30 = new DevExpress.Utils.ToolTipItem();
  121. DevExpress.Utils.SuperToolTip superToolTip31 = new DevExpress.Utils.SuperToolTip();
  122. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem31 = new DevExpress.Utils.ToolTipTitleItem();
  123. DevExpress.Utils.ToolTipItem toolTipItem31 = new DevExpress.Utils.ToolTipItem();
  124. DevExpress.Utils.SuperToolTip superToolTip32 = new DevExpress.Utils.SuperToolTip();
  125. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem32 = new DevExpress.Utils.ToolTipTitleItem();
  126. DevExpress.Utils.ToolTipItem toolTipItem32 = new DevExpress.Utils.ToolTipItem();
  127. DevExpress.Utils.SuperToolTip superToolTip33 = new DevExpress.Utils.SuperToolTip();
  128. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem33 = new DevExpress.Utils.ToolTipTitleItem();
  129. DevExpress.Utils.ToolTipItem toolTipItem33 = new DevExpress.Utils.ToolTipItem();
  130. DevExpress.Utils.SuperToolTip superToolTip34 = new DevExpress.Utils.SuperToolTip();
  131. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem34 = new DevExpress.Utils.ToolTipTitleItem();
  132. DevExpress.Utils.ToolTipItem toolTipItem34 = new DevExpress.Utils.ToolTipItem();
  133. DevExpress.Utils.SuperToolTip superToolTip35 = new DevExpress.Utils.SuperToolTip();
  134. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem35 = new DevExpress.Utils.ToolTipTitleItem();
  135. DevExpress.Utils.ToolTipItem toolTipItem35 = new DevExpress.Utils.ToolTipItem();
  136. DevExpress.Utils.SuperToolTip superToolTip36 = new DevExpress.Utils.SuperToolTip();
  137. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem36 = new DevExpress.Utils.ToolTipTitleItem();
  138. DevExpress.Utils.ToolTipItem toolTipItem36 = new DevExpress.Utils.ToolTipItem();
  139. DevExpress.Utils.SuperToolTip superToolTip37 = new DevExpress.Utils.SuperToolTip();
  140. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem37 = new DevExpress.Utils.ToolTipTitleItem();
  141. DevExpress.Utils.ToolTipItem toolTipItem37 = new DevExpress.Utils.ToolTipItem();
  142. DevExpress.Utils.SuperToolTip superToolTip38 = new DevExpress.Utils.SuperToolTip();
  143. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem38 = new DevExpress.Utils.ToolTipTitleItem();
  144. DevExpress.Utils.ToolTipItem toolTipItem38 = new DevExpress.Utils.ToolTipItem();
  145. DevExpress.Utils.SuperToolTip superToolTip39 = new DevExpress.Utils.SuperToolTip();
  146. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem39 = new DevExpress.Utils.ToolTipTitleItem();
  147. DevExpress.Utils.ToolTipItem toolTipItem39 = new DevExpress.Utils.ToolTipItem();
  148. DevExpress.Utils.SuperToolTip superToolTip40 = new DevExpress.Utils.SuperToolTip();
  149. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem40 = new DevExpress.Utils.ToolTipTitleItem();
  150. DevExpress.Utils.ToolTipItem toolTipItem40 = new DevExpress.Utils.ToolTipItem();
  151. DevExpress.Utils.SuperToolTip superToolTip41 = new DevExpress.Utils.SuperToolTip();
  152. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem41 = new DevExpress.Utils.ToolTipTitleItem();
  153. DevExpress.Utils.ToolTipItem toolTipItem41 = new DevExpress.Utils.ToolTipItem();
  154. DevExpress.Utils.SuperToolTip superToolTip42 = new DevExpress.Utils.SuperToolTip();
  155. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem42 = new DevExpress.Utils.ToolTipTitleItem();
  156. DevExpress.Utils.ToolTipItem toolTipItem42 = new DevExpress.Utils.ToolTipItem();
  157. DevExpress.Utils.SuperToolTip superToolTip43 = new DevExpress.Utils.SuperToolTip();
  158. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem43 = new DevExpress.Utils.ToolTipTitleItem();
  159. DevExpress.Utils.ToolTipItem toolTipItem43 = new DevExpress.Utils.ToolTipItem();
  160. DevExpress.Utils.SuperToolTip superToolTip44 = new DevExpress.Utils.SuperToolTip();
  161. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem44 = new DevExpress.Utils.ToolTipTitleItem();
  162. DevExpress.Utils.ToolTipItem toolTipItem44 = new DevExpress.Utils.ToolTipItem();
  163. DevExpress.Utils.SuperToolTip superToolTip45 = new DevExpress.Utils.SuperToolTip();
  164. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem45 = new DevExpress.Utils.ToolTipTitleItem();
  165. DevExpress.Utils.ToolTipItem toolTipItem45 = new DevExpress.Utils.ToolTipItem();
  166. DevExpress.Utils.SuperToolTip superToolTip46 = new DevExpress.Utils.SuperToolTip();
  167. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem46 = new DevExpress.Utils.ToolTipTitleItem();
  168. DevExpress.Utils.ToolTipItem toolTipItem46 = new DevExpress.Utils.ToolTipItem();
  169. DevExpress.Utils.SuperToolTip superToolTip47 = new DevExpress.Utils.SuperToolTip();
  170. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem47 = new DevExpress.Utils.ToolTipTitleItem();
  171. DevExpress.Utils.ToolTipItem toolTipItem47 = new DevExpress.Utils.ToolTipItem();
  172. DevExpress.Utils.SuperToolTip superToolTip48 = new DevExpress.Utils.SuperToolTip();
  173. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem48 = new DevExpress.Utils.ToolTipTitleItem();
  174. DevExpress.Utils.ToolTipItem toolTipItem48 = new DevExpress.Utils.ToolTipItem();
  175. DevExpress.Utils.SuperToolTip superToolTip49 = new DevExpress.Utils.SuperToolTip();
  176. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem49 = new DevExpress.Utils.ToolTipTitleItem();
  177. DevExpress.Utils.ToolTipItem toolTipItem49 = new DevExpress.Utils.ToolTipItem();
  178. DevExpress.Utils.SuperToolTip superToolTip50 = new DevExpress.Utils.SuperToolTip();
  179. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem50 = new DevExpress.Utils.ToolTipTitleItem();
  180. DevExpress.Utils.ToolTipItem toolTipItem50 = new DevExpress.Utils.ToolTipItem();
  181. DevExpress.Utils.SuperToolTip superToolTip51 = new DevExpress.Utils.SuperToolTip();
  182. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem51 = new DevExpress.Utils.ToolTipTitleItem();
  183. DevExpress.Utils.ToolTipItem toolTipItem51 = new DevExpress.Utils.ToolTipItem();
  184. DevExpress.Utils.SuperToolTip superToolTip52 = new DevExpress.Utils.SuperToolTip();
  185. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem52 = new DevExpress.Utils.ToolTipTitleItem();
  186. DevExpress.Utils.ToolTipItem toolTipItem52 = new DevExpress.Utils.ToolTipItem();
  187. DevExpress.Utils.SuperToolTip superToolTip53 = new DevExpress.Utils.SuperToolTip();
  188. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem53 = new DevExpress.Utils.ToolTipTitleItem();
  189. DevExpress.Utils.ToolTipItem toolTipItem53 = new DevExpress.Utils.ToolTipItem();
  190. DevExpress.Utils.SuperToolTip superToolTip54 = new DevExpress.Utils.SuperToolTip();
  191. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem54 = new DevExpress.Utils.ToolTipTitleItem();
  192. DevExpress.Utils.ToolTipItem toolTipItem54 = new DevExpress.Utils.ToolTipItem();
  193. DevExpress.Utils.SuperToolTip superToolTip55 = new DevExpress.Utils.SuperToolTip();
  194. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem55 = new DevExpress.Utils.ToolTipTitleItem();
  195. DevExpress.Utils.ToolTipItem toolTipItem55 = new DevExpress.Utils.ToolTipItem();
  196. DevExpress.Utils.SuperToolTip superToolTip56 = new DevExpress.Utils.SuperToolTip();
  197. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem56 = new DevExpress.Utils.ToolTipTitleItem();
  198. DevExpress.Utils.ToolTipItem toolTipItem56 = new DevExpress.Utils.ToolTipItem();
  199. DevExpress.Utils.SuperToolTip superToolTip57 = new DevExpress.Utils.SuperToolTip();
  200. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem57 = new DevExpress.Utils.ToolTipTitleItem();
  201. DevExpress.Utils.ToolTipItem toolTipItem57 = new DevExpress.Utils.ToolTipItem();
  202. DevExpress.Utils.SuperToolTip superToolTip58 = new DevExpress.Utils.SuperToolTip();
  203. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem58 = new DevExpress.Utils.ToolTipTitleItem();
  204. DevExpress.Utils.ToolTipItem toolTipItem58 = new DevExpress.Utils.ToolTipItem();
  205. DevExpress.Utils.SuperToolTip superToolTip59 = new DevExpress.Utils.SuperToolTip();
  206. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem59 = new DevExpress.Utils.ToolTipTitleItem();
  207. DevExpress.Utils.ToolTipItem toolTipItem59 = new DevExpress.Utils.ToolTipItem();
  208. DevExpress.Utils.SuperToolTip superToolTip60 = new DevExpress.Utils.SuperToolTip();
  209. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem60 = new DevExpress.Utils.ToolTipTitleItem();
  210. DevExpress.Utils.ToolTipItem toolTipItem60 = new DevExpress.Utils.ToolTipItem();
  211. DevExpress.Utils.SuperToolTip superToolTip61 = new DevExpress.Utils.SuperToolTip();
  212. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem61 = new DevExpress.Utils.ToolTipTitleItem();
  213. DevExpress.Utils.ToolTipItem toolTipItem61 = new DevExpress.Utils.ToolTipItem();
  214. DevExpress.Utils.SuperToolTip superToolTip62 = new DevExpress.Utils.SuperToolTip();
  215. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem62 = new DevExpress.Utils.ToolTipTitleItem();
  216. DevExpress.Utils.ToolTipItem toolTipItem62 = new DevExpress.Utils.ToolTipItem();
  217. DevExpress.Utils.SuperToolTip superToolTip63 = new DevExpress.Utils.SuperToolTip();
  218. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem63 = new DevExpress.Utils.ToolTipTitleItem();
  219. DevExpress.Utils.ToolTipItem toolTipItem63 = new DevExpress.Utils.ToolTipItem();
  220. DevExpress.Utils.SuperToolTip superToolTip64 = new DevExpress.Utils.SuperToolTip();
  221. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem64 = new DevExpress.Utils.ToolTipTitleItem();
  222. DevExpress.Utils.ToolTipItem toolTipItem64 = new DevExpress.Utils.ToolTipItem();
  223. DevExpress.Utils.SuperToolTip superToolTip65 = new DevExpress.Utils.SuperToolTip();
  224. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem65 = new DevExpress.Utils.ToolTipTitleItem();
  225. DevExpress.Utils.ToolTipItem toolTipItem65 = new DevExpress.Utils.ToolTipItem();
  226. DevExpress.Utils.SuperToolTip superToolTip66 = new DevExpress.Utils.SuperToolTip();
  227. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem66 = new DevExpress.Utils.ToolTipTitleItem();
  228. DevExpress.Utils.ToolTipItem toolTipItem66 = new DevExpress.Utils.ToolTipItem();
  229. DevExpress.Utils.SuperToolTip superToolTip67 = new DevExpress.Utils.SuperToolTip();
  230. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem67 = new DevExpress.Utils.ToolTipTitleItem();
  231. DevExpress.Utils.ToolTipItem toolTipItem67 = new DevExpress.Utils.ToolTipItem();
  232. DevExpress.Utils.SuperToolTip superToolTip68 = new DevExpress.Utils.SuperToolTip();
  233. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem68 = new DevExpress.Utils.ToolTipTitleItem();
  234. DevExpress.Utils.ToolTipItem toolTipItem68 = new DevExpress.Utils.ToolTipItem();
  235. DevExpress.Utils.SuperToolTip superToolTip69 = new DevExpress.Utils.SuperToolTip();
  236. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem69 = new DevExpress.Utils.ToolTipTitleItem();
  237. DevExpress.Utils.ToolTipItem toolTipItem69 = new DevExpress.Utils.ToolTipItem();
  238. DevExpress.Utils.SuperToolTip superToolTip70 = new DevExpress.Utils.SuperToolTip();
  239. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem70 = new DevExpress.Utils.ToolTipTitleItem();
  240. DevExpress.Utils.ToolTipItem toolTipItem70 = new DevExpress.Utils.ToolTipItem();
  241. DevExpress.Utils.SuperToolTip superToolTip71 = new DevExpress.Utils.SuperToolTip();
  242. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem71 = new DevExpress.Utils.ToolTipTitleItem();
  243. DevExpress.Utils.ToolTipItem toolTipItem71 = new DevExpress.Utils.ToolTipItem();
  244. DevExpress.Utils.SuperToolTip superToolTip72 = new DevExpress.Utils.SuperToolTip();
  245. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem72 = new DevExpress.Utils.ToolTipTitleItem();
  246. DevExpress.Utils.ToolTipItem toolTipItem72 = new DevExpress.Utils.ToolTipItem();
  247. DevExpress.Utils.SuperToolTip superToolTip73 = new DevExpress.Utils.SuperToolTip();
  248. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem73 = new DevExpress.Utils.ToolTipTitleItem();
  249. DevExpress.Utils.ToolTipItem toolTipItem73 = new DevExpress.Utils.ToolTipItem();
  250. DevExpress.Utils.SuperToolTip superToolTip74 = new DevExpress.Utils.SuperToolTip();
  251. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem74 = new DevExpress.Utils.ToolTipTitleItem();
  252. DevExpress.Utils.ToolTipItem toolTipItem74 = new DevExpress.Utils.ToolTipItem();
  253. DevExpress.Utils.SuperToolTip superToolTip75 = new DevExpress.Utils.SuperToolTip();
  254. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem75 = new DevExpress.Utils.ToolTipTitleItem();
  255. DevExpress.Utils.ToolTipItem toolTipItem75 = new DevExpress.Utils.ToolTipItem();
  256. DevExpress.Utils.SuperToolTip superToolTip76 = new DevExpress.Utils.SuperToolTip();
  257. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem76 = new DevExpress.Utils.ToolTipTitleItem();
  258. DevExpress.Utils.ToolTipItem toolTipItem76 = new DevExpress.Utils.ToolTipItem();
  259. DevExpress.Utils.SuperToolTip superToolTip77 = new DevExpress.Utils.SuperToolTip();
  260. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem77 = new DevExpress.Utils.ToolTipTitleItem();
  261. DevExpress.Utils.ToolTipItem toolTipItem77 = new DevExpress.Utils.ToolTipItem();
  262. DevExpress.Utils.SuperToolTip superToolTip78 = new DevExpress.Utils.SuperToolTip();
  263. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem78 = new DevExpress.Utils.ToolTipTitleItem();
  264. DevExpress.Utils.ToolTipItem toolTipItem78 = new DevExpress.Utils.ToolTipItem();
  265. DevExpress.Utils.SuperToolTip superToolTip79 = new DevExpress.Utils.SuperToolTip();
  266. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem79 = new DevExpress.Utils.ToolTipTitleItem();
  267. DevExpress.Utils.ToolTipItem toolTipItem79 = new DevExpress.Utils.ToolTipItem();
  268. DevExpress.Utils.SuperToolTip superToolTip80 = new DevExpress.Utils.SuperToolTip();
  269. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem80 = new DevExpress.Utils.ToolTipTitleItem();
  270. DevExpress.Utils.ToolTipItem toolTipItem80 = new DevExpress.Utils.ToolTipItem();
  271. DevExpress.Utils.SuperToolTip superToolTip81 = new DevExpress.Utils.SuperToolTip();
  272. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem81 = new DevExpress.Utils.ToolTipTitleItem();
  273. DevExpress.Utils.ToolTipItem toolTipItem81 = new DevExpress.Utils.ToolTipItem();
  274. DevExpress.Utils.SuperToolTip superToolTip82 = new DevExpress.Utils.SuperToolTip();
  275. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem82 = new DevExpress.Utils.ToolTipTitleItem();
  276. DevExpress.Utils.ToolTipItem toolTipItem82 = new DevExpress.Utils.ToolTipItem();
  277. DevExpress.Utils.SuperToolTip superToolTip83 = new DevExpress.Utils.SuperToolTip();
  278. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem83 = new DevExpress.Utils.ToolTipTitleItem();
  279. DevExpress.Utils.ToolTipItem toolTipItem83 = new DevExpress.Utils.ToolTipItem();
  280. DevExpress.Utils.SuperToolTip superToolTip84 = new DevExpress.Utils.SuperToolTip();
  281. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem84 = new DevExpress.Utils.ToolTipTitleItem();
  282. DevExpress.Utils.ToolTipItem toolTipItem84 = new DevExpress.Utils.ToolTipItem();
  283. DevExpress.Utils.SuperToolTip superToolTip85 = new DevExpress.Utils.SuperToolTip();
  284. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem85 = new DevExpress.Utils.ToolTipTitleItem();
  285. DevExpress.Utils.ToolTipItem toolTipItem85 = new DevExpress.Utils.ToolTipItem();
  286. DevExpress.Utils.SuperToolTip superToolTip86 = new DevExpress.Utils.SuperToolTip();
  287. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem86 = new DevExpress.Utils.ToolTipTitleItem();
  288. DevExpress.Utils.ToolTipItem toolTipItem86 = new DevExpress.Utils.ToolTipItem();
  289. DevExpress.Utils.SuperToolTip superToolTip87 = new DevExpress.Utils.SuperToolTip();
  290. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem87 = new DevExpress.Utils.ToolTipTitleItem();
  291. DevExpress.Utils.ToolTipItem toolTipItem87 = new DevExpress.Utils.ToolTipItem();
  292. DevExpress.Utils.SuperToolTip superToolTip88 = new DevExpress.Utils.SuperToolTip();
  293. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem88 = new DevExpress.Utils.ToolTipTitleItem();
  294. DevExpress.Utils.ToolTipItem toolTipItem88 = new DevExpress.Utils.ToolTipItem();
  295. DevExpress.Utils.SuperToolTip superToolTip89 = new DevExpress.Utils.SuperToolTip();
  296. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem89 = new DevExpress.Utils.ToolTipTitleItem();
  297. DevExpress.Utils.ToolTipItem toolTipItem89 = new DevExpress.Utils.ToolTipItem();
  298. DevExpress.Utils.SuperToolTip superToolTip90 = new DevExpress.Utils.SuperToolTip();
  299. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem90 = new DevExpress.Utils.ToolTipTitleItem();
  300. DevExpress.Utils.ToolTipItem toolTipItem90 = new DevExpress.Utils.ToolTipItem();
  301. DevExpress.Utils.SuperToolTip superToolTip91 = new DevExpress.Utils.SuperToolTip();
  302. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem91 = new DevExpress.Utils.ToolTipTitleItem();
  303. DevExpress.Utils.ToolTipItem toolTipItem91 = new DevExpress.Utils.ToolTipItem();
  304. DevExpress.Utils.SuperToolTip superToolTip92 = new DevExpress.Utils.SuperToolTip();
  305. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem92 = new DevExpress.Utils.ToolTipTitleItem();
  306. DevExpress.Utils.ToolTipItem toolTipItem92 = new DevExpress.Utils.ToolTipItem();
  307. DevExpress.Utils.SuperToolTip superToolTip93 = new DevExpress.Utils.SuperToolTip();
  308. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem93 = new DevExpress.Utils.ToolTipTitleItem();
  309. DevExpress.Utils.ToolTipItem toolTipItem93 = new DevExpress.Utils.ToolTipItem();
  310. DevExpress.Utils.SuperToolTip superToolTip94 = new DevExpress.Utils.SuperToolTip();
  311. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem94 = new DevExpress.Utils.ToolTipTitleItem();
  312. DevExpress.Utils.ToolTipItem toolTipItem94 = new DevExpress.Utils.ToolTipItem();
  313. DevExpress.Utils.SuperToolTip superToolTip95 = new DevExpress.Utils.SuperToolTip();
  314. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem95 = new DevExpress.Utils.ToolTipTitleItem();
  315. DevExpress.Utils.ToolTipItem toolTipItem95 = new DevExpress.Utils.ToolTipItem();
  316. DevExpress.Utils.SuperToolTip superToolTip96 = new DevExpress.Utils.SuperToolTip();
  317. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem96 = new DevExpress.Utils.ToolTipTitleItem();
  318. DevExpress.Utils.ToolTipItem toolTipItem96 = new DevExpress.Utils.ToolTipItem();
  319. DevExpress.Utils.SuperToolTip superToolTip97 = new DevExpress.Utils.SuperToolTip();
  320. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem97 = new DevExpress.Utils.ToolTipTitleItem();
  321. DevExpress.Utils.ToolTipItem toolTipItem97 = new DevExpress.Utils.ToolTipItem();
  322. DevExpress.Utils.SuperToolTip superToolTip98 = new DevExpress.Utils.SuperToolTip();
  323. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem98 = new DevExpress.Utils.ToolTipTitleItem();
  324. DevExpress.Utils.ToolTipItem toolTipItem98 = new DevExpress.Utils.ToolTipItem();
  325. DevExpress.Utils.SuperToolTip superToolTip99 = new DevExpress.Utils.SuperToolTip();
  326. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem99 = new DevExpress.Utils.ToolTipTitleItem();
  327. DevExpress.Utils.ToolTipItem toolTipItem99 = new DevExpress.Utils.ToolTipItem();
  328. DevExpress.Utils.SuperToolTip superToolTip100 = new DevExpress.Utils.SuperToolTip();
  329. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem100 = new DevExpress.Utils.ToolTipTitleItem();
  330. DevExpress.Utils.ToolTipItem toolTipItem100 = new DevExpress.Utils.ToolTipItem();
  331. DevExpress.Utils.SuperToolTip superToolTip101 = new DevExpress.Utils.SuperToolTip();
  332. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem101 = new DevExpress.Utils.ToolTipTitleItem();
  333. DevExpress.Utils.ToolTipItem toolTipItem101 = new DevExpress.Utils.ToolTipItem();
  334. DevExpress.Utils.SuperToolTip superToolTip102 = new DevExpress.Utils.SuperToolTip();
  335. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem102 = new DevExpress.Utils.ToolTipTitleItem();
  336. DevExpress.Utils.ToolTipItem toolTipItem102 = new DevExpress.Utils.ToolTipItem();
  337. DevExpress.Utils.SuperToolTip superToolTip103 = new DevExpress.Utils.SuperToolTip();
  338. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem103 = new DevExpress.Utils.ToolTipTitleItem();
  339. DevExpress.Utils.ToolTipItem toolTipItem103 = new DevExpress.Utils.ToolTipItem();
  340. DevExpress.Utils.SuperToolTip superToolTip104 = new DevExpress.Utils.SuperToolTip();
  341. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem104 = new DevExpress.Utils.ToolTipTitleItem();
  342. DevExpress.Utils.ToolTipItem toolTipItem104 = new DevExpress.Utils.ToolTipItem();
  343. DevExpress.Utils.SuperToolTip superToolTip105 = new DevExpress.Utils.SuperToolTip();
  344. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem105 = new DevExpress.Utils.ToolTipTitleItem();
  345. DevExpress.Utils.ToolTipItem toolTipItem105 = new DevExpress.Utils.ToolTipItem();
  346. DevExpress.Utils.SuperToolTip superToolTip106 = new DevExpress.Utils.SuperToolTip();
  347. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem106 = new DevExpress.Utils.ToolTipTitleItem();
  348. DevExpress.Utils.ToolTipItem toolTipItem106 = new DevExpress.Utils.ToolTipItem();
  349. DevExpress.Utils.SuperToolTip superToolTip107 = new DevExpress.Utils.SuperToolTip();
  350. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem107 = new DevExpress.Utils.ToolTipTitleItem();
  351. DevExpress.Utils.ToolTipItem toolTipItem107 = new DevExpress.Utils.ToolTipItem();
  352. DevExpress.Utils.SuperToolTip superToolTip108 = new DevExpress.Utils.SuperToolTip();
  353. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem108 = new DevExpress.Utils.ToolTipTitleItem();
  354. DevExpress.Utils.ToolTipItem toolTipItem108 = new DevExpress.Utils.ToolTipItem();
  355. DevExpress.Utils.SuperToolTip superToolTip109 = new DevExpress.Utils.SuperToolTip();
  356. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem109 = new DevExpress.Utils.ToolTipTitleItem();
  357. DevExpress.Utils.ToolTipItem toolTipItem109 = new DevExpress.Utils.ToolTipItem();
  358. DevExpress.Utils.SuperToolTip superToolTip110 = new DevExpress.Utils.SuperToolTip();
  359. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem110 = new DevExpress.Utils.ToolTipTitleItem();
  360. DevExpress.Utils.ToolTipItem toolTipItem110 = new DevExpress.Utils.ToolTipItem();
  361. DevExpress.Utils.SuperToolTip superToolTip111 = new DevExpress.Utils.SuperToolTip();
  362. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem111 = new DevExpress.Utils.ToolTipTitleItem();
  363. DevExpress.Utils.ToolTipItem toolTipItem111 = new DevExpress.Utils.ToolTipItem();
  364. DevExpress.Utils.SuperToolTip superToolTip112 = new DevExpress.Utils.SuperToolTip();
  365. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem112 = new DevExpress.Utils.ToolTipTitleItem();
  366. DevExpress.Utils.ToolTipItem toolTipItem112 = new DevExpress.Utils.ToolTipItem();
  367. DevExpress.Utils.SuperToolTip superToolTip113 = new DevExpress.Utils.SuperToolTip();
  368. DevExpress.Utils.ToolTipTitleItem toolTipTitleItem113 = new DevExpress.Utils.ToolTipTitleItem();
  369. DevExpress.Utils.ToolTipItem toolTipItem113 = new DevExpress.Utils.ToolTipItem();
  370. DevExpress.XtraReports.UserDesigner.XRDesignPanelListener xrDesignPanelListener1 = new DevExpress.XtraReports.UserDesigner.XRDesignPanelListener();
  371. DevExpress.XtraReports.UserDesigner.XRDesignPanelListener xrDesignPanelListener2 = new DevExpress.XtraReports.UserDesigner.XRDesignPanelListener();
  372. DevExpress.XtraReports.UserDesigner.XRDesignPanelListener xrDesignPanelListener3 = new DevExpress.XtraReports.UserDesigner.XRDesignPanelListener();
  373. DevExpress.XtraReports.UserDesigner.XRDesignPanelListener xrDesignPanelListener4 = new DevExpress.XtraReports.UserDesigner.XRDesignPanelListener();
  374. DevExpress.XtraReports.UserDesigner.XRDesignPanelListener xrDesignPanelListener5 = new DevExpress.XtraReports.UserDesigner.XRDesignPanelListener();
  375. DevExpress.XtraReports.UserDesigner.XRDesignPanelListener xrDesignPanelListener6 = new DevExpress.XtraReports.UserDesigner.XRDesignPanelListener();
  376. DevExpress.XtraReports.UserDesigner.XRDesignPanelListener xrDesignPanelListener7 = new DevExpress.XtraReports.UserDesigner.XRDesignPanelListener();
  377. DevExpress.XtraReports.UserDesigner.XRDesignPanelListener xrDesignPanelListener8 = new DevExpress.XtraReports.UserDesigner.XRDesignPanelListener();
  378. this.xrDesignRibbonController1 = new DevExpress.XtraReports.UserDesigner.XRDesignRibbonController(this.components);
  379. this.ribbon = new DevExpress.XtraBars.Ribbon.RibbonControl();
  380. this.applicationMenu1 = new DevExpress.XtraBars.Ribbon.ApplicationMenu(this.components);
  381. this.commandBarItem31 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  382. this.commandBarItem34 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  383. this.commandBarItem32 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  384. this.commandBarItem33 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  385. this.commandBarItem52 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  386. this.commandBarItem53 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  387. this.barButtonImageTile = new DevExpress.XtraBars.BarButtonItem();
  388. this.skinRibbonGalleryBarItem1 = new DevExpress.XtraBars.SkinRibbonGalleryBarItem();
  389. this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
  390. this.btnQuXianInfo = new DevExpress.XtraBars.BarButtonItem();
  391. this.btnDaoChainfo = new DevExpress.XtraBars.BarButtonItem();
  392. this.btnGuanJieinfo = new DevExpress.XtraBars.BarButtonItem();
  393. this.skinRibbonGalleryBarItem2 = new DevExpress.XtraBars.SkinRibbonGalleryBarItem();
  394. this.commandBarItem1 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  395. this.commandBarItem2 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  396. this.commandBarItem3 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  397. this.commandBarItem4 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  398. this.commandBarItem5 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  399. this.commandBarItem6 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  400. this.commandBarItem7 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  401. this.commandBarItem8 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  402. this.commandBarItem9 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  403. this.commandBarItem10 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  404. this.commandBarItem11 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  405. this.commandBarItem12 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  406. this.commandBarItem13 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  407. this.commandBarItem14 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  408. this.commandBarItem15 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  409. this.commandBarItem16 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  410. this.commandBarItem17 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  411. this.commandBarItem18 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  412. this.commandBarItem19 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  413. this.commandBarItem20 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  414. this.commandBarItem21 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  415. this.commandBarItem22 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  416. this.commandBarItem23 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  417. this.commandBarItem24 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  418. this.commandBarItem25 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  419. this.commandBarItem26 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  420. this.commandColorBarItem1 = new DevExpress.XtraReports.UserDesigner.CommandColorBarItem();
  421. this.commandColorBarItem2 = new DevExpress.XtraReports.UserDesigner.CommandColorBarItem();
  422. this.commandBarItem27 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  423. this.commandBarItem28 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  424. this.commandBarItem29 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  425. this.commandBarItem30 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  426. this.commandBarItem35 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  427. this.commandBarItem36 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  428. this.commandBarItem37 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  429. this.commandBarItem38 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  430. this.commandBarItem39 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  431. this.commandBarItem40 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  432. this.commandBarItem41 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  433. this.commandBarItem42 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  434. this.commandBarItem43 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  435. this.commandBarItem44 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  436. this.commandBarItem45 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  437. this.commandBarItem46 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  438. this.barEditItem1 = new DevExpress.XtraBars.BarEditItem();
  439. this.recentlyUsedItemsComboBox1 = new DevExpress.XtraReports.UserDesigner.RecentlyUsedItemsComboBox();
  440. this.barEditItem2 = new DevExpress.XtraBars.BarEditItem();
  441. this.designRepositoryItemComboBox1 = new DevExpress.XtraReports.UserDesigner.DesignRepositoryItemComboBox();
  442. this.barDockPanelsListItem1 = new DevExpress.XtraReports.UserDesigner.BarDockPanelsListItem();
  443. this.scriptsCommandBarItem1 = new DevExpress.XtraReports.UserDesigner.ScriptsCommandBarItem();
  444. this.commandBarItem47 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  445. this.commandBarItem48 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  446. this.commandBarItem49 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  447. this.commandBarItem50 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  448. this.commandBarItem51 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
  449. this.xrDesignBarButtonGroup1 = new DevExpress.XtraReports.UserDesigner.XRDesignBarButtonGroup();
  450. this.xrDesignBarButtonGroup2 = new DevExpress.XtraReports.UserDesigner.XRDesignBarButtonGroup();
  451. this.xrDesignBarButtonGroup3 = new DevExpress.XtraReports.UserDesigner.XRDesignBarButtonGroup();
  452. this.xrDesignBarButtonGroup4 = new DevExpress.XtraReports.UserDesigner.XRDesignBarButtonGroup();
  453. this.xrDesignBarButtonGroup5 = new DevExpress.XtraReports.UserDesigner.XRDesignBarButtonGroup();
  454. this.xrDesignBarButtonGroup6 = new DevExpress.XtraReports.UserDesigner.XRDesignBarButtonGroup();
  455. this.xrDesignBarButtonGroup7 = new DevExpress.XtraReports.UserDesigner.XRDesignBarButtonGroup();
  456. this.xrDesignBarButtonGroup8 = new DevExpress.XtraReports.UserDesigner.XRDesignBarButtonGroup();
  457. this.xrDesignBarButtonGroup9 = new DevExpress.XtraReports.UserDesigner.XRDesignBarButtonGroup();
  458. this.printPreviewBarItem1 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
  459. this.printPreviewBarItem2 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
  460. this.printPreviewBarItem3 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
  461. this.printPreviewBarItem4 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
  462. this.printPreviewBarItem5 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
  463. this.printPreviewBarItem6 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
  464. this.printPreviewBarItem7 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
  465. this.printPreviewBarItem8 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
  466. this.printPreviewBarItem9 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
  467. this.printPreviewBarItem10 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
  468. this.printPreviewBarItem11 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
  469. this.printPreviewBarItem12 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
  470. this.printPreviewBarItem13 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
  471. this.printPreviewBarItem14 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
  472. this.printPreviewBarItem15 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
  473. this.printPreviewBarItem16 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
  474. this.printPreviewBarItem17 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
  475. this.printPreviewBarItem18 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
  476. this.printPreviewBarItem19 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
  477. this.printPreviewBarItem20 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
  478. this.printPreviewBarItem21 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
  479. this.printPreviewBarItem22 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
  480. this.printPreviewBarItem23 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
  481. this.printPreviewBarItem24 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
  482. this.printPreviewBarItem25 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
  483. this.printPreviewBarItem26 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
  484. this.printPreviewBarItem27 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
  485. this.printPreviewBarItem28 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
  486. this.printPreviewBarItem29 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
  487. this.printPreviewBarItem30 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
  488. this.printPreviewBarItem31 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
  489. this.printPreviewBarItem32 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
  490. this.printPreviewBarItem33 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
  491. this.printPreviewBarItem34 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
  492. this.printPreviewBarItem35 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
  493. this.printPreviewBarItem36 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
  494. this.printPreviewBarItem37 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
  495. this.printPreviewBarItem38 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
  496. this.printPreviewBarItem39 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
  497. this.printPreviewBarItem40 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
  498. this.printPreviewBarItem41 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
  499. this.printPreviewBarItem42 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
  500. this.printPreviewBarItem43 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
  501. this.printPreviewBarItem44 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
  502. this.printPreviewBarItem45 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
  503. this.printPreviewBarItem46 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
  504. this.printPreviewBarItem47 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
  505. this.printPreviewBarItem48 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
  506. this.printPreviewStaticItem1 = new DevExpress.XtraPrinting.Preview.PrintPreviewStaticItem();
  507. this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
  508. this.progressBarEditItem1 = new DevExpress.XtraPrinting.Preview.ProgressBarEditItem();
  509. this.repositoryItemProgressBar1 = new DevExpress.XtraEditors.Repository.RepositoryItemProgressBar();
  510. this.printPreviewBarItem49 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
  511. this.barButtonItem8 = new DevExpress.XtraBars.BarButtonItem();
  512. this.printPreviewStaticItem2 = new DevExpress.XtraPrinting.Preview.PrintPreviewStaticItem();
  513. this.zoomTrackBarEditItem1 = new DevExpress.XtraPrinting.Preview.ZoomTrackBarEditItem();
  514. this.repositoryItemZoomTrackBar1 = new DevExpress.XtraEditors.Repository.RepositoryItemZoomTrackBar();
  515. this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
  516. this.barSubItem2 = new DevExpress.XtraBars.BarSubItem();
  517. this.quxiandata = new DevExpress.XtraBars.BarButtonItem();
  518. this.daochadata = new DevExpress.XtraBars.BarButtonItem();
  519. this.guanjiedata = new DevExpress.XtraBars.BarButtonItem();
  520. this.gongLvDataSetting = new DevExpress.XtraBars.BarButtonItem();
  521. this.queKouDataSetting = new DevExpress.XtraBars.BarButtonItem();
  522. this.barButtonItem28 = new DevExpress.XtraBars.BarButtonItem();
  523. this.barButtonItem5 = new DevExpress.XtraBars.BarButtonItem();
  524. this.barButtonItem11 = new DevExpress.XtraBars.BarButtonItem();
  525. this.barButtonItem13 = new DevExpress.XtraBars.BarButtonItem();
  526. this.barButtonItem_DataManager = new DevExpress.XtraBars.BarButtonItem();
  527. this.barButtonItem14 = new DevExpress.XtraBars.BarButtonItem();
  528. this.barButtonItem16 = new DevExpress.XtraBars.BarButtonItem();
  529. this.barSubItem6 = new DevExpress.XtraBars.BarSubItem();
  530. this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
  531. this.barButtonItem12 = new DevExpress.XtraBars.BarButtonItem();
  532. this.barButtonItem17 = new DevExpress.XtraBars.BarButtonItem();
  533. this.barButtonItem18 = new DevExpress.XtraBars.BarButtonItem();
  534. this.barSubItem7 = new DevExpress.XtraBars.BarSubItem();
  535. this.barButtonItem21 = new DevExpress.XtraBars.BarButtonItem();
  536. this.barButtonItem22 = new DevExpress.XtraBars.BarButtonItem();
  537. this.barButtonItem19 = new DevExpress.XtraBars.BarButtonItem();
  538. this.barButtonItem20 = new DevExpress.XtraBars.BarButtonItem();
  539. this.GDJHbBtnI = new DevExpress.XtraBars.BarButtonItem();
  540. this.LGLbBtnI = new DevExpress.XtraBars.BarButtonItem();
  541. this.barButtonItem10 = new DevExpress.XtraBars.BarButtonItem();
  542. this.barButtonItem23 = new DevExpress.XtraBars.BarButtonItem();
  543. this.barButtonItem24 = new DevExpress.XtraBars.BarButtonItem();
  544. this.barButtonItem25 = new DevExpress.XtraBars.BarButtonItem();
  545. this.barButtonItem26 = new DevExpress.XtraBars.BarButtonItem();
  546. this.barButtonItem27 = new DevExpress.XtraBars.BarButtonItem();
  547. this.btnJXGJJ = new DevExpress.XtraBars.BarButtonItem();
  548. this.StartZDHBtn = new DevExpress.XtraBars.BarButtonItem();
  549. this.EndZDHBtn = new DevExpress.XtraBars.BarButtonItem();
  550. this.GLBtn = new DevExpress.XtraBars.BarButtonItem();
  551. this.QKBtn = new DevExpress.XtraBars.BarButtonItem();
  552. this.DWSJBtn = new DevExpress.XtraBars.BarButtonItem();
  553. this.barButtonItem29 = new DevExpress.XtraBars.BarButtonItem();
  554. this.barLinkContainerItem1 = new DevExpress.XtraBars.BarLinkContainerItem();
  555. this.barButtonItem30 = new DevExpress.XtraBars.BarButtonItem();
  556. this.barButtonItem31 = new DevExpress.XtraBars.BarButtonItem();
  557. this.ribbonMiniToolbar1 = new DevExpress.XtraBars.Ribbon.RibbonMiniToolbar(this.components);
  558. this.xrToolboxPageCategory1 = new DevExpress.XtraReports.UserDesigner.XRToolboxPageCategory();
  559. this.ribbonPage1 = new DevExpress.XtraBars.Ribbon.RibbonPage();
  560. this.ribbonPageGroup6 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
  561. this.ribbonPageGroup12 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
  562. this.ribbonPageGroup5 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
  563. this.ribbonPageGroup11 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
  564. this.ribbonPageGroup7 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
  565. this.ribbonPage2 = new DevExpress.XtraBars.Ribbon.RibbonPage();
  566. this.ribbonPageGroup8 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
  567. this.ribbonPageGroup10 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
  568. this.ribbonPageGroup9 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
  569. this.ribbonPageGroup4 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
  570. this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
  571. this.repositoryItemCheckedComboBoxEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckedComboBoxEdit();
  572. this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
  573. this.ribbonStatusBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
  574. this.xrDesignDockManager1 = new DevExpress.XtraReports.UserDesigner.XRDesignDockManager(this.components);
  575. this.panelContainer1 = new DevExpress.XtraBars.Docking.DockPanel();
  576. this.panelContainer2 = new DevExpress.XtraBars.Docking.DockPanel();
  577. this.fieldListDockPanel1 = new DevExpress.XtraReports.UserDesigner.FieldListDockPanel();
  578. this.fieldListDockPanel1_Container = new DevExpress.XtraReports.UserDesigner.DesignControlContainer();
  579. this.reportExplorerDockPanel1 = new DevExpress.XtraReports.UserDesigner.ReportExplorerDockPanel();
  580. this.reportExplorerDockPanel1_Container = new DevExpress.XtraReports.UserDesigner.DesignControlContainer();
  581. this.propertyGridDockPanel1 = new DevExpress.XtraReports.UserDesigner.PropertyGridDockPanel();
  582. this.propertyGridDockPanel1_Container = new DevExpress.XtraReports.UserDesigner.DesignControlContainer();
  583. this.toolBoxDockPanel1 = new DevExpress.XtraReports.UserDesigner.ToolBoxDockPanel();
  584. this.toolBoxDockPanel1_Container = new DevExpress.XtraReports.UserDesigner.DesignControlContainer();
  585. this.panelContainer3 = new DevExpress.XtraBars.Docking.DockPanel();
  586. this.errorListDockPanel1 = new DevExpress.XtraReports.UserDesigner.ErrorListDockPanel();
  587. this.errorListDockPanel1_Container = new DevExpress.XtraReports.UserDesigner.DesignControlContainer();
  588. this.groupAndSortDockPanel1 = new DevExpress.XtraReports.UserDesigner.GroupAndSortDockPanel();
  589. this.groupAndSortDockPanel1_Container = new DevExpress.XtraReports.UserDesigner.DesignControlContainer();
  590. this.galleryDropDown1 = new DevExpress.XtraBars.Ribbon.GalleryDropDown(this.components);
  591. this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
  592. this.ribbonPageGroup2 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
  593. this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
  594. this.barButtonItem6 = new DevExpress.XtraBars.BarButtonItem();
  595. this.barButtonItem7 = new DevExpress.XtraBars.BarButtonItem();
  596. this.barButtonItem9 = new DevExpress.XtraBars.BarButtonItem();
  597. this.reportDesigner1 = new DevExpress.XtraReports.UserDesigner.XRDesignMdiController(this.components);
  598. this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
  599. this.galleryDropDown2 = new DevExpress.XtraBars.Ribbon.GalleryDropDown(this.components);
  600. this.popupMenu2 = new DevExpress.XtraBars.PopupMenu(this.components);
  601. this.popupMenu3 = new DevExpress.XtraBars.PopupMenu(this.components);
  602. this.ribbonPageGroup3 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
  603. this.barButtonItem15 = new DevExpress.XtraBars.BarButtonItem();
  604. this.xtraTabDataManager = new DevExpress.XtraTab.XtraTabPage();
  605. this.xtraTabPageLGL = new DevExpress.XtraTab.XtraTabPage();
  606. this.gridControl3 = new DevExpress.XtraGrid.GridControl();
  607. this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
  608. this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
  609. this.gridColumn33 = new DevExpress.XtraGrid.Columns.GridColumn();
  610. this.gridColumn35 = new DevExpress.XtraGrid.Columns.GridColumn();
  611. this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
  612. this.gridColumn37 = new DevExpress.XtraGrid.Columns.GridColumn();
  613. this.gridColumn38 = new DevExpress.XtraGrid.Columns.GridColumn();
  614. this.gridColumn39 = new DevExpress.XtraGrid.Columns.GridColumn();
  615. this.gridColumn40 = new DevExpress.XtraGrid.Columns.GridColumn();
  616. this.gridColumn41 = new DevExpress.XtraGrid.Columns.GridColumn();
  617. this.gridColumn42 = new DevExpress.XtraGrid.Columns.GridColumn();
  618. this.gridColumn43 = new DevExpress.XtraGrid.Columns.GridColumn();
  619. this.gridColumn44 = new DevExpress.XtraGrid.Columns.GridColumn();
  620. this.repositoryItemCheckEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
  621. this.panelControl4 = new DevExpress.XtraEditors.PanelControl();
  622. this.LGLTQBtn = new DevExpress.XtraEditors.SimpleButton();
  623. this.LGLFXBtn = new DevExpress.XtraEditors.SimpleButton();
  624. this.LGLdelBtn = new DevExpress.XtraEditors.SimpleButton();
  625. this.LGLJCCcomboBoxEdit = new DevExpress.XtraEditors.ComboBoxEdit();
  626. this.LGLcheckEdit = new DevExpress.XtraEditors.CheckEdit();
  627. this.LGLOpenfileBtn = new DevExpress.XtraEditors.SimpleButton();
  628. this.LGLgengxinBtn = new DevExpress.XtraEditors.SimpleButton();
  629. this.LGLjiancecheBtn = new DevExpress.XtraEditors.SimpleButton();
  630. this.xtraTabPageJH = new DevExpress.XtraTab.XtraTabPage();
  631. this.gridControl2 = new DevExpress.XtraGrid.GridControl();
  632. this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
  633. this.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn();
  634. this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
  635. this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
  636. this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
  637. this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
  638. this.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn();
  639. this.gridColumn27 = new DevExpress.XtraGrid.Columns.GridColumn();
  640. this.gridColumn28 = new DevExpress.XtraGrid.Columns.GridColumn();
  641. this.gridColumn29 = new DevExpress.XtraGrid.Columns.GridColumn();
  642. this.gridColumn30 = new DevExpress.XtraGrid.Columns.GridColumn();
  643. this.gridColumn31 = new DevExpress.XtraGrid.Columns.GridColumn();
  644. this.gridColumn32 = new DevExpress.XtraGrid.Columns.GridColumn();
  645. this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
  646. this.repositoryItemCheckEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
  647. this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
  648. this.JHdelBtn = new DevExpress.XtraEditors.SimpleButton();
  649. this.JHFXcheckEdit = new DevExpress.XtraEditors.CheckEdit();
  650. this.WXSFBtn = new DevExpress.XtraEditors.SimpleButton();
  651. this.JHTQBtn = new DevExpress.XtraEditors.SimpleButton();
  652. this.JHgengxinBtn = new DevExpress.XtraEditors.SimpleButton();
  653. this.JHFXjiancecheBtn = new DevExpress.XtraEditors.SimpleButton();
  654. this.JHFXopenfileBtn = new DevExpress.XtraEditors.SimpleButton();
  655. this.JHFXJCCcomboBoxEdit = new DevExpress.XtraEditors.ComboBoxEdit();
  656. this.xtraTabPageGJ = new DevExpress.XtraTab.XtraTabPage();
  657. this.gjInform9 = new Uninpho.Tools.components.TZFunc.GJInform();
  658. this.xtraTabPageQX = new DevExpress.XtraTab.XtraTabPage();
  659. this.gridControl1 = new DevExpress.XtraGrid.GridControl();
  660. this.railwaybureau = new DevExpress.XtraGrid.Views.Grid.GridView();
  661. this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
  662. this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
  663. this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
  664. this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
  665. this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
  666. this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
  667. this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
  668. this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
  669. this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
  670. this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
  671. this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
  672. this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
  673. this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
  674. this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
  675. this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
  676. this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
  677. this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
  678. this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
  679. this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
  680. this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
  681. this.deleteroebtnqx = new DevExpress.XtraEditors.SimpleButton();
  682. this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
  683. this.xtraTabPageDC = new DevExpress.XtraTab.XtraTabPage();
  684. this.dcInform8 = new Uninpho.Tools.components.TZFunc.DCInform();
  685. this.xtraTabPageGLData = new DevExpress.XtraTab.XtraTabPage();
  686. this.gridControl6 = new DevExpress.XtraGrid.GridControl();
  687. this.gridView6 = new DevExpress.XtraGrid.Views.Grid.GridView();
  688. this.gridColumn45 = new DevExpress.XtraGrid.Columns.GridColumn();
  689. this.gridColumn46 = new DevExpress.XtraGrid.Columns.GridColumn();
  690. this.gridColumn70 = new DevExpress.XtraGrid.Columns.GridColumn();
  691. this.gridColumn71 = new DevExpress.XtraGrid.Columns.GridColumn();
  692. this.gridColumn72 = new DevExpress.XtraGrid.Columns.GridColumn();
  693. this.repositoryItemCheckEdit6 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
  694. this.panelControl7 = new DevExpress.XtraEditors.PanelControl();
  695. this.importGLData = new DevExpress.XtraEditors.SimpleButton();
  696. this.deleteGLdata = new DevExpress.XtraEditors.SimpleButton();
  697. this.xtraTabPageQKData = new DevExpress.XtraTab.XtraTabPage();
  698. this.gridControl7 = new DevExpress.XtraGrid.GridControl();
  699. this.gridView7 = new DevExpress.XtraGrid.Views.Grid.GridView();
  700. this.gridColumn59 = new DevExpress.XtraGrid.Columns.GridColumn();
  701. this.gridColumn60 = new DevExpress.XtraGrid.Columns.GridColumn();
  702. this.gridColumn67 = new DevExpress.XtraGrid.Columns.GridColumn();
  703. this.gridColumn68 = new DevExpress.XtraGrid.Columns.GridColumn();
  704. this.gridColumn73 = new DevExpress.XtraGrid.Columns.GridColumn();
  705. this.gridColumn69 = new DevExpress.XtraGrid.Columns.GridColumn();
  706. this.repositoryItemCheckEdit7 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
  707. this.panelControl8 = new DevExpress.XtraEditors.PanelControl();
  708. this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
  709. this.deleteQKdata = new DevExpress.XtraEditors.SimpleButton();
  710. this.xtraTabPageMTLF = new DevExpress.XtraTab.XtraTabPage();
  711. this.xtraTabPageZZJH = new DevExpress.XtraTab.XtraTabPage();
  712. this.xtraTabPageXXXW = new DevExpress.XtraTab.XtraTabPage();
  713. this.xtraTabPageGL = new DevExpress.XtraTab.XtraTabPage();
  714. this.gridControl4 = new DevExpress.XtraGrid.GridControl();
  715. this.gridView4 = new DevExpress.XtraGrid.Views.Grid.GridView();
  716. this.gridColumn34 = new DevExpress.XtraGrid.Columns.GridColumn();
  717. this.gridColumn36 = new DevExpress.XtraGrid.Columns.GridColumn();
  718. this.gridColumn47 = new DevExpress.XtraGrid.Columns.GridColumn();
  719. this.gridColumn48 = new DevExpress.XtraGrid.Columns.GridColumn();
  720. this.gridColumn49 = new DevExpress.XtraGrid.Columns.GridColumn();
  721. this.gridColumn50 = new DevExpress.XtraGrid.Columns.GridColumn();
  722. this.gridColumn51 = new DevExpress.XtraGrid.Columns.GridColumn();
  723. this.gridColumn52 = new DevExpress.XtraGrid.Columns.GridColumn();
  724. this.gridColumn53 = new DevExpress.XtraGrid.Columns.GridColumn();
  725. this.gridColumn54 = new DevExpress.XtraGrid.Columns.GridColumn();
  726. this.gridColumn74 = new DevExpress.XtraGrid.Columns.GridColumn();
  727. this.repositoryItemCheckEdit4 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
  728. this.panelControl5 = new DevExpress.XtraEditors.PanelControl();
  729. this.DWGLcheckEdit = new DevExpress.XtraEditors.CheckEdit();
  730. this.DWGLdelBtn = new DevExpress.XtraEditors.SimpleButton();
  731. this.DWGLimportfileBtn = new DevExpress.XtraEditors.SimpleButton();
  732. this.DWGLanalysisBtn = new DevExpress.XtraEditors.SimpleButton();
  733. this.xtraTabPageQK = new DevExpress.XtraTab.XtraTabPage();
  734. this.gridControl5 = new DevExpress.XtraGrid.GridControl();
  735. this.gridView5 = new DevExpress.XtraGrid.Views.Grid.GridView();
  736. this.gridColumn55 = new DevExpress.XtraGrid.Columns.GridColumn();
  737. this.gridColumn56 = new DevExpress.XtraGrid.Columns.GridColumn();
  738. this.gridColumn57 = new DevExpress.XtraGrid.Columns.GridColumn();
  739. this.gridColumn58 = new DevExpress.XtraGrid.Columns.GridColumn();
  740. this.gridColumn61 = new DevExpress.XtraGrid.Columns.GridColumn();
  741. this.gridColumn62 = new DevExpress.XtraGrid.Columns.GridColumn();
  742. this.gridColumn63 = new DevExpress.XtraGrid.Columns.GridColumn();
  743. this.gridColumn64 = new DevExpress.XtraGrid.Columns.GridColumn();
  744. this.gridColumn65 = new DevExpress.XtraGrid.Columns.GridColumn();
  745. this.gridColumn66 = new DevExpress.XtraGrid.Columns.GridColumn();
  746. this.gridColumn75 = new DevExpress.XtraGrid.Columns.GridColumn();
  747. this.repositoryItemCheckEdit5 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
  748. this.panelControl6 = new DevExpress.XtraEditors.PanelControl();
  749. this.DWQKcheckEdit = new DevExpress.XtraEditors.CheckEdit();
  750. this.DWQKdelBtn = new DevExpress.XtraEditors.SimpleButton();
  751. this.DWQKimportfileBtn = new DevExpress.XtraEditors.SimpleButton();
  752. this.DWQKanalysisBtn = new DevExpress.XtraEditors.SimpleButton();
  753. this.xtraTabPageDWZS = new DevExpress.XtraTab.XtraTabPage();
  754. this.pageSetupDialog1 = new System.Windows.Forms.PageSetupDialog();
  755. ((System.ComponentModel.ISupportInitialize)(this.xrDesignRibbonController1)).BeginInit();
  756. ((System.ComponentModel.ISupportInitialize)(this.ribbon)).BeginInit();
  757. ((System.ComponentModel.ISupportInitialize)(this.applicationMenu1)).BeginInit();
  758. ((System.ComponentModel.ISupportInitialize)(this.recentlyUsedItemsComboBox1)).BeginInit();
  759. ((System.ComponentModel.ISupportInitialize)(this.designRepositoryItemComboBox1)).BeginInit();
  760. ((System.ComponentModel.ISupportInitialize)(this.repositoryItemProgressBar1)).BeginInit();
  761. ((System.ComponentModel.ISupportInitialize)(this.repositoryItemZoomTrackBar1)).BeginInit();
  762. ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckedComboBoxEdit1)).BeginInit();
  763. ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
  764. ((System.ComponentModel.ISupportInitialize)(this.xrDesignDockManager1)).BeginInit();
  765. this.panelContainer1.SuspendLayout();
  766. this.panelContainer2.SuspendLayout();
  767. this.fieldListDockPanel1.SuspendLayout();
  768. this.reportExplorerDockPanel1.SuspendLayout();
  769. this.propertyGridDockPanel1.SuspendLayout();
  770. this.toolBoxDockPanel1.SuspendLayout();
  771. this.panelContainer3.SuspendLayout();
  772. this.errorListDockPanel1.SuspendLayout();
  773. this.groupAndSortDockPanel1.SuspendLayout();
  774. ((System.ComponentModel.ISupportInitialize)(this.galleryDropDown1)).BeginInit();
  775. ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
  776. ((System.ComponentModel.ISupportInitialize)(this.galleryDropDown2)).BeginInit();
  777. ((System.ComponentModel.ISupportInitialize)(this.popupMenu2)).BeginInit();
  778. ((System.ComponentModel.ISupportInitialize)(this.popupMenu3)).BeginInit();
  779. this.xtraTabPageLGL.SuspendLayout();
  780. ((System.ComponentModel.ISupportInitialize)(this.gridControl3)).BeginInit();
  781. ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
  782. ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).BeginInit();
  783. ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).BeginInit();
  784. this.panelControl4.SuspendLayout();
  785. ((System.ComponentModel.ISupportInitialize)(this.LGLJCCcomboBoxEdit.Properties)).BeginInit();
  786. ((System.ComponentModel.ISupportInitialize)(this.LGLcheckEdit.Properties)).BeginInit();
  787. this.xtraTabPageJH.SuspendLayout();
  788. ((System.ComponentModel.ISupportInitialize)(this.gridControl2)).BeginInit();
  789. ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
  790. ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).BeginInit();
  791. ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
  792. this.panelControl1.SuspendLayout();
  793. ((System.ComponentModel.ISupportInitialize)(this.JHFXcheckEdit.Properties)).BeginInit();
  794. ((System.ComponentModel.ISupportInitialize)(this.JHFXJCCcomboBoxEdit.Properties)).BeginInit();
  795. this.xtraTabPageGJ.SuspendLayout();
  796. this.xtraTabPageQX.SuspendLayout();
  797. ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
  798. ((System.ComponentModel.ISupportInitialize)(this.railwaybureau)).BeginInit();
  799. ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
  800. ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
  801. ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
  802. this.panelControl2.SuspendLayout();
  803. ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
  804. this.xtraTabControl1.SuspendLayout();
  805. this.xtraTabPageDC.SuspendLayout();
  806. this.xtraTabPageGLData.SuspendLayout();
  807. ((System.ComponentModel.ISupportInitialize)(this.gridControl6)).BeginInit();
  808. ((System.ComponentModel.ISupportInitialize)(this.gridView6)).BeginInit();
  809. ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit6)).BeginInit();
  810. ((System.ComponentModel.ISupportInitialize)(this.panelControl7)).BeginInit();
  811. this.panelControl7.SuspendLayout();
  812. this.xtraTabPageQKData.SuspendLayout();
  813. ((System.ComponentModel.ISupportInitialize)(this.gridControl7)).BeginInit();
  814. ((System.ComponentModel.ISupportInitialize)(this.gridView7)).BeginInit();
  815. ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit7)).BeginInit();
  816. ((System.ComponentModel.ISupportInitialize)(this.panelControl8)).BeginInit();
  817. this.panelControl8.SuspendLayout();
  818. this.xtraTabPageGL.SuspendLayout();
  819. ((System.ComponentModel.ISupportInitialize)(this.gridControl4)).BeginInit();
  820. ((System.ComponentModel.ISupportInitialize)(this.gridView4)).BeginInit();
  821. ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit4)).BeginInit();
  822. ((System.ComponentModel.ISupportInitialize)(this.panelControl5)).BeginInit();
  823. this.panelControl5.SuspendLayout();
  824. ((System.ComponentModel.ISupportInitialize)(this.DWGLcheckEdit.Properties)).BeginInit();
  825. this.xtraTabPageQK.SuspendLayout();
  826. ((System.ComponentModel.ISupportInitialize)(this.gridControl5)).BeginInit();
  827. ((System.ComponentModel.ISupportInitialize)(this.gridView5)).BeginInit();
  828. ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit5)).BeginInit();
  829. ((System.ComponentModel.ISupportInitialize)(this.panelControl6)).BeginInit();
  830. this.panelControl6.SuspendLayout();
  831. ((System.ComponentModel.ISupportInitialize)(this.DWQKcheckEdit.Properties)).BeginInit();
  832. this.SuspendLayout();
  833. //
  834. // xrDesignRibbonController1
  835. //
  836. this.xrDesignRibbonController1.RibbonControl = this.ribbon;
  837. this.xrDesignRibbonController1.RibbonStatusBar = this.ribbonStatusBar;
  838. this.xrDesignRibbonController1.XRDesignDockManager = this.xrDesignDockManager1;
  839. this.xrDesignRibbonController1.XRDesignPanel = null;
  840. //
  841. // ribbon
  842. //
  843. this.ribbon.ApplicationButtonDropDownControl = this.applicationMenu1;
  844. this.ribbon.AutoHideEmptyItems = true;
  845. this.ribbon.ExpandCollapseItem.Id = 0;
  846. this.ribbon.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
  847. this.ribbon.ExpandCollapseItem,
  848. this.barButtonImageTile,
  849. this.skinRibbonGalleryBarItem1,
  850. this.barButtonItem1,
  851. this.btnQuXianInfo,
  852. this.btnDaoChainfo,
  853. this.btnGuanJieinfo,
  854. this.skinRibbonGalleryBarItem2,
  855. this.commandBarItem1,
  856. this.commandBarItem2,
  857. this.commandBarItem3,
  858. this.commandBarItem4,
  859. this.commandBarItem5,
  860. this.commandBarItem6,
  861. this.commandBarItem7,
  862. this.commandBarItem8,
  863. this.commandBarItem9,
  864. this.commandBarItem10,
  865. this.commandBarItem11,
  866. this.commandBarItem12,
  867. this.commandBarItem13,
  868. this.commandBarItem14,
  869. this.commandBarItem15,
  870. this.commandBarItem16,
  871. this.commandBarItem17,
  872. this.commandBarItem18,
  873. this.commandBarItem19,
  874. this.commandBarItem20,
  875. this.commandBarItem21,
  876. this.commandBarItem22,
  877. this.commandBarItem23,
  878. this.commandBarItem24,
  879. this.commandBarItem25,
  880. this.commandBarItem26,
  881. this.commandColorBarItem1,
  882. this.commandColorBarItem2,
  883. this.commandBarItem27,
  884. this.commandBarItem28,
  885. this.commandBarItem29,
  886. this.commandBarItem30,
  887. this.commandBarItem31,
  888. this.commandBarItem32,
  889. this.commandBarItem33,
  890. this.commandBarItem34,
  891. this.commandBarItem35,
  892. this.commandBarItem36,
  893. this.commandBarItem37,
  894. this.commandBarItem38,
  895. this.commandBarItem39,
  896. this.commandBarItem40,
  897. this.commandBarItem41,
  898. this.commandBarItem42,
  899. this.commandBarItem43,
  900. this.commandBarItem44,
  901. this.commandBarItem45,
  902. this.commandBarItem46,
  903. this.barEditItem1,
  904. this.barEditItem2,
  905. this.barDockPanelsListItem1,
  906. this.scriptsCommandBarItem1,
  907. this.commandBarItem47,
  908. this.commandBarItem48,
  909. this.commandBarItem49,
  910. this.commandBarItem50,
  911. this.commandBarItem51,
  912. this.commandBarItem52,
  913. this.commandBarItem53,
  914. this.xrDesignBarButtonGroup1,
  915. this.xrDesignBarButtonGroup2,
  916. this.xrDesignBarButtonGroup3,
  917. this.xrDesignBarButtonGroup4,
  918. this.xrDesignBarButtonGroup5,
  919. this.xrDesignBarButtonGroup6,
  920. this.xrDesignBarButtonGroup7,
  921. this.xrDesignBarButtonGroup8,
  922. this.xrDesignBarButtonGroup9,
  923. this.printPreviewBarItem1,
  924. this.printPreviewBarItem2,
  925. this.printPreviewBarItem3,
  926. this.printPreviewBarItem4,
  927. this.printPreviewBarItem5,
  928. this.printPreviewBarItem6,
  929. this.printPreviewBarItem7,
  930. this.printPreviewBarItem8,
  931. this.printPreviewBarItem9,
  932. this.printPreviewBarItem10,
  933. this.printPreviewBarItem11,
  934. this.printPreviewBarItem12,
  935. this.printPreviewBarItem13,
  936. this.printPreviewBarItem14,
  937. this.printPreviewBarItem15,
  938. this.printPreviewBarItem16,
  939. this.printPreviewBarItem17,
  940. this.printPreviewBarItem18,
  941. this.printPreviewBarItem19,
  942. this.printPreviewBarItem20,
  943. this.printPreviewBarItem21,
  944. this.printPreviewBarItem22,
  945. this.printPreviewBarItem23,
  946. this.printPreviewBarItem24,
  947. this.printPreviewBarItem25,
  948. this.printPreviewBarItem26,
  949. this.printPreviewBarItem27,
  950. this.printPreviewBarItem28,
  951. this.printPreviewBarItem29,
  952. this.printPreviewBarItem30,
  953. this.printPreviewBarItem31,
  954. this.printPreviewBarItem32,
  955. this.printPreviewBarItem33,
  956. this.printPreviewBarItem34,
  957. this.printPreviewBarItem35,
  958. this.printPreviewBarItem36,
  959. this.printPreviewBarItem37,
  960. this.printPreviewBarItem38,
  961. this.printPreviewBarItem39,
  962. this.printPreviewBarItem40,
  963. this.printPreviewBarItem41,
  964. this.printPreviewBarItem42,
  965. this.printPreviewBarItem43,
  966. this.printPreviewBarItem44,
  967. this.printPreviewBarItem45,
  968. this.printPreviewBarItem46,
  969. this.printPreviewBarItem47,
  970. this.printPreviewBarItem48,
  971. this.printPreviewStaticItem1,
  972. this.barStaticItem1,
  973. this.progressBarEditItem1,
  974. this.printPreviewBarItem49,
  975. this.barButtonItem8,
  976. this.printPreviewStaticItem2,
  977. this.zoomTrackBarEditItem1,
  978. this.barSubItem1,
  979. this.barSubItem2,
  980. this.quxiandata,
  981. this.daochadata,
  982. this.guanjiedata,
  983. this.barButtonItem5,
  984. this.barButtonItem11,
  985. this.barButtonItem13,
  986. this.barButtonItem_DataManager,
  987. this.barButtonItem14,
  988. this.barButtonItem16,
  989. this.barSubItem6,
  990. this.barButtonItem4,
  991. this.barButtonItem12,
  992. this.barButtonItem17,
  993. this.barButtonItem18,
  994. this.barSubItem7,
  995. this.barButtonItem19,
  996. this.barButtonItem20,
  997. this.barButtonItem21,
  998. this.barButtonItem22,
  999. this.GDJHbBtnI,
  1000. this.LGLbBtnI,
  1001. this.barButtonItem10,
  1002. this.barButtonItem23,
  1003. this.barButtonItem24,
  1004. this.barButtonItem25,
  1005. this.barButtonItem26,
  1006. this.barButtonItem27,
  1007. this.barButtonItem28,
  1008. this.btnJXGJJ,
  1009. this.StartZDHBtn,
  1010. this.EndZDHBtn,
  1011. this.GLBtn,
  1012. this.QKBtn,
  1013. this.DWSJBtn,
  1014. this.barButtonItem29,
  1015. this.gongLvDataSetting,
  1016. this.queKouDataSetting,
  1017. this.barLinkContainerItem1,
  1018. this.barButtonItem30,
  1019. this.barButtonItem31});
  1020. this.ribbon.Location = new System.Drawing.Point(0, 0);
  1021. this.ribbon.MaxItemId = 216;
  1022. this.ribbon.MiniToolbars.Add(this.ribbonMiniToolbar1);
  1023. this.ribbon.Name = "ribbon";
  1024. this.ribbon.PageCategories.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageCategory[] {
  1025. this.xrToolboxPageCategory1});
  1026. this.ribbon.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
  1027. this.ribbonPage1,
  1028. this.ribbonPage2});
  1029. this.ribbon.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
  1030. this.recentlyUsedItemsComboBox1,
  1031. this.designRepositoryItemComboBox1,
  1032. this.repositoryItemProgressBar1,
  1033. this.repositoryItemZoomTrackBar1,
  1034. this.repositoryItemCheckedComboBoxEdit1,
  1035. this.repositoryItemCheckEdit1});
  1036. this.ribbon.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonControlStyle.Office2007;
  1037. this.ribbon.Size = new System.Drawing.Size(1331, 147);
  1038. this.ribbon.StatusBar = this.ribbonStatusBar;
  1039. this.ribbon.TransparentEditors = true;
  1040. this.ribbon.Click += new System.EventHandler(this.ribbon_Click);
  1041. //
  1042. // applicationMenu1
  1043. //
  1044. this.applicationMenu1.ItemLinks.Add(this.commandBarItem31);
  1045. this.applicationMenu1.ItemLinks.Add(this.commandBarItem34);
  1046. this.applicationMenu1.ItemLinks.Add(this.commandBarItem32);
  1047. this.applicationMenu1.ItemLinks.Add(this.commandBarItem33);
  1048. this.applicationMenu1.ItemLinks.Add(this.commandBarItem52, true);
  1049. this.applicationMenu1.ItemLinks.Add(this.commandBarItem53, true);
  1050. this.applicationMenu1.Name = "applicationMenu1";
  1051. this.applicationMenu1.Ribbon = this.ribbon;
  1052. this.applicationMenu1.ShowRightPane = true;
  1053. //
  1054. // commandBarItem31
  1055. //
  1056. this.commandBarItem31.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
  1057. this.commandBarItem31.Caption = "New Report";
  1058. this.commandBarItem31.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.NewReport;
  1059. this.commandBarItem31.Description = "Create a new blank report.";
  1060. this.commandBarItem31.Enabled = false;
  1061. this.commandBarItem31.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_NewReport;
  1062. this.commandBarItem31.Id = 54;
  1063. this.commandBarItem31.LargeGlyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_NewReportLarge;
  1064. this.commandBarItem31.Name = "commandBarItem31";
  1065. superToolTip1.FixedTooltipWidth = true;
  1066. toolTipTitleItem1.Text = "New Blank Report";
  1067. toolTipItem1.LeftIndent = 6;
  1068. toolTipItem1.Text = "Create a new blank report.";
  1069. superToolTip1.Items.Add(toolTipTitleItem1);
  1070. superToolTip1.Items.Add(toolTipItem1);
  1071. superToolTip1.MaxWidth = 210;
  1072. this.commandBarItem31.SuperTip = superToolTip1;
  1073. //
  1074. // commandBarItem34
  1075. //
  1076. this.commandBarItem34.Caption = "Open...";
  1077. this.commandBarItem34.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.OpenFile;
  1078. this.commandBarItem34.Enabled = false;
  1079. this.commandBarItem34.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_OpenFile;
  1080. this.commandBarItem34.Id = 57;
  1081. this.commandBarItem34.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O));
  1082. this.commandBarItem34.LargeGlyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_OpenFileLarge;
  1083. this.commandBarItem34.Name = "commandBarItem34";
  1084. superToolTip2.FixedTooltipWidth = true;
  1085. toolTipTitleItem2.Text = "Open Report (Ctrl+O)";
  1086. toolTipItem2.LeftIndent = 6;
  1087. toolTipItem2.Text = "Open a report.";
  1088. superToolTip2.Items.Add(toolTipTitleItem2);
  1089. superToolTip2.Items.Add(toolTipItem2);
  1090. superToolTip2.MaxWidth = 210;
  1091. this.commandBarItem34.SuperTip = superToolTip2;
  1092. //
  1093. // commandBarItem32
  1094. //
  1095. this.commandBarItem32.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
  1096. this.commandBarItem32.Caption = "Save";
  1097. this.commandBarItem32.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.SaveFile;
  1098. this.commandBarItem32.Description = "Save the current report.";
  1099. this.commandBarItem32.Enabled = false;
  1100. this.commandBarItem32.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_SaveFile;
  1101. this.commandBarItem32.Id = 55;
  1102. this.commandBarItem32.LargeGlyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_SaveFileLarge;
  1103. this.commandBarItem32.Name = "commandBarItem32";
  1104. superToolTip3.FixedTooltipWidth = true;
  1105. toolTipTitleItem3.Text = "Save Report";
  1106. toolTipItem3.LeftIndent = 6;
  1107. toolTipItem3.Text = "Save the current report.";
  1108. superToolTip3.Items.Add(toolTipTitleItem3);
  1109. superToolTip3.Items.Add(toolTipItem3);
  1110. superToolTip3.MaxWidth = 210;
  1111. this.commandBarItem32.SuperTip = superToolTip3;
  1112. //
  1113. // commandBarItem33
  1114. //
  1115. this.commandBarItem33.Caption = "Save All";
  1116. this.commandBarItem33.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.SaveAll;
  1117. this.commandBarItem33.Enabled = false;
  1118. this.commandBarItem33.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_SaveAll;
  1119. this.commandBarItem33.Id = 56;
  1120. this.commandBarItem33.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.L));
  1121. this.commandBarItem33.LargeGlyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_SaveAllLarge;
  1122. this.commandBarItem33.Name = "commandBarItem33";
  1123. superToolTip4.FixedTooltipWidth = true;
  1124. toolTipTitleItem4.Text = "Save All Reports (Ctrl+L)";
  1125. toolTipItem4.LeftIndent = 6;
  1126. toolTipItem4.Text = "Save all modified reports.";
  1127. superToolTip4.Items.Add(toolTipTitleItem4);
  1128. superToolTip4.Items.Add(toolTipItem4);
  1129. superToolTip4.MaxWidth = 210;
  1130. this.commandBarItem33.SuperTip = superToolTip4;
  1131. //
  1132. // commandBarItem52
  1133. //
  1134. this.commandBarItem52.Caption = "Close";
  1135. this.commandBarItem52.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.Close;
  1136. this.commandBarItem52.Enabled = false;
  1137. this.commandBarItem52.Id = 79;
  1138. this.commandBarItem52.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.F4));
  1139. this.commandBarItem52.Name = "commandBarItem52";
  1140. superToolTip5.FixedTooltipWidth = true;
  1141. toolTipTitleItem5.Text = "Close (Ctrl+F4)";
  1142. toolTipItem5.LeftIndent = 6;
  1143. toolTipItem5.Text = "Close the current report.";
  1144. superToolTip5.Items.Add(toolTipTitleItem5);
  1145. superToolTip5.Items.Add(toolTipItem5);
  1146. superToolTip5.MaxWidth = 210;
  1147. this.commandBarItem52.SuperTip = superToolTip5;
  1148. //
  1149. // commandBarItem53
  1150. //
  1151. this.commandBarItem53.Caption = "Exit";
  1152. this.commandBarItem53.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.Exit;
  1153. this.commandBarItem53.Enabled = false;
  1154. this.commandBarItem53.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_Exit;
  1155. this.commandBarItem53.Id = 80;
  1156. this.commandBarItem53.LargeGlyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_ExitLarge;
  1157. this.commandBarItem53.Name = "commandBarItem53";
  1158. superToolTip6.FixedTooltipWidth = true;
  1159. toolTipTitleItem6.Text = "Exit";
  1160. toolTipItem6.LeftIndent = 6;
  1161. toolTipItem6.Text = "Close the report designer.";
  1162. superToolTip6.Items.Add(toolTipTitleItem6);
  1163. superToolTip6.Items.Add(toolTipItem6);
  1164. superToolTip6.MaxWidth = 210;
  1165. this.commandBarItem53.SuperTip = superToolTip6;
  1166. //
  1167. // barButtonImageTile
  1168. //
  1169. this.barButtonImageTile.Caption = "数据库连接测试";
  1170. this.barButtonImageTile.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonImageTile.Glyph")));
  1171. this.barButtonImageTile.Id = 1;
  1172. this.barButtonImageTile.Name = "barButtonImageTile";
  1173. this.barButtonImageTile.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
  1174. this.barButtonImageTile.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
  1175. this.barButtonImageTile.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonImageTile_ItemClick);
  1176. //
  1177. // skinRibbonGalleryBarItem1
  1178. //
  1179. this.skinRibbonGalleryBarItem1.Caption = "skinRibbonGalleryBarItem1";
  1180. this.skinRibbonGalleryBarItem1.Id = 10;
  1181. this.skinRibbonGalleryBarItem1.Name = "skinRibbonGalleryBarItem1";
  1182. //
  1183. // barButtonItem1
  1184. //
  1185. this.barButtonItem1.Caption = "关于系统";
  1186. this.barButtonItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem1.Glyph")));
  1187. this.barButtonItem1.Id = 11;
  1188. this.barButtonItem1.Name = "barButtonItem1";
  1189. this.barButtonItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
  1190. //
  1191. // btnQuXianInfo
  1192. //
  1193. this.btnQuXianInfo.ActAsDropDown = true;
  1194. this.btnQuXianInfo.AllowDrawArrow = false;
  1195. this.btnQuXianInfo.Caption = "曲线信息管理";
  1196. this.btnQuXianInfo.Glyph = ((System.Drawing.Image)(resources.GetObject("btnQuXianInfo.Glyph")));
  1197. this.btnQuXianInfo.Id = 14;
  1198. this.btnQuXianInfo.Name = "btnQuXianInfo";
  1199. this.btnQuXianInfo.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
  1200. this.btnQuXianInfo.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnQuXianinfo_ItemClick);
  1201. //
  1202. // btnDaoChainfo
  1203. //
  1204. this.btnDaoChainfo.Caption = "道岔信息管理";
  1205. this.btnDaoChainfo.Glyph = ((System.Drawing.Image)(resources.GetObject("btnDaoChainfo.Glyph")));
  1206. this.btnDaoChainfo.Id = 15;
  1207. this.btnDaoChainfo.Name = "btnDaoChainfo";
  1208. this.btnDaoChainfo.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
  1209. this.btnDaoChainfo.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnDaoChainfo_ItemClick);
  1210. //
  1211. // btnGuanJieinfo
  1212. //
  1213. this.btnGuanJieinfo.Caption = "管界信息管理";
  1214. this.btnGuanJieinfo.Glyph = ((System.Drawing.Image)(resources.GetObject("btnGuanJieinfo.Glyph")));
  1215. this.btnGuanJieinfo.Id = 16;
  1216. this.btnGuanJieinfo.Name = "btnGuanJieinfo";
  1217. this.btnGuanJieinfo.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
  1218. this.btnGuanJieinfo.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnGuanJieinfo_ItemClick);
  1219. //
  1220. // skinRibbonGalleryBarItem2
  1221. //
  1222. this.skinRibbonGalleryBarItem2.Caption = "skinRibbonGalleryBarItem2";
  1223. this.skinRibbonGalleryBarItem2.Id = 19;
  1224. this.skinRibbonGalleryBarItem2.Name = "skinRibbonGalleryBarItem2";
  1225. //
  1226. // commandBarItem1
  1227. //
  1228. this.commandBarItem1.Caption = "Align to Grid";
  1229. this.commandBarItem1.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.AlignToGrid;
  1230. this.commandBarItem1.Enabled = false;
  1231. this.commandBarItem1.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_AlignToGrid;
  1232. this.commandBarItem1.Id = 22;
  1233. this.commandBarItem1.Name = "commandBarItem1";
  1234. superToolTip7.FixedTooltipWidth = true;
  1235. toolTipTitleItem7.Text = "Align to Grid";
  1236. toolTipItem7.LeftIndent = 6;
  1237. toolTipItem7.Text = "Align the positions of the selected controls to the grid.";
  1238. superToolTip7.Items.Add(toolTipTitleItem7);
  1239. superToolTip7.Items.Add(toolTipItem7);
  1240. superToolTip7.MaxWidth = 210;
  1241. this.commandBarItem1.SuperTip = superToolTip7;
  1242. //
  1243. // commandBarItem2
  1244. //
  1245. this.commandBarItem2.Caption = "Align Lefts";
  1246. this.commandBarItem2.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.AlignLeft;
  1247. this.commandBarItem2.Enabled = false;
  1248. this.commandBarItem2.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_AlignLeft;
  1249. this.commandBarItem2.Id = 23;
  1250. this.commandBarItem2.Name = "commandBarItem2";
  1251. superToolTip8.FixedTooltipWidth = true;
  1252. toolTipTitleItem8.Text = "Align Lefts";
  1253. toolTipItem8.LeftIndent = 6;
  1254. toolTipItem8.Text = "Left align the selected controls.";
  1255. superToolTip8.Items.Add(toolTipTitleItem8);
  1256. superToolTip8.Items.Add(toolTipItem8);
  1257. superToolTip8.MaxWidth = 210;
  1258. this.commandBarItem2.SuperTip = superToolTip8;
  1259. //
  1260. // commandBarItem3
  1261. //
  1262. this.commandBarItem3.Caption = "Align Centers";
  1263. this.commandBarItem3.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.AlignVerticalCenters;
  1264. this.commandBarItem3.Enabled = false;
  1265. this.commandBarItem3.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_AlignVerticalCenters;
  1266. this.commandBarItem3.Id = 24;
  1267. this.commandBarItem3.Name = "commandBarItem3";
  1268. superToolTip9.FixedTooltipWidth = true;
  1269. toolTipTitleItem9.Text = "Align Centers";
  1270. toolTipItem9.LeftIndent = 6;
  1271. toolTipItem9.Text = "Align the centers of the selected controls vertically.";
  1272. superToolTip9.Items.Add(toolTipTitleItem9);
  1273. superToolTip9.Items.Add(toolTipItem9);
  1274. superToolTip9.MaxWidth = 210;
  1275. this.commandBarItem3.SuperTip = superToolTip9;
  1276. //
  1277. // commandBarItem4
  1278. //
  1279. this.commandBarItem4.Caption = "Align Rights";
  1280. this.commandBarItem4.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.AlignRight;
  1281. this.commandBarItem4.Enabled = false;
  1282. this.commandBarItem4.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_AlignRight;
  1283. this.commandBarItem4.Id = 25;
  1284. this.commandBarItem4.Name = "commandBarItem4";
  1285. superToolTip10.FixedTooltipWidth = true;
  1286. toolTipTitleItem10.Text = "Align Rights";
  1287. toolTipItem10.LeftIndent = 6;
  1288. toolTipItem10.Text = "Right align the selected controls.";
  1289. superToolTip10.Items.Add(toolTipTitleItem10);
  1290. superToolTip10.Items.Add(toolTipItem10);
  1291. superToolTip10.MaxWidth = 210;
  1292. this.commandBarItem4.SuperTip = superToolTip10;
  1293. //
  1294. // commandBarItem5
  1295. //
  1296. this.commandBarItem5.Caption = "Align Tops";
  1297. this.commandBarItem5.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.AlignTop;
  1298. this.commandBarItem5.Enabled = false;
  1299. this.commandBarItem5.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_AlignTop;
  1300. this.commandBarItem5.Id = 26;
  1301. this.commandBarItem5.Name = "commandBarItem5";
  1302. superToolTip11.FixedTooltipWidth = true;
  1303. toolTipTitleItem11.Text = "Align Tops";
  1304. toolTipItem11.LeftIndent = 6;
  1305. toolTipItem11.Text = "Align the tops of the selected controls.";
  1306. superToolTip11.Items.Add(toolTipTitleItem11);
  1307. superToolTip11.Items.Add(toolTipItem11);
  1308. superToolTip11.MaxWidth = 210;
  1309. this.commandBarItem5.SuperTip = superToolTip11;
  1310. //
  1311. // commandBarItem6
  1312. //
  1313. this.commandBarItem6.Caption = "Align Middles";
  1314. this.commandBarItem6.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.AlignHorizontalCenters;
  1315. this.commandBarItem6.Enabled = false;
  1316. this.commandBarItem6.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_AlignHorizontalCenters;
  1317. this.commandBarItem6.Id = 27;
  1318. this.commandBarItem6.Name = "commandBarItem6";
  1319. superToolTip12.FixedTooltipWidth = true;
  1320. toolTipTitleItem12.Text = "Align Middles";
  1321. toolTipItem12.LeftIndent = 6;
  1322. toolTipItem12.Text = "Align the centers of the selected controls horizontally.";
  1323. superToolTip12.Items.Add(toolTipTitleItem12);
  1324. superToolTip12.Items.Add(toolTipItem12);
  1325. superToolTip12.MaxWidth = 210;
  1326. this.commandBarItem6.SuperTip = superToolTip12;
  1327. //
  1328. // commandBarItem7
  1329. //
  1330. this.commandBarItem7.Caption = "Align Bottoms";
  1331. this.commandBarItem7.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.AlignBottom;
  1332. this.commandBarItem7.Enabled = false;
  1333. this.commandBarItem7.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_AlignBottom;
  1334. this.commandBarItem7.Id = 28;
  1335. this.commandBarItem7.Name = "commandBarItem7";
  1336. superToolTip13.FixedTooltipWidth = true;
  1337. toolTipTitleItem13.Text = "Align Bottoms";
  1338. toolTipItem13.LeftIndent = 6;
  1339. toolTipItem13.Text = "Align the bottoms of the selected controls.";
  1340. superToolTip13.Items.Add(toolTipTitleItem13);
  1341. superToolTip13.Items.Add(toolTipItem13);
  1342. superToolTip13.MaxWidth = 210;
  1343. this.commandBarItem7.SuperTip = superToolTip13;
  1344. //
  1345. // commandBarItem8
  1346. //
  1347. this.commandBarItem8.Caption = "Make Same Width";
  1348. this.commandBarItem8.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.SizeToControlWidth;
  1349. this.commandBarItem8.Enabled = false;
  1350. this.commandBarItem8.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_SizeToControlWidth;
  1351. this.commandBarItem8.Id = 29;
  1352. this.commandBarItem8.Name = "commandBarItem8";
  1353. superToolTip14.FixedTooltipWidth = true;
  1354. toolTipTitleItem14.Text = "Make Same Width";
  1355. toolTipItem14.LeftIndent = 6;
  1356. toolTipItem14.Text = "Make the selected controls have the same width.";
  1357. superToolTip14.Items.Add(toolTipTitleItem14);
  1358. superToolTip14.Items.Add(toolTipItem14);
  1359. superToolTip14.MaxWidth = 210;
  1360. this.commandBarItem8.SuperTip = superToolTip14;
  1361. //
  1362. // commandBarItem9
  1363. //
  1364. this.commandBarItem9.Caption = "Size to Grid";
  1365. this.commandBarItem9.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.SizeToGrid;
  1366. this.commandBarItem9.Enabled = false;
  1367. this.commandBarItem9.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_SizeToGrid;
  1368. this.commandBarItem9.Id = 30;
  1369. this.commandBarItem9.Name = "commandBarItem9";
  1370. superToolTip15.FixedTooltipWidth = true;
  1371. toolTipTitleItem15.Text = "Size to Grid";
  1372. toolTipItem15.LeftIndent = 6;
  1373. toolTipItem15.Text = "Size the selected controls to the grid.";
  1374. superToolTip15.Items.Add(toolTipTitleItem15);
  1375. superToolTip15.Items.Add(toolTipItem15);
  1376. superToolTip15.MaxWidth = 210;
  1377. this.commandBarItem9.SuperTip = superToolTip15;
  1378. //
  1379. // commandBarItem10
  1380. //
  1381. this.commandBarItem10.Caption = "Make Same Height";
  1382. this.commandBarItem10.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.SizeToControlHeight;
  1383. this.commandBarItem10.Enabled = false;
  1384. this.commandBarItem10.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_SizeToControlHeight;
  1385. this.commandBarItem10.Id = 31;
  1386. this.commandBarItem10.Name = "commandBarItem10";
  1387. superToolTip16.FixedTooltipWidth = true;
  1388. toolTipTitleItem16.Text = "Make Same Height";
  1389. toolTipItem16.LeftIndent = 6;
  1390. toolTipItem16.Text = "Make the selected controls have the same height.";
  1391. superToolTip16.Items.Add(toolTipTitleItem16);
  1392. superToolTip16.Items.Add(toolTipItem16);
  1393. superToolTip16.MaxWidth = 210;
  1394. this.commandBarItem10.SuperTip = superToolTip16;
  1395. //
  1396. // commandBarItem11
  1397. //
  1398. this.commandBarItem11.Caption = "Make Same Size";
  1399. this.commandBarItem11.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.SizeToControl;
  1400. this.commandBarItem11.Enabled = false;
  1401. this.commandBarItem11.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_SizeToControl;
  1402. this.commandBarItem11.Id = 32;
  1403. this.commandBarItem11.Name = "commandBarItem11";
  1404. superToolTip17.FixedTooltipWidth = true;
  1405. toolTipTitleItem17.Text = "Make Same Size";
  1406. toolTipItem17.LeftIndent = 6;
  1407. toolTipItem17.Text = "Make the selected controls have the same size.";
  1408. superToolTip17.Items.Add(toolTipTitleItem17);
  1409. superToolTip17.Items.Add(toolTipItem17);
  1410. superToolTip17.MaxWidth = 210;
  1411. this.commandBarItem11.SuperTip = superToolTip17;
  1412. //
  1413. // commandBarItem12
  1414. //
  1415. this.commandBarItem12.Caption = "Make Horizontal Spacing Equal";
  1416. this.commandBarItem12.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.HorizSpaceMakeEqual;
  1417. this.commandBarItem12.Enabled = false;
  1418. this.commandBarItem12.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_HorizSpaceMakeEqual;
  1419. this.commandBarItem12.Id = 33;
  1420. this.commandBarItem12.Name = "commandBarItem12";
  1421. superToolTip18.FixedTooltipWidth = true;
  1422. toolTipTitleItem18.Text = "Make Horizontal Spacing Equal";
  1423. toolTipItem18.LeftIndent = 6;
  1424. toolTipItem18.Text = "Make the horizontal spacing between the selected controls equal.";
  1425. superToolTip18.Items.Add(toolTipTitleItem18);
  1426. superToolTip18.Items.Add(toolTipItem18);
  1427. superToolTip18.MaxWidth = 210;
  1428. this.commandBarItem12.SuperTip = superToolTip18;
  1429. //
  1430. // commandBarItem13
  1431. //
  1432. this.commandBarItem13.Caption = "Increase Horizontal Spacing";
  1433. this.commandBarItem13.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.HorizSpaceIncrease;
  1434. this.commandBarItem13.Enabled = false;
  1435. this.commandBarItem13.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_HorizSpaceIncrease;
  1436. this.commandBarItem13.Id = 34;
  1437. this.commandBarItem13.Name = "commandBarItem13";
  1438. superToolTip19.FixedTooltipWidth = true;
  1439. toolTipTitleItem19.Text = "Increase Horizontal Spacing";
  1440. toolTipItem19.LeftIndent = 6;
  1441. toolTipItem19.Text = "Increase the horizontal spacing between the selected controls.";
  1442. superToolTip19.Items.Add(toolTipTitleItem19);
  1443. superToolTip19.Items.Add(toolTipItem19);
  1444. superToolTip19.MaxWidth = 210;
  1445. this.commandBarItem13.SuperTip = superToolTip19;
  1446. //
  1447. // commandBarItem14
  1448. //
  1449. this.commandBarItem14.Caption = "Decrease Horizontal Spacing";
  1450. this.commandBarItem14.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.HorizSpaceDecrease;
  1451. this.commandBarItem14.Enabled = false;
  1452. this.commandBarItem14.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_HorizSpaceDecrease;
  1453. this.commandBarItem14.Id = 35;
  1454. this.commandBarItem14.Name = "commandBarItem14";
  1455. superToolTip20.FixedTooltipWidth = true;
  1456. toolTipTitleItem20.Text = "Decrease Horizontal Spacing";
  1457. toolTipItem20.LeftIndent = 6;
  1458. toolTipItem20.Text = "Decrease the horizontal spacing between the selected controls.";
  1459. superToolTip20.Items.Add(toolTipTitleItem20);
  1460. superToolTip20.Items.Add(toolTipItem20);
  1461. superToolTip20.MaxWidth = 210;
  1462. this.commandBarItem14.SuperTip = superToolTip20;
  1463. //
  1464. // commandBarItem15
  1465. //
  1466. this.commandBarItem15.Caption = "Remove Horizontal Spacing";
  1467. this.commandBarItem15.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.HorizSpaceConcatenate;
  1468. this.commandBarItem15.Enabled = false;
  1469. this.commandBarItem15.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_HorizSpaceConcatenate;
  1470. this.commandBarItem15.Id = 36;
  1471. this.commandBarItem15.Name = "commandBarItem15";
  1472. superToolTip21.FixedTooltipWidth = true;
  1473. toolTipTitleItem21.Text = "Remove Horizontal Spacing";
  1474. toolTipItem21.LeftIndent = 6;
  1475. toolTipItem21.Text = "Remove the horizontal spacing between the selected controls.";
  1476. superToolTip21.Items.Add(toolTipTitleItem21);
  1477. superToolTip21.Items.Add(toolTipItem21);
  1478. superToolTip21.MaxWidth = 210;
  1479. this.commandBarItem15.SuperTip = superToolTip21;
  1480. //
  1481. // commandBarItem16
  1482. //
  1483. this.commandBarItem16.Caption = "Make Vertical Spacing Equal";
  1484. this.commandBarItem16.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.VertSpaceMakeEqual;
  1485. this.commandBarItem16.Enabled = false;
  1486. this.commandBarItem16.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_VertSpaceMakeEqual;
  1487. this.commandBarItem16.Id = 37;
  1488. this.commandBarItem16.Name = "commandBarItem16";
  1489. superToolTip22.FixedTooltipWidth = true;
  1490. toolTipTitleItem22.Text = "Make Vertical Spacing Equal";
  1491. toolTipItem22.LeftIndent = 6;
  1492. toolTipItem22.Text = "Make the vertical spacing between the selected controls equal.";
  1493. superToolTip22.Items.Add(toolTipTitleItem22);
  1494. superToolTip22.Items.Add(toolTipItem22);
  1495. superToolTip22.MaxWidth = 210;
  1496. this.commandBarItem16.SuperTip = superToolTip22;
  1497. //
  1498. // commandBarItem17
  1499. //
  1500. this.commandBarItem17.Caption = "Increase Vertical Spacing";
  1501. this.commandBarItem17.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.VertSpaceIncrease;
  1502. this.commandBarItem17.Enabled = false;
  1503. this.commandBarItem17.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_VertSpaceIncrease;
  1504. this.commandBarItem17.Id = 38;
  1505. this.commandBarItem17.Name = "commandBarItem17";
  1506. superToolTip23.FixedTooltipWidth = true;
  1507. toolTipTitleItem23.Text = "Increase Vertical Spacing";
  1508. toolTipItem23.LeftIndent = 6;
  1509. toolTipItem23.Text = "Increase the vertical spacing between the selected controls.";
  1510. superToolTip23.Items.Add(toolTipTitleItem23);
  1511. superToolTip23.Items.Add(toolTipItem23);
  1512. superToolTip23.MaxWidth = 210;
  1513. this.commandBarItem17.SuperTip = superToolTip23;
  1514. //
  1515. // commandBarItem18
  1516. //
  1517. this.commandBarItem18.Caption = "Decrease Vertical Spacing";
  1518. this.commandBarItem18.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.VertSpaceDecrease;
  1519. this.commandBarItem18.Enabled = false;
  1520. this.commandBarItem18.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_VertSpaceDecrease;
  1521. this.commandBarItem18.Id = 39;
  1522. this.commandBarItem18.Name = "commandBarItem18";
  1523. superToolTip24.FixedTooltipWidth = true;
  1524. toolTipTitleItem24.Text = "Decrease Vertical Spacing";
  1525. toolTipItem24.LeftIndent = 6;
  1526. toolTipItem24.Text = "Decrease the vertical spacing between the selected controls.";
  1527. superToolTip24.Items.Add(toolTipTitleItem24);
  1528. superToolTip24.Items.Add(toolTipItem24);
  1529. superToolTip24.MaxWidth = 210;
  1530. this.commandBarItem18.SuperTip = superToolTip24;
  1531. //
  1532. // commandBarItem19
  1533. //
  1534. this.commandBarItem19.Caption = "Remove Vertical Spacing";
  1535. this.commandBarItem19.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.VertSpaceConcatenate;
  1536. this.commandBarItem19.Enabled = false;
  1537. this.commandBarItem19.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_VertSpaceConcatenate;
  1538. this.commandBarItem19.Id = 40;
  1539. this.commandBarItem19.Name = "commandBarItem19";
  1540. superToolTip25.FixedTooltipWidth = true;
  1541. toolTipTitleItem25.Text = "Remove Vertical Spacing";
  1542. toolTipItem25.LeftIndent = 6;
  1543. toolTipItem25.Text = "Remove the vertical spacing between the selected controls.";
  1544. superToolTip25.Items.Add(toolTipTitleItem25);
  1545. superToolTip25.Items.Add(toolTipItem25);
  1546. superToolTip25.MaxWidth = 210;
  1547. this.commandBarItem19.SuperTip = superToolTip25;
  1548. //
  1549. // commandBarItem20
  1550. //
  1551. this.commandBarItem20.Caption = "Center Horizontally";
  1552. this.commandBarItem20.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.CenterHorizontally;
  1553. this.commandBarItem20.Enabled = false;
  1554. this.commandBarItem20.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_CenterHorizontally;
  1555. this.commandBarItem20.Id = 41;
  1556. this.commandBarItem20.Name = "commandBarItem20";
  1557. superToolTip26.FixedTooltipWidth = true;
  1558. toolTipTitleItem26.Text = "Center Horizontally";
  1559. toolTipItem26.LeftIndent = 6;
  1560. toolTipItem26.Text = "Horizontally center the selected controls within a band.";
  1561. superToolTip26.Items.Add(toolTipTitleItem26);
  1562. superToolTip26.Items.Add(toolTipItem26);
  1563. superToolTip26.MaxWidth = 210;
  1564. this.commandBarItem20.SuperTip = superToolTip26;
  1565. //
  1566. // commandBarItem21
  1567. //
  1568. this.commandBarItem21.Caption = "Center Vertically";
  1569. this.commandBarItem21.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.CenterVertically;
  1570. this.commandBarItem21.Enabled = false;
  1571. this.commandBarItem21.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_CenterVertically;
  1572. this.commandBarItem21.Id = 42;
  1573. this.commandBarItem21.Name = "commandBarItem21";
  1574. superToolTip27.FixedTooltipWidth = true;
  1575. toolTipTitleItem27.Text = "Center Vertically";
  1576. toolTipItem27.LeftIndent = 6;
  1577. toolTipItem27.Text = "Vertically center the selected controls within a band.";
  1578. superToolTip27.Items.Add(toolTipTitleItem27);
  1579. superToolTip27.Items.Add(toolTipItem27);
  1580. superToolTip27.MaxWidth = 210;
  1581. this.commandBarItem21.SuperTip = superToolTip27;
  1582. //
  1583. // commandBarItem22
  1584. //
  1585. this.commandBarItem22.Caption = "Bring to Front";
  1586. this.commandBarItem22.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.BringToFront;
  1587. this.commandBarItem22.Enabled = false;
  1588. this.commandBarItem22.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_BringToFront;
  1589. this.commandBarItem22.Id = 43;
  1590. this.commandBarItem22.Name = "commandBarItem22";
  1591. superToolTip28.FixedTooltipWidth = true;
  1592. toolTipTitleItem28.Text = "Bring to Front";
  1593. toolTipItem28.LeftIndent = 6;
  1594. toolTipItem28.Text = "Bring the selected controls to the front.";
  1595. superToolTip28.Items.Add(toolTipTitleItem28);
  1596. superToolTip28.Items.Add(toolTipItem28);
  1597. superToolTip28.MaxWidth = 210;
  1598. this.commandBarItem22.SuperTip = superToolTip28;
  1599. //
  1600. // commandBarItem23
  1601. //
  1602. this.commandBarItem23.Caption = "Send to Back";
  1603. this.commandBarItem23.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.SendToBack;
  1604. this.commandBarItem23.Enabled = false;
  1605. this.commandBarItem23.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_SendToBack;
  1606. this.commandBarItem23.Id = 44;
  1607. this.commandBarItem23.Name = "commandBarItem23";
  1608. superToolTip29.FixedTooltipWidth = true;
  1609. toolTipTitleItem29.Text = "Send to Back";
  1610. toolTipItem29.LeftIndent = 6;
  1611. toolTipItem29.Text = "Move the selected controls to the back.";
  1612. superToolTip29.Items.Add(toolTipTitleItem29);
  1613. superToolTip29.Items.Add(toolTipItem29);
  1614. superToolTip29.MaxWidth = 210;
  1615. this.commandBarItem23.SuperTip = superToolTip29;
  1616. //
  1617. // commandBarItem24
  1618. //
  1619. this.commandBarItem24.Caption = "Bold";
  1620. this.commandBarItem24.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.FontBold;
  1621. this.commandBarItem24.Enabled = false;
  1622. this.commandBarItem24.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_FontBold;
  1623. this.commandBarItem24.Id = 45;
  1624. this.commandBarItem24.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.B));
  1625. this.commandBarItem24.Name = "commandBarItem24";
  1626. superToolTip30.FixedTooltipWidth = true;
  1627. toolTipTitleItem30.Text = "Bold (Ctrl+B)";
  1628. toolTipItem30.LeftIndent = 6;
  1629. toolTipItem30.Text = "Make the selected text bold.";
  1630. superToolTip30.Items.Add(toolTipTitleItem30);
  1631. superToolTip30.Items.Add(toolTipItem30);
  1632. superToolTip30.MaxWidth = 210;
  1633. this.commandBarItem24.SuperTip = superToolTip30;
  1634. //
  1635. // commandBarItem25
  1636. //
  1637. this.commandBarItem25.Caption = "Italic";
  1638. this.commandBarItem25.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.FontItalic;
  1639. this.commandBarItem25.Enabled = false;
  1640. this.commandBarItem25.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_FontItalic;
  1641. this.commandBarItem25.Id = 46;
  1642. this.commandBarItem25.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.I));
  1643. this.commandBarItem25.Name = "commandBarItem25";
  1644. superToolTip31.FixedTooltipWidth = true;
  1645. toolTipTitleItem31.Text = "Italic (Ctrl+I)";
  1646. toolTipItem31.LeftIndent = 6;
  1647. toolTipItem31.Text = "Italicize the text.";
  1648. superToolTip31.Items.Add(toolTipTitleItem31);
  1649. superToolTip31.Items.Add(toolTipItem31);
  1650. superToolTip31.MaxWidth = 210;
  1651. this.commandBarItem25.SuperTip = superToolTip31;
  1652. //
  1653. // commandBarItem26
  1654. //
  1655. this.commandBarItem26.Caption = "Underline";
  1656. this.commandBarItem26.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.FontUnderline;
  1657. this.commandBarItem26.Enabled = false;
  1658. this.commandBarItem26.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_FontUnderline;
  1659. this.commandBarItem26.Id = 47;
  1660. this.commandBarItem26.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.U));
  1661. this.commandBarItem26.Name = "commandBarItem26";
  1662. superToolTip32.FixedTooltipWidth = true;
  1663. toolTipTitleItem32.Text = "Underline (Ctrl+U)";
  1664. toolTipItem32.LeftIndent = 6;
  1665. toolTipItem32.Text = "Underline the selected text.";
  1666. superToolTip32.Items.Add(toolTipTitleItem32);
  1667. superToolTip32.Items.Add(toolTipItem32);
  1668. superToolTip32.MaxWidth = 210;
  1669. this.commandBarItem26.SuperTip = superToolTip32;
  1670. //
  1671. // commandColorBarItem1
  1672. //
  1673. this.commandColorBarItem1.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
  1674. this.commandColorBarItem1.Caption = "Foreground Color";
  1675. this.commandColorBarItem1.CloseSubMenuOnClick = false;
  1676. this.commandColorBarItem1.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.ForeColor;
  1677. this.commandColorBarItem1.Enabled = false;
  1678. this.commandColorBarItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("commandColorBarItem1.Glyph")));
  1679. this.commandColorBarItem1.Id = 48;
  1680. this.commandColorBarItem1.Name = "commandColorBarItem1";
  1681. superToolTip33.FixedTooltipWidth = true;
  1682. toolTipTitleItem33.Text = "Foreground Color";
  1683. toolTipItem33.LeftIndent = 6;
  1684. toolTipItem33.Text = "Change the text foreground color.";
  1685. superToolTip33.Items.Add(toolTipTitleItem33);
  1686. superToolTip33.Items.Add(toolTipItem33);
  1687. superToolTip33.MaxWidth = 210;
  1688. this.commandColorBarItem1.SuperTip = superToolTip33;
  1689. //
  1690. // commandColorBarItem2
  1691. //
  1692. this.commandColorBarItem2.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
  1693. this.commandColorBarItem2.Caption = "Background Color";
  1694. this.commandColorBarItem2.CloseSubMenuOnClick = false;
  1695. this.commandColorBarItem2.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.BackColor;
  1696. this.commandColorBarItem2.Enabled = false;
  1697. this.commandColorBarItem2.Glyph = ((System.Drawing.Image)(resources.GetObject("commandColorBarItem2.Glyph")));
  1698. this.commandColorBarItem2.Id = 49;
  1699. this.commandColorBarItem2.Name = "commandColorBarItem2";
  1700. superToolTip34.FixedTooltipWidth = true;
  1701. toolTipTitleItem34.Text = "Background Color";
  1702. toolTipItem34.LeftIndent = 6;
  1703. toolTipItem34.Text = "Change the text background color.";
  1704. superToolTip34.Items.Add(toolTipTitleItem34);
  1705. superToolTip34.Items.Add(toolTipItem34);
  1706. superToolTip34.MaxWidth = 210;
  1707. this.commandColorBarItem2.SuperTip = superToolTip34;
  1708. //
  1709. // commandBarItem27
  1710. //
  1711. this.commandBarItem27.Caption = "Align Text Left";
  1712. this.commandBarItem27.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.JustifyLeft;
  1713. this.commandBarItem27.Enabled = false;
  1714. this.commandBarItem27.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_JustifyLeft;
  1715. this.commandBarItem27.Id = 50;
  1716. this.commandBarItem27.Name = "commandBarItem27";
  1717. superToolTip35.FixedTooltipWidth = true;
  1718. toolTipTitleItem35.Text = "Align Text Left";
  1719. toolTipItem35.LeftIndent = 6;
  1720. toolTipItem35.Text = "Align text to the left.";
  1721. superToolTip35.Items.Add(toolTipTitleItem35);
  1722. superToolTip35.Items.Add(toolTipItem35);
  1723. superToolTip35.MaxWidth = 210;
  1724. this.commandBarItem27.SuperTip = superToolTip35;
  1725. //
  1726. // commandBarItem28
  1727. //
  1728. this.commandBarItem28.Caption = "Center Text";
  1729. this.commandBarItem28.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.JustifyCenter;
  1730. this.commandBarItem28.Enabled = false;
  1731. this.commandBarItem28.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_JustifyCenter;
  1732. this.commandBarItem28.Id = 51;
  1733. this.commandBarItem28.Name = "commandBarItem28";
  1734. superToolTip36.FixedTooltipWidth = true;
  1735. toolTipTitleItem36.Text = "Center Text";
  1736. toolTipItem36.LeftIndent = 6;
  1737. toolTipItem36.Text = "Center text.";
  1738. superToolTip36.Items.Add(toolTipTitleItem36);
  1739. superToolTip36.Items.Add(toolTipItem36);
  1740. superToolTip36.MaxWidth = 210;
  1741. this.commandBarItem28.SuperTip = superToolTip36;
  1742. //
  1743. // commandBarItem29
  1744. //
  1745. this.commandBarItem29.Caption = "Align Text Right";
  1746. this.commandBarItem29.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.JustifyRight;
  1747. this.commandBarItem29.Enabled = false;
  1748. this.commandBarItem29.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_JustifyRight;
  1749. this.commandBarItem29.Id = 52;
  1750. this.commandBarItem29.Name = "commandBarItem29";
  1751. superToolTip37.FixedTooltipWidth = true;
  1752. toolTipTitleItem37.Text = "Align Text Right";
  1753. toolTipItem37.LeftIndent = 6;
  1754. toolTipItem37.Text = "Align text to the right.";
  1755. superToolTip37.Items.Add(toolTipTitleItem37);
  1756. superToolTip37.Items.Add(toolTipItem37);
  1757. superToolTip37.MaxWidth = 210;
  1758. this.commandBarItem29.SuperTip = superToolTip37;
  1759. //
  1760. // commandBarItem30
  1761. //
  1762. this.commandBarItem30.Caption = "Justify";
  1763. this.commandBarItem30.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.JustifyJustify;
  1764. this.commandBarItem30.Enabled = false;
  1765. this.commandBarItem30.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_JustifyJustify;
  1766. this.commandBarItem30.Id = 53;
  1767. this.commandBarItem30.Name = "commandBarItem30";
  1768. superToolTip38.FixedTooltipWidth = true;
  1769. toolTipTitleItem38.Text = "Justify";
  1770. toolTipItem38.LeftIndent = 6;
  1771. toolTipItem38.Text = "Align text to both the left and right sides, adding extra space between words as " +
  1772. "necessary.";
  1773. superToolTip38.Items.Add(toolTipTitleItem38);
  1774. superToolTip38.Items.Add(toolTipItem38);
  1775. superToolTip38.MaxWidth = 210;
  1776. this.commandBarItem30.SuperTip = superToolTip38;
  1777. //
  1778. // commandBarItem35
  1779. //
  1780. this.commandBarItem35.Caption = "New Report";
  1781. this.commandBarItem35.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.NewReport;
  1782. this.commandBarItem35.Description = "Create a new blank report.";
  1783. this.commandBarItem35.Enabled = false;
  1784. this.commandBarItem35.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_NewReport;
  1785. this.commandBarItem35.Id = 58;
  1786. this.commandBarItem35.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N));
  1787. this.commandBarItem35.LargeGlyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_NewReportLarge;
  1788. this.commandBarItem35.Name = "commandBarItem35";
  1789. superToolTip39.FixedTooltipWidth = true;
  1790. toolTipTitleItem39.Text = "New Blank Report (Ctrl+N)";
  1791. toolTipItem39.LeftIndent = 6;
  1792. toolTipItem39.Text = "Create a new blank report.";
  1793. superToolTip39.Items.Add(toolTipTitleItem39);
  1794. superToolTip39.Items.Add(toolTipItem39);
  1795. superToolTip39.MaxWidth = 210;
  1796. this.commandBarItem35.SuperTip = superToolTip39;
  1797. //
  1798. // commandBarItem36
  1799. //
  1800. this.commandBarItem36.Caption = "New Report via Wizard...";
  1801. this.commandBarItem36.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.NewReportWizard;
  1802. this.commandBarItem36.Description = "Launch the report wizard to create a new report.";
  1803. this.commandBarItem36.Enabled = false;
  1804. this.commandBarItem36.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_NewReportWizard;
  1805. this.commandBarItem36.Id = 59;
  1806. this.commandBarItem36.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.W));
  1807. this.commandBarItem36.LargeGlyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_NewReportWizardLarge;
  1808. this.commandBarItem36.Name = "commandBarItem36";
  1809. superToolTip40.FixedTooltipWidth = true;
  1810. toolTipTitleItem40.Text = "New Report via Wizard (Ctrl+W)";
  1811. toolTipItem40.LeftIndent = 6;
  1812. toolTipItem40.Text = "Launch the report wizard to create a new report.";
  1813. superToolTip40.Items.Add(toolTipTitleItem40);
  1814. superToolTip40.Items.Add(toolTipItem40);
  1815. superToolTip40.MaxWidth = 210;
  1816. this.commandBarItem36.SuperTip = superToolTip40;
  1817. //
  1818. // commandBarItem37
  1819. //
  1820. this.commandBarItem37.Caption = "Save";
  1821. this.commandBarItem37.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.SaveFile;
  1822. this.commandBarItem37.Description = "Save the current report.";
  1823. this.commandBarItem37.Enabled = false;
  1824. this.commandBarItem37.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_SaveFile;
  1825. this.commandBarItem37.Id = 60;
  1826. this.commandBarItem37.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S));
  1827. this.commandBarItem37.LargeGlyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_SaveFileLarge;
  1828. this.commandBarItem37.Name = "commandBarItem37";
  1829. superToolTip41.FixedTooltipWidth = true;
  1830. toolTipTitleItem41.Text = "Save Report (Ctrl+S)";
  1831. toolTipItem41.LeftIndent = 6;
  1832. toolTipItem41.Text = "Save the current report.";
  1833. superToolTip41.Items.Add(toolTipTitleItem41);
  1834. superToolTip41.Items.Add(toolTipItem41);
  1835. superToolTip41.MaxWidth = 210;
  1836. this.commandBarItem37.SuperTip = superToolTip41;
  1837. //
  1838. // commandBarItem38
  1839. //
  1840. this.commandBarItem38.Caption = "Save As...";
  1841. this.commandBarItem38.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.SaveFileAs;
  1842. this.commandBarItem38.Description = "Save the current report with a new name.";
  1843. this.commandBarItem38.Enabled = false;
  1844. this.commandBarItem38.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_SaveFileAs;
  1845. this.commandBarItem38.Id = 61;
  1846. this.commandBarItem38.LargeGlyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_SaveFileAsLarge;
  1847. this.commandBarItem38.Name = "commandBarItem38";
  1848. superToolTip42.FixedTooltipWidth = true;
  1849. toolTipTitleItem42.Text = "Save Report As";
  1850. toolTipItem42.LeftIndent = 6;
  1851. toolTipItem42.Text = "Save the current report with a new name.";
  1852. superToolTip42.Items.Add(toolTipTitleItem42);
  1853. superToolTip42.Items.Add(toolTipItem42);
  1854. superToolTip42.MaxWidth = 210;
  1855. this.commandBarItem38.SuperTip = superToolTip42;
  1856. //
  1857. // commandBarItem39
  1858. //
  1859. this.commandBarItem39.Caption = "Cut";
  1860. this.commandBarItem39.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.Cut;
  1861. this.commandBarItem39.Enabled = false;
  1862. this.commandBarItem39.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_Cut;
  1863. this.commandBarItem39.Id = 62;
  1864. this.commandBarItem39.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.X));
  1865. this.commandBarItem39.LargeGlyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_CutLarge;
  1866. this.commandBarItem39.Name = "commandBarItem39";
  1867. superToolTip43.FixedTooltipWidth = true;
  1868. toolTipTitleItem43.Text = "Cut (Ctrl+X)";
  1869. toolTipItem43.LeftIndent = 6;
  1870. toolTipItem43.Text = "Cut the selected controls from the report and put them on the Clipboard.";
  1871. superToolTip43.Items.Add(toolTipTitleItem43);
  1872. superToolTip43.Items.Add(toolTipItem43);
  1873. superToolTip43.MaxWidth = 210;
  1874. this.commandBarItem39.SuperTip = superToolTip43;
  1875. //
  1876. // commandBarItem40
  1877. //
  1878. this.commandBarItem40.Caption = "Copy";
  1879. this.commandBarItem40.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.Copy;
  1880. this.commandBarItem40.Enabled = false;
  1881. this.commandBarItem40.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_Copy;
  1882. this.commandBarItem40.Id = 63;
  1883. this.commandBarItem40.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C));
  1884. this.commandBarItem40.LargeGlyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_CopyLarge;
  1885. this.commandBarItem40.Name = "commandBarItem40";
  1886. superToolTip44.FixedTooltipWidth = true;
  1887. toolTipTitleItem44.Text = "Copy (Ctrl+C)";
  1888. toolTipItem44.LeftIndent = 6;
  1889. toolTipItem44.Text = "Copy the selected controls and put them on the Clipboard.";
  1890. superToolTip44.Items.Add(toolTipTitleItem44);
  1891. superToolTip44.Items.Add(toolTipItem44);
  1892. superToolTip44.MaxWidth = 210;
  1893. this.commandBarItem40.SuperTip = superToolTip44;
  1894. //
  1895. // commandBarItem41
  1896. //
  1897. this.commandBarItem41.Caption = "Paste";
  1898. this.commandBarItem41.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.Paste;
  1899. this.commandBarItem41.Enabled = false;
  1900. this.commandBarItem41.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_Paste;
  1901. this.commandBarItem41.Id = 64;
  1902. this.commandBarItem41.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.V));
  1903. this.commandBarItem41.LargeGlyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_PasteLarge;
  1904. this.commandBarItem41.Name = "commandBarItem41";
  1905. superToolTip45.FixedTooltipWidth = true;
  1906. toolTipTitleItem45.Text = "Paste (Ctrl+V)";
  1907. toolTipItem45.LeftIndent = 6;
  1908. toolTipItem45.Text = "Paste the contents of the Clipboard.";
  1909. superToolTip45.Items.Add(toolTipTitleItem45);
  1910. superToolTip45.Items.Add(toolTipItem45);
  1911. superToolTip45.MaxWidth = 210;
  1912. this.commandBarItem41.SuperTip = superToolTip45;
  1913. //
  1914. // commandBarItem42
  1915. //
  1916. this.commandBarItem42.Caption = "Undo";
  1917. this.commandBarItem42.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.Undo;
  1918. this.commandBarItem42.Enabled = false;
  1919. this.commandBarItem42.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_Undo;
  1920. this.commandBarItem42.Id = 65;
  1921. this.commandBarItem42.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Z));
  1922. this.commandBarItem42.LargeGlyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_UndoLarge;
  1923. this.commandBarItem42.Name = "commandBarItem42";
  1924. superToolTip46.FixedTooltipWidth = true;
  1925. toolTipTitleItem46.Text = "Undo (Ctrl+Z)";
  1926. toolTipItem46.LeftIndent = 6;
  1927. toolTipItem46.Text = "Undo the last operation.";
  1928. superToolTip46.Items.Add(toolTipTitleItem46);
  1929. superToolTip46.Items.Add(toolTipItem46);
  1930. superToolTip46.MaxWidth = 210;
  1931. this.commandBarItem42.SuperTip = superToolTip46;
  1932. //
  1933. // commandBarItem43
  1934. //
  1935. this.commandBarItem43.Caption = "Redo";
  1936. this.commandBarItem43.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.Redo;
  1937. this.commandBarItem43.Enabled = false;
  1938. this.commandBarItem43.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_Redo;
  1939. this.commandBarItem43.Id = 66;
  1940. this.commandBarItem43.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Y));
  1941. this.commandBarItem43.LargeGlyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_RedoLarge;
  1942. this.commandBarItem43.Name = "commandBarItem43";
  1943. superToolTip47.FixedTooltipWidth = true;
  1944. toolTipTitleItem47.Text = "Redo (Ctrl+Y)";
  1945. toolTipItem47.LeftIndent = 6;
  1946. toolTipItem47.Text = "Redo the last operation.";
  1947. superToolTip47.Items.Add(toolTipTitleItem47);
  1948. superToolTip47.Items.Add(toolTipItem47);
  1949. superToolTip47.MaxWidth = 210;
  1950. this.commandBarItem43.SuperTip = superToolTip47;
  1951. //
  1952. // commandBarItem44
  1953. //
  1954. this.commandBarItem44.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
  1955. this.commandBarItem44.Caption = "Zoom";
  1956. this.commandBarItem44.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.Zoom;
  1957. this.commandBarItem44.Enabled = false;
  1958. this.commandBarItem44.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_Zoom;
  1959. this.commandBarItem44.Id = 67;
  1960. this.commandBarItem44.LargeGlyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_ZoomLarge;
  1961. this.commandBarItem44.Name = "commandBarItem44";
  1962. superToolTip48.FixedTooltipWidth = true;
  1963. toolTipTitleItem48.Text = "Zoom";
  1964. toolTipItem48.LeftIndent = 6;
  1965. toolTipItem48.Text = "Change the zoom level of the document designer.";
  1966. superToolTip48.Items.Add(toolTipTitleItem48);
  1967. superToolTip48.Items.Add(toolTipItem48);
  1968. superToolTip48.MaxWidth = 210;
  1969. this.commandBarItem44.SuperTip = superToolTip48;
  1970. //
  1971. // commandBarItem45
  1972. //
  1973. this.commandBarItem45.Caption = "Zoom In";
  1974. this.commandBarItem45.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.ZoomIn;
  1975. this.commandBarItem45.Enabled = false;
  1976. this.commandBarItem45.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_ZoomIn;
  1977. this.commandBarItem45.Id = 68;
  1978. this.commandBarItem45.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Add));
  1979. this.commandBarItem45.LargeGlyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_ZoomInLarge;
  1980. this.commandBarItem45.Name = "commandBarItem45";
  1981. superToolTip49.FixedTooltipWidth = true;
  1982. toolTipTitleItem49.Text = "Zoom In (Ctrl+Add)";
  1983. toolTipItem49.LeftIndent = 6;
  1984. toolTipItem49.Text = "Zoom in to get a close-up view of the report.";
  1985. superToolTip49.Items.Add(toolTipTitleItem49);
  1986. superToolTip49.Items.Add(toolTipItem49);
  1987. superToolTip49.MaxWidth = 210;
  1988. this.commandBarItem45.SuperTip = superToolTip49;
  1989. //
  1990. // commandBarItem46
  1991. //
  1992. this.commandBarItem46.Caption = "Zoom Out";
  1993. this.commandBarItem46.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.ZoomOut;
  1994. this.commandBarItem46.Enabled = false;
  1995. this.commandBarItem46.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_ZoomOut;
  1996. this.commandBarItem46.Id = 69;
  1997. this.commandBarItem46.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Subtract));
  1998. this.commandBarItem46.LargeGlyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_ZoomOutLarge;
  1999. this.commandBarItem46.Name = "commandBarItem46";
  2000. superToolTip50.FixedTooltipWidth = true;
  2001. toolTipTitleItem50.Text = "Zoom Out (Ctrl+Subtract)";
  2002. toolTipItem50.LeftIndent = 6;
  2003. toolTipItem50.Text = "Zoom out to see more of the report at a reduced size.";
  2004. superToolTip50.Items.Add(toolTipTitleItem50);
  2005. superToolTip50.Items.Add(toolTipItem50);
  2006. superToolTip50.MaxWidth = 210;
  2007. this.commandBarItem46.SuperTip = superToolTip50;
  2008. //
  2009. // barEditItem1
  2010. //
  2011. this.barEditItem1.Edit = this.recentlyUsedItemsComboBox1;
  2012. this.barEditItem1.EditWidth = 140;
  2013. this.barEditItem1.Id = 70;
  2014. this.barEditItem1.Name = "barEditItem1";
  2015. superToolTip51.FixedTooltipWidth = true;
  2016. toolTipTitleItem51.Text = "Font";
  2017. toolTipItem51.LeftIndent = 6;
  2018. toolTipItem51.Text = "Change the font face.";
  2019. superToolTip51.Items.Add(toolTipTitleItem51);
  2020. superToolTip51.Items.Add(toolTipItem51);
  2021. superToolTip51.MaxWidth = 210;
  2022. this.barEditItem1.SuperTip = superToolTip51;
  2023. //
  2024. // recentlyUsedItemsComboBox1
  2025. //
  2026. this.recentlyUsedItemsComboBox1.AppearanceDropDown.Font = new System.Drawing.Font("Tahoma", 11.25F);
  2027. this.recentlyUsedItemsComboBox1.AppearanceDropDown.Options.UseFont = true;
  2028. this.recentlyUsedItemsComboBox1.AutoHeight = false;
  2029. this.recentlyUsedItemsComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
  2030. new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
  2031. this.recentlyUsedItemsComboBox1.Name = "recentlyUsedItemsComboBox1";
  2032. //
  2033. // barEditItem2
  2034. //
  2035. this.barEditItem2.Edit = this.designRepositoryItemComboBox1;
  2036. this.barEditItem2.EditWidth = 50;
  2037. this.barEditItem2.Id = 71;
  2038. this.barEditItem2.Name = "barEditItem2";
  2039. superToolTip52.FixedTooltipWidth = true;
  2040. toolTipTitleItem52.Text = "Font Size";
  2041. toolTipItem52.LeftIndent = 6;
  2042. toolTipItem52.Text = "Change the font size.";
  2043. superToolTip52.Items.Add(toolTipTitleItem52);
  2044. superToolTip52.Items.Add(toolTipItem52);
  2045. superToolTip52.MaxWidth = 210;
  2046. this.barEditItem2.SuperTip = superToolTip52;
  2047. //
  2048. // designRepositoryItemComboBox1
  2049. //
  2050. this.designRepositoryItemComboBox1.AutoHeight = false;
  2051. this.designRepositoryItemComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
  2052. new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
  2053. this.designRepositoryItemComboBox1.Name = "designRepositoryItemComboBox1";
  2054. //
  2055. // barDockPanelsListItem1
  2056. //
  2057. this.barDockPanelsListItem1.Caption = "Windows";
  2058. this.barDockPanelsListItem1.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_Windows;
  2059. this.barDockPanelsListItem1.Id = 72;
  2060. this.barDockPanelsListItem1.LargeGlyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_WindowsLarge;
  2061. this.barDockPanelsListItem1.Name = "barDockPanelsListItem1";
  2062. this.barDockPanelsListItem1.ShowCustomizationItem = false;
  2063. this.barDockPanelsListItem1.ShowDockPanels = true;
  2064. this.barDockPanelsListItem1.ShowToolbars = false;
  2065. superToolTip53.FixedTooltipWidth = true;
  2066. toolTipTitleItem53.Text = "Show/Hide Windows";
  2067. toolTipItem53.LeftIndent = 6;
  2068. toolTipItem53.Text = "Show or hide the Tool Box, Report Explorer, Field List and Property Grid windows." +
  2069. "";
  2070. superToolTip53.Items.Add(toolTipTitleItem53);
  2071. superToolTip53.Items.Add(toolTipItem53);
  2072. superToolTip53.MaxWidth = 210;
  2073. this.barDockPanelsListItem1.SuperTip = superToolTip53;
  2074. //
  2075. // scriptsCommandBarItem1
  2076. //
  2077. this.scriptsCommandBarItem1.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
  2078. this.scriptsCommandBarItem1.Caption = "Scripts";
  2079. this.scriptsCommandBarItem1.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.ShowScriptsTab;
  2080. this.scriptsCommandBarItem1.Enabled = false;
  2081. this.scriptsCommandBarItem1.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_Scripts;
  2082. this.scriptsCommandBarItem1.Id = 73;
  2083. this.scriptsCommandBarItem1.LargeGlyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_ScriptsLarge;
  2084. this.scriptsCommandBarItem1.Name = "scriptsCommandBarItem1";
  2085. superToolTip54.FixedTooltipWidth = true;
  2086. toolTipTitleItem54.Text = "Show/Hide Scripts";
  2087. toolTipItem54.LeftIndent = 6;
  2088. toolTipItem54.Text = "Show or hide the Scripts Editor.";
  2089. superToolTip54.Items.Add(toolTipTitleItem54);
  2090. superToolTip54.Items.Add(toolTipItem54);
  2091. superToolTip54.MaxWidth = 210;
  2092. this.scriptsCommandBarItem1.SuperTip = superToolTip54;
  2093. //
  2094. // commandBarItem47
  2095. //
  2096. this.commandBarItem47.Caption = "Back";
  2097. this.commandBarItem47.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.HtmlBackward;
  2098. this.commandBarItem47.Enabled = false;
  2099. this.commandBarItem47.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_HtmlBackward;
  2100. this.commandBarItem47.Id = 74;
  2101. this.commandBarItem47.LargeGlyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_HtmlBackwardLarge;
  2102. this.commandBarItem47.Name = "commandBarItem47";
  2103. superToolTip55.FixedTooltipWidth = true;
  2104. toolTipTitleItem55.Text = "Back";
  2105. toolTipItem55.LeftIndent = 6;
  2106. toolTipItem55.Text = "Move back to the previous page.";
  2107. superToolTip55.Items.Add(toolTipTitleItem55);
  2108. superToolTip55.Items.Add(toolTipItem55);
  2109. superToolTip55.MaxWidth = 210;
  2110. this.commandBarItem47.SuperTip = superToolTip55;
  2111. //
  2112. // commandBarItem48
  2113. //
  2114. this.commandBarItem48.Caption = "Forward";
  2115. this.commandBarItem48.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.HtmlForward;
  2116. this.commandBarItem48.Enabled = false;
  2117. this.commandBarItem48.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_HtmlForward;
  2118. this.commandBarItem48.Id = 75;
  2119. this.commandBarItem48.LargeGlyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_HtmlForwardLarge;
  2120. this.commandBarItem48.Name = "commandBarItem48";
  2121. superToolTip56.FixedTooltipWidth = true;
  2122. toolTipTitleItem56.Text = "Forward";
  2123. toolTipItem56.LeftIndent = 6;
  2124. toolTipItem56.Text = "Move forward to the next page.";
  2125. superToolTip56.Items.Add(toolTipTitleItem56);
  2126. superToolTip56.Items.Add(toolTipItem56);
  2127. superToolTip56.MaxWidth = 210;
  2128. this.commandBarItem48.SuperTip = superToolTip56;
  2129. //
  2130. // commandBarItem49
  2131. //
  2132. this.commandBarItem49.Caption = "Home";
  2133. this.commandBarItem49.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.HtmlHome;
  2134. this.commandBarItem49.Enabled = false;
  2135. this.commandBarItem49.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_HtmlHome;
  2136. this.commandBarItem49.Id = 76;
  2137. this.commandBarItem49.LargeGlyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_HtmlHomeLarge;
  2138. this.commandBarItem49.Name = "commandBarItem49";
  2139. superToolTip57.FixedTooltipWidth = true;
  2140. toolTipTitleItem57.Text = "Home";
  2141. toolTipItem57.LeftIndent = 6;
  2142. toolTipItem57.Text = "Display the home page.";
  2143. superToolTip57.Items.Add(toolTipTitleItem57);
  2144. superToolTip57.Items.Add(toolTipItem57);
  2145. superToolTip57.MaxWidth = 210;
  2146. this.commandBarItem49.SuperTip = superToolTip57;
  2147. //
  2148. // commandBarItem50
  2149. //
  2150. this.commandBarItem50.Caption = "Refresh";
  2151. this.commandBarItem50.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.HtmlRefresh;
  2152. this.commandBarItem50.Enabled = false;
  2153. this.commandBarItem50.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_HtmlRefresh;
  2154. this.commandBarItem50.Id = 77;
  2155. this.commandBarItem50.LargeGlyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_HtmlRefreshLarge;
  2156. this.commandBarItem50.Name = "commandBarItem50";
  2157. superToolTip58.FixedTooltipWidth = true;
  2158. toolTipTitleItem58.Text = "Refresh";
  2159. toolTipItem58.LeftIndent = 6;
  2160. toolTipItem58.Text = "Refresh this page.";
  2161. superToolTip58.Items.Add(toolTipTitleItem58);
  2162. superToolTip58.Items.Add(toolTipItem58);
  2163. superToolTip58.MaxWidth = 210;
  2164. this.commandBarItem50.SuperTip = superToolTip58;
  2165. //
  2166. // commandBarItem51
  2167. //
  2168. this.commandBarItem51.Caption = "Find";
  2169. this.commandBarItem51.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.HtmlFind;
  2170. this.commandBarItem51.Enabled = false;
  2171. this.commandBarItem51.Glyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_HtmlFind;
  2172. this.commandBarItem51.Id = 78;
  2173. this.commandBarItem51.LargeGlyph = global::Uninpho.Tools.XRDesignRibbonControllerResources.RibbonUserDesigner_HtmlFindLarge;
  2174. this.commandBarItem51.Name = "commandBarItem51";
  2175. superToolTip59.FixedTooltipWidth = true;
  2176. toolTipTitleItem59.Text = "Find";
  2177. toolTipItem59.LeftIndent = 6;
  2178. toolTipItem59.Text = "Find the text on this page.";
  2179. superToolTip59.Items.Add(toolTipTitleItem59);
  2180. superToolTip59.Items.Add(toolTipItem59);
  2181. superToolTip59.MaxWidth = 210;
  2182. this.commandBarItem51.SuperTip = superToolTip59;
  2183. //
  2184. // xrDesignBarButtonGroup1
  2185. //
  2186. this.xrDesignBarButtonGroup1.Id = 81;
  2187. this.xrDesignBarButtonGroup1.ItemLinks.Add(this.commandColorBarItem2);
  2188. this.xrDesignBarButtonGroup1.ItemLinks.Add(this.commandColorBarItem1);
  2189. this.xrDesignBarButtonGroup1.Name = "xrDesignBarButtonGroup1";
  2190. //
  2191. // xrDesignBarButtonGroup2
  2192. //
  2193. this.xrDesignBarButtonGroup2.Id = 82;
  2194. this.xrDesignBarButtonGroup2.ItemLinks.Add(this.commandBarItem24);
  2195. this.xrDesignBarButtonGroup2.ItemLinks.Add(this.commandBarItem25);
  2196. this.xrDesignBarButtonGroup2.ItemLinks.Add(this.commandBarItem26);
  2197. this.xrDesignBarButtonGroup2.Name = "xrDesignBarButtonGroup2";
  2198. //
  2199. // xrDesignBarButtonGroup3
  2200. //
  2201. this.xrDesignBarButtonGroup3.Id = 83;
  2202. this.xrDesignBarButtonGroup3.ItemLinks.Add(this.commandBarItem27);
  2203. this.xrDesignBarButtonGroup3.ItemLinks.Add(this.commandBarItem28);
  2204. this.xrDesignBarButtonGroup3.ItemLinks.Add(this.commandBarItem29);
  2205. this.xrDesignBarButtonGroup3.ItemLinks.Add(this.commandBarItem30);
  2206. this.xrDesignBarButtonGroup3.Name = "xrDesignBarButtonGroup3";
  2207. //
  2208. // xrDesignBarButtonGroup4
  2209. //
  2210. this.xrDesignBarButtonGroup4.Id = 84;
  2211. this.xrDesignBarButtonGroup4.ItemLinks.Add(this.commandBarItem1);
  2212. this.xrDesignBarButtonGroup4.ItemLinks.Add(this.commandBarItem2);
  2213. this.xrDesignBarButtonGroup4.ItemLinks.Add(this.commandBarItem3);
  2214. this.xrDesignBarButtonGroup4.ItemLinks.Add(this.commandBarItem4);
  2215. this.xrDesignBarButtonGroup4.Name = "xrDesignBarButtonGroup4";
  2216. //
  2217. // xrDesignBarButtonGroup5
  2218. //
  2219. this.xrDesignBarButtonGroup5.Id = 85;
  2220. this.xrDesignBarButtonGroup5.ItemLinks.Add(this.commandBarItem5);
  2221. this.xrDesignBarButtonGroup5.ItemLinks.Add(this.commandBarItem6);
  2222. this.xrDesignBarButtonGroup5.ItemLinks.Add(this.commandBarItem7);
  2223. this.xrDesignBarButtonGroup5.Name = "xrDesignBarButtonGroup5";
  2224. //
  2225. // xrDesignBarButtonGroup6
  2226. //
  2227. this.xrDesignBarButtonGroup6.Id = 86;
  2228. this.xrDesignBarButtonGroup6.ItemLinks.Add(this.commandBarItem9);
  2229. this.xrDesignBarButtonGroup6.ItemLinks.Add(this.commandBarItem8);
  2230. this.xrDesignBarButtonGroup6.ItemLinks.Add(this.commandBarItem10);
  2231. this.xrDesignBarButtonGroup6.ItemLinks.Add(this.commandBarItem11);
  2232. this.xrDesignBarButtonGroup6.Name = "xrDesignBarButtonGroup6";
  2233. //
  2234. // xrDesignBarButtonGroup7
  2235. //
  2236. this.xrDesignBarButtonGroup7.Id = 87;
  2237. this.xrDesignBarButtonGroup7.ItemLinks.Add(this.commandBarItem12);
  2238. this.xrDesignBarButtonGroup7.ItemLinks.Add(this.commandBarItem13);
  2239. this.xrDesignBarButtonGroup7.ItemLinks.Add(this.commandBarItem14);
  2240. this.xrDesignBarButtonGroup7.ItemLinks.Add(this.commandBarItem15);
  2241. this.xrDesignBarButtonGroup7.Name = "xrDesignBarButtonGroup7";
  2242. //
  2243. // xrDesignBarButtonGroup8
  2244. //
  2245. this.xrDesignBarButtonGroup8.Id = 88;
  2246. this.xrDesignBarButtonGroup8.ItemLinks.Add(this.commandBarItem16);
  2247. this.xrDesignBarButtonGroup8.ItemLinks.Add(this.commandBarItem17);
  2248. this.xrDesignBarButtonGroup8.ItemLinks.Add(this.commandBarItem18);
  2249. this.xrDesignBarButtonGroup8.ItemLinks.Add(this.commandBarItem19);
  2250. this.xrDesignBarButtonGroup8.Name = "xrDesignBarButtonGroup8";
  2251. //
  2252. // xrDesignBarButtonGroup9
  2253. //
  2254. this.xrDesignBarButtonGroup9.Id = 89;
  2255. this.xrDesignBarButtonGroup9.ItemLinks.Add(this.commandBarItem20);
  2256. this.xrDesignBarButtonGroup9.ItemLinks.Add(this.commandBarItem21);
  2257. this.xrDesignBarButtonGroup9.ItemLinks.Add(this.commandBarItem22);
  2258. this.xrDesignBarButtonGroup9.ItemLinks.Add(this.commandBarItem23);
  2259. this.xrDesignBarButtonGroup9.Name = "xrDesignBarButtonGroup9";
  2260. //
  2261. // printPreviewBarItem1
  2262. //
  2263. this.printPreviewBarItem1.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
  2264. this.printPreviewBarItem1.Caption = "Bookmarks";
  2265. this.printPreviewBarItem1.Command = DevExpress.XtraPrinting.PrintingSystemCommand.DocumentMap;
  2266. this.printPreviewBarItem1.ContextSpecifier = this.xrDesignRibbonController1;
  2267. this.printPreviewBarItem1.Enabled = false;
  2268. this.printPreviewBarItem1.Glyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_DocumentMap;
  2269. this.printPreviewBarItem1.Id = 90;
  2270. this.printPreviewBarItem1.LargeGlyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_DocumentMapLarge;
  2271. this.printPreviewBarItem1.Name = "printPreviewBarItem1";
  2272. superToolTip60.FixedTooltipWidth = true;
  2273. toolTipTitleItem60.Text = "Document Map";
  2274. toolTipItem60.LeftIndent = 6;
  2275. toolTipItem60.Text = "Open the Document Map, which allows you to navigate through a structural view of " +
  2276. "the document.";
  2277. superToolTip60.Items.Add(toolTipTitleItem60);
  2278. superToolTip60.Items.Add(toolTipItem60);
  2279. superToolTip60.MaxWidth = 210;
  2280. this.printPreviewBarItem1.SuperTip = superToolTip60;
  2281. //
  2282. // printPreviewBarItem2
  2283. //
  2284. this.printPreviewBarItem2.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
  2285. this.printPreviewBarItem2.Caption = "Parameters";
  2286. this.printPreviewBarItem2.Command = DevExpress.XtraPrinting.PrintingSystemCommand.Parameters;
  2287. this.printPreviewBarItem2.ContextSpecifier = this.xrDesignRibbonController1;
  2288. this.printPreviewBarItem2.Enabled = false;
  2289. this.printPreviewBarItem2.Glyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_Parameters;
  2290. this.printPreviewBarItem2.Id = 91;
  2291. this.printPreviewBarItem2.LargeGlyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_ParametersLarge;
  2292. this.printPreviewBarItem2.Name = "printPreviewBarItem2";
  2293. superToolTip61.FixedTooltipWidth = true;
  2294. toolTipTitleItem61.Text = "Parameters";
  2295. toolTipItem61.LeftIndent = 6;
  2296. toolTipItem61.Text = "Open the Parameters pane, which allows you to enter values for report parameters." +
  2297. "";
  2298. superToolTip61.Items.Add(toolTipTitleItem61);
  2299. superToolTip61.Items.Add(toolTipItem61);
  2300. superToolTip61.MaxWidth = 210;
  2301. this.printPreviewBarItem2.SuperTip = superToolTip61;
  2302. //
  2303. // printPreviewBarItem3
  2304. //
  2305. this.printPreviewBarItem3.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
  2306. this.printPreviewBarItem3.Caption = "Find";
  2307. this.printPreviewBarItem3.Command = DevExpress.XtraPrinting.PrintingSystemCommand.Find;
  2308. this.printPreviewBarItem3.ContextSpecifier = this.xrDesignRibbonController1;
  2309. this.printPreviewBarItem3.Enabled = false;
  2310. this.printPreviewBarItem3.Glyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_Find;
  2311. this.printPreviewBarItem3.Id = 92;
  2312. this.printPreviewBarItem3.LargeGlyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_FindLarge;
  2313. this.printPreviewBarItem3.Name = "printPreviewBarItem3";
  2314. superToolTip62.FixedTooltipWidth = true;
  2315. toolTipTitleItem62.Text = "Find";
  2316. toolTipItem62.LeftIndent = 6;
  2317. toolTipItem62.Text = "Show the Find dialog to find text in the document.";
  2318. superToolTip62.Items.Add(toolTipTitleItem62);
  2319. superToolTip62.Items.Add(toolTipItem62);
  2320. superToolTip62.MaxWidth = 210;
  2321. this.printPreviewBarItem3.SuperTip = superToolTip62;
  2322. //
  2323. // printPreviewBarItem4
  2324. //
  2325. this.printPreviewBarItem4.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
  2326. this.printPreviewBarItem4.Caption = "Thumbnails";
  2327. this.printPreviewBarItem4.Command = DevExpress.XtraPrinting.PrintingSystemCommand.Thumbnails;
  2328. this.printPreviewBarItem4.ContextSpecifier = this.xrDesignRibbonController1;
  2329. this.printPreviewBarItem4.Enabled = false;
  2330. this.printPreviewBarItem4.Glyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_Thumbnails;
  2331. this.printPreviewBarItem4.Id = 93;
  2332. this.printPreviewBarItem4.LargeGlyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_ThumbnailsLarge;
  2333. this.printPreviewBarItem4.Name = "printPreviewBarItem4";
  2334. superToolTip63.FixedTooltipWidth = true;
  2335. toolTipTitleItem63.Text = "Thumbnails";
  2336. toolTipItem63.LeftIndent = 6;
  2337. toolTipItem63.Text = "Open the Thumbnails, which allows you to navigate through the document.";
  2338. superToolTip63.Items.Add(toolTipTitleItem63);
  2339. superToolTip63.Items.Add(toolTipItem63);
  2340. superToolTip63.MaxWidth = 210;
  2341. this.printPreviewBarItem4.SuperTip = superToolTip63;
  2342. //
  2343. // printPreviewBarItem5
  2344. //
  2345. this.printPreviewBarItem5.Caption = "Options";
  2346. this.printPreviewBarItem5.Command = DevExpress.XtraPrinting.PrintingSystemCommand.Customize;
  2347. this.printPreviewBarItem5.ContextSpecifier = this.xrDesignRibbonController1;
  2348. this.printPreviewBarItem5.Enabled = false;
  2349. this.printPreviewBarItem5.Glyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_Customize;
  2350. this.printPreviewBarItem5.Id = 94;
  2351. this.printPreviewBarItem5.LargeGlyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_CustomizeLarge;
  2352. this.printPreviewBarItem5.Name = "printPreviewBarItem5";
  2353. superToolTip64.FixedTooltipWidth = true;
  2354. toolTipTitleItem64.Text = "Options";
  2355. toolTipItem64.LeftIndent = 6;
  2356. toolTipItem64.Text = "Open the Print Options dialog, in which you can change printing options.";
  2357. superToolTip64.Items.Add(toolTipTitleItem64);
  2358. superToolTip64.Items.Add(toolTipItem64);
  2359. superToolTip64.MaxWidth = 210;
  2360. this.printPreviewBarItem5.SuperTip = superToolTip64;
  2361. //
  2362. // printPreviewBarItem6
  2363. //
  2364. this.printPreviewBarItem6.Caption = "Print";
  2365. this.printPreviewBarItem6.Command = DevExpress.XtraPrinting.PrintingSystemCommand.Print;
  2366. this.printPreviewBarItem6.ContextSpecifier = this.xrDesignRibbonController1;
  2367. this.printPreviewBarItem6.Enabled = false;
  2368. this.printPreviewBarItem6.Glyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_Print;
  2369. this.printPreviewBarItem6.Id = 95;
  2370. this.printPreviewBarItem6.LargeGlyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_PrintLarge;
  2371. this.printPreviewBarItem6.Name = "printPreviewBarItem6";
  2372. superToolTip65.FixedTooltipWidth = true;
  2373. toolTipTitleItem65.Text = "Print (Ctrl+P)";
  2374. toolTipItem65.LeftIndent = 6;
  2375. toolTipItem65.Text = "Select a printer, number of copies and other printing options before printing.";
  2376. superToolTip65.Items.Add(toolTipTitleItem65);
  2377. superToolTip65.Items.Add(toolTipItem65);
  2378. superToolTip65.MaxWidth = 210;
  2379. this.printPreviewBarItem6.SuperTip = superToolTip65;
  2380. //
  2381. // printPreviewBarItem7
  2382. //
  2383. this.printPreviewBarItem7.Caption = "Quick Print";
  2384. this.printPreviewBarItem7.Command = DevExpress.XtraPrinting.PrintingSystemCommand.PrintDirect;
  2385. this.printPreviewBarItem7.ContextSpecifier = this.xrDesignRibbonController1;
  2386. this.printPreviewBarItem7.Enabled = false;
  2387. this.printPreviewBarItem7.Glyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_PrintDirect;
  2388. this.printPreviewBarItem7.Id = 96;
  2389. this.printPreviewBarItem7.LargeGlyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_PrintDirectLarge;
  2390. this.printPreviewBarItem7.Name = "printPreviewBarItem7";
  2391. superToolTip66.FixedTooltipWidth = true;
  2392. toolTipTitleItem66.Text = "Quick Print";
  2393. toolTipItem66.LeftIndent = 6;
  2394. toolTipItem66.Text = "Send the document directly to the default printer without making changes.";
  2395. superToolTip66.Items.Add(toolTipTitleItem66);
  2396. superToolTip66.Items.Add(toolTipItem66);
  2397. superToolTip66.MaxWidth = 210;
  2398. this.printPreviewBarItem7.SuperTip = superToolTip66;
  2399. //
  2400. // printPreviewBarItem8
  2401. //
  2402. this.printPreviewBarItem8.Caption = "Custom Margins...";
  2403. this.printPreviewBarItem8.Command = DevExpress.XtraPrinting.PrintingSystemCommand.PageSetup;
  2404. this.printPreviewBarItem8.ContextSpecifier = this.xrDesignRibbonController1;
  2405. this.printPreviewBarItem8.Enabled = false;
  2406. this.printPreviewBarItem8.Id = 97;
  2407. this.printPreviewBarItem8.Name = "printPreviewBarItem8";
  2408. superToolTip67.FixedTooltipWidth = true;
  2409. toolTipTitleItem67.Text = "Page Setup";
  2410. toolTipItem67.LeftIndent = 6;
  2411. toolTipItem67.Text = "Show the Page Setup dialog.";
  2412. superToolTip67.Items.Add(toolTipTitleItem67);
  2413. superToolTip67.Items.Add(toolTipItem67);
  2414. superToolTip67.MaxWidth = 210;
  2415. this.printPreviewBarItem8.SuperTip = superToolTip67;
  2416. //
  2417. // printPreviewBarItem9
  2418. //
  2419. this.printPreviewBarItem9.Caption = "Header/Footer";
  2420. this.printPreviewBarItem9.Command = DevExpress.XtraPrinting.PrintingSystemCommand.EditPageHF;
  2421. this.printPreviewBarItem9.ContextSpecifier = this.xrDesignRibbonController1;
  2422. this.printPreviewBarItem9.Enabled = false;
  2423. this.printPreviewBarItem9.Glyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_EditPageHF;
  2424. this.printPreviewBarItem9.Id = 98;
  2425. this.printPreviewBarItem9.LargeGlyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_EditPageHFLarge;
  2426. this.printPreviewBarItem9.Name = "printPreviewBarItem9";
  2427. superToolTip68.FixedTooltipWidth = true;
  2428. toolTipTitleItem68.Text = "Header and Footer";
  2429. toolTipItem68.LeftIndent = 6;
  2430. toolTipItem68.Text = "Edit the header and footer of the document.";
  2431. superToolTip68.Items.Add(toolTipTitleItem68);
  2432. superToolTip68.Items.Add(toolTipItem68);
  2433. superToolTip68.MaxWidth = 210;
  2434. this.printPreviewBarItem9.SuperTip = superToolTip68;
  2435. //
  2436. // printPreviewBarItem10
  2437. //
  2438. this.printPreviewBarItem10.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
  2439. this.printPreviewBarItem10.Caption = "Scale";
  2440. this.printPreviewBarItem10.Command = DevExpress.XtraPrinting.PrintingSystemCommand.Scale;
  2441. this.printPreviewBarItem10.ContextSpecifier = this.xrDesignRibbonController1;
  2442. this.printPreviewBarItem10.Enabled = false;
  2443. this.printPreviewBarItem10.Glyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_Scale;
  2444. this.printPreviewBarItem10.Id = 99;
  2445. this.printPreviewBarItem10.LargeGlyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_ScaleLarge;
  2446. this.printPreviewBarItem10.Name = "printPreviewBarItem10";
  2447. superToolTip69.FixedTooltipWidth = true;
  2448. toolTipTitleItem69.Text = "Scale";
  2449. toolTipItem69.LeftIndent = 6;
  2450. toolTipItem69.Text = "Stretch or shrink the printed output to a percentage of its actual size.";
  2451. superToolTip69.Items.Add(toolTipTitleItem69);
  2452. superToolTip69.Items.Add(toolTipItem69);
  2453. superToolTip69.MaxWidth = 210;
  2454. this.printPreviewBarItem10.SuperTip = superToolTip69;
  2455. //
  2456. // printPreviewBarItem11
  2457. //
  2458. this.printPreviewBarItem11.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
  2459. this.printPreviewBarItem11.Caption = "Pointer";
  2460. this.printPreviewBarItem11.Command = DevExpress.XtraPrinting.PrintingSystemCommand.Pointer;
  2461. this.printPreviewBarItem11.ContextSpecifier = this.xrDesignRibbonController1;
  2462. this.printPreviewBarItem11.Enabled = false;
  2463. this.printPreviewBarItem11.Glyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_Pointer;
  2464. this.printPreviewBarItem11.GroupIndex = 1;
  2465. this.printPreviewBarItem11.Id = 100;
  2466. this.printPreviewBarItem11.Name = "printPreviewBarItem11";
  2467. this.printPreviewBarItem11.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
  2468. superToolTip70.FixedTooltipWidth = true;
  2469. toolTipTitleItem70.Text = "Mouse Pointer";
  2470. toolTipItem70.LeftIndent = 6;
  2471. toolTipItem70.Text = "Show the mouse pointer.";
  2472. superToolTip70.Items.Add(toolTipTitleItem70);
  2473. superToolTip70.Items.Add(toolTipItem70);
  2474. superToolTip70.MaxWidth = 210;
  2475. this.printPreviewBarItem11.SuperTip = superToolTip70;
  2476. //
  2477. // printPreviewBarItem12
  2478. //
  2479. this.printPreviewBarItem12.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
  2480. this.printPreviewBarItem12.Caption = "Hand Tool";
  2481. this.printPreviewBarItem12.Command = DevExpress.XtraPrinting.PrintingSystemCommand.HandTool;
  2482. this.printPreviewBarItem12.ContextSpecifier = this.xrDesignRibbonController1;
  2483. this.printPreviewBarItem12.Enabled = false;
  2484. this.printPreviewBarItem12.Glyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_HandTool;
  2485. this.printPreviewBarItem12.GroupIndex = 1;
  2486. this.printPreviewBarItem12.Id = 101;
  2487. this.printPreviewBarItem12.Name = "printPreviewBarItem12";
  2488. this.printPreviewBarItem12.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
  2489. superToolTip71.FixedTooltipWidth = true;
  2490. toolTipTitleItem71.Text = "Hand Tool";
  2491. toolTipItem71.LeftIndent = 6;
  2492. toolTipItem71.Text = "Invoke the Hand tool to manually scroll through pages.";
  2493. superToolTip71.Items.Add(toolTipTitleItem71);
  2494. superToolTip71.Items.Add(toolTipItem71);
  2495. superToolTip71.MaxWidth = 210;
  2496. this.printPreviewBarItem12.SuperTip = superToolTip71;
  2497. //
  2498. // printPreviewBarItem13
  2499. //
  2500. this.printPreviewBarItem13.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
  2501. this.printPreviewBarItem13.Caption = "Magnifier";
  2502. this.printPreviewBarItem13.Command = DevExpress.XtraPrinting.PrintingSystemCommand.Magnifier;
  2503. this.printPreviewBarItem13.ContextSpecifier = this.xrDesignRibbonController1;
  2504. this.printPreviewBarItem13.Enabled = false;
  2505. this.printPreviewBarItem13.Glyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_Magnifier;
  2506. this.printPreviewBarItem13.GroupIndex = 1;
  2507. this.printPreviewBarItem13.Id = 102;
  2508. this.printPreviewBarItem13.Name = "printPreviewBarItem13";
  2509. this.printPreviewBarItem13.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
  2510. superToolTip72.FixedTooltipWidth = true;
  2511. toolTipTitleItem72.Text = "Magnifier";
  2512. toolTipItem72.LeftIndent = 6;
  2513. toolTipItem72.Text = "Invoke the Magnifier tool.\r\n\r\nClicking once on a document zooms it so that a sing" +
  2514. "le page becomes entirely visible, while clicking another time zooms it to 100% o" +
  2515. "f the normal size.";
  2516. superToolTip72.Items.Add(toolTipTitleItem72);
  2517. superToolTip72.Items.Add(toolTipItem72);
  2518. superToolTip72.MaxWidth = 210;
  2519. this.printPreviewBarItem13.SuperTip = superToolTip72;
  2520. //
  2521. // printPreviewBarItem14
  2522. //
  2523. this.printPreviewBarItem14.Caption = "Zoom Out";
  2524. this.printPreviewBarItem14.Command = DevExpress.XtraPrinting.PrintingSystemCommand.ZoomOut;
  2525. this.printPreviewBarItem14.ContextSpecifier = this.xrDesignRibbonController1;
  2526. this.printPreviewBarItem14.Enabled = false;
  2527. this.printPreviewBarItem14.Glyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_ZoomOut;
  2528. this.printPreviewBarItem14.Id = 103;
  2529. this.printPreviewBarItem14.LargeGlyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_ZoomOutLarge;
  2530. this.printPreviewBarItem14.Name = "printPreviewBarItem14";
  2531. superToolTip73.FixedTooltipWidth = true;
  2532. toolTipTitleItem73.Text = "Zoom Out";
  2533. toolTipItem73.LeftIndent = 6;
  2534. toolTipItem73.Text = "Zoom out to see more of the page at a reduced size.";
  2535. superToolTip73.Items.Add(toolTipTitleItem73);
  2536. superToolTip73.Items.Add(toolTipItem73);
  2537. superToolTip73.MaxWidth = 210;
  2538. this.printPreviewBarItem14.SuperTip = superToolTip73;
  2539. //
  2540. // printPreviewBarItem15
  2541. //
  2542. this.printPreviewBarItem15.Caption = "Zoom In";
  2543. this.printPreviewBarItem15.Command = DevExpress.XtraPrinting.PrintingSystemCommand.ZoomIn;
  2544. this.printPreviewBarItem15.ContextSpecifier = this.xrDesignRibbonController1;
  2545. this.printPreviewBarItem15.Enabled = false;
  2546. this.printPreviewBarItem15.Glyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_ZoomIn;
  2547. this.printPreviewBarItem15.Id = 104;
  2548. this.printPreviewBarItem15.LargeGlyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_ZoomInLarge;
  2549. this.printPreviewBarItem15.Name = "printPreviewBarItem15";
  2550. superToolTip74.FixedTooltipWidth = true;
  2551. toolTipTitleItem74.Text = "Zoom In";
  2552. toolTipItem74.LeftIndent = 6;
  2553. toolTipItem74.Text = "Zoom in to get a close-up view of the document.";
  2554. superToolTip74.Items.Add(toolTipTitleItem74);
  2555. superToolTip74.Items.Add(toolTipItem74);
  2556. superToolTip74.MaxWidth = 210;
  2557. this.printPreviewBarItem15.SuperTip = superToolTip74;
  2558. //
  2559. // printPreviewBarItem16
  2560. //
  2561. this.printPreviewBarItem16.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
  2562. this.printPreviewBarItem16.Caption = "Zoom";
  2563. this.printPreviewBarItem16.Command = DevExpress.XtraPrinting.PrintingSystemCommand.Zoom;
  2564. this.printPreviewBarItem16.ContextSpecifier = this.xrDesignRibbonController1;
  2565. this.printPreviewBarItem16.Enabled = false;
  2566. this.printPreviewBarItem16.Glyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_Zoom;
  2567. this.printPreviewBarItem16.Id = 105;
  2568. this.printPreviewBarItem16.LargeGlyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_ZoomLarge;
  2569. this.printPreviewBarItem16.Name = "printPreviewBarItem16";
  2570. superToolTip75.FixedTooltipWidth = true;
  2571. toolTipTitleItem75.Text = "Zoom";
  2572. toolTipItem75.LeftIndent = 6;
  2573. toolTipItem75.Text = "Change the zoom level of the document preview.";
  2574. superToolTip75.Items.Add(toolTipTitleItem75);
  2575. superToolTip75.Items.Add(toolTipItem75);
  2576. superToolTip75.MaxWidth = 210;
  2577. this.printPreviewBarItem16.SuperTip = superToolTip75;
  2578. //
  2579. // printPreviewBarItem17
  2580. //
  2581. this.printPreviewBarItem17.Caption = "First Page";
  2582. this.printPreviewBarItem17.Command = DevExpress.XtraPrinting.PrintingSystemCommand.ShowFirstPage;
  2583. this.printPreviewBarItem17.ContextSpecifier = this.xrDesignRibbonController1;
  2584. this.printPreviewBarItem17.Enabled = false;
  2585. this.printPreviewBarItem17.Glyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_ShowFirstPage;
  2586. this.printPreviewBarItem17.Id = 106;
  2587. this.printPreviewBarItem17.LargeGlyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_ShowFirstPageLarge;
  2588. this.printPreviewBarItem17.Name = "printPreviewBarItem17";
  2589. superToolTip76.FixedTooltipWidth = true;
  2590. toolTipTitleItem76.Text = "First Page (Ctrl+Home)";
  2591. toolTipItem76.LeftIndent = 6;
  2592. toolTipItem76.Text = "Navigate to the first page of the document.";
  2593. superToolTip76.Items.Add(toolTipTitleItem76);
  2594. superToolTip76.Items.Add(toolTipItem76);
  2595. superToolTip76.MaxWidth = 210;
  2596. this.printPreviewBarItem17.SuperTip = superToolTip76;
  2597. //
  2598. // printPreviewBarItem18
  2599. //
  2600. this.printPreviewBarItem18.Caption = "Previous Page";
  2601. this.printPreviewBarItem18.Command = DevExpress.XtraPrinting.PrintingSystemCommand.ShowPrevPage;
  2602. this.printPreviewBarItem18.ContextSpecifier = this.xrDesignRibbonController1;
  2603. this.printPreviewBarItem18.Enabled = false;
  2604. this.printPreviewBarItem18.Glyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_ShowPrevPage;
  2605. this.printPreviewBarItem18.Id = 107;
  2606. this.printPreviewBarItem18.LargeGlyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_ShowPrevPageLarge;
  2607. this.printPreviewBarItem18.Name = "printPreviewBarItem18";
  2608. superToolTip77.FixedTooltipWidth = true;
  2609. toolTipTitleItem77.Text = "Previous Page (PageUp)";
  2610. toolTipItem77.LeftIndent = 6;
  2611. toolTipItem77.Text = "Navigate to the previous page of the document.";
  2612. superToolTip77.Items.Add(toolTipTitleItem77);
  2613. superToolTip77.Items.Add(toolTipItem77);
  2614. superToolTip77.MaxWidth = 210;
  2615. this.printPreviewBarItem18.SuperTip = superToolTip77;
  2616. //
  2617. // printPreviewBarItem19
  2618. //
  2619. this.printPreviewBarItem19.Caption = "Next Page ";
  2620. this.printPreviewBarItem19.Command = DevExpress.XtraPrinting.PrintingSystemCommand.ShowNextPage;
  2621. this.printPreviewBarItem19.ContextSpecifier = this.xrDesignRibbonController1;
  2622. this.printPreviewBarItem19.Enabled = false;
  2623. this.printPreviewBarItem19.Glyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_ShowNextPage;
  2624. this.printPreviewBarItem19.Id = 108;
  2625. this.printPreviewBarItem19.LargeGlyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_ShowNextPageLarge;
  2626. this.printPreviewBarItem19.Name = "printPreviewBarItem19";
  2627. superToolTip78.FixedTooltipWidth = true;
  2628. toolTipTitleItem78.Text = "Next Page (PageDown)";
  2629. toolTipItem78.LeftIndent = 6;
  2630. toolTipItem78.Text = "Navigate to the next page of the document.";
  2631. superToolTip78.Items.Add(toolTipTitleItem78);
  2632. superToolTip78.Items.Add(toolTipItem78);
  2633. superToolTip78.MaxWidth = 210;
  2634. this.printPreviewBarItem19.SuperTip = superToolTip78;
  2635. //
  2636. // printPreviewBarItem20
  2637. //
  2638. this.printPreviewBarItem20.Caption = "Last Page ";
  2639. this.printPreviewBarItem20.Command = DevExpress.XtraPrinting.PrintingSystemCommand.ShowLastPage;
  2640. this.printPreviewBarItem20.ContextSpecifier = this.xrDesignRibbonController1;
  2641. this.printPreviewBarItem20.Enabled = false;
  2642. this.printPreviewBarItem20.Glyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_ShowLastPage;
  2643. this.printPreviewBarItem20.Id = 109;
  2644. this.printPreviewBarItem20.LargeGlyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_ShowLastPageLarge;
  2645. this.printPreviewBarItem20.Name = "printPreviewBarItem20";
  2646. superToolTip79.FixedTooltipWidth = true;
  2647. toolTipTitleItem79.Text = "Last Page (Ctrl+End)";
  2648. toolTipItem79.LeftIndent = 6;
  2649. toolTipItem79.Text = "Navigate to the last page of the document.";
  2650. superToolTip79.Items.Add(toolTipTitleItem79);
  2651. superToolTip79.Items.Add(toolTipItem79);
  2652. superToolTip79.MaxWidth = 210;
  2653. this.printPreviewBarItem20.SuperTip = superToolTip79;
  2654. //
  2655. // printPreviewBarItem21
  2656. //
  2657. this.printPreviewBarItem21.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
  2658. this.printPreviewBarItem21.Caption = "Many Pages";
  2659. this.printPreviewBarItem21.Command = DevExpress.XtraPrinting.PrintingSystemCommand.MultiplePages;
  2660. this.printPreviewBarItem21.ContextSpecifier = this.xrDesignRibbonController1;
  2661. this.printPreviewBarItem21.Enabled = false;
  2662. this.printPreviewBarItem21.Glyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_MultiplePages;
  2663. this.printPreviewBarItem21.Id = 110;
  2664. this.printPreviewBarItem21.LargeGlyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_MultiplePagesLarge;
  2665. this.printPreviewBarItem21.Name = "printPreviewBarItem21";
  2666. superToolTip80.FixedTooltipWidth = true;
  2667. toolTipTitleItem80.Text = "View Many Pages";
  2668. toolTipItem80.LeftIndent = 6;
  2669. toolTipItem80.Text = "Choose the page layout to arrange the document pages in preview.";
  2670. superToolTip80.Items.Add(toolTipTitleItem80);
  2671. superToolTip80.Items.Add(toolTipItem80);
  2672. superToolTip80.MaxWidth = 210;
  2673. this.printPreviewBarItem21.SuperTip = superToolTip80;
  2674. //
  2675. // printPreviewBarItem22
  2676. //
  2677. this.printPreviewBarItem22.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
  2678. this.printPreviewBarItem22.Caption = "Page Color";
  2679. this.printPreviewBarItem22.Command = DevExpress.XtraPrinting.PrintingSystemCommand.FillBackground;
  2680. this.printPreviewBarItem22.ContextSpecifier = this.xrDesignRibbonController1;
  2681. this.printPreviewBarItem22.Enabled = false;
  2682. this.printPreviewBarItem22.Glyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_FillBackground;
  2683. this.printPreviewBarItem22.Id = 111;
  2684. this.printPreviewBarItem22.LargeGlyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_FillBackgroundLarge;
  2685. this.printPreviewBarItem22.Name = "printPreviewBarItem22";
  2686. superToolTip81.FixedTooltipWidth = true;
  2687. toolTipTitleItem81.Text = "Background Color";
  2688. toolTipItem81.LeftIndent = 6;
  2689. toolTipItem81.Text = "Choose a color for the background of the document pages.";
  2690. superToolTip81.Items.Add(toolTipTitleItem81);
  2691. superToolTip81.Items.Add(toolTipItem81);
  2692. superToolTip81.MaxWidth = 210;
  2693. this.printPreviewBarItem22.SuperTip = superToolTip81;
  2694. //
  2695. // printPreviewBarItem23
  2696. //
  2697. this.printPreviewBarItem23.Caption = "Watermark";
  2698. this.printPreviewBarItem23.Command = DevExpress.XtraPrinting.PrintingSystemCommand.Watermark;
  2699. this.printPreviewBarItem23.ContextSpecifier = this.xrDesignRibbonController1;
  2700. this.printPreviewBarItem23.Enabled = false;
  2701. this.printPreviewBarItem23.Glyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_Watermark;
  2702. this.printPreviewBarItem23.Id = 112;
  2703. this.printPreviewBarItem23.LargeGlyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_WatermarkLarge;
  2704. this.printPreviewBarItem23.Name = "printPreviewBarItem23";
  2705. superToolTip82.FixedTooltipWidth = true;
  2706. toolTipTitleItem82.Text = "Watermark";
  2707. toolTipItem82.LeftIndent = 6;
  2708. toolTipItem82.Text = "Insert ghosted text or image behind the content of a page.\r\n\r\nThis is often used " +
  2709. "to indicate that a document is to be treated specially.";
  2710. superToolTip82.Items.Add(toolTipTitleItem82);
  2711. superToolTip82.Items.Add(toolTipItem82);
  2712. superToolTip82.MaxWidth = 210;
  2713. this.printPreviewBarItem23.SuperTip = superToolTip82;
  2714. //
  2715. // printPreviewBarItem24
  2716. //
  2717. this.printPreviewBarItem24.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
  2718. this.printPreviewBarItem24.Caption = "Export To";
  2719. this.printPreviewBarItem24.Command = DevExpress.XtraPrinting.PrintingSystemCommand.ExportFile;
  2720. this.printPreviewBarItem24.ContextSpecifier = this.xrDesignRibbonController1;
  2721. this.printPreviewBarItem24.Enabled = false;
  2722. this.printPreviewBarItem24.Glyph = ((System.Drawing.Image)(resources.GetObject("printPreviewBarItem24.Glyph")));
  2723. this.printPreviewBarItem24.Id = 113;
  2724. this.printPreviewBarItem24.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("printPreviewBarItem24.LargeGlyph")));
  2725. this.printPreviewBarItem24.Name = "printPreviewBarItem24";
  2726. superToolTip83.FixedTooltipWidth = true;
  2727. toolTipTitleItem83.Text = "Export To...";
  2728. toolTipItem83.LeftIndent = 6;
  2729. toolTipItem83.Text = "Export the current document in one of the available formats, and save it to the f" +
  2730. "ile on a disk.";
  2731. superToolTip83.Items.Add(toolTipTitleItem83);
  2732. superToolTip83.Items.Add(toolTipItem83);
  2733. superToolTip83.MaxWidth = 210;
  2734. this.printPreviewBarItem24.SuperTip = superToolTip83;
  2735. //
  2736. // printPreviewBarItem25
  2737. //
  2738. this.printPreviewBarItem25.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
  2739. this.printPreviewBarItem25.Caption = "E-Mail As";
  2740. this.printPreviewBarItem25.Command = DevExpress.XtraPrinting.PrintingSystemCommand.SendFile;
  2741. this.printPreviewBarItem25.ContextSpecifier = this.xrDesignRibbonController1;
  2742. this.printPreviewBarItem25.Enabled = false;
  2743. this.printPreviewBarItem25.Glyph = ((System.Drawing.Image)(resources.GetObject("printPreviewBarItem25.Glyph")));
  2744. this.printPreviewBarItem25.Id = 114;
  2745. this.printPreviewBarItem25.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("printPreviewBarItem25.LargeGlyph")));
  2746. this.printPreviewBarItem25.Name = "printPreviewBarItem25";
  2747. superToolTip84.FixedTooltipWidth = true;
  2748. toolTipTitleItem84.Text = "E-Mail As...";
  2749. toolTipItem84.LeftIndent = 6;
  2750. toolTipItem84.Text = "Export the current document in one of the available formats, and attach it to the" +
  2751. " e-mail.";
  2752. superToolTip84.Items.Add(toolTipTitleItem84);
  2753. superToolTip84.Items.Add(toolTipItem84);
  2754. superToolTip84.MaxWidth = 210;
  2755. this.printPreviewBarItem25.SuperTip = superToolTip84;
  2756. //
  2757. // printPreviewBarItem26
  2758. //
  2759. this.printPreviewBarItem26.Caption = "Close";
  2760. this.printPreviewBarItem26.Command = DevExpress.XtraPrinting.PrintingSystemCommand.ClosePreview;
  2761. this.printPreviewBarItem26.ContextSpecifier = this.xrDesignRibbonController1;
  2762. this.printPreviewBarItem26.Enabled = false;
  2763. this.printPreviewBarItem26.Glyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_ClosePreview;
  2764. this.printPreviewBarItem26.Id = 115;
  2765. this.printPreviewBarItem26.LargeGlyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_ClosePreviewLarge;
  2766. this.printPreviewBarItem26.Name = "printPreviewBarItem26";
  2767. superToolTip85.FixedTooltipWidth = true;
  2768. toolTipTitleItem85.Text = "Close Print Preview";
  2769. toolTipItem85.LeftIndent = 6;
  2770. toolTipItem85.Text = "Close Print Preview of the document.";
  2771. superToolTip85.Items.Add(toolTipTitleItem85);
  2772. superToolTip85.Items.Add(toolTipItem85);
  2773. superToolTip85.MaxWidth = 210;
  2774. this.printPreviewBarItem26.SuperTip = superToolTip85;
  2775. //
  2776. // printPreviewBarItem27
  2777. //
  2778. this.printPreviewBarItem27.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
  2779. this.printPreviewBarItem27.Caption = "Orientation";
  2780. this.printPreviewBarItem27.Command = DevExpress.XtraPrinting.PrintingSystemCommand.PageOrientation;
  2781. this.printPreviewBarItem27.ContextSpecifier = this.xrDesignRibbonController1;
  2782. this.printPreviewBarItem27.Enabled = false;
  2783. this.printPreviewBarItem27.Glyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_PageOrientation;
  2784. this.printPreviewBarItem27.Id = 116;
  2785. this.printPreviewBarItem27.LargeGlyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_PageOrientationLarge;
  2786. this.printPreviewBarItem27.Name = "printPreviewBarItem27";
  2787. superToolTip86.FixedTooltipWidth = true;
  2788. toolTipTitleItem86.Text = "Page Orientation";
  2789. toolTipItem86.LeftIndent = 6;
  2790. toolTipItem86.Text = "Switch the pages between portrait and landscape layouts.";
  2791. superToolTip86.Items.Add(toolTipTitleItem86);
  2792. superToolTip86.Items.Add(toolTipItem86);
  2793. superToolTip86.MaxWidth = 210;
  2794. this.printPreviewBarItem27.SuperTip = superToolTip86;
  2795. //
  2796. // printPreviewBarItem28
  2797. //
  2798. this.printPreviewBarItem28.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
  2799. this.printPreviewBarItem28.Caption = "Size";
  2800. this.printPreviewBarItem28.Command = DevExpress.XtraPrinting.PrintingSystemCommand.PaperSize;
  2801. this.printPreviewBarItem28.ContextSpecifier = this.xrDesignRibbonController1;
  2802. this.printPreviewBarItem28.Enabled = false;
  2803. this.printPreviewBarItem28.Glyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_PaperSize;
  2804. this.printPreviewBarItem28.Id = 117;
  2805. this.printPreviewBarItem28.LargeGlyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_PaperSizeLarge;
  2806. this.printPreviewBarItem28.Name = "printPreviewBarItem28";
  2807. superToolTip87.FixedTooltipWidth = true;
  2808. toolTipTitleItem87.Text = "Page Size";
  2809. toolTipItem87.LeftIndent = 6;
  2810. toolTipItem87.Text = "Choose the paper size of the document.";
  2811. superToolTip87.Items.Add(toolTipTitleItem87);
  2812. superToolTip87.Items.Add(toolTipItem87);
  2813. superToolTip87.MaxWidth = 210;
  2814. this.printPreviewBarItem28.SuperTip = superToolTip87;
  2815. //
  2816. // printPreviewBarItem29
  2817. //
  2818. this.printPreviewBarItem29.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
  2819. this.printPreviewBarItem29.Caption = "Margins";
  2820. this.printPreviewBarItem29.Command = DevExpress.XtraPrinting.PrintingSystemCommand.PageMargins;
  2821. this.printPreviewBarItem29.ContextSpecifier = this.xrDesignRibbonController1;
  2822. this.printPreviewBarItem29.Enabled = false;
  2823. this.printPreviewBarItem29.Glyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_PageMargins;
  2824. this.printPreviewBarItem29.Id = 118;
  2825. this.printPreviewBarItem29.LargeGlyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_PageMarginsLarge;
  2826. this.printPreviewBarItem29.Name = "printPreviewBarItem29";
  2827. superToolTip88.FixedTooltipWidth = true;
  2828. toolTipTitleItem88.Text = "Page Margins";
  2829. toolTipItem88.LeftIndent = 6;
  2830. toolTipItem88.Text = "Select the margin sizes for the entire document.\r\n\r\nTo apply specific margin size" +
  2831. "s to the document, click Custom Margins.";
  2832. superToolTip88.Items.Add(toolTipTitleItem88);
  2833. superToolTip88.Items.Add(toolTipItem88);
  2834. superToolTip88.MaxWidth = 210;
  2835. this.printPreviewBarItem29.SuperTip = superToolTip88;
  2836. //
  2837. // printPreviewBarItem30
  2838. //
  2839. this.printPreviewBarItem30.Caption = "PDF File";
  2840. this.printPreviewBarItem30.Command = DevExpress.XtraPrinting.PrintingSystemCommand.SendPdf;
  2841. this.printPreviewBarItem30.ContextSpecifier = this.xrDesignRibbonController1;
  2842. this.printPreviewBarItem30.Description = "Adobe Portable Document Format";
  2843. this.printPreviewBarItem30.Enabled = false;
  2844. this.printPreviewBarItem30.Glyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_SendPdf;
  2845. this.printPreviewBarItem30.Id = 119;
  2846. this.printPreviewBarItem30.LargeGlyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_SendPdfLarge;
  2847. this.printPreviewBarItem30.Name = "printPreviewBarItem30";
  2848. superToolTip89.FixedTooltipWidth = true;
  2849. toolTipTitleItem89.Text = "E-Mail As PDF";
  2850. toolTipItem89.LeftIndent = 6;
  2851. toolTipItem89.Text = "Export the document to PDF and attach it to the e-mail.";
  2852. superToolTip89.Items.Add(toolTipTitleItem89);
  2853. superToolTip89.Items.Add(toolTipItem89);
  2854. superToolTip89.MaxWidth = 210;
  2855. this.printPreviewBarItem30.SuperTip = superToolTip89;
  2856. //
  2857. // printPreviewBarItem31
  2858. //
  2859. this.printPreviewBarItem31.Caption = "Text File";
  2860. this.printPreviewBarItem31.Command = DevExpress.XtraPrinting.PrintingSystemCommand.SendTxt;
  2861. this.printPreviewBarItem31.ContextSpecifier = this.xrDesignRibbonController1;
  2862. this.printPreviewBarItem31.Description = "Plain Text";
  2863. this.printPreviewBarItem31.Enabled = false;
  2864. this.printPreviewBarItem31.Glyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_SendTxt;
  2865. this.printPreviewBarItem31.Id = 120;
  2866. this.printPreviewBarItem31.LargeGlyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_SendTxtLarge;
  2867. this.printPreviewBarItem31.Name = "printPreviewBarItem31";
  2868. superToolTip90.FixedTooltipWidth = true;
  2869. toolTipTitleItem90.Text = "E-Mail As Text";
  2870. toolTipItem90.LeftIndent = 6;
  2871. toolTipItem90.Text = "Export the document to Text and attach it to the e-mail.";
  2872. superToolTip90.Items.Add(toolTipTitleItem90);
  2873. superToolTip90.Items.Add(toolTipItem90);
  2874. superToolTip90.MaxWidth = 210;
  2875. this.printPreviewBarItem31.SuperTip = superToolTip90;
  2876. //
  2877. // printPreviewBarItem32
  2878. //
  2879. this.printPreviewBarItem32.Caption = "CSV File";
  2880. this.printPreviewBarItem32.Command = DevExpress.XtraPrinting.PrintingSystemCommand.SendCsv;
  2881. this.printPreviewBarItem32.ContextSpecifier = this.xrDesignRibbonController1;
  2882. this.printPreviewBarItem32.Description = "Comma-Separated Values Text";
  2883. this.printPreviewBarItem32.Enabled = false;
  2884. this.printPreviewBarItem32.Glyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_SendCsv;
  2885. this.printPreviewBarItem32.Id = 121;
  2886. this.printPreviewBarItem32.LargeGlyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_SendCsvLarge;
  2887. this.printPreviewBarItem32.Name = "printPreviewBarItem32";
  2888. superToolTip91.FixedTooltipWidth = true;
  2889. toolTipTitleItem91.Text = "E-Mail As CSV";
  2890. toolTipItem91.LeftIndent = 6;
  2891. toolTipItem91.Text = "Export the document to CSV and attach it to the e-mail.";
  2892. superToolTip91.Items.Add(toolTipTitleItem91);
  2893. superToolTip91.Items.Add(toolTipItem91);
  2894. superToolTip91.MaxWidth = 210;
  2895. this.printPreviewBarItem32.SuperTip = superToolTip91;
  2896. //
  2897. // printPreviewBarItem33
  2898. //
  2899. this.printPreviewBarItem33.Caption = "MHT File";
  2900. this.printPreviewBarItem33.Command = DevExpress.XtraPrinting.PrintingSystemCommand.SendMht;
  2901. this.printPreviewBarItem33.ContextSpecifier = this.xrDesignRibbonController1;
  2902. this.printPreviewBarItem33.Description = "Single File Web Page";
  2903. this.printPreviewBarItem33.Enabled = false;
  2904. this.printPreviewBarItem33.Glyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_SendMht;
  2905. this.printPreviewBarItem33.Id = 122;
  2906. this.printPreviewBarItem33.LargeGlyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_SendMhtLarge;
  2907. this.printPreviewBarItem33.Name = "printPreviewBarItem33";
  2908. superToolTip92.FixedTooltipWidth = true;
  2909. toolTipTitleItem92.Text = "E-Mail As MHT";
  2910. toolTipItem92.LeftIndent = 6;
  2911. toolTipItem92.Text = "Export the document to MHT and attach it to the e-mail.";
  2912. superToolTip92.Items.Add(toolTipTitleItem92);
  2913. superToolTip92.Items.Add(toolTipItem92);
  2914. superToolTip92.MaxWidth = 210;
  2915. this.printPreviewBarItem33.SuperTip = superToolTip92;
  2916. //
  2917. // printPreviewBarItem34
  2918. //
  2919. this.printPreviewBarItem34.Caption = "XLS File";
  2920. this.printPreviewBarItem34.Command = DevExpress.XtraPrinting.PrintingSystemCommand.SendXls;
  2921. this.printPreviewBarItem34.ContextSpecifier = this.xrDesignRibbonController1;
  2922. this.printPreviewBarItem34.Description = "Microsoft Excel 2000-2003 Workbook";
  2923. this.printPreviewBarItem34.Enabled = false;
  2924. this.printPreviewBarItem34.Glyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_SendXls;
  2925. this.printPreviewBarItem34.Id = 123;
  2926. this.printPreviewBarItem34.LargeGlyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_SendXlsLarge;
  2927. this.printPreviewBarItem34.Name = "printPreviewBarItem34";
  2928. superToolTip93.FixedTooltipWidth = true;
  2929. toolTipTitleItem93.Text = "E-Mail As XLS";
  2930. toolTipItem93.LeftIndent = 6;
  2931. toolTipItem93.Text = "Export the document to XLS and attach it to the e-mail.";
  2932. superToolTip93.Items.Add(toolTipTitleItem93);
  2933. superToolTip93.Items.Add(toolTipItem93);
  2934. superToolTip93.MaxWidth = 210;
  2935. this.printPreviewBarItem34.SuperTip = superToolTip93;
  2936. //
  2937. // printPreviewBarItem35
  2938. //
  2939. this.printPreviewBarItem35.Caption = "XLSX File";
  2940. this.printPreviewBarItem35.Command = DevExpress.XtraPrinting.PrintingSystemCommand.SendXlsx;
  2941. this.printPreviewBarItem35.ContextSpecifier = this.xrDesignRibbonController1;
  2942. this.printPreviewBarItem35.Description = "Microsoft Excel 2007 Workbook";
  2943. this.printPreviewBarItem35.Enabled = false;
  2944. this.printPreviewBarItem35.Glyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_SendXlsx;
  2945. this.printPreviewBarItem35.Id = 124;
  2946. this.printPreviewBarItem35.LargeGlyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_SendXlsxLarge;
  2947. this.printPreviewBarItem35.Name = "printPreviewBarItem35";
  2948. superToolTip94.FixedTooltipWidth = true;
  2949. toolTipTitleItem94.Text = "E-Mail As XLSX";
  2950. toolTipItem94.LeftIndent = 6;
  2951. toolTipItem94.Text = "Export the document to XLSX and attach it to the e-mail.";
  2952. superToolTip94.Items.Add(toolTipTitleItem94);
  2953. superToolTip94.Items.Add(toolTipItem94);
  2954. superToolTip94.MaxWidth = 210;
  2955. this.printPreviewBarItem35.SuperTip = superToolTip94;
  2956. //
  2957. // printPreviewBarItem36
  2958. //
  2959. this.printPreviewBarItem36.Caption = "RTF File";
  2960. this.printPreviewBarItem36.Command = DevExpress.XtraPrinting.PrintingSystemCommand.SendRtf;
  2961. this.printPreviewBarItem36.ContextSpecifier = this.xrDesignRibbonController1;
  2962. this.printPreviewBarItem36.Description = "Rich Text Format";
  2963. this.printPreviewBarItem36.Enabled = false;
  2964. this.printPreviewBarItem36.Glyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_SendRtf;
  2965. this.printPreviewBarItem36.Id = 125;
  2966. this.printPreviewBarItem36.LargeGlyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_SendRtfLarge;
  2967. this.printPreviewBarItem36.Name = "printPreviewBarItem36";
  2968. superToolTip95.FixedTooltipWidth = true;
  2969. toolTipTitleItem95.Text = "E-Mail As RTF";
  2970. toolTipItem95.LeftIndent = 6;
  2971. toolTipItem95.Text = "Export the document to RTF and attach it to the e-mail.";
  2972. superToolTip95.Items.Add(toolTipTitleItem95);
  2973. superToolTip95.Items.Add(toolTipItem95);
  2974. superToolTip95.MaxWidth = 210;
  2975. this.printPreviewBarItem36.SuperTip = superToolTip95;
  2976. //
  2977. // printPreviewBarItem37
  2978. //
  2979. this.printPreviewBarItem37.Caption = "Image File";
  2980. this.printPreviewBarItem37.Command = DevExpress.XtraPrinting.PrintingSystemCommand.SendGraphic;
  2981. this.printPreviewBarItem37.ContextSpecifier = this.xrDesignRibbonController1;
  2982. this.printPreviewBarItem37.Description = "BMP, GIF, JPEG, PNG, TIFF, EMF, WMF";
  2983. this.printPreviewBarItem37.Enabled = false;
  2984. this.printPreviewBarItem37.Glyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_SendGraphic;
  2985. this.printPreviewBarItem37.Id = 126;
  2986. this.printPreviewBarItem37.LargeGlyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_SendGraphicLarge;
  2987. this.printPreviewBarItem37.Name = "printPreviewBarItem37";
  2988. superToolTip96.FixedTooltipWidth = true;
  2989. toolTipTitleItem96.Text = "E-Mail As Image";
  2990. toolTipItem96.LeftIndent = 6;
  2991. toolTipItem96.Text = "Export the document to Image and attach it to the e-mail.";
  2992. superToolTip96.Items.Add(toolTipTitleItem96);
  2993. superToolTip96.Items.Add(toolTipItem96);
  2994. superToolTip96.MaxWidth = 210;
  2995. this.printPreviewBarItem37.SuperTip = superToolTip96;
  2996. //
  2997. // printPreviewBarItem38
  2998. //
  2999. this.printPreviewBarItem38.Caption = "PDF File";
  3000. this.printPreviewBarItem38.Command = DevExpress.XtraPrinting.PrintingSystemCommand.ExportPdf;
  3001. this.printPreviewBarItem38.ContextSpecifier = this.xrDesignRibbonController1;
  3002. this.printPreviewBarItem38.Description = "Adobe Portable Document Format";
  3003. this.printPreviewBarItem38.Enabled = false;
  3004. this.printPreviewBarItem38.Glyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_ExportPdf;
  3005. this.printPreviewBarItem38.Id = 127;
  3006. this.printPreviewBarItem38.LargeGlyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_ExportPdfLarge;
  3007. this.printPreviewBarItem38.Name = "printPreviewBarItem38";
  3008. superToolTip97.FixedTooltipWidth = true;
  3009. toolTipTitleItem97.Text = "Export to PDF";
  3010. toolTipItem97.LeftIndent = 6;
  3011. toolTipItem97.Text = "Export the document to PDF and save it to the file on a disk.";
  3012. superToolTip97.Items.Add(toolTipTitleItem97);
  3013. superToolTip97.Items.Add(toolTipItem97);
  3014. superToolTip97.MaxWidth = 210;
  3015. this.printPreviewBarItem38.SuperTip = superToolTip97;
  3016. //
  3017. // printPreviewBarItem39
  3018. //
  3019. this.printPreviewBarItem39.Caption = "HTML File";
  3020. this.printPreviewBarItem39.Command = DevExpress.XtraPrinting.PrintingSystemCommand.ExportHtm;
  3021. this.printPreviewBarItem39.ContextSpecifier = this.xrDesignRibbonController1;
  3022. this.printPreviewBarItem39.Description = "Web Page";
  3023. this.printPreviewBarItem39.Enabled = false;
  3024. this.printPreviewBarItem39.Glyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_ExportHtm;
  3025. this.printPreviewBarItem39.Id = 128;
  3026. this.printPreviewBarItem39.LargeGlyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_ExportHtmLarge;
  3027. this.printPreviewBarItem39.Name = "printPreviewBarItem39";
  3028. superToolTip98.FixedTooltipWidth = true;
  3029. toolTipTitleItem98.Text = "Export to HTML";
  3030. toolTipItem98.LeftIndent = 6;
  3031. toolTipItem98.Text = "Export the document to HTML and save it to the file on a disk.";
  3032. superToolTip98.Items.Add(toolTipTitleItem98);
  3033. superToolTip98.Items.Add(toolTipItem98);
  3034. superToolTip98.MaxWidth = 210;
  3035. this.printPreviewBarItem39.SuperTip = superToolTip98;
  3036. //
  3037. // printPreviewBarItem40
  3038. //
  3039. this.printPreviewBarItem40.Caption = "Text File";
  3040. this.printPreviewBarItem40.Command = DevExpress.XtraPrinting.PrintingSystemCommand.ExportTxt;
  3041. this.printPreviewBarItem40.ContextSpecifier = this.xrDesignRibbonController1;
  3042. this.printPreviewBarItem40.Description = "Plain Text";
  3043. this.printPreviewBarItem40.Enabled = false;
  3044. this.printPreviewBarItem40.Glyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_ExportTxt;
  3045. this.printPreviewBarItem40.Id = 129;
  3046. this.printPreviewBarItem40.LargeGlyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_ExportTxtLarge;
  3047. this.printPreviewBarItem40.Name = "printPreviewBarItem40";
  3048. superToolTip99.FixedTooltipWidth = true;
  3049. toolTipTitleItem99.Text = "Export to Text";
  3050. toolTipItem99.LeftIndent = 6;
  3051. toolTipItem99.Text = "Export the document to Text and save it to the file on a disk.";
  3052. superToolTip99.Items.Add(toolTipTitleItem99);
  3053. superToolTip99.Items.Add(toolTipItem99);
  3054. superToolTip99.MaxWidth = 210;
  3055. this.printPreviewBarItem40.SuperTip = superToolTip99;
  3056. //
  3057. // printPreviewBarItem41
  3058. //
  3059. this.printPreviewBarItem41.Caption = "CSV File";
  3060. this.printPreviewBarItem41.Command = DevExpress.XtraPrinting.PrintingSystemCommand.ExportCsv;
  3061. this.printPreviewBarItem41.ContextSpecifier = this.xrDesignRibbonController1;
  3062. this.printPreviewBarItem41.Description = "Comma-Separated Values Text";
  3063. this.printPreviewBarItem41.Enabled = false;
  3064. this.printPreviewBarItem41.Glyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_ExportCsv;
  3065. this.printPreviewBarItem41.Id = 130;
  3066. this.printPreviewBarItem41.LargeGlyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_ExportCsvLarge;
  3067. this.printPreviewBarItem41.Name = "printPreviewBarItem41";
  3068. superToolTip100.FixedTooltipWidth = true;
  3069. toolTipTitleItem100.Text = "Export to CSV";
  3070. toolTipItem100.LeftIndent = 6;
  3071. toolTipItem100.Text = "Export the document to CSV and save it to the file on a disk.";
  3072. superToolTip100.Items.Add(toolTipTitleItem100);
  3073. superToolTip100.Items.Add(toolTipItem100);
  3074. superToolTip100.MaxWidth = 210;
  3075. this.printPreviewBarItem41.SuperTip = superToolTip100;
  3076. //
  3077. // printPreviewBarItem42
  3078. //
  3079. this.printPreviewBarItem42.Caption = "MHT File";
  3080. this.printPreviewBarItem42.Command = DevExpress.XtraPrinting.PrintingSystemCommand.ExportMht;
  3081. this.printPreviewBarItem42.ContextSpecifier = this.xrDesignRibbonController1;
  3082. this.printPreviewBarItem42.Description = "Single File Web Page";
  3083. this.printPreviewBarItem42.Enabled = false;
  3084. this.printPreviewBarItem42.Glyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_ExportMht;
  3085. this.printPreviewBarItem42.Id = 131;
  3086. this.printPreviewBarItem42.LargeGlyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_ExportMhtLarge;
  3087. this.printPreviewBarItem42.Name = "printPreviewBarItem42";
  3088. superToolTip101.FixedTooltipWidth = true;
  3089. toolTipTitleItem101.Text = "Export to MHT";
  3090. toolTipItem101.LeftIndent = 6;
  3091. toolTipItem101.Text = "Export the document to MHT and save it to the file on a disk.";
  3092. superToolTip101.Items.Add(toolTipTitleItem101);
  3093. superToolTip101.Items.Add(toolTipItem101);
  3094. superToolTip101.MaxWidth = 210;
  3095. this.printPreviewBarItem42.SuperTip = superToolTip101;
  3096. //
  3097. // printPreviewBarItem43
  3098. //
  3099. this.printPreviewBarItem43.Caption = "XLS File";
  3100. this.printPreviewBarItem43.Command = DevExpress.XtraPrinting.PrintingSystemCommand.ExportXls;
  3101. this.printPreviewBarItem43.ContextSpecifier = this.xrDesignRibbonController1;
  3102. this.printPreviewBarItem43.Description = "Microsoft Excel 2000-2003 Workbook";
  3103. this.printPreviewBarItem43.Enabled = false;
  3104. this.printPreviewBarItem43.Glyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_ExportXls;
  3105. this.printPreviewBarItem43.Id = 132;
  3106. this.printPreviewBarItem43.LargeGlyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_ExportXlsLarge;
  3107. this.printPreviewBarItem43.Name = "printPreviewBarItem43";
  3108. superToolTip102.FixedTooltipWidth = true;
  3109. toolTipTitleItem102.Text = "Export to XLS";
  3110. toolTipItem102.LeftIndent = 6;
  3111. toolTipItem102.Text = "Export the document to XLS and save it to the file on a disk.";
  3112. superToolTip102.Items.Add(toolTipTitleItem102);
  3113. superToolTip102.Items.Add(toolTipItem102);
  3114. superToolTip102.MaxWidth = 210;
  3115. this.printPreviewBarItem43.SuperTip = superToolTip102;
  3116. //
  3117. // printPreviewBarItem44
  3118. //
  3119. this.printPreviewBarItem44.Caption = "XLSX File";
  3120. this.printPreviewBarItem44.Command = DevExpress.XtraPrinting.PrintingSystemCommand.ExportXlsx;
  3121. this.printPreviewBarItem44.ContextSpecifier = this.xrDesignRibbonController1;
  3122. this.printPreviewBarItem44.Description = "Microsoft Excel 2007 Workbook";
  3123. this.printPreviewBarItem44.Enabled = false;
  3124. this.printPreviewBarItem44.Glyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_ExportXlsx;
  3125. this.printPreviewBarItem44.Id = 133;
  3126. this.printPreviewBarItem44.LargeGlyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_ExportXlsxLarge;
  3127. this.printPreviewBarItem44.Name = "printPreviewBarItem44";
  3128. superToolTip103.FixedTooltipWidth = true;
  3129. toolTipTitleItem103.Text = "Export to XLSX";
  3130. toolTipItem103.LeftIndent = 6;
  3131. toolTipItem103.Text = "Export the document to XLSX and save it to the file on a disk.";
  3132. superToolTip103.Items.Add(toolTipTitleItem103);
  3133. superToolTip103.Items.Add(toolTipItem103);
  3134. superToolTip103.MaxWidth = 210;
  3135. this.printPreviewBarItem44.SuperTip = superToolTip103;
  3136. //
  3137. // printPreviewBarItem45
  3138. //
  3139. this.printPreviewBarItem45.Caption = "RTF File";
  3140. this.printPreviewBarItem45.Command = DevExpress.XtraPrinting.PrintingSystemCommand.ExportRtf;
  3141. this.printPreviewBarItem45.ContextSpecifier = this.xrDesignRibbonController1;
  3142. this.printPreviewBarItem45.Description = "Rich Text Format";
  3143. this.printPreviewBarItem45.Enabled = false;
  3144. this.printPreviewBarItem45.Glyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_ExportRtf;
  3145. this.printPreviewBarItem45.Id = 134;
  3146. this.printPreviewBarItem45.LargeGlyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_ExportRtfLarge;
  3147. this.printPreviewBarItem45.Name = "printPreviewBarItem45";
  3148. superToolTip104.FixedTooltipWidth = true;
  3149. toolTipTitleItem104.Text = "Export to RTF";
  3150. toolTipItem104.LeftIndent = 6;
  3151. toolTipItem104.Text = "Export the document to RTF and save it to the file on a disk.";
  3152. superToolTip104.Items.Add(toolTipTitleItem104);
  3153. superToolTip104.Items.Add(toolTipItem104);
  3154. superToolTip104.MaxWidth = 210;
  3155. this.printPreviewBarItem45.SuperTip = superToolTip104;
  3156. //
  3157. // printPreviewBarItem46
  3158. //
  3159. this.printPreviewBarItem46.Caption = "Image File";
  3160. this.printPreviewBarItem46.Command = DevExpress.XtraPrinting.PrintingSystemCommand.ExportGraphic;
  3161. this.printPreviewBarItem46.ContextSpecifier = this.xrDesignRibbonController1;
  3162. this.printPreviewBarItem46.Description = "BMP, GIF, JPEG, PNG, TIFF, EMF, WMF";
  3163. this.printPreviewBarItem46.Enabled = false;
  3164. this.printPreviewBarItem46.Glyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_ExportGraphic;
  3165. this.printPreviewBarItem46.Id = 135;
  3166. this.printPreviewBarItem46.LargeGlyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_ExportGraphicLarge;
  3167. this.printPreviewBarItem46.Name = "printPreviewBarItem46";
  3168. superToolTip105.FixedTooltipWidth = true;
  3169. toolTipTitleItem105.Text = "Export to Image";
  3170. toolTipItem105.LeftIndent = 6;
  3171. toolTipItem105.Text = "Export the document to Image and save it to the file on a disk.";
  3172. superToolTip105.Items.Add(toolTipTitleItem105);
  3173. superToolTip105.Items.Add(toolTipItem105);
  3174. superToolTip105.MaxWidth = 210;
  3175. this.printPreviewBarItem46.SuperTip = superToolTip105;
  3176. //
  3177. // printPreviewBarItem47
  3178. //
  3179. this.printPreviewBarItem47.Caption = "Open";
  3180. this.printPreviewBarItem47.Command = DevExpress.XtraPrinting.PrintingSystemCommand.Open;
  3181. this.printPreviewBarItem47.ContextSpecifier = this.xrDesignRibbonController1;
  3182. this.printPreviewBarItem47.Enabled = false;
  3183. this.printPreviewBarItem47.Glyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_Open;
  3184. this.printPreviewBarItem47.Id = 136;
  3185. this.printPreviewBarItem47.LargeGlyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_OpenLarge;
  3186. this.printPreviewBarItem47.Name = "printPreviewBarItem47";
  3187. superToolTip106.FixedTooltipWidth = true;
  3188. toolTipTitleItem106.Text = "Open (Ctrl + O)";
  3189. toolTipItem106.LeftIndent = 6;
  3190. toolTipItem106.Text = "Open a document.";
  3191. superToolTip106.Items.Add(toolTipTitleItem106);
  3192. superToolTip106.Items.Add(toolTipItem106);
  3193. superToolTip106.MaxWidth = 210;
  3194. this.printPreviewBarItem47.SuperTip = superToolTip106;
  3195. //
  3196. // printPreviewBarItem48
  3197. //
  3198. this.printPreviewBarItem48.Caption = "Save";
  3199. this.printPreviewBarItem48.Command = DevExpress.XtraPrinting.PrintingSystemCommand.Save;
  3200. this.printPreviewBarItem48.ContextSpecifier = this.xrDesignRibbonController1;
  3201. this.printPreviewBarItem48.Enabled = false;
  3202. this.printPreviewBarItem48.Glyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_Save;
  3203. this.printPreviewBarItem48.Id = 137;
  3204. this.printPreviewBarItem48.LargeGlyph = global::Uninpho.Tools.PrintRibbonControllerResources.RibbonPrintPreview_SaveLarge;
  3205. this.printPreviewBarItem48.Name = "printPreviewBarItem48";
  3206. superToolTip107.FixedTooltipWidth = true;
  3207. toolTipTitleItem107.Text = "Save (Ctrl + S)";
  3208. toolTipItem107.LeftIndent = 6;
  3209. toolTipItem107.Text = "Save the document.";
  3210. superToolTip107.Items.Add(toolTipTitleItem107);
  3211. superToolTip107.Items.Add(toolTipItem107);
  3212. superToolTip107.MaxWidth = 210;
  3213. this.printPreviewBarItem48.SuperTip = superToolTip107;
  3214. //
  3215. // printPreviewStaticItem1
  3216. //
  3217. this.printPreviewStaticItem1.Caption = "Nothing";
  3218. this.printPreviewStaticItem1.Id = 138;
  3219. this.printPreviewStaticItem1.LeftIndent = 1;
  3220. this.printPreviewStaticItem1.Name = "printPreviewStaticItem1";
  3221. this.printPreviewStaticItem1.RightIndent = 1;
  3222. this.printPreviewStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
  3223. this.printPreviewStaticItem1.Type = "PageOfPages";
  3224. //
  3225. // barStaticItem1
  3226. //
  3227. this.barStaticItem1.Id = 139;
  3228. this.barStaticItem1.Name = "barStaticItem1";
  3229. this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
  3230. this.barStaticItem1.Visibility = DevExpress.XtraBars.BarItemVisibility.OnlyInRuntime;
  3231. //
  3232. // progressBarEditItem1
  3233. //
  3234. this.progressBarEditItem1.ContextSpecifier = this.xrDesignRibbonController1;
  3235. this.progressBarEditItem1.Edit = this.repositoryItemProgressBar1;
  3236. this.progressBarEditItem1.EditHeight = 12;
  3237. this.progressBarEditItem1.EditWidth = 150;
  3238. this.progressBarEditItem1.Id = 140;
  3239. this.progressBarEditItem1.Name = "progressBarEditItem1";
  3240. this.progressBarEditItem1.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
  3241. //
  3242. // repositoryItemProgressBar1
  3243. //
  3244. this.repositoryItemProgressBar1.Name = "repositoryItemProgressBar1";
  3245. //
  3246. // printPreviewBarItem49
  3247. //
  3248. this.printPreviewBarItem49.Caption = "Stop";
  3249. this.printPreviewBarItem49.Command = DevExpress.XtraPrinting.PrintingSystemCommand.StopPageBuilding;
  3250. this.printPreviewBarItem49.ContextSpecifier = this.xrDesignRibbonController1;
  3251. this.printPreviewBarItem49.Enabled = false;
  3252. this.printPreviewBarItem49.Hint = "Stop";
  3253. this.printPreviewBarItem49.Id = 141;
  3254. this.printPreviewBarItem49.Name = "printPreviewBarItem49";
  3255. this.printPreviewBarItem49.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
  3256. //
  3257. // barButtonItem8
  3258. //
  3259. this.barButtonItem8.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Left;
  3260. this.barButtonItem8.Enabled = false;
  3261. this.barButtonItem8.Id = 142;
  3262. this.barButtonItem8.Name = "barButtonItem8";
  3263. this.barButtonItem8.Visibility = DevExpress.XtraBars.BarItemVisibility.OnlyInRuntime;
  3264. //
  3265. // printPreviewStaticItem2
  3266. //
  3267. this.printPreviewStaticItem2.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
  3268. this.printPreviewStaticItem2.AutoSize = DevExpress.XtraBars.BarStaticItemSize.None;
  3269. this.printPreviewStaticItem2.Caption = "100%";
  3270. this.printPreviewStaticItem2.Id = 143;
  3271. this.printPreviewStaticItem2.Name = "printPreviewStaticItem2";
  3272. this.printPreviewStaticItem2.TextAlignment = System.Drawing.StringAlignment.Near;
  3273. this.printPreviewStaticItem2.Type = "ZoomFactorText";
  3274. //
  3275. // zoomTrackBarEditItem1
  3276. //
  3277. this.zoomTrackBarEditItem1.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
  3278. this.zoomTrackBarEditItem1.ContextSpecifier = this.xrDesignRibbonController1;
  3279. this.zoomTrackBarEditItem1.Edit = this.repositoryItemZoomTrackBar1;
  3280. this.zoomTrackBarEditItem1.EditWidth = 140;
  3281. this.zoomTrackBarEditItem1.Enabled = false;
  3282. this.zoomTrackBarEditItem1.Id = 144;
  3283. this.zoomTrackBarEditItem1.Name = "zoomTrackBarEditItem1";
  3284. this.zoomTrackBarEditItem1.Range = new int[] {
  3285. 10,
  3286. 500};
  3287. //
  3288. // repositoryItemZoomTrackBar1
  3289. //
  3290. this.repositoryItemZoomTrackBar1.Alignment = DevExpress.Utils.VertAlignment.Center;
  3291. this.repositoryItemZoomTrackBar1.AllowFocused = false;
  3292. this.repositoryItemZoomTrackBar1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
  3293. this.repositoryItemZoomTrackBar1.Maximum = 180;
  3294. this.repositoryItemZoomTrackBar1.Middle = 5;
  3295. this.repositoryItemZoomTrackBar1.Name = "repositoryItemZoomTrackBar1";
  3296. this.repositoryItemZoomTrackBar1.ScrollThumbStyle = DevExpress.XtraEditors.Repository.ScrollThumbStyle.ArrowDownRight;
  3297. //
  3298. // barSubItem1
  3299. //
  3300. this.barSubItem1.Caption = "barSubItem1";
  3301. this.barSubItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("barSubItem1.Glyph")));
  3302. this.barSubItem1.Id = 145;
  3303. this.barSubItem1.Name = "barSubItem1";
  3304. //
  3305. // barSubItem2
  3306. //
  3307. this.barSubItem2.Caption = "台账数据导入";
  3308. this.barSubItem2.Glyph = ((System.Drawing.Image)(resources.GetObject("barSubItem2.Glyph")));
  3309. this.barSubItem2.Id = 146;
  3310. this.barSubItem2.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barSubItem2.LargeGlyph")));
  3311. this.barSubItem2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
  3312. new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.quxiandata, DevExpress.XtraBars.BarItemPaintStyle.Standard),
  3313. new DevExpress.XtraBars.LinkPersistInfo(this.daochadata),
  3314. new DevExpress.XtraBars.LinkPersistInfo(this.guanjiedata),
  3315. new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.gongLvDataSetting, DevExpress.XtraBars.BarItemPaintStyle.Standard),
  3316. new DevExpress.XtraBars.LinkPersistInfo(this.queKouDataSetting),
  3317. new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem28)});
  3318. this.barSubItem2.Name = "barSubItem2";
  3319. //
  3320. // quxiandata
  3321. //
  3322. this.quxiandata.Caption = "曲线数据";
  3323. this.quxiandata.Glyph = ((System.Drawing.Image)(resources.GetObject("quxiandata.Glyph")));
  3324. this.quxiandata.Id = 147;
  3325. this.quxiandata.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("quxiandata.LargeGlyph")));
  3326. this.quxiandata.Name = "quxiandata";
  3327. this.quxiandata.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnInsertData);
  3328. //
  3329. // daochadata
  3330. //
  3331. this.daochadata.Caption = "道岔数据";
  3332. this.daochadata.Glyph = ((System.Drawing.Image)(resources.GetObject("daochadata.Glyph")));
  3333. this.daochadata.Id = 148;
  3334. this.daochadata.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("daochadata.LargeGlyph")));
  3335. this.daochadata.Name = "daochadata";
  3336. this.daochadata.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnInsertData);
  3337. //
  3338. // guanjiedata
  3339. //
  3340. this.guanjiedata.Caption = "管界数据";
  3341. this.guanjiedata.Glyph = ((System.Drawing.Image)(resources.GetObject("guanjiedata.Glyph")));
  3342. this.guanjiedata.Id = 149;
  3343. this.guanjiedata.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("guanjiedata.LargeGlyph")));
  3344. this.guanjiedata.Name = "guanjiedata";
  3345. this.guanjiedata.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnInsertData);
  3346. //
  3347. // gongLvDataSetting
  3348. //
  3349. this.gongLvDataSetting.Caption = "功率数据";
  3350. this.gongLvDataSetting.Glyph = ((System.Drawing.Image)(resources.GetObject("gongLvDataSetting.Glyph")));
  3351. this.gongLvDataSetting.Id = 211;
  3352. this.gongLvDataSetting.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("gongLvDataSetting.LargeGlyph")));
  3353. this.gongLvDataSetting.Name = "gongLvDataSetting";
  3354. this.gongLvDataSetting.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem30_ItemClick_1);
  3355. //
  3356. // queKouDataSetting
  3357. //
  3358. this.queKouDataSetting.Caption = "缺口数据";
  3359. this.queKouDataSetting.Glyph = ((System.Drawing.Image)(resources.GetObject("queKouDataSetting.Glyph")));
  3360. this.queKouDataSetting.Id = 212;
  3361. this.queKouDataSetting.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("queKouDataSetting.LargeGlyph")));
  3362. this.queKouDataSetting.Name = "queKouDataSetting";
  3363. //
  3364. // barButtonItem28
  3365. //
  3366. this.barButtonItem28.Caption = "模板下载";
  3367. this.barButtonItem28.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem28.Glyph")));
  3368. this.barButtonItem28.Id = 194;
  3369. this.barButtonItem28.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem28.LargeGlyph")));
  3370. this.barButtonItem28.Name = "barButtonItem28";
  3371. this.barButtonItem28.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem28_ItemClick);
  3372. //
  3373. // barButtonItem5
  3374. //
  3375. this.barButtonItem5.Caption = "包含子目录";
  3376. this.barButtonItem5.Id = 155;
  3377. this.barButtonItem5.Name = "barButtonItem5";
  3378. //
  3379. // barButtonItem11
  3380. //
  3381. this.barButtonItem11.Caption = "包含子目录";
  3382. this.barButtonItem11.Id = 160;
  3383. this.barButtonItem11.Name = "barButtonItem11";
  3384. //
  3385. // barButtonItem13
  3386. //
  3387. this.barButtonItem13.Caption = "不包含子目录";
  3388. this.barButtonItem13.Id = 161;
  3389. this.barButtonItem13.Name = "barButtonItem13";
  3390. //
  3391. // barButtonItem_DataManager
  3392. //
  3393. this.barButtonItem_DataManager.Caption = "数据展示";
  3394. this.barButtonItem_DataManager.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem_DataManager.Glyph")));
  3395. this.barButtonItem_DataManager.Id = 162;
  3396. this.barButtonItem_DataManager.Name = "barButtonItem_DataManager";
  3397. this.barButtonItem_DataManager.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
  3398. this.barButtonItem_DataManager.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_DataManager_ItemClick);
  3399. //
  3400. // barButtonItem14
  3401. //
  3402. this.barButtonItem14.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
  3403. this.barButtonItem14.Caption = "启用编辑";
  3404. this.barButtonItem14.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem14.Glyph")));
  3405. this.barButtonItem14.Id = 163;
  3406. this.barButtonItem14.Name = "barButtonItem14";
  3407. this.barButtonItem14.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
  3408. this.barButtonItem14.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
  3409. //
  3410. // barButtonItem16
  3411. //
  3412. this.barButtonItem16.Caption = "保存数据";
  3413. this.barButtonItem16.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem16.Glyph")));
  3414. this.barButtonItem16.Id = 164;
  3415. this.barButtonItem16.Name = "barButtonItem16";
  3416. this.barButtonItem16.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
  3417. this.barButtonItem16.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
  3418. //
  3419. // barSubItem6
  3420. //
  3421. this.barSubItem6.Caption = "浏览";
  3422. this.barSubItem6.Id = 167;
  3423. this.barSubItem6.Name = "barSubItem6";
  3424. //
  3425. // barButtonItem4
  3426. //
  3427. this.barButtonItem4.Id = 177;
  3428. this.barButtonItem4.Name = "barButtonItem4";
  3429. //
  3430. // barButtonItem12
  3431. //
  3432. this.barButtonItem12.Id = 178;
  3433. this.barButtonItem12.Name = "barButtonItem12";
  3434. //
  3435. // barButtonItem17
  3436. //
  3437. this.barButtonItem17.Id = 179;
  3438. this.barButtonItem17.Name = "barButtonItem17";
  3439. //
  3440. // barButtonItem18
  3441. //
  3442. this.barButtonItem18.Id = 180;
  3443. this.barButtonItem18.Name = "barButtonItem18";
  3444. //
  3445. // barSubItem7
  3446. //
  3447. this.barSubItem7.Caption = "浏览";
  3448. this.barSubItem7.Id = 172;
  3449. this.barSubItem7.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
  3450. new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem21),
  3451. new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem22)});
  3452. this.barSubItem7.Name = "barSubItem7";
  3453. //
  3454. // barButtonItem21
  3455. //
  3456. this.barButtonItem21.Id = 183;
  3457. this.barButtonItem21.Name = "barButtonItem21";
  3458. //
  3459. // barButtonItem22
  3460. //
  3461. this.barButtonItem22.Id = 184;
  3462. this.barButtonItem22.Name = "barButtonItem22";
  3463. //
  3464. // barButtonItem19
  3465. //
  3466. this.barButtonItem19.Id = 181;
  3467. this.barButtonItem19.Name = "barButtonItem19";
  3468. //
  3469. // barButtonItem20
  3470. //
  3471. this.barButtonItem20.Id = 182;
  3472. this.barButtonItem20.Name = "barButtonItem20";
  3473. //
  3474. // GDJHbBtnI
  3475. //
  3476. this.GDJHbBtnI.Caption = "轨道几何数据分析";
  3477. this.GDJHbBtnI.Glyph = ((System.Drawing.Image)(resources.GetObject("GDJHbBtnI.Glyph")));
  3478. this.GDJHbBtnI.Id = 185;
  3479. this.GDJHbBtnI.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("GDJHbBtnI.LargeGlyph")));
  3480. this.GDJHbBtnI.Name = "GDJHbBtnI";
  3481. this.GDJHbBtnI.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.GDJHbBtnI_ItemClick);
  3482. //
  3483. // LGLbBtnI
  3484. //
  3485. this.LGLbBtnI.Caption = "轮轨力数据分析";
  3486. this.LGLbBtnI.Glyph = ((System.Drawing.Image)(resources.GetObject("LGLbBtnI.Glyph")));
  3487. this.LGLbBtnI.Id = 186;
  3488. this.LGLbBtnI.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("LGLbBtnI.LargeGlyph")));
  3489. this.LGLbBtnI.Name = "LGLbBtnI";
  3490. this.LGLbBtnI.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
  3491. this.LGLbBtnI.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.LGLbBtnI_ItemClick);
  3492. //
  3493. // barButtonItem10
  3494. //
  3495. this.barButtonItem10.Caption = "密贴离缝";
  3496. this.barButtonItem10.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem10.Glyph")));
  3497. this.barButtonItem10.Id = 188;
  3498. this.barButtonItem10.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem10.LargeGlyph")));
  3499. this.barButtonItem10.Name = "barButtonItem10";
  3500. this.barButtonItem10.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem10_ItemClick);
  3501. //
  3502. // barButtonItem23
  3503. //
  3504. this.barButtonItem23.Caption = "逐枕几何";
  3505. this.barButtonItem23.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem23.Glyph")));
  3506. this.barButtonItem23.Id = 189;
  3507. this.barButtonItem23.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem23.LargeGlyph")));
  3508. this.barButtonItem23.Name = "barButtonItem23";
  3509. this.barButtonItem23.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem23_ItemClick);
  3510. //
  3511. // barButtonItem24
  3512. //
  3513. this.barButtonItem24.Caption = "线形线位";
  3514. this.barButtonItem24.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem24.Glyph")));
  3515. this.barButtonItem24.Id = 190;
  3516. this.barButtonItem24.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem24.LargeGlyph")));
  3517. this.barButtonItem24.Name = "barButtonItem24";
  3518. this.barButtonItem24.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem24_ItemClick);
  3519. //
  3520. // barButtonItem25
  3521. //
  3522. this.barButtonItem25.Caption = "数据库设置";
  3523. this.barButtonItem25.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem25.Glyph")));
  3524. this.barButtonItem25.Id = 191;
  3525. this.barButtonItem25.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem25.LargeGlyph")));
  3526. this.barButtonItem25.Name = "barButtonItem25";
  3527. this.barButtonItem25.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem25_ItemClick);
  3528. //
  3529. // barButtonItem26
  3530. //
  3531. this.barButtonItem26.Caption = "软件授权";
  3532. this.barButtonItem26.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem26.Glyph")));
  3533. this.barButtonItem26.Id = 192;
  3534. this.barButtonItem26.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem26.LargeGlyph")));
  3535. this.barButtonItem26.Name = "barButtonItem26";
  3536. this.barButtonItem26.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem26_ItemClick);
  3537. //
  3538. // barButtonItem27
  3539. //
  3540. this.barButtonItem27.Caption = "离线邀请";
  3541. this.barButtonItem27.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem27.Glyph")));
  3542. this.barButtonItem27.Id = 193;
  3543. this.barButtonItem27.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem27.LargeGlyph")));
  3544. this.barButtonItem27.Name = "barButtonItem27";
  3545. this.barButtonItem27.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem27_ItemClick);
  3546. //
  3547. // btnJXGJJ
  3548. //
  3549. this.btnJXGJJ.Caption = "尖心轨间距表";
  3550. this.btnJXGJJ.Glyph = ((System.Drawing.Image)(resources.GetObject("btnJXGJJ.Glyph")));
  3551. this.btnJXGJJ.Id = 199;
  3552. this.btnJXGJJ.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnJXGJJ.LargeGlyph")));
  3553. this.btnJXGJJ.Name = "btnJXGJJ";
  3554. this.btnJXGJJ.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnJXGJJ_ItemClick);
  3555. //
  3556. // StartZDHBtn
  3557. //
  3558. this.StartZDHBtn.Caption = "开启自动化";
  3559. this.StartZDHBtn.Id = 200;
  3560. this.StartZDHBtn.ImageUri.Uri = "Prev";
  3561. this.StartZDHBtn.Name = "StartZDHBtn";
  3562. this.StartZDHBtn.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.StartZDHBtn_ItemClick);
  3563. //
  3564. // EndZDHBtn
  3565. //
  3566. this.EndZDHBtn.Caption = "关闭自动化";
  3567. this.EndZDHBtn.Glyph = ((System.Drawing.Image)(resources.GetObject("EndZDHBtn.Glyph")));
  3568. this.EndZDHBtn.Id = 201;
  3569. this.EndZDHBtn.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("EndZDHBtn.LargeGlyph")));
  3570. this.EndZDHBtn.Name = "EndZDHBtn";
  3571. this.EndZDHBtn.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem30_ItemClick);
  3572. //
  3573. // GLBtn
  3574. //
  3575. this.GLBtn.Caption = "功率分析";
  3576. this.GLBtn.Glyph = ((System.Drawing.Image)(resources.GetObject("GLBtn.Glyph")));
  3577. this.GLBtn.Id = 207;
  3578. this.GLBtn.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("GLBtn.LargeGlyph")));
  3579. this.GLBtn.Name = "GLBtn";
  3580. this.GLBtn.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.GLBtn_ItemClick_1);
  3581. //
  3582. // QKBtn
  3583. //
  3584. this.QKBtn.Caption = "缺口分析";
  3585. this.QKBtn.Glyph = ((System.Drawing.Image)(resources.GetObject("QKBtn.Glyph")));
  3586. this.QKBtn.Id = 208;
  3587. this.QKBtn.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("QKBtn.LargeGlyph")));
  3588. this.QKBtn.Name = "QKBtn";
  3589. this.QKBtn.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.QKBtn_ItemClick);
  3590. //
  3591. // DWSJBtn
  3592. //
  3593. this.DWSJBtn.Caption = "数据展示";
  3594. this.DWSJBtn.Glyph = ((System.Drawing.Image)(resources.GetObject("DWSJBtn.Glyph")));
  3595. this.DWSJBtn.Id = 209;
  3596. this.DWSJBtn.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("DWSJBtn.LargeGlyph")));
  3597. this.DWSJBtn.Name = "DWSJBtn";
  3598. this.DWSJBtn.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.DWSJBtn_ItemClick);
  3599. //
  3600. // barButtonItem29
  3601. //
  3602. this.barButtonItem29.Caption = "barButtonItem29";
  3603. this.barButtonItem29.Id = 210;
  3604. this.barButtonItem29.Name = "barButtonItem29";
  3605. //
  3606. // barLinkContainerItem1
  3607. //
  3608. this.barLinkContainerItem1.Caption = "barLinkContainerItem1";
  3609. this.barLinkContainerItem1.Id = 213;
  3610. this.barLinkContainerItem1.Name = "barLinkContainerItem1";
  3611. //
  3612. // barButtonItem30
  3613. //
  3614. this.barButtonItem30.Caption = "功率数据管理";
  3615. this.barButtonItem30.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem30.Glyph")));
  3616. this.barButtonItem30.Id = 214;
  3617. this.barButtonItem30.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem30.LargeGlyph")));
  3618. this.barButtonItem30.Name = "barButtonItem30";
  3619. this.barButtonItem30.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem30_ItemClick_2);
  3620. //
  3621. // barButtonItem31
  3622. //
  3623. this.barButtonItem31.Caption = "缺口数据管理";
  3624. this.barButtonItem31.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem31.Glyph")));
  3625. this.barButtonItem31.Id = 215;
  3626. this.barButtonItem31.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem31.LargeGlyph")));
  3627. this.barButtonItem31.Name = "barButtonItem31";
  3628. this.barButtonItem31.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem31_ItemClick);
  3629. //
  3630. // xrToolboxPageCategory1
  3631. //
  3632. this.xrToolboxPageCategory1.Name = "xrToolboxPageCategory1";
  3633. this.xrToolboxPageCategory1.Visible = false;
  3634. //
  3635. // ribbonPage1
  3636. //
  3637. this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
  3638. this.ribbonPageGroup6,
  3639. this.ribbonPageGroup12,
  3640. this.ribbonPageGroup5,
  3641. this.ribbonPageGroup11,
  3642. this.ribbonPageGroup7});
  3643. this.ribbonPage1.Name = "ribbonPage1";
  3644. this.ribbonPage1.Text = "开始";
  3645. //
  3646. // ribbonPageGroup6
  3647. //
  3648. this.ribbonPageGroup6.ItemLinks.Add(this.btnQuXianInfo);
  3649. this.ribbonPageGroup6.ItemLinks.Add(this.btnDaoChainfo);
  3650. this.ribbonPageGroup6.ItemLinks.Add(this.btnGuanJieinfo);
  3651. this.ribbonPageGroup6.ItemLinks.Add(this.btnJXGJJ);
  3652. this.ribbonPageGroup6.Name = "ribbonPageGroup6";
  3653. toolTipTitleItem108.Text = "工务台账管理";
  3654. toolTipItem108.LeftIndent = 6;
  3655. toolTipItem108.Text = "工务台账管理";
  3656. superToolTip108.Items.Add(toolTipTitleItem108);
  3657. superToolTip108.Items.Add(toolTipItem108);
  3658. this.ribbonPageGroup6.SuperTip = superToolTip108;
  3659. this.ribbonPageGroup6.Text = "工务台账管理";
  3660. //
  3661. // ribbonPageGroup12
  3662. //
  3663. this.ribbonPageGroup12.ItemLinks.Add(this.barButtonItem30);
  3664. this.ribbonPageGroup12.ItemLinks.Add(this.barButtonItem31);
  3665. this.ribbonPageGroup12.ItemLinks.Add(this.barSubItem2);
  3666. this.ribbonPageGroup12.Name = "ribbonPageGroup12";
  3667. toolTipTitleItem109.Text = "电务台账管理";
  3668. toolTipItem109.LeftIndent = 6;
  3669. toolTipItem109.Text = "电务台账管理";
  3670. superToolTip109.Items.Add(toolTipTitleItem109);
  3671. superToolTip109.Items.Add(toolTipItem109);
  3672. this.ribbonPageGroup12.SuperTip = superToolTip109;
  3673. this.ribbonPageGroup12.Text = "电务台账管理";
  3674. //
  3675. // ribbonPageGroup5
  3676. //
  3677. this.ribbonPageGroup5.ItemLinks.Add(this.GDJHbBtnI);
  3678. this.ribbonPageGroup5.ItemLinks.Add(this.LGLbBtnI);
  3679. this.ribbonPageGroup5.ItemLinks.Add(this.barButtonItem_DataManager);
  3680. this.ribbonPageGroup5.Name = "ribbonPageGroup5";
  3681. toolTipTitleItem110.Text = "工务数据分析";
  3682. toolTipItem110.LeftIndent = 6;
  3683. toolTipItem110.Text = "工务数据分析";
  3684. superToolTip110.Items.Add(toolTipTitleItem110);
  3685. superToolTip110.Items.Add(toolTipItem110);
  3686. this.ribbonPageGroup5.SuperTip = superToolTip110;
  3687. this.ribbonPageGroup5.Text = "工务数据分析";
  3688. //
  3689. // ribbonPageGroup11
  3690. //
  3691. this.ribbonPageGroup11.ItemLinks.Add(this.GLBtn);
  3692. this.ribbonPageGroup11.ItemLinks.Add(this.QKBtn);
  3693. this.ribbonPageGroup11.ItemLinks.Add(this.DWSJBtn);
  3694. this.ribbonPageGroup11.Name = "ribbonPageGroup11";
  3695. toolTipTitleItem111.Text = "电务数据分析";
  3696. toolTipItem111.LeftIndent = 6;
  3697. toolTipItem111.Text = "电务数据分析";
  3698. superToolTip111.Items.Add(toolTipTitleItem111);
  3699. superToolTip111.Items.Add(toolTipItem111);
  3700. this.ribbonPageGroup11.SuperTip = superToolTip111;
  3701. this.ribbonPageGroup11.Text = "电务数据分析";
  3702. //
  3703. // ribbonPageGroup7
  3704. //
  3705. this.ribbonPageGroup7.ItemLinks.Add(this.barButtonItem10);
  3706. this.ribbonPageGroup7.ItemLinks.Add(this.barButtonItem23);
  3707. this.ribbonPageGroup7.ItemLinks.Add(this.barButtonItem24);
  3708. this.ribbonPageGroup7.Name = "ribbonPageGroup7";
  3709. this.ribbonPageGroup7.Text = "监测管理";
  3710. this.ribbonPageGroup7.Visible = false;
  3711. //
  3712. // ribbonPage2
  3713. //
  3714. this.ribbonPage2.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
  3715. this.ribbonPageGroup8,
  3716. this.ribbonPageGroup10,
  3717. this.ribbonPageGroup9,
  3718. this.ribbonPageGroup4,
  3719. this.ribbonPageGroup1});
  3720. this.ribbonPage2.Name = "ribbonPage2";
  3721. this.ribbonPage2.Text = "设置";
  3722. //
  3723. // ribbonPageGroup8
  3724. //
  3725. this.ribbonPageGroup8.ItemLinks.Add(this.barButtonItem25);
  3726. this.ribbonPageGroup8.Name = "ribbonPageGroup8";
  3727. this.ribbonPageGroup8.Text = "数据库设置";
  3728. //
  3729. // ribbonPageGroup10
  3730. //
  3731. this.ribbonPageGroup10.ItemLinks.Add(this.StartZDHBtn);
  3732. this.ribbonPageGroup10.ItemLinks.Add(this.EndZDHBtn);
  3733. this.ribbonPageGroup10.Name = "ribbonPageGroup10";
  3734. this.ribbonPageGroup10.Text = "算法自动化";
  3735. //
  3736. // ribbonPageGroup9
  3737. //
  3738. this.ribbonPageGroup9.ItemLinks.Add(this.barButtonItem26);
  3739. this.ribbonPageGroup9.ItemLinks.Add(this.barButtonItem27);
  3740. this.ribbonPageGroup9.Name = "ribbonPageGroup9";
  3741. this.ribbonPageGroup9.Text = "授权与邀请";
  3742. this.ribbonPageGroup9.Visible = false;
  3743. //
  3744. // ribbonPageGroup4
  3745. //
  3746. this.ribbonPageGroup4.ItemLinks.Add(this.skinRibbonGalleryBarItem1);
  3747. this.ribbonPageGroup4.Name = "ribbonPageGroup4";
  3748. this.ribbonPageGroup4.Text = "系统主题";
  3749. //
  3750. // ribbonPageGroup1
  3751. //
  3752. this.ribbonPageGroup1.ItemLinks.Add(this.barButtonItem14, true);
  3753. this.ribbonPageGroup1.ItemLinks.Add(this.barButtonItem16);
  3754. this.ribbonPageGroup1.ItemLinks.Add(this.barButtonImageTile);
  3755. this.ribbonPageGroup1.Name = "ribbonPageGroup1";
  3756. toolTipTitleItem112.Text = "数据管理";
  3757. toolTipItem112.LeftIndent = 6;
  3758. toolTipItem112.Text = "数据管理";
  3759. superToolTip112.Items.Add(toolTipTitleItem112);
  3760. superToolTip112.Items.Add(toolTipItem112);
  3761. this.ribbonPageGroup1.SuperTip = superToolTip112;
  3762. this.ribbonPageGroup1.Text = "数据管理";
  3763. //
  3764. // repositoryItemCheckedComboBoxEdit1
  3765. //
  3766. this.repositoryItemCheckedComboBoxEdit1.AutoHeight = false;
  3767. this.repositoryItemCheckedComboBoxEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
  3768. new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
  3769. this.repositoryItemCheckedComboBoxEdit1.Name = "repositoryItemCheckedComboBoxEdit1";
  3770. //
  3771. // repositoryItemCheckEdit1
  3772. //
  3773. this.repositoryItemCheckEdit1.AutoHeight = false;
  3774. this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
  3775. //
  3776. // ribbonStatusBar
  3777. //
  3778. this.ribbonStatusBar.ItemLinks.Add(this.printPreviewStaticItem1);
  3779. this.ribbonStatusBar.ItemLinks.Add(this.barStaticItem1, true);
  3780. this.ribbonStatusBar.ItemLinks.Add(this.progressBarEditItem1);
  3781. this.ribbonStatusBar.ItemLinks.Add(this.printPreviewBarItem49);
  3782. this.ribbonStatusBar.ItemLinks.Add(this.barButtonItem8);
  3783. this.ribbonStatusBar.ItemLinks.Add(this.printPreviewStaticItem2);
  3784. this.ribbonStatusBar.ItemLinks.Add(this.zoomTrackBarEditItem1);
  3785. this.ribbonStatusBar.Location = new System.Drawing.Point(0, 674);
  3786. this.ribbonStatusBar.Name = "ribbonStatusBar";
  3787. this.ribbonStatusBar.Ribbon = this.ribbon;
  3788. this.ribbonStatusBar.Size = new System.Drawing.Size(1331, 31);
  3789. this.ribbonStatusBar.Visible = false;
  3790. //
  3791. // xrDesignDockManager1
  3792. //
  3793. this.xrDesignDockManager1.Form = this;
  3794. this.xrDesignDockManager1.HiddenPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
  3795. this.panelContainer1,
  3796. this.toolBoxDockPanel1,
  3797. this.panelContainer3});
  3798. this.xrDesignDockManager1.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("xrDesignDockManager1.ImageStream")));
  3799. this.xrDesignDockManager1.SavedVisiblePanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
  3800. this.panelContainer1,
  3801. this.toolBoxDockPanel1,
  3802. this.panelContainer3});
  3803. this.xrDesignDockManager1.TopZIndexControls.AddRange(new string[] {
  3804. "DevExpress.XtraBars.BarDockControl",
  3805. "DevExpress.XtraBars.StandaloneBarDockControl",
  3806. "System.Windows.Forms.StatusBar",
  3807. "System.Windows.Forms.MenuStrip",
  3808. "System.Windows.Forms.StatusStrip",
  3809. "DevExpress.XtraBars.Ribbon.RibbonStatusBar",
  3810. "DevExpress.XtraBars.Ribbon.RibbonControl",
  3811. "DevExpress.XtraBars.Navigation.OfficeNavigationBar",
  3812. "DevExpress.XtraBars.Navigation.TileNavPane"});
  3813. //
  3814. // panelContainer1
  3815. //
  3816. this.panelContainer1.Controls.Add(this.panelContainer2);
  3817. this.panelContainer1.Controls.Add(this.propertyGridDockPanel1);
  3818. this.panelContainer1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Right;
  3819. this.panelContainer1.ID = new System.Guid("bc93417a-d9a8-4f4e-b45f-cd8564759737");
  3820. this.panelContainer1.Location = new System.Drawing.Point(814, 148);
  3821. this.panelContainer1.Name = "panelContainer1";
  3822. this.panelContainer1.OriginalSize = new System.Drawing.Size(250, 200);
  3823. this.panelContainer1.SavedDock = DevExpress.XtraBars.Docking.DockingStyle.Right;
  3824. this.panelContainer1.SavedIndex = 0;
  3825. this.panelContainer1.Size = new System.Drawing.Size(250, 463);
  3826. this.panelContainer1.Text = "panelContainer1";
  3827. this.panelContainer1.Visibility = DevExpress.XtraBars.Docking.DockVisibility.Hidden;
  3828. //
  3829. // panelContainer2
  3830. //
  3831. this.panelContainer2.ActiveChild = this.fieldListDockPanel1;
  3832. this.panelContainer2.Controls.Add(this.reportExplorerDockPanel1);
  3833. this.panelContainer2.Controls.Add(this.fieldListDockPanel1);
  3834. this.panelContainer2.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
  3835. this.panelContainer2.ID = new System.Guid("f8af83a4-326d-4eab-9c14-ce77b61552f6");
  3836. this.panelContainer2.Location = new System.Drawing.Point(0, 0);
  3837. this.panelContainer2.Name = "panelContainer2";
  3838. this.panelContainer2.OriginalSize = new System.Drawing.Size(250, 232);
  3839. this.panelContainer2.Size = new System.Drawing.Size(0, 26);
  3840. this.panelContainer2.Tabbed = true;
  3841. this.panelContainer2.Text = "panelContainer2";
  3842. //
  3843. // fieldListDockPanel1
  3844. //
  3845. this.fieldListDockPanel1.Controls.Add(this.fieldListDockPanel1_Container);
  3846. this.fieldListDockPanel1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
  3847. this.fieldListDockPanel1.ID = new System.Guid("faf69838-a93f-4114-83e8-d0d09cc5ce95");
  3848. this.fieldListDockPanel1.ImageIndex = 0;
  3849. this.fieldListDockPanel1.Location = new System.Drawing.Point(0, 0);
  3850. this.fieldListDockPanel1.Name = "fieldListDockPanel1";
  3851. this.fieldListDockPanel1.OriginalSize = new System.Drawing.Size(242, 175);
  3852. this.fieldListDockPanel1.Size = new System.Drawing.Size(0, 0);
  3853. this.fieldListDockPanel1.Text = "Field List";
  3854. this.fieldListDockPanel1.XRDesignPanel = null;
  3855. //
  3856. // fieldListDockPanel1_Container
  3857. //
  3858. this.fieldListDockPanel1_Container.Location = new System.Drawing.Point(0, 0);
  3859. this.fieldListDockPanel1_Container.Name = "fieldListDockPanel1_Container";
  3860. this.fieldListDockPanel1_Container.Size = new System.Drawing.Size(0, 0);
  3861. this.fieldListDockPanel1_Container.TabIndex = 0;
  3862. //
  3863. // reportExplorerDockPanel1
  3864. //
  3865. this.reportExplorerDockPanel1.Controls.Add(this.reportExplorerDockPanel1_Container);
  3866. this.reportExplorerDockPanel1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
  3867. this.reportExplorerDockPanel1.ID = new System.Guid("fb3ec6cc-3b9b-4b9c-91cf-cff78c1edbf1");
  3868. this.reportExplorerDockPanel1.ImageIndex = 3;
  3869. this.reportExplorerDockPanel1.Location = new System.Drawing.Point(0, 0);
  3870. this.reportExplorerDockPanel1.Name = "reportExplorerDockPanel1";
  3871. this.reportExplorerDockPanel1.OriginalSize = new System.Drawing.Size(242, 175);
  3872. this.reportExplorerDockPanel1.Size = new System.Drawing.Size(0, 0);
  3873. this.reportExplorerDockPanel1.Text = "Report Explorer";
  3874. this.reportExplorerDockPanel1.XRDesignPanel = null;
  3875. //
  3876. // reportExplorerDockPanel1_Container
  3877. //
  3878. this.reportExplorerDockPanel1_Container.Location = new System.Drawing.Point(0, 0);
  3879. this.reportExplorerDockPanel1_Container.Name = "reportExplorerDockPanel1_Container";
  3880. this.reportExplorerDockPanel1_Container.Size = new System.Drawing.Size(0, 0);
  3881. this.reportExplorerDockPanel1_Container.TabIndex = 0;
  3882. //
  3883. // propertyGridDockPanel1
  3884. //
  3885. this.propertyGridDockPanel1.Controls.Add(this.propertyGridDockPanel1_Container);
  3886. this.propertyGridDockPanel1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
  3887. this.propertyGridDockPanel1.ID = new System.Guid("b38d12c3-cd06-4dec-b93d-63a0088e495a");
  3888. this.propertyGridDockPanel1.ImageIndex = 2;
  3889. this.propertyGridDockPanel1.Location = new System.Drawing.Point(0, 26);
  3890. this.propertyGridDockPanel1.Name = "propertyGridDockPanel1";
  3891. this.propertyGridDockPanel1.OriginalSize = new System.Drawing.Size(250, 231);
  3892. this.propertyGridDockPanel1.Size = new System.Drawing.Size(0, 0);
  3893. this.propertyGridDockPanel1.Text = "Property Grid";
  3894. this.propertyGridDockPanel1.XRDesignPanel = null;
  3895. //
  3896. // propertyGridDockPanel1_Container
  3897. //
  3898. this.propertyGridDockPanel1_Container.Location = new System.Drawing.Point(0, 0);
  3899. this.propertyGridDockPanel1_Container.Name = "propertyGridDockPanel1_Container";
  3900. this.propertyGridDockPanel1_Container.Size = new System.Drawing.Size(0, 0);
  3901. this.propertyGridDockPanel1_Container.TabIndex = 0;
  3902. //
  3903. // toolBoxDockPanel1
  3904. //
  3905. this.toolBoxDockPanel1.Controls.Add(this.toolBoxDockPanel1_Container);
  3906. this.toolBoxDockPanel1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Left;
  3907. this.toolBoxDockPanel1.ID = new System.Guid("161a5a1a-d9b9-4f06-9ac4-d0c3e507c54f");
  3908. this.toolBoxDockPanel1.ImageIndex = 4;
  3909. this.toolBoxDockPanel1.Location = new System.Drawing.Point(0, 148);
  3910. this.toolBoxDockPanel1.Name = "toolBoxDockPanel1";
  3911. this.toolBoxDockPanel1.OriginalSize = new System.Drawing.Size(165, 200);
  3912. this.toolBoxDockPanel1.SavedDock = DevExpress.XtraBars.Docking.DockingStyle.Left;
  3913. this.toolBoxDockPanel1.SavedIndex = 0;
  3914. this.toolBoxDockPanel1.Size = new System.Drawing.Size(165, 463);
  3915. this.toolBoxDockPanel1.Text = "Tool Box";
  3916. this.toolBoxDockPanel1.Visibility = DevExpress.XtraBars.Docking.DockVisibility.Hidden;
  3917. this.toolBoxDockPanel1.XRDesignPanel = null;
  3918. //
  3919. // toolBoxDockPanel1_Container
  3920. //
  3921. this.toolBoxDockPanel1_Container.Location = new System.Drawing.Point(4, 25);
  3922. this.toolBoxDockPanel1_Container.Name = "toolBoxDockPanel1_Container";
  3923. this.toolBoxDockPanel1_Container.Size = new System.Drawing.Size(157, 434);
  3924. this.toolBoxDockPanel1_Container.TabIndex = 0;
  3925. //
  3926. // panelContainer3
  3927. //
  3928. this.panelContainer3.ActiveChild = this.errorListDockPanel1;
  3929. this.panelContainer3.Controls.Add(this.groupAndSortDockPanel1);
  3930. this.panelContainer3.Controls.Add(this.errorListDockPanel1);
  3931. this.panelContainer3.Dock = DevExpress.XtraBars.Docking.DockingStyle.Bottom;
  3932. this.panelContainer3.ID = new System.Guid("b5c3269d-cc8b-422a-85f1-937378be0ec3");
  3933. this.panelContainer3.Location = new System.Drawing.Point(0, 411);
  3934. this.panelContainer3.Name = "panelContainer3";
  3935. this.panelContainer3.OriginalSize = new System.Drawing.Size(200, 200);
  3936. this.panelContainer3.SavedDock = DevExpress.XtraBars.Docking.DockingStyle.Bottom;
  3937. this.panelContainer3.SavedIndex = 0;
  3938. this.panelContainer3.Size = new System.Drawing.Size(1064, 200);
  3939. this.panelContainer3.Tabbed = true;
  3940. this.panelContainer3.Text = "panelContainer3";
  3941. this.panelContainer3.Visibility = DevExpress.XtraBars.Docking.DockVisibility.Hidden;
  3942. //
  3943. // errorListDockPanel1
  3944. //
  3945. this.errorListDockPanel1.Controls.Add(this.errorListDockPanel1_Container);
  3946. this.errorListDockPanel1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
  3947. this.errorListDockPanel1.ID = new System.Guid("5a9a01fd-6e95-4e81-a8c4-ac63153d7488");
  3948. this.errorListDockPanel1.ImageIndex = 5;
  3949. this.errorListDockPanel1.Location = new System.Drawing.Point(0, 0);
  3950. this.errorListDockPanel1.Name = "errorListDockPanel1";
  3951. this.errorListDockPanel1.OriginalSize = new System.Drawing.Size(1056, 143);
  3952. this.errorListDockPanel1.Size = new System.Drawing.Size(0, 0);
  3953. this.errorListDockPanel1.Text = "Scripts Errors";
  3954. this.errorListDockPanel1.XRDesignPanel = null;
  3955. //
  3956. // errorListDockPanel1_Container
  3957. //
  3958. this.errorListDockPanel1_Container.Location = new System.Drawing.Point(0, 0);
  3959. this.errorListDockPanel1_Container.Name = "errorListDockPanel1_Container";
  3960. this.errorListDockPanel1_Container.Size = new System.Drawing.Size(0, 0);
  3961. this.errorListDockPanel1_Container.TabIndex = 0;
  3962. //
  3963. // groupAndSortDockPanel1
  3964. //
  3965. this.groupAndSortDockPanel1.Controls.Add(this.groupAndSortDockPanel1_Container);
  3966. this.groupAndSortDockPanel1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
  3967. this.groupAndSortDockPanel1.ID = new System.Guid("4bab159e-c495-4d67-87dc-f4e895da443e");
  3968. this.groupAndSortDockPanel1.ImageIndex = 1;
  3969. this.groupAndSortDockPanel1.Location = new System.Drawing.Point(0, 0);
  3970. this.groupAndSortDockPanel1.Name = "groupAndSortDockPanel1";
  3971. this.groupAndSortDockPanel1.OriginalSize = new System.Drawing.Size(1056, 143);
  3972. this.groupAndSortDockPanel1.Size = new System.Drawing.Size(0, 0);
  3973. this.groupAndSortDockPanel1.Text = "Group and Sort";
  3974. this.groupAndSortDockPanel1.XRDesignPanel = null;
  3975. //
  3976. // groupAndSortDockPanel1_Container
  3977. //
  3978. this.groupAndSortDockPanel1_Container.Location = new System.Drawing.Point(0, 0);
  3979. this.groupAndSortDockPanel1_Container.Name = "groupAndSortDockPanel1_Container";
  3980. this.groupAndSortDockPanel1_Container.Size = new System.Drawing.Size(0, 0);
  3981. this.groupAndSortDockPanel1_Container.TabIndex = 0;
  3982. //
  3983. // galleryDropDown1
  3984. //
  3985. this.galleryDropDown1.Name = "galleryDropDown1";
  3986. this.galleryDropDown1.Ribbon = this.ribbon;
  3987. //
  3988. // barButtonItem2
  3989. //
  3990. this.barButtonItem2.Caption = "影像切图";
  3991. this.barButtonItem2.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem2.Glyph")));
  3992. this.barButtonItem2.Id = 1;
  3993. this.barButtonItem2.Name = "barButtonItem2";
  3994. this.barButtonItem2.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
  3995. //
  3996. // ribbonPageGroup2
  3997. //
  3998. this.ribbonPageGroup2.ItemLinks.Add(this.barButtonImageTile);
  3999. this.ribbonPageGroup2.Name = "ribbonPageGroup2";
  4000. toolTipTitleItem113.Text = "许可管理工具";
  4001. toolTipItem113.LeftIndent = 6;
  4002. toolTipItem113.Text = "注册、删除许可等工具";
  4003. superToolTip113.Items.Add(toolTipTitleItem113);
  4004. superToolTip113.Items.Add(toolTipItem113);
  4005. this.ribbonPageGroup2.SuperTip = superToolTip113;
  4006. this.ribbonPageGroup2.Text = "数据转换";
  4007. //
  4008. // barButtonItem3
  4009. //
  4010. this.barButtonItem3.Caption = "数据库连接测试";
  4011. this.barButtonItem3.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem3.Glyph")));
  4012. this.barButtonItem3.Id = 1;
  4013. this.barButtonItem3.Name = "barButtonItem3";
  4014. this.barButtonItem3.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
  4015. //
  4016. // barButtonItem6
  4017. //
  4018. this.barButtonItem6.Caption = "数据库连接测试";
  4019. this.barButtonItem6.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem6.Glyph")));
  4020. this.barButtonItem6.Id = 1;
  4021. this.barButtonItem6.Name = "barButtonItem6";
  4022. this.barButtonItem6.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
  4023. //
  4024. // barButtonItem7
  4025. //
  4026. this.barButtonItem7.Caption = "数据库连接测试";
  4027. this.barButtonItem7.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem7.Glyph")));
  4028. this.barButtonItem7.Id = 1;
  4029. this.barButtonItem7.Name = "barButtonItem7";
  4030. this.barButtonItem7.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
  4031. //
  4032. // barButtonItem9
  4033. //
  4034. this.barButtonItem9.Caption = "曲线信息管理";
  4035. this.barButtonItem9.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem9.Glyph")));
  4036. this.barButtonItem9.Id = 14;
  4037. this.barButtonItem9.Name = "barButtonItem9";
  4038. this.barButtonItem9.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
  4039. //
  4040. // reportDesigner1
  4041. //
  4042. this.reportDesigner1.ContainerControl = null;
  4043. xrDesignPanelListener1.DesignControl = this.xrDesignRibbonController1;
  4044. xrDesignPanelListener2.DesignControl = this.xrDesignDockManager1;
  4045. xrDesignPanelListener3.DesignControl = this.fieldListDockPanel1;
  4046. xrDesignPanelListener4.DesignControl = this.propertyGridDockPanel1;
  4047. xrDesignPanelListener5.DesignControl = this.reportExplorerDockPanel1;
  4048. xrDesignPanelListener6.DesignControl = this.toolBoxDockPanel1;
  4049. xrDesignPanelListener7.DesignControl = this.groupAndSortDockPanel1;
  4050. xrDesignPanelListener8.DesignControl = this.errorListDockPanel1;
  4051. this.reportDesigner1.DesignPanelListeners.AddRange(new DevExpress.XtraReports.UserDesigner.XRDesignPanelListener[] {
  4052. xrDesignPanelListener1,
  4053. xrDesignPanelListener2,
  4054. xrDesignPanelListener3,
  4055. xrDesignPanelListener4,
  4056. xrDesignPanelListener5,
  4057. xrDesignPanelListener6,
  4058. xrDesignPanelListener7,
  4059. xrDesignPanelListener8});
  4060. this.reportDesigner1.Form = this;
  4061. //
  4062. // popupMenu1
  4063. //
  4064. this.popupMenu1.Name = "popupMenu1";
  4065. this.popupMenu1.Ribbon = this.ribbon;
  4066. //
  4067. // galleryDropDown2
  4068. //
  4069. this.galleryDropDown2.Name = "galleryDropDown2";
  4070. this.galleryDropDown2.Ribbon = this.ribbon;
  4071. //
  4072. // popupMenu2
  4073. //
  4074. this.popupMenu2.Name = "popupMenu2";
  4075. this.popupMenu2.Ribbon = this.ribbon;
  4076. //
  4077. // popupMenu3
  4078. //
  4079. this.popupMenu3.Name = "popupMenu3";
  4080. this.popupMenu3.Ribbon = this.ribbon;
  4081. //
  4082. // ribbonPageGroup3
  4083. //
  4084. this.ribbonPageGroup3.ItemLinks.Add(this.barButtonItem1);
  4085. this.ribbonPageGroup3.Name = "ribbonPageGroup3";
  4086. this.ribbonPageGroup3.Text = "关于系统";
  4087. //
  4088. // barButtonItem15
  4089. //
  4090. this.barButtonItem15.Caption = "启用编辑";
  4091. this.barButtonItem15.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem15.Glyph")));
  4092. this.barButtonItem15.Id = 163;
  4093. this.barButtonItem15.Name = "barButtonItem15";
  4094. this.barButtonItem15.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
  4095. //
  4096. // xtraTabDataManager
  4097. //
  4098. this.xtraTabDataManager.Name = "xtraTabDataManager";
  4099. this.xtraTabDataManager.Size = new System.Drawing.Size(1325, 498);
  4100. this.xtraTabDataManager.Text = "工务数据展示";
  4101. //
  4102. // xtraTabPageLGL
  4103. //
  4104. this.xtraTabPageLGL.Controls.Add(this.gridControl3);
  4105. this.xtraTabPageLGL.Controls.Add(this.panelControl4);
  4106. this.xtraTabPageLGL.Name = "xtraTabPageLGL";
  4107. this.xtraTabPageLGL.PageVisible = false;
  4108. this.xtraTabPageLGL.Size = new System.Drawing.Size(1325, 498);
  4109. this.xtraTabPageLGL.Text = "轮轨力数据分析";
  4110. //
  4111. // gridControl3
  4112. //
  4113. this.gridControl3.Dock = System.Windows.Forms.DockStyle.Fill;
  4114. this.gridControl3.Location = new System.Drawing.Point(0, 48);
  4115. this.gridControl3.MainView = this.gridView3;
  4116. this.gridControl3.Name = "gridControl3";
  4117. this.gridControl3.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
  4118. this.repositoryItemCheckEdit2});
  4119. this.gridControl3.Size = new System.Drawing.Size(1325, 450);
  4120. this.gridControl3.TabIndex = 15;
  4121. this.gridControl3.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
  4122. this.gridView3});
  4123. //
  4124. // gridView3
  4125. //
  4126. this.gridView3.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
  4127. this.gridColumn20,
  4128. this.gridColumn33,
  4129. this.gridColumn35,
  4130. this.gridColumn18,
  4131. this.gridColumn37,
  4132. this.gridColumn38,
  4133. this.gridColumn39,
  4134. this.gridColumn40,
  4135. this.gridColumn41,
  4136. this.gridColumn42,
  4137. this.gridColumn43,
  4138. this.gridColumn44});
  4139. this.gridView3.GridControl = this.gridControl3;
  4140. this.gridView3.Name = "gridView3";
  4141. this.gridView3.OptionsSelection.MultiSelect = true;
  4142. this.gridView3.OptionsSelection.MultiSelectMode = DevExpress.XtraGrid.Views.Grid.GridMultiSelectMode.CheckBoxRowSelect;
  4143. this.gridView3.OptionsView.ColumnAutoWidth = false;
  4144. this.gridView3.OptionsView.ShowGroupPanel = false;
  4145. this.gridView3.CustomDrawRowIndicator += new DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventHandler(this.gridView2_CustomDrawRowIndicator);
  4146. //
  4147. // gridColumn20
  4148. //
  4149. this.gridColumn20.Caption = "线路名";
  4150. this.gridColumn20.FieldName = "Xlm";
  4151. this.gridColumn20.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Left;
  4152. this.gridColumn20.Name = "gridColumn20";
  4153. this.gridColumn20.OptionsColumn.ReadOnly = true;
  4154. this.gridColumn20.Visible = true;
  4155. this.gridColumn20.VisibleIndex = 1;
  4156. this.gridColumn20.Width = 100;
  4157. //
  4158. // gridColumn33
  4159. //
  4160. this.gridColumn33.Caption = "行别";
  4161. this.gridColumn33.FieldName = "Hangbie";
  4162. this.gridColumn33.Name = "gridColumn33";
  4163. this.gridColumn33.OptionsColumn.FixedWidth = true;
  4164. this.gridColumn33.OptionsColumn.ReadOnly = true;
  4165. this.gridColumn33.Visible = true;
  4166. this.gridColumn33.VisibleIndex = 2;
  4167. //
  4168. // gridColumn35
  4169. //
  4170. this.gridColumn35.Caption = "线路级别";
  4171. this.gridColumn35.FieldName = "Xlbh";
  4172. this.gridColumn35.Name = "gridColumn35";
  4173. this.gridColumn35.OptionsColumn.FixedWidth = true;
  4174. this.gridColumn35.OptionsColumn.ReadOnly = true;
  4175. this.gridColumn35.Visible = true;
  4176. this.gridColumn35.VisibleIndex = 3;
  4177. this.gridColumn35.Width = 80;
  4178. //
  4179. // gridColumn18
  4180. //
  4181. this.gridColumn18.Caption = "检测车信息";
  4182. this.gridColumn18.FieldName = "Jccxx";
  4183. this.gridColumn18.Name = "gridColumn18";
  4184. this.gridColumn18.OptionsColumn.FixedWidth = true;
  4185. this.gridColumn18.OptionsColumn.ReadOnly = true;
  4186. this.gridColumn18.Visible = true;
  4187. this.gridColumn18.VisibleIndex = 4;
  4188. this.gridColumn18.Width = 120;
  4189. //
  4190. // gridColumn37
  4191. //
  4192. this.gridColumn37.Caption = "增减里程";
  4193. this.gridColumn37.FieldName = "Zjlc";
  4194. this.gridColumn37.Name = "gridColumn37";
  4195. this.gridColumn37.OptionsColumn.ReadOnly = true;
  4196. this.gridColumn37.Visible = true;
  4197. this.gridColumn37.VisibleIndex = 5;
  4198. this.gridColumn37.Width = 60;
  4199. //
  4200. // gridColumn38
  4201. //
  4202. this.gridColumn38.Caption = "检测日期";
  4203. this.gridColumn38.FieldName = "Jcsj";
  4204. this.gridColumn38.Name = "gridColumn38";
  4205. this.gridColumn38.OptionsColumn.FixedWidth = true;
  4206. this.gridColumn38.OptionsColumn.ReadOnly = true;
  4207. this.gridColumn38.Visible = true;
  4208. this.gridColumn38.VisibleIndex = 6;
  4209. this.gridColumn38.Width = 139;
  4210. //
  4211. // gridColumn39
  4212. //
  4213. this.gridColumn39.Caption = "原始文件名";
  4214. this.gridColumn39.FieldName = "Yswjm";
  4215. this.gridColumn39.Name = "gridColumn39";
  4216. this.gridColumn39.OptionsColumn.ReadOnly = true;
  4217. this.gridColumn39.Visible = true;
  4218. this.gridColumn39.VisibleIndex = 7;
  4219. this.gridColumn39.Width = 329;
  4220. //
  4221. // gridColumn40
  4222. //
  4223. this.gridColumn40.Caption = "文件大小";
  4224. this.gridColumn40.FieldName = "Daxiao";
  4225. this.gridColumn40.Name = "gridColumn40";
  4226. this.gridColumn40.OptionsColumn.FixedWidth = true;
  4227. this.gridColumn40.OptionsColumn.ReadOnly = true;
  4228. this.gridColumn40.Visible = true;
  4229. this.gridColumn40.VisibleIndex = 8;
  4230. this.gridColumn40.Width = 60;
  4231. //
  4232. // gridColumn41
  4233. //
  4234. this.gridColumn41.Caption = "任务状态";
  4235. this.gridColumn41.FieldName = "Rwzt";
  4236. this.gridColumn41.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Right;
  4237. this.gridColumn41.Name = "gridColumn41";
  4238. this.gridColumn41.OptionsColumn.FixedWidth = true;
  4239. this.gridColumn41.OptionsColumn.ReadOnly = true;
  4240. this.gridColumn41.Visible = true;
  4241. this.gridColumn41.VisibleIndex = 11;
  4242. this.gridColumn41.Width = 120;
  4243. //
  4244. // gridColumn42
  4245. //
  4246. this.gridColumn42.Caption = "文件状态";
  4247. this.gridColumn42.FieldName = "Wjzt";
  4248. this.gridColumn42.Name = "gridColumn42";
  4249. this.gridColumn42.OptionsColumn.FixedWidth = true;
  4250. this.gridColumn42.OptionsColumn.ReadOnly = true;
  4251. this.gridColumn42.Visible = true;
  4252. this.gridColumn42.VisibleIndex = 9;
  4253. this.gridColumn42.Width = 100;
  4254. //
  4255. // gridColumn43
  4256. //
  4257. this.gridColumn43.Caption = "备注";
  4258. this.gridColumn43.FieldName = "Remark";
  4259. this.gridColumn43.Name = "gridColumn43";
  4260. this.gridColumn43.Visible = true;
  4261. this.gridColumn43.VisibleIndex = 10;
  4262. this.gridColumn43.Width = 220;
  4263. //
  4264. // gridColumn44
  4265. //
  4266. this.gridColumn44.Caption = "id";
  4267. this.gridColumn44.FieldName = "Id";
  4268. this.gridColumn44.Name = "gridColumn44";
  4269. this.gridColumn44.OptionsColumn.ReadOnly = true;
  4270. //
  4271. // repositoryItemCheckEdit2
  4272. //
  4273. this.repositoryItemCheckEdit2.AutoHeight = false;
  4274. this.repositoryItemCheckEdit2.Name = "repositoryItemCheckEdit2";
  4275. //
  4276. // panelControl4
  4277. //
  4278. this.panelControl4.Controls.Add(this.LGLTQBtn);
  4279. this.panelControl4.Controls.Add(this.LGLFXBtn);
  4280. this.panelControl4.Controls.Add(this.LGLdelBtn);
  4281. this.panelControl4.Controls.Add(this.LGLJCCcomboBoxEdit);
  4282. this.panelControl4.Controls.Add(this.LGLcheckEdit);
  4283. this.panelControl4.Controls.Add(this.LGLOpenfileBtn);
  4284. this.panelControl4.Controls.Add(this.LGLgengxinBtn);
  4285. this.panelControl4.Controls.Add(this.LGLjiancecheBtn);
  4286. this.panelControl4.Dock = System.Windows.Forms.DockStyle.Top;
  4287. this.panelControl4.Location = new System.Drawing.Point(0, 0);
  4288. this.panelControl4.Name = "panelControl4";
  4289. this.panelControl4.Size = new System.Drawing.Size(1325, 48);
  4290. this.panelControl4.TabIndex = 11;
  4291. //
  4292. // LGLTQBtn
  4293. //
  4294. this.LGLTQBtn.Location = new System.Drawing.Point(346, 15);
  4295. this.LGLTQBtn.Name = "LGLTQBtn";
  4296. this.LGLTQBtn.Size = new System.Drawing.Size(75, 23);
  4297. this.LGLTQBtn.TabIndex = 5;
  4298. this.LGLTQBtn.Text = "轮轨力分析";
  4299. this.LGLTQBtn.Click += new System.EventHandler(this.LGLTQBtn_Click);
  4300. //
  4301. // LGLFXBtn
  4302. //
  4303. this.LGLFXBtn.Location = new System.Drawing.Point(457, 15);
  4304. this.LGLFXBtn.Name = "LGLFXBtn";
  4305. this.LGLFXBtn.Size = new System.Drawing.Size(75, 23);
  4306. this.LGLFXBtn.TabIndex = 5;
  4307. this.LGLFXBtn.Text = "道岔分析";
  4308. this.LGLFXBtn.Visible = false;
  4309. this.LGLFXBtn.Click += new System.EventHandler(this.LGLFXBtn_Click);
  4310. //
  4311. // LGLdelBtn
  4312. //
  4313. this.LGLdelBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  4314. this.LGLdelBtn.Location = new System.Drawing.Point(1217, 15);
  4315. this.LGLdelBtn.Name = "LGLdelBtn";
  4316. this.LGLdelBtn.Size = new System.Drawing.Size(72, 23);
  4317. this.LGLdelBtn.TabIndex = 5;
  4318. this.LGLdelBtn.Text = " 删除选中";
  4319. this.LGLdelBtn.Click += new System.EventHandler(this.DelJHFXBtn_Click);
  4320. //
  4321. // LGLJCCcomboBoxEdit
  4322. //
  4323. this.LGLJCCcomboBoxEdit.Location = new System.Drawing.Point(71, 16);
  4324. this.LGLJCCcomboBoxEdit.MenuManager = this.xrDesignRibbonController1;
  4325. this.LGLJCCcomboBoxEdit.Name = "LGLJCCcomboBoxEdit";
  4326. this.LGLJCCcomboBoxEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
  4327. new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
  4328. this.LGLJCCcomboBoxEdit.Size = new System.Drawing.Size(122, 20);
  4329. this.LGLJCCcomboBoxEdit.TabIndex = 9;
  4330. //
  4331. // LGLcheckEdit
  4332. //
  4333. this.LGLcheckEdit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  4334. this.LGLcheckEdit.Location = new System.Drawing.Point(1075, 16);
  4335. this.LGLcheckEdit.MenuManager = this.xrDesignRibbonController1;
  4336. this.LGLcheckEdit.Name = "LGLcheckEdit";
  4337. this.LGLcheckEdit.Properties.Caption = "浏览文件夹";
  4338. this.LGLcheckEdit.Size = new System.Drawing.Size(89, 19);
  4339. this.LGLcheckEdit.TabIndex = 5;
  4340. this.LGLcheckEdit.Visible = false;
  4341. //
  4342. // LGLOpenfileBtn
  4343. //
  4344. this.LGLOpenfileBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  4345. this.LGLOpenfileBtn.Location = new System.Drawing.Point(993, 15);
  4346. this.LGLOpenfileBtn.Name = "LGLOpenfileBtn";
  4347. this.LGLOpenfileBtn.Size = new System.Drawing.Size(75, 23);
  4348. this.LGLOpenfileBtn.TabIndex = 0;
  4349. this.LGLOpenfileBtn.Text = "浏览";
  4350. this.LGLOpenfileBtn.Click += new System.EventHandler(this.LGLOpenfileBtn_Click);
  4351. //
  4352. // LGLgengxinBtn
  4353. //
  4354. this.LGLgengxinBtn.Location = new System.Drawing.Point(21, 15);
  4355. this.LGLgengxinBtn.Name = "LGLgengxinBtn";
  4356. this.LGLgengxinBtn.Size = new System.Drawing.Size(44, 23);
  4357. this.LGLgengxinBtn.TabIndex = 5;
  4358. this.LGLgengxinBtn.Text = "更新";
  4359. this.LGLgengxinBtn.ToolTip = "更新检测车信息";
  4360. this.LGLgengxinBtn.Click += new System.EventHandler(this.updataJJCXXBtn_Click);
  4361. //
  4362. // LGLjiancecheBtn
  4363. //
  4364. this.LGLjiancecheBtn.Location = new System.Drawing.Point(199, 15);
  4365. this.LGLjiancecheBtn.Name = "LGLjiancecheBtn";
  4366. this.LGLjiancecheBtn.Size = new System.Drawing.Size(100, 23);
  4367. this.LGLjiancecheBtn.TabIndex = 5;
  4368. this.LGLjiancecheBtn.Text = " 修正检测车信息";
  4369. this.LGLjiancecheBtn.ToolTip = "修正选中文件的检测车信息";
  4370. this.LGLjiancecheBtn.Click += new System.EventHandler(this.JHFXjiancecheBtn_Click);
  4371. //
  4372. // xtraTabPageJH
  4373. //
  4374. this.xtraTabPageJH.Controls.Add(this.gridControl2);
  4375. this.xtraTabPageJH.Controls.Add(this.panelControl1);
  4376. this.xtraTabPageJH.Name = "xtraTabPageJH";
  4377. this.xtraTabPageJH.Size = new System.Drawing.Size(1325, 498);
  4378. this.xtraTabPageJH.Text = "轨道几何数据分析";
  4379. //
  4380. // gridControl2
  4381. //
  4382. this.gridControl2.Dock = System.Windows.Forms.DockStyle.Fill;
  4383. this.gridControl2.Location = new System.Drawing.Point(0, 48);
  4384. this.gridControl2.MainView = this.gridView2;
  4385. this.gridControl2.Name = "gridControl2";
  4386. this.gridControl2.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
  4387. this.repositoryItemCheckEdit3});
  4388. this.gridControl2.Size = new System.Drawing.Size(1325, 450);
  4389. this.gridControl2.TabIndex = 14;
  4390. this.gridControl2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
  4391. this.gridView2});
  4392. //
  4393. // gridView2
  4394. //
  4395. this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
  4396. this.gridColumn21,
  4397. this.gridColumn22,
  4398. this.gridColumn23,
  4399. this.gridColumn24,
  4400. this.gridColumn25,
  4401. this.gridColumn26,
  4402. this.gridColumn27,
  4403. this.gridColumn28,
  4404. this.gridColumn29,
  4405. this.gridColumn30,
  4406. this.gridColumn31,
  4407. this.gridColumn32,
  4408. this.gridColumn19});
  4409. this.gridView2.GridControl = this.gridControl2;
  4410. this.gridView2.Name = "gridView2";
  4411. this.gridView2.OptionsSelection.MultiSelect = true;
  4412. this.gridView2.OptionsSelection.MultiSelectMode = DevExpress.XtraGrid.Views.Grid.GridMultiSelectMode.CheckBoxRowSelect;
  4413. this.gridView2.OptionsView.ColumnAutoWidth = false;
  4414. this.gridView2.OptionsView.ShowGroupPanel = false;
  4415. this.gridView2.CustomDrawRowIndicator += new DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventHandler(this.gridView2_CustomDrawRowIndicator);
  4416. //
  4417. // gridColumn21
  4418. //
  4419. this.gridColumn21.Caption = "线路名";
  4420. this.gridColumn21.FieldName = "Xlm";
  4421. this.gridColumn21.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Left;
  4422. this.gridColumn21.Name = "gridColumn21";
  4423. this.gridColumn21.OptionsColumn.ReadOnly = true;
  4424. this.gridColumn21.Visible = true;
  4425. this.gridColumn21.VisibleIndex = 1;
  4426. this.gridColumn21.Width = 100;
  4427. //
  4428. // gridColumn22
  4429. //
  4430. this.gridColumn22.Caption = "行别";
  4431. this.gridColumn22.FieldName = "Hangbie";
  4432. this.gridColumn22.Name = "gridColumn22";
  4433. this.gridColumn22.OptionsColumn.FixedWidth = true;
  4434. this.gridColumn22.OptionsColumn.ReadOnly = true;
  4435. this.gridColumn22.Visible = true;
  4436. this.gridColumn22.VisibleIndex = 2;
  4437. this.gridColumn22.Width = 60;
  4438. //
  4439. // gridColumn23
  4440. //
  4441. this.gridColumn23.Caption = "检测车信息";
  4442. this.gridColumn23.FieldName = "Jccxx";
  4443. this.gridColumn23.Name = "gridColumn23";
  4444. this.gridColumn23.OptionsColumn.FixedWidth = true;
  4445. this.gridColumn23.OptionsColumn.ReadOnly = true;
  4446. this.gridColumn23.Visible = true;
  4447. this.gridColumn23.VisibleIndex = 3;
  4448. this.gridColumn23.Width = 120;
  4449. //
  4450. // gridColumn24
  4451. //
  4452. this.gridColumn24.Caption = "线路级别";
  4453. this.gridColumn24.FieldName = "Xlbh";
  4454. this.gridColumn24.Name = "gridColumn24";
  4455. this.gridColumn24.OptionsColumn.FixedWidth = true;
  4456. this.gridColumn24.OptionsColumn.ReadOnly = true;
  4457. this.gridColumn24.Visible = true;
  4458. this.gridColumn24.VisibleIndex = 4;
  4459. this.gridColumn24.Width = 80;
  4460. //
  4461. // gridColumn25
  4462. //
  4463. this.gridColumn25.Caption = "方向";
  4464. this.gridColumn25.FieldName = "Fangxiang";
  4465. this.gridColumn25.Name = "gridColumn25";
  4466. this.gridColumn25.OptionsColumn.FixedWidth = true;
  4467. this.gridColumn25.OptionsColumn.ReadOnly = true;
  4468. this.gridColumn25.Visible = true;
  4469. this.gridColumn25.VisibleIndex = 5;
  4470. this.gridColumn25.Width = 60;
  4471. //
  4472. // gridColumn26
  4473. //
  4474. this.gridColumn26.Caption = "增减里程";
  4475. this.gridColumn26.FieldName = "Zjlc";
  4476. this.gridColumn26.Name = "gridColumn26";
  4477. this.gridColumn26.OptionsColumn.ReadOnly = true;
  4478. this.gridColumn26.Visible = true;
  4479. this.gridColumn26.VisibleIndex = 6;
  4480. this.gridColumn26.Width = 60;
  4481. //
  4482. // gridColumn27
  4483. //
  4484. this.gridColumn27.Caption = "检测日期";
  4485. this.gridColumn27.FieldName = "Jcsj";
  4486. this.gridColumn27.Name = "gridColumn27";
  4487. this.gridColumn27.OptionsColumn.FixedWidth = true;
  4488. this.gridColumn27.OptionsColumn.ReadOnly = true;
  4489. this.gridColumn27.Visible = true;
  4490. this.gridColumn27.VisibleIndex = 7;
  4491. this.gridColumn27.Width = 214;
  4492. //
  4493. // gridColumn28
  4494. //
  4495. this.gridColumn28.Caption = "原始文件名";
  4496. this.gridColumn28.FieldName = "Yswjm";
  4497. this.gridColumn28.Name = "gridColumn28";
  4498. this.gridColumn28.OptionsColumn.ReadOnly = true;
  4499. this.gridColumn28.Visible = true;
  4500. this.gridColumn28.VisibleIndex = 8;
  4501. this.gridColumn28.Width = 400;
  4502. //
  4503. // gridColumn29
  4504. //
  4505. this.gridColumn29.Caption = "文件大小";
  4506. this.gridColumn29.FieldName = "Daxiao";
  4507. this.gridColumn29.Name = "gridColumn29";
  4508. this.gridColumn29.OptionsColumn.FixedWidth = true;
  4509. this.gridColumn29.OptionsColumn.ReadOnly = true;
  4510. this.gridColumn29.Visible = true;
  4511. this.gridColumn29.VisibleIndex = 9;
  4512. this.gridColumn29.Width = 60;
  4513. //
  4514. // gridColumn30
  4515. //
  4516. this.gridColumn30.Caption = "任务状态";
  4517. this.gridColumn30.FieldName = "Rwzt";
  4518. this.gridColumn30.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Right;
  4519. this.gridColumn30.Name = "gridColumn30";
  4520. this.gridColumn30.OptionsColumn.FixedWidth = true;
  4521. this.gridColumn30.OptionsColumn.ReadOnly = true;
  4522. this.gridColumn30.Visible = true;
  4523. this.gridColumn30.VisibleIndex = 12;
  4524. this.gridColumn30.Width = 120;
  4525. //
  4526. // gridColumn31
  4527. //
  4528. this.gridColumn31.Caption = "文件状态";
  4529. this.gridColumn31.FieldName = "Wjzt";
  4530. this.gridColumn31.Name = "gridColumn31";
  4531. this.gridColumn31.OptionsColumn.FixedWidth = true;
  4532. this.gridColumn31.OptionsColumn.ReadOnly = true;
  4533. this.gridColumn31.Visible = true;
  4534. this.gridColumn31.VisibleIndex = 10;
  4535. this.gridColumn31.Width = 100;
  4536. //
  4537. // gridColumn32
  4538. //
  4539. this.gridColumn32.Caption = "备注";
  4540. this.gridColumn32.FieldName = "Remark";
  4541. this.gridColumn32.Name = "gridColumn32";
  4542. this.gridColumn32.Visible = true;
  4543. this.gridColumn32.VisibleIndex = 11;
  4544. this.gridColumn32.Width = 111;
  4545. //
  4546. // gridColumn19
  4547. //
  4548. this.gridColumn19.Caption = "id";
  4549. this.gridColumn19.FieldName = "Id";
  4550. this.gridColumn19.Name = "gridColumn19";
  4551. this.gridColumn19.OptionsColumn.ReadOnly = true;
  4552. //
  4553. // repositoryItemCheckEdit3
  4554. //
  4555. this.repositoryItemCheckEdit3.AutoHeight = false;
  4556. this.repositoryItemCheckEdit3.Name = "repositoryItemCheckEdit3";
  4557. //
  4558. // panelControl1
  4559. //
  4560. this.panelControl1.Controls.Add(this.JHdelBtn);
  4561. this.panelControl1.Controls.Add(this.JHFXcheckEdit);
  4562. this.panelControl1.Controls.Add(this.WXSFBtn);
  4563. this.panelControl1.Controls.Add(this.JHTQBtn);
  4564. this.panelControl1.Controls.Add(this.JHgengxinBtn);
  4565. this.panelControl1.Controls.Add(this.JHFXjiancecheBtn);
  4566. this.panelControl1.Controls.Add(this.JHFXopenfileBtn);
  4567. this.panelControl1.Controls.Add(this.JHFXJCCcomboBoxEdit);
  4568. this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top;
  4569. this.panelControl1.Location = new System.Drawing.Point(0, 0);
  4570. this.panelControl1.Name = "panelControl1";
  4571. this.panelControl1.Size = new System.Drawing.Size(1325, 48);
  4572. this.panelControl1.TabIndex = 3;
  4573. //
  4574. // JHdelBtn
  4575. //
  4576. this.JHdelBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  4577. this.JHdelBtn.Location = new System.Drawing.Point(1217, 15);
  4578. this.JHdelBtn.Name = "JHdelBtn";
  4579. this.JHdelBtn.Size = new System.Drawing.Size(72, 23);
  4580. this.JHdelBtn.TabIndex = 9;
  4581. this.JHdelBtn.Text = " 删除选中";
  4582. this.JHdelBtn.Click += new System.EventHandler(this.DelJHFXBtn_Click);
  4583. //
  4584. // JHFXcheckEdit
  4585. //
  4586. this.JHFXcheckEdit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  4587. this.JHFXcheckEdit.Location = new System.Drawing.Point(1075, 16);
  4588. this.JHFXcheckEdit.MenuManager = this.xrDesignRibbonController1;
  4589. this.JHFXcheckEdit.Name = "JHFXcheckEdit";
  4590. this.JHFXcheckEdit.Properties.Caption = "浏览文件夹";
  4591. this.JHFXcheckEdit.Size = new System.Drawing.Size(89, 19);
  4592. this.JHFXcheckEdit.TabIndex = 4;
  4593. this.JHFXcheckEdit.Visible = false;
  4594. //
  4595. // WXSFBtn
  4596. //
  4597. this.WXSFBtn.Location = new System.Drawing.Point(459, 15);
  4598. this.WXSFBtn.Name = "WXSFBtn";
  4599. this.WXSFBtn.Size = new System.Drawing.Size(75, 23);
  4600. this.WXSFBtn.TabIndex = 5;
  4601. this.WXSFBtn.Text = "微小算法";
  4602. this.WXSFBtn.Click += new System.EventHandler(this.WXSFBtn_Click);
  4603. //
  4604. // JHTQBtn
  4605. //
  4606. this.JHTQBtn.Location = new System.Drawing.Point(346, 15);
  4607. this.JHTQBtn.Name = "JHTQBtn";
  4608. this.JHTQBtn.Size = new System.Drawing.Size(75, 23);
  4609. this.JHTQBtn.TabIndex = 5;
  4610. this.JHTQBtn.Text = "几何分析";
  4611. this.JHTQBtn.Click += new System.EventHandler(this.JHTQBtn_Click);
  4612. //
  4613. // JHgengxinBtn
  4614. //
  4615. this.JHgengxinBtn.Location = new System.Drawing.Point(23, 15);
  4616. this.JHgengxinBtn.Name = "JHgengxinBtn";
  4617. this.JHgengxinBtn.Size = new System.Drawing.Size(44, 23);
  4618. this.JHgengxinBtn.TabIndex = 10;
  4619. this.JHgengxinBtn.Text = "更新";
  4620. this.JHgengxinBtn.ToolTip = "更新检测车信息";
  4621. this.JHgengxinBtn.Click += new System.EventHandler(this.updataJJCXXBtn_Click);
  4622. //
  4623. // JHFXjiancecheBtn
  4624. //
  4625. this.JHFXjiancecheBtn.Location = new System.Drawing.Point(201, 15);
  4626. this.JHFXjiancecheBtn.Name = "JHFXjiancecheBtn";
  4627. this.JHFXjiancecheBtn.Size = new System.Drawing.Size(100, 23);
  4628. this.JHFXjiancecheBtn.TabIndex = 8;
  4629. this.JHFXjiancecheBtn.Text = " 修正检测车信息";
  4630. this.JHFXjiancecheBtn.ToolTip = "修正选中文件的检测车信息";
  4631. this.JHFXjiancecheBtn.Click += new System.EventHandler(this.JHFXjiancecheBtn_Click);
  4632. //
  4633. // JHFXopenfileBtn
  4634. //
  4635. this.JHFXopenfileBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  4636. this.JHFXopenfileBtn.Location = new System.Drawing.Point(993, 15);
  4637. this.JHFXopenfileBtn.Name = "JHFXopenfileBtn";
  4638. this.JHFXopenfileBtn.Size = new System.Drawing.Size(75, 23);
  4639. this.JHFXopenfileBtn.TabIndex = 0;
  4640. this.JHFXopenfileBtn.Text = "浏览";
  4641. this.JHFXopenfileBtn.Click += new System.EventHandler(this.JHFXopenfileBtn_Click);
  4642. //
  4643. // JHFXJCCcomboBoxEdit
  4644. //
  4645. this.JHFXJCCcomboBoxEdit.Location = new System.Drawing.Point(73, 16);
  4646. this.JHFXJCCcomboBoxEdit.MenuManager = this.xrDesignRibbonController1;
  4647. this.JHFXJCCcomboBoxEdit.Name = "JHFXJCCcomboBoxEdit";
  4648. this.JHFXJCCcomboBoxEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
  4649. new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
  4650. this.JHFXJCCcomboBoxEdit.Size = new System.Drawing.Size(122, 20);
  4651. this.JHFXJCCcomboBoxEdit.TabIndex = 7;
  4652. this.JHFXJCCcomboBoxEdit.SelectedIndexChanged += new System.EventHandler(this.JHFXJCCcomboBoxEdit_SelectedIndexChanged);
  4653. //
  4654. // xtraTabPageGJ
  4655. //
  4656. this.xtraTabPageGJ.Controls.Add(this.gjInform9);
  4657. this.xtraTabPageGJ.Name = "xtraTabPageGJ";
  4658. this.xtraTabPageGJ.Size = new System.Drawing.Size(1325, 498);
  4659. this.xtraTabPageGJ.Text = "管界信息管理";
  4660. //
  4661. // gjInform9
  4662. //
  4663. this.gjInform9.Dock = System.Windows.Forms.DockStyle.Fill;
  4664. this.gjInform9.Location = new System.Drawing.Point(0, 0);
  4665. this.gjInform9.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  4666. this.gjInform9.Name = "gjInform9";
  4667. this.gjInform9.Size = new System.Drawing.Size(1325, 498);
  4668. this.gjInform9.TabIndex = 0;
  4669. this.gjInform9.Load += new System.EventHandler(this.gjInform9_Load);
  4670. //
  4671. // xtraTabPageQX
  4672. //
  4673. this.xtraTabPageQX.Controls.Add(this.gridControl1);
  4674. this.xtraTabPageQX.Controls.Add(this.panelControl3);
  4675. this.xtraTabPageQX.Controls.Add(this.panelControl2);
  4676. this.xtraTabPageQX.Name = "xtraTabPageQX";
  4677. this.xtraTabPageQX.ShowCloseButton = DevExpress.Utils.DefaultBoolean.False;
  4678. this.xtraTabPageQX.Size = new System.Drawing.Size(1325, 498);
  4679. this.xtraTabPageQX.Text = "曲线信息管理";
  4680. //
  4681. // gridControl1
  4682. //
  4683. this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
  4684. this.gridControl1.Location = new System.Drawing.Point(0, 37);
  4685. this.gridControl1.MainView = this.railwaybureau;
  4686. this.gridControl1.MenuManager = this.xrDesignRibbonController1;
  4687. this.gridControl1.Name = "gridControl1";
  4688. this.gridControl1.Size = new System.Drawing.Size(1325, 461);
  4689. this.gridControl1.TabIndex = 0;
  4690. this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
  4691. this.railwaybureau,
  4692. this.gridView1});
  4693. this.gridControl1.Click += new System.EventHandler(this.gridControl1_Click);
  4694. //
  4695. // railwaybureau
  4696. //
  4697. this.railwaybureau.Appearance.FocusedCell.Options.UseTextOptions = true;
  4698. this.railwaybureau.Appearance.FocusedCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  4699. this.railwaybureau.Appearance.FocusedRow.Options.UseTextOptions = true;
  4700. this.railwaybureau.Appearance.FocusedRow.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  4701. this.railwaybureau.Appearance.Row.Options.UseTextOptions = true;
  4702. this.railwaybureau.Appearance.Row.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  4703. this.railwaybureau.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
  4704. this.gridColumn1,
  4705. this.gridColumn2,
  4706. this.gridColumn3,
  4707. this.gridColumn4,
  4708. this.gridColumn5,
  4709. this.gridColumn6,
  4710. this.gridColumn7,
  4711. this.gridColumn8,
  4712. this.gridColumn9,
  4713. this.gridColumn10,
  4714. this.gridColumn11,
  4715. this.gridColumn12,
  4716. this.gridColumn13,
  4717. this.gridColumn14,
  4718. this.gridColumn15,
  4719. this.gridColumn16,
  4720. this.gridColumn17});
  4721. this.railwaybureau.GridControl = this.gridControl1;
  4722. this.railwaybureau.IndicatorWidth = 50;
  4723. this.railwaybureau.Name = "railwaybureau";
  4724. this.railwaybureau.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.False;
  4725. this.railwaybureau.OptionsBehavior.EditorShowMode = DevExpress.Utils.EditorShowMode.Click;
  4726. this.railwaybureau.OptionsSelection.MultiSelect = true;
  4727. this.railwaybureau.OptionsSelection.MultiSelectMode = DevExpress.XtraGrid.Views.Grid.GridMultiSelectMode.CheckBoxRowSelect;
  4728. this.railwaybureau.OptionsSelection.ShowCheckBoxSelectorInColumnHeader = DevExpress.Utils.DefaultBoolean.True;
  4729. this.railwaybureau.OptionsView.ColumnAutoWidth = false;
  4730. this.railwaybureau.OptionsView.ShowGroupPanel = false;
  4731. this.railwaybureau.CustomDrawRowIndicator += new DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventHandler(this.gridView1_CustomDrawRowIndicator);
  4732. this.railwaybureau.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.railwaybureau_CellValueChanged);
  4733. //
  4734. // gridColumn1
  4735. //
  4736. this.gridColumn1.AppearanceHeader.Options.UseTextOptions = true;
  4737. this.gridColumn1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  4738. this.gridColumn1.Caption = "序号";
  4739. this.gridColumn1.FieldName = "Id";
  4740. this.gridColumn1.Name = "gridColumn1";
  4741. this.gridColumn1.OptionsColumn.AllowEdit = false;
  4742. this.gridColumn1.OptionsFilter.FilterPopupMode = DevExpress.XtraGrid.Columns.FilterPopupMode.CheckedList;
  4743. //
  4744. // gridColumn2
  4745. //
  4746. this.gridColumn2.AppearanceHeader.Options.UseTextOptions = true;
  4747. this.gridColumn2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  4748. this.gridColumn2.Caption = "局名";
  4749. this.gridColumn2.FieldName = "Juming";
  4750. this.gridColumn2.Name = "gridColumn2";
  4751. this.gridColumn2.OptionsFilter.FilterPopupMode = DevExpress.XtraGrid.Columns.FilterPopupMode.CheckedList;
  4752. this.gridColumn2.Visible = true;
  4753. this.gridColumn2.VisibleIndex = 1;
  4754. //
  4755. // gridColumn3
  4756. //
  4757. this.gridColumn3.AppearanceHeader.Options.UseTextOptions = true;
  4758. this.gridColumn3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  4759. this.gridColumn3.Caption = "局编号";
  4760. this.gridColumn3.FieldName = "Jbh";
  4761. this.gridColumn3.Name = "gridColumn3";
  4762. this.gridColumn3.OptionsFilter.AllowFilter = false;
  4763. this.gridColumn3.Visible = true;
  4764. this.gridColumn3.VisibleIndex = 2;
  4765. //
  4766. // gridColumn4
  4767. //
  4768. this.gridColumn4.AppearanceHeader.Options.UseTextOptions = true;
  4769. this.gridColumn4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  4770. this.gridColumn4.Caption = "线名";
  4771. this.gridColumn4.FieldName = "Xianming";
  4772. this.gridColumn4.Name = "gridColumn4";
  4773. this.gridColumn4.OptionsFilter.FilterPopupMode = DevExpress.XtraGrid.Columns.FilterPopupMode.CheckedList;
  4774. this.gridColumn4.Visible = true;
  4775. this.gridColumn4.VisibleIndex = 3;
  4776. //
  4777. // gridColumn5
  4778. //
  4779. this.gridColumn5.AppearanceHeader.Options.UseTextOptions = true;
  4780. this.gridColumn5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  4781. this.gridColumn5.Caption = "线编号";
  4782. this.gridColumn5.FieldName = "Xbh";
  4783. this.gridColumn5.Name = "gridColumn5";
  4784. this.gridColumn5.OptionsFilter.AllowFilter = false;
  4785. this.gridColumn5.Visible = true;
  4786. this.gridColumn5.VisibleIndex = 4;
  4787. //
  4788. // gridColumn6
  4789. //
  4790. this.gridColumn6.AppearanceHeader.Options.UseTextOptions = true;
  4791. this.gridColumn6.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  4792. this.gridColumn6.Caption = "行别";
  4793. this.gridColumn6.FieldName = "Hangbie";
  4794. this.gridColumn6.Name = "gridColumn6";
  4795. this.gridColumn6.OptionsFilter.FilterPopupMode = DevExpress.XtraGrid.Columns.FilterPopupMode.CheckedList;
  4796. this.gridColumn6.Visible = true;
  4797. this.gridColumn6.VisibleIndex = 5;
  4798. //
  4799. // gridColumn7
  4800. //
  4801. this.gridColumn7.AppearanceHeader.Options.UseTextOptions = true;
  4802. this.gridColumn7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  4803. this.gridColumn7.Caption = "起止里程";
  4804. this.gridColumn7.FieldName = "Qzlc";
  4805. this.gridColumn7.Name = "gridColumn7";
  4806. this.gridColumn7.OptionsFilter.FilterPopupMode = DevExpress.XtraGrid.Columns.FilterPopupMode.CheckedList;
  4807. this.gridColumn7.Visible = true;
  4808. this.gridColumn7.VisibleIndex = 6;
  4809. //
  4810. // gridColumn8
  4811. //
  4812. this.gridColumn8.AppearanceHeader.Options.UseTextOptions = true;
  4813. this.gridColumn8.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  4814. this.gridColumn8.Caption = "结束里程";
  4815. this.gridColumn8.FieldName = "Jslc";
  4816. this.gridColumn8.Name = "gridColumn8";
  4817. this.gridColumn8.OptionsFilter.FilterPopupMode = DevExpress.XtraGrid.Columns.FilterPopupMode.CheckedList;
  4818. this.gridColumn8.Visible = true;
  4819. this.gridColumn8.VisibleIndex = 7;
  4820. //
  4821. // gridColumn9
  4822. //
  4823. this.gridColumn9.AppearanceHeader.Options.UseTextOptions = true;
  4824. this.gridColumn9.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  4825. this.gridColumn9.Caption = "曲线方向";
  4826. this.gridColumn9.FieldName = "Qxfx";
  4827. this.gridColumn9.Name = "gridColumn9";
  4828. this.gridColumn9.OptionsFilter.AllowFilter = false;
  4829. this.gridColumn9.Visible = true;
  4830. this.gridColumn9.VisibleIndex = 8;
  4831. //
  4832. // gridColumn10
  4833. //
  4834. this.gridColumn10.AppearanceHeader.Options.UseTextOptions = true;
  4835. this.gridColumn10.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  4836. this.gridColumn10.Caption = "曲线半径";
  4837. this.gridColumn10.FieldName = "Qxbj";
  4838. this.gridColumn10.Name = "gridColumn10";
  4839. this.gridColumn10.OptionsFilter.AllowFilter = false;
  4840. this.gridColumn10.Visible = true;
  4841. this.gridColumn10.VisibleIndex = 9;
  4842. //
  4843. // gridColumn11
  4844. //
  4845. this.gridColumn11.AppearanceHeader.Options.UseTextOptions = true;
  4846. this.gridColumn11.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  4847. this.gridColumn11.Caption = "起缓和线长";
  4848. this.gridColumn11.FieldName = "Qhhxc";
  4849. this.gridColumn11.Name = "gridColumn11";
  4850. this.gridColumn11.OptionsFilter.AllowFilter = false;
  4851. this.gridColumn11.Visible = true;
  4852. this.gridColumn11.VisibleIndex = 10;
  4853. //
  4854. // gridColumn12
  4855. //
  4856. this.gridColumn12.AppearanceHeader.Options.UseTextOptions = true;
  4857. this.gridColumn12.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  4858. this.gridColumn12.Caption = "终缓和线长";
  4859. this.gridColumn12.FieldName = "Zhhxc";
  4860. this.gridColumn12.Name = "gridColumn12";
  4861. this.gridColumn12.OptionsFilter.AllowFilter = false;
  4862. this.gridColumn12.Visible = true;
  4863. this.gridColumn12.VisibleIndex = 11;
  4864. //
  4865. // gridColumn13
  4866. //
  4867. this.gridColumn13.AppearanceHeader.Options.UseTextOptions = true;
  4868. this.gridColumn13.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  4869. this.gridColumn13.Caption = "超高";
  4870. this.gridColumn13.FieldName = "Chaogao";
  4871. this.gridColumn13.Name = "gridColumn13";
  4872. this.gridColumn13.OptionsFilter.AllowFilter = false;
  4873. this.gridColumn13.Visible = true;
  4874. this.gridColumn13.VisibleIndex = 12;
  4875. //
  4876. // gridColumn14
  4877. //
  4878. this.gridColumn14.AppearanceHeader.Options.UseTextOptions = true;
  4879. this.gridColumn14.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  4880. this.gridColumn14.Caption = "曲线全长";
  4881. this.gridColumn14.FieldName = "Qxqc";
  4882. this.gridColumn14.Name = "gridColumn14";
  4883. this.gridColumn14.OptionsFilter.AllowFilter = false;
  4884. this.gridColumn14.Visible = true;
  4885. this.gridColumn14.VisibleIndex = 13;
  4886. //
  4887. // gridColumn15
  4888. //
  4889. this.gridColumn15.AppearanceHeader.Options.UseTextOptions = true;
  4890. this.gridColumn15.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  4891. this.gridColumn15.Caption = "长链标记";
  4892. this.gridColumn15.FieldName = "Clbj";
  4893. this.gridColumn15.Name = "gridColumn15";
  4894. this.gridColumn15.OptionsFilter.AllowFilter = false;
  4895. this.gridColumn15.Visible = true;
  4896. this.gridColumn15.VisibleIndex = 14;
  4897. //
  4898. // gridColumn16
  4899. //
  4900. this.gridColumn16.AppearanceHeader.Options.UseTextOptions = true;
  4901. this.gridColumn16.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  4902. this.gridColumn16.Caption = "平均速度";
  4903. this.gridColumn16.FieldName = "Pjsd";
  4904. this.gridColumn16.Name = "gridColumn16";
  4905. this.gridColumn16.OptionsFilter.AllowFilter = false;
  4906. this.gridColumn16.Visible = true;
  4907. this.gridColumn16.VisibleIndex = 15;
  4908. //
  4909. // gridColumn17
  4910. //
  4911. this.gridColumn17.AppearanceHeader.Options.UseTextOptions = true;
  4912. this.gridColumn17.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  4913. this.gridColumn17.Caption = "修改标注";
  4914. this.gridColumn17.FieldName = "Xgbz";
  4915. this.gridColumn17.Name = "gridColumn17";
  4916. this.gridColumn17.OptionsFilter.AllowFilter = false;
  4917. this.gridColumn17.Visible = true;
  4918. this.gridColumn17.VisibleIndex = 16;
  4919. //
  4920. // gridView1
  4921. //
  4922. this.gridView1.GridControl = this.gridControl1;
  4923. this.gridView1.Name = "gridView1";
  4924. this.gridView1.CustomDrawRowIndicator += new DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventHandler(this.gridView1_CustomDrawRowIndicator);
  4925. this.gridView1.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridView1_CellValueChanged);
  4926. //
  4927. // panelControl3
  4928. //
  4929. this.panelControl3.Dock = System.Windows.Forms.DockStyle.Fill;
  4930. this.panelControl3.Location = new System.Drawing.Point(0, 37);
  4931. this.panelControl3.Name = "panelControl3";
  4932. this.panelControl3.Size = new System.Drawing.Size(1325, 461);
  4933. this.panelControl3.TabIndex = 2;
  4934. //
  4935. // panelControl2
  4936. //
  4937. this.panelControl2.Controls.Add(this.deleteroebtnqx);
  4938. this.panelControl2.Dock = System.Windows.Forms.DockStyle.Top;
  4939. this.panelControl2.Location = new System.Drawing.Point(0, 0);
  4940. this.panelControl2.Name = "panelControl2";
  4941. this.panelControl2.Size = new System.Drawing.Size(1325, 37);
  4942. this.panelControl2.TabIndex = 1;
  4943. //
  4944. // deleteroebtnqx
  4945. //
  4946. this.deleteroebtnqx.Location = new System.Drawing.Point(21, 8);
  4947. this.deleteroebtnqx.Name = "deleteroebtnqx";
  4948. this.deleteroebtnqx.Size = new System.Drawing.Size(75, 23);
  4949. this.deleteroebtnqx.TabIndex = 0;
  4950. this.deleteroebtnqx.Text = "删除选中行";
  4951. this.deleteroebtnqx.Click += new System.EventHandler(this.deleteroebtnqx_Click);
  4952. //
  4953. // xtraTabControl1
  4954. //
  4955. this.xtraTabControl1.ClosePageButtonShowMode = DevExpress.XtraTab.ClosePageButtonShowMode.InAllTabPageHeaders;
  4956. this.xtraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
  4957. this.xtraTabControl1.Location = new System.Drawing.Point(0, 147);
  4958. this.xtraTabControl1.Name = "xtraTabControl1";
  4959. this.xtraTabControl1.SelectedTabPage = this.xtraTabPageQX;
  4960. this.xtraTabControl1.Size = new System.Drawing.Size(1331, 527);
  4961. this.xtraTabControl1.TabIndex = 2;
  4962. this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
  4963. this.xtraTabPageQX,
  4964. this.xtraTabPageDC,
  4965. this.xtraTabPageGJ,
  4966. this.xtraTabPageGLData,
  4967. this.xtraTabPageQKData,
  4968. this.xtraTabPageJH,
  4969. this.xtraTabPageLGL,
  4970. this.xtraTabPageMTLF,
  4971. this.xtraTabPageZZJH,
  4972. this.xtraTabPageXXXW,
  4973. this.xtraTabDataManager,
  4974. this.xtraTabPageGL,
  4975. this.xtraTabPageQK,
  4976. this.xtraTabPageDWZS});
  4977. this.xtraTabControl1.CloseButtonClick += new System.EventHandler(this.xtraTabControl1_CloseButtonClick);
  4978. //
  4979. // xtraTabPageDC
  4980. //
  4981. this.xtraTabPageDC.Controls.Add(this.dcInform8);
  4982. this.xtraTabPageDC.Name = "xtraTabPageDC";
  4983. this.xtraTabPageDC.Size = new System.Drawing.Size(1325, 498);
  4984. this.xtraTabPageDC.Text = "道岔信息管理";
  4985. this.xtraTabPageDC.Paint += new System.Windows.Forms.PaintEventHandler(this.xtraTabPage2_Paint);
  4986. //
  4987. // dcInform8
  4988. //
  4989. this.dcInform8.Dock = System.Windows.Forms.DockStyle.Fill;
  4990. this.dcInform8.Location = new System.Drawing.Point(0, 0);
  4991. this.dcInform8.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  4992. this.dcInform8.Name = "dcInform8";
  4993. this.dcInform8.Size = new System.Drawing.Size(1325, 498);
  4994. this.dcInform8.TabIndex = 0;
  4995. this.dcInform8.Load += new System.EventHandler(this.dcInform8_Load);
  4996. //
  4997. // xtraTabPageGLData
  4998. //
  4999. this.xtraTabPageGLData.Controls.Add(this.gridControl6);
  5000. this.xtraTabPageGLData.Controls.Add(this.panelControl7);
  5001. this.xtraTabPageGLData.Margin = new System.Windows.Forms.Padding(2);
  5002. this.xtraTabPageGLData.Name = "xtraTabPageGLData";
  5003. this.xtraTabPageGLData.Size = new System.Drawing.Size(1325, 498);
  5004. this.xtraTabPageGLData.Text = "功率数据管理";
  5005. //
  5006. // gridControl6
  5007. //
  5008. this.gridControl6.Dock = System.Windows.Forms.DockStyle.Fill;
  5009. this.gridControl6.Location = new System.Drawing.Point(0, 48);
  5010. this.gridControl6.MainView = this.gridView6;
  5011. this.gridControl6.Name = "gridControl6";
  5012. this.gridControl6.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
  5013. this.repositoryItemCheckEdit6});
  5014. this.gridControl6.Size = new System.Drawing.Size(1325, 450);
  5015. this.gridControl6.TabIndex = 20;
  5016. this.gridControl6.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
  5017. this.gridView6});
  5018. //
  5019. // gridView6
  5020. //
  5021. this.gridView6.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
  5022. this.gridColumn45,
  5023. this.gridColumn46,
  5024. this.gridColumn70,
  5025. this.gridColumn71,
  5026. this.gridColumn72});
  5027. this.gridView6.GridControl = this.gridControl6;
  5028. this.gridView6.Name = "gridView6";
  5029. this.gridView6.OptionsSelection.MultiSelect = true;
  5030. this.gridView6.OptionsSelection.MultiSelectMode = DevExpress.XtraGrid.Views.Grid.GridMultiSelectMode.CheckBoxRowSelect;
  5031. this.gridView6.OptionsView.ColumnAutoWidth = false;
  5032. this.gridView6.OptionsView.ShowGroupPanel = false;
  5033. //
  5034. // gridColumn45
  5035. //
  5036. this.gridColumn45.Caption = "曲线序号";
  5037. this.gridColumn45.FieldName = "Qxxh";
  5038. this.gridColumn45.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Left;
  5039. this.gridColumn45.Name = "gridColumn45";
  5040. this.gridColumn45.OptionsColumn.ReadOnly = true;
  5041. this.gridColumn45.Visible = true;
  5042. this.gridColumn45.VisibleIndex = 1;
  5043. this.gridColumn45.Width = 230;
  5044. //
  5045. // gridColumn46
  5046. //
  5047. this.gridColumn46.Caption = "线路";
  5048. this.gridColumn46.FieldName = "Xianlu";
  5049. this.gridColumn46.Name = "gridColumn46";
  5050. this.gridColumn46.OptionsColumn.FixedWidth = true;
  5051. this.gridColumn46.OptionsColumn.ReadOnly = true;
  5052. this.gridColumn46.Visible = true;
  5053. this.gridColumn46.VisibleIndex = 2;
  5054. this.gridColumn46.Width = 362;
  5055. //
  5056. // gridColumn70
  5057. //
  5058. this.gridColumn70.Caption = "车站";
  5059. this.gridColumn70.FieldName = "Chezhan";
  5060. this.gridColumn70.Name = "gridColumn70";
  5061. this.gridColumn70.OptionsColumn.FixedWidth = true;
  5062. this.gridColumn70.OptionsColumn.ReadOnly = true;
  5063. this.gridColumn70.Visible = true;
  5064. this.gridColumn70.VisibleIndex = 3;
  5065. this.gridColumn70.Width = 437;
  5066. //
  5067. // gridColumn71
  5068. //
  5069. this.gridColumn71.Caption = "道岔编号";
  5070. this.gridColumn71.FieldName = "Dcbh";
  5071. this.gridColumn71.Name = "gridColumn71";
  5072. this.gridColumn71.Visible = true;
  5073. this.gridColumn71.VisibleIndex = 4;
  5074. this.gridColumn71.Width = 531;
  5075. //
  5076. // gridColumn72
  5077. //
  5078. this.gridColumn72.Caption = "id";
  5079. this.gridColumn72.FieldName = "Id";
  5080. this.gridColumn72.Name = "gridColumn72";
  5081. this.gridColumn72.OptionsColumn.ReadOnly = true;
  5082. //
  5083. // repositoryItemCheckEdit6
  5084. //
  5085. this.repositoryItemCheckEdit6.AutoHeight = false;
  5086. this.repositoryItemCheckEdit6.Name = "repositoryItemCheckEdit6";
  5087. //
  5088. // panelControl7
  5089. //
  5090. this.panelControl7.Controls.Add(this.importGLData);
  5091. this.panelControl7.Controls.Add(this.deleteGLdata);
  5092. this.panelControl7.Dock = System.Windows.Forms.DockStyle.Top;
  5093. this.panelControl7.Location = new System.Drawing.Point(0, 0);
  5094. this.panelControl7.Name = "panelControl7";
  5095. this.panelControl7.Size = new System.Drawing.Size(1325, 48);
  5096. this.panelControl7.TabIndex = 19;
  5097. //
  5098. // importGLData
  5099. //
  5100. this.importGLData.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  5101. this.importGLData.Location = new System.Drawing.Point(1131, 15);
  5102. this.importGLData.Name = "importGLData";
  5103. this.importGLData.Size = new System.Drawing.Size(72, 23);
  5104. this.importGLData.TabIndex = 6;
  5105. this.importGLData.Text = "导入";
  5106. this.importGLData.Click += new System.EventHandler(this.importGLData_Click);
  5107. //
  5108. // deleteGLdata
  5109. //
  5110. this.deleteGLdata.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  5111. this.deleteGLdata.Location = new System.Drawing.Point(1217, 15);
  5112. this.deleteGLdata.Name = "deleteGLdata";
  5113. this.deleteGLdata.Size = new System.Drawing.Size(72, 23);
  5114. this.deleteGLdata.TabIndex = 5;
  5115. this.deleteGLdata.Text = " 删除选中";
  5116. this.deleteGLdata.Click += new System.EventHandler(this.deleteGLdata_Click);
  5117. //
  5118. // xtraTabPageQKData
  5119. //
  5120. this.xtraTabPageQKData.Controls.Add(this.gridControl7);
  5121. this.xtraTabPageQKData.Controls.Add(this.panelControl8);
  5122. this.xtraTabPageQKData.Margin = new System.Windows.Forms.Padding(2);
  5123. this.xtraTabPageQKData.Name = "xtraTabPageQKData";
  5124. this.xtraTabPageQKData.Size = new System.Drawing.Size(1325, 498);
  5125. this.xtraTabPageQKData.Text = "缺口数据管理";
  5126. //
  5127. // gridControl7
  5128. //
  5129. this.gridControl7.Dock = System.Windows.Forms.DockStyle.Fill;
  5130. this.gridControl7.Location = new System.Drawing.Point(0, 48);
  5131. this.gridControl7.MainView = this.gridView7;
  5132. this.gridControl7.Name = "gridControl7";
  5133. this.gridControl7.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
  5134. this.repositoryItemCheckEdit7});
  5135. this.gridControl7.Size = new System.Drawing.Size(1325, 450);
  5136. this.gridControl7.TabIndex = 22;
  5137. this.gridControl7.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
  5138. this.gridView7});
  5139. //
  5140. // gridView7
  5141. //
  5142. this.gridView7.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
  5143. this.gridColumn59,
  5144. this.gridColumn60,
  5145. this.gridColumn67,
  5146. this.gridColumn68,
  5147. this.gridColumn73,
  5148. this.gridColumn69});
  5149. this.gridView7.GridControl = this.gridControl7;
  5150. this.gridView7.Name = "gridView7";
  5151. this.gridView7.OptionsSelection.MultiSelect = true;
  5152. this.gridView7.OptionsSelection.MultiSelectMode = DevExpress.XtraGrid.Views.Grid.GridMultiSelectMode.CheckBoxRowSelect;
  5153. this.gridView7.OptionsView.ColumnAutoWidth = false;
  5154. this.gridView7.OptionsView.ShowGroupPanel = false;
  5155. //
  5156. // gridColumn59
  5157. //
  5158. this.gridColumn59.Caption = "曲线序号";
  5159. this.gridColumn59.FieldName = "Qxxh";
  5160. this.gridColumn59.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Left;
  5161. this.gridColumn59.Name = "gridColumn59";
  5162. this.gridColumn59.OptionsColumn.ReadOnly = true;
  5163. this.gridColumn59.Visible = true;
  5164. this.gridColumn59.VisibleIndex = 1;
  5165. this.gridColumn59.Width = 230;
  5166. //
  5167. // gridColumn60
  5168. //
  5169. this.gridColumn60.Caption = "线路";
  5170. this.gridColumn60.FieldName = "Xianlu";
  5171. this.gridColumn60.Name = "gridColumn60";
  5172. this.gridColumn60.OptionsColumn.FixedWidth = true;
  5173. this.gridColumn60.OptionsColumn.ReadOnly = true;
  5174. this.gridColumn60.Visible = true;
  5175. this.gridColumn60.VisibleIndex = 2;
  5176. this.gridColumn60.Width = 362;
  5177. //
  5178. // gridColumn67
  5179. //
  5180. this.gridColumn67.Caption = "车站";
  5181. this.gridColumn67.FieldName = "Chezhan";
  5182. this.gridColumn67.Name = "gridColumn67";
  5183. this.gridColumn67.OptionsColumn.FixedWidth = true;
  5184. this.gridColumn67.OptionsColumn.ReadOnly = true;
  5185. this.gridColumn67.Visible = true;
  5186. this.gridColumn67.VisibleIndex = 3;
  5187. this.gridColumn67.Width = 230;
  5188. //
  5189. // gridColumn68
  5190. //
  5191. this.gridColumn68.Caption = "道岔编号";
  5192. this.gridColumn68.FieldName = "Dcbh";
  5193. this.gridColumn68.Name = "gridColumn68";
  5194. this.gridColumn68.Visible = true;
  5195. this.gridColumn68.VisibleIndex = 4;
  5196. this.gridColumn68.Width = 228;
  5197. //
  5198. // gridColumn73
  5199. //
  5200. this.gridColumn73.Caption = "转辙机";
  5201. this.gridColumn73.FieldName = "Zzj";
  5202. this.gridColumn73.Name = "gridColumn73";
  5203. this.gridColumn73.Visible = true;
  5204. this.gridColumn73.VisibleIndex = 5;
  5205. this.gridColumn73.Width = 511;
  5206. //
  5207. // gridColumn69
  5208. //
  5209. this.gridColumn69.Caption = "id";
  5210. this.gridColumn69.FieldName = "Id";
  5211. this.gridColumn69.Name = "gridColumn69";
  5212. this.gridColumn69.OptionsColumn.ReadOnly = true;
  5213. //
  5214. // repositoryItemCheckEdit7
  5215. //
  5216. this.repositoryItemCheckEdit7.AutoHeight = false;
  5217. this.repositoryItemCheckEdit7.Name = "repositoryItemCheckEdit7";
  5218. //
  5219. // panelControl8
  5220. //
  5221. this.panelControl8.Controls.Add(this.simpleButton1);
  5222. this.panelControl8.Controls.Add(this.deleteQKdata);
  5223. this.panelControl8.Dock = System.Windows.Forms.DockStyle.Top;
  5224. this.panelControl8.Location = new System.Drawing.Point(0, 0);
  5225. this.panelControl8.Name = "panelControl8";
  5226. this.panelControl8.Size = new System.Drawing.Size(1325, 48);
  5227. this.panelControl8.TabIndex = 21;
  5228. //
  5229. // simpleButton1
  5230. //
  5231. this.simpleButton1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  5232. this.simpleButton1.Location = new System.Drawing.Point(1131, 15);
  5233. this.simpleButton1.Name = "simpleButton1";
  5234. this.simpleButton1.Size = new System.Drawing.Size(72, 23);
  5235. this.simpleButton1.TabIndex = 6;
  5236. this.simpleButton1.Text = "导入";
  5237. this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
  5238. //
  5239. // deleteQKdata
  5240. //
  5241. this.deleteQKdata.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  5242. this.deleteQKdata.Location = new System.Drawing.Point(1217, 15);
  5243. this.deleteQKdata.Name = "deleteQKdata";
  5244. this.deleteQKdata.Size = new System.Drawing.Size(72, 23);
  5245. this.deleteQKdata.TabIndex = 5;
  5246. this.deleteQKdata.Text = " 删除选中";
  5247. this.deleteQKdata.Click += new System.EventHandler(this.deleteQKdata_Click);
  5248. //
  5249. // xtraTabPageMTLF
  5250. //
  5251. this.xtraTabPageMTLF.Name = "xtraTabPageMTLF";
  5252. this.xtraTabPageMTLF.PageVisible = false;
  5253. this.xtraTabPageMTLF.Size = new System.Drawing.Size(1325, 498);
  5254. this.xtraTabPageMTLF.Text = "密贴离缝";
  5255. //
  5256. // xtraTabPageZZJH
  5257. //
  5258. this.xtraTabPageZZJH.Name = "xtraTabPageZZJH";
  5259. this.xtraTabPageZZJH.PageVisible = false;
  5260. this.xtraTabPageZZJH.Size = new System.Drawing.Size(1325, 498);
  5261. this.xtraTabPageZZJH.Text = "逐枕几何";
  5262. //
  5263. // xtraTabPageXXXW
  5264. //
  5265. this.xtraTabPageXXXW.Name = "xtraTabPageXXXW";
  5266. this.xtraTabPageXXXW.PageVisible = false;
  5267. this.xtraTabPageXXXW.Size = new System.Drawing.Size(1325, 498);
  5268. this.xtraTabPageXXXW.Text = "线形线位";
  5269. //
  5270. // xtraTabPageGL
  5271. //
  5272. this.xtraTabPageGL.Controls.Add(this.gridControl4);
  5273. this.xtraTabPageGL.Controls.Add(this.panelControl5);
  5274. this.xtraTabPageGL.Margin = new System.Windows.Forms.Padding(2);
  5275. this.xtraTabPageGL.Name = "xtraTabPageGL";
  5276. this.xtraTabPageGL.Size = new System.Drawing.Size(1325, 498);
  5277. this.xtraTabPageGL.Text = "功率分析";
  5278. //
  5279. // gridControl4
  5280. //
  5281. this.gridControl4.Dock = System.Windows.Forms.DockStyle.Fill;
  5282. this.gridControl4.Location = new System.Drawing.Point(0, 48);
  5283. this.gridControl4.MainView = this.gridView4;
  5284. this.gridControl4.Name = "gridControl4";
  5285. this.gridControl4.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
  5286. this.repositoryItemCheckEdit4});
  5287. this.gridControl4.Size = new System.Drawing.Size(1325, 450);
  5288. this.gridControl4.TabIndex = 17;
  5289. this.gridControl4.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
  5290. this.gridView4});
  5291. //
  5292. // gridView4
  5293. //
  5294. this.gridView4.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
  5295. this.gridColumn34,
  5296. this.gridColumn36,
  5297. this.gridColumn47,
  5298. this.gridColumn48,
  5299. this.gridColumn49,
  5300. this.gridColumn50,
  5301. this.gridColumn51,
  5302. this.gridColumn52,
  5303. this.gridColumn53,
  5304. this.gridColumn54,
  5305. this.gridColumn74});
  5306. this.gridView4.GridControl = this.gridControl4;
  5307. this.gridView4.Name = "gridView4";
  5308. this.gridView4.OptionsSelection.MultiSelect = true;
  5309. this.gridView4.OptionsSelection.MultiSelectMode = DevExpress.XtraGrid.Views.Grid.GridMultiSelectMode.CheckBoxRowSelect;
  5310. this.gridView4.OptionsView.ColumnAutoWidth = false;
  5311. this.gridView4.OptionsView.ShowGroupPanel = false;
  5312. //
  5313. // gridColumn34
  5314. //
  5315. this.gridColumn34.Caption = "线路名";
  5316. this.gridColumn34.FieldName = "Xianlu";
  5317. this.gridColumn34.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Left;
  5318. this.gridColumn34.Name = "gridColumn34";
  5319. this.gridColumn34.OptionsColumn.ReadOnly = true;
  5320. this.gridColumn34.Visible = true;
  5321. this.gridColumn34.VisibleIndex = 1;
  5322. this.gridColumn34.Width = 72;
  5323. //
  5324. // gridColumn36
  5325. //
  5326. this.gridColumn36.Caption = "车站";
  5327. this.gridColumn36.FieldName = "Chezhan";
  5328. this.gridColumn36.Name = "gridColumn36";
  5329. this.gridColumn36.OptionsColumn.FixedWidth = true;
  5330. this.gridColumn36.OptionsColumn.ReadOnly = true;
  5331. this.gridColumn36.Visible = true;
  5332. this.gridColumn36.VisibleIndex = 2;
  5333. this.gridColumn36.Width = 87;
  5334. //
  5335. // gridColumn47
  5336. //
  5337. this.gridColumn47.Caption = "开始日期";
  5338. this.gridColumn47.FieldName = "Starttime";
  5339. this.gridColumn47.Name = "gridColumn47";
  5340. this.gridColumn47.OptionsColumn.ReadOnly = true;
  5341. this.gridColumn47.Visible = true;
  5342. this.gridColumn47.VisibleIndex = 3;
  5343. this.gridColumn47.Width = 116;
  5344. //
  5345. // gridColumn48
  5346. //
  5347. this.gridColumn48.Caption = "结束日期";
  5348. this.gridColumn48.FieldName = "Endtime";
  5349. this.gridColumn48.Name = "gridColumn48";
  5350. this.gridColumn48.OptionsColumn.FixedWidth = true;
  5351. this.gridColumn48.OptionsColumn.ReadOnly = true;
  5352. this.gridColumn48.Visible = true;
  5353. this.gridColumn48.VisibleIndex = 4;
  5354. this.gridColumn48.Width = 115;
  5355. //
  5356. // gridColumn49
  5357. //
  5358. this.gridColumn49.Caption = "原始文件名";
  5359. this.gridColumn49.FieldName = "Filename";
  5360. this.gridColumn49.Name = "gridColumn49";
  5361. this.gridColumn49.OptionsColumn.ReadOnly = true;
  5362. this.gridColumn49.Visible = true;
  5363. this.gridColumn49.VisibleIndex = 5;
  5364. this.gridColumn49.Width = 113;
  5365. //
  5366. // gridColumn50
  5367. //
  5368. this.gridColumn50.Caption = "文件大小";
  5369. this.gridColumn50.FieldName = "Filesize";
  5370. this.gridColumn50.Name = "gridColumn50";
  5371. this.gridColumn50.OptionsColumn.FixedWidth = true;
  5372. this.gridColumn50.OptionsColumn.ReadOnly = true;
  5373. this.gridColumn50.Visible = true;
  5374. this.gridColumn50.VisibleIndex = 6;
  5375. this.gridColumn50.Width = 82;
  5376. //
  5377. // gridColumn51
  5378. //
  5379. this.gridColumn51.Caption = "任务状态";
  5380. this.gridColumn51.FieldName = "Taskstatus";
  5381. this.gridColumn51.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Right;
  5382. this.gridColumn51.Name = "gridColumn51";
  5383. this.gridColumn51.OptionsColumn.FixedWidth = true;
  5384. this.gridColumn51.OptionsColumn.ReadOnly = true;
  5385. this.gridColumn51.Visible = true;
  5386. this.gridColumn51.VisibleIndex = 10;
  5387. this.gridColumn51.Width = 113;
  5388. //
  5389. // gridColumn52
  5390. //
  5391. this.gridColumn52.Caption = "文件状态";
  5392. this.gridColumn52.FieldName = "Filestatus";
  5393. this.gridColumn52.Name = "gridColumn52";
  5394. this.gridColumn52.OptionsColumn.FixedWidth = true;
  5395. this.gridColumn52.OptionsColumn.ReadOnly = true;
  5396. this.gridColumn52.Visible = true;
  5397. this.gridColumn52.VisibleIndex = 7;
  5398. this.gridColumn52.Width = 82;
  5399. //
  5400. // gridColumn53
  5401. //
  5402. this.gridColumn53.Caption = "备注";
  5403. this.gridColumn53.FieldName = "Remark";
  5404. this.gridColumn53.Name = "gridColumn53";
  5405. this.gridColumn53.Visible = true;
  5406. this.gridColumn53.VisibleIndex = 8;
  5407. this.gridColumn53.Width = 68;
  5408. //
  5409. // gridColumn54
  5410. //
  5411. this.gridColumn54.Caption = "id";
  5412. this.gridColumn54.FieldName = "Id";
  5413. this.gridColumn54.Name = "gridColumn54";
  5414. this.gridColumn54.OptionsColumn.ReadOnly = true;
  5415. //
  5416. // gridColumn74
  5417. //
  5418. this.gridColumn74.Caption = "文件路径";
  5419. this.gridColumn74.FieldName = "Srlj";
  5420. this.gridColumn74.Name = "gridColumn74";
  5421. this.gridColumn74.Visible = true;
  5422. this.gridColumn74.VisibleIndex = 9;
  5423. this.gridColumn74.Width = 411;
  5424. //
  5425. // repositoryItemCheckEdit4
  5426. //
  5427. this.repositoryItemCheckEdit4.AutoHeight = false;
  5428. this.repositoryItemCheckEdit4.Name = "repositoryItemCheckEdit4";
  5429. //
  5430. // panelControl5
  5431. //
  5432. this.panelControl5.Controls.Add(this.DWGLcheckEdit);
  5433. this.panelControl5.Controls.Add(this.DWGLdelBtn);
  5434. this.panelControl5.Controls.Add(this.DWGLimportfileBtn);
  5435. this.panelControl5.Controls.Add(this.DWGLanalysisBtn);
  5436. this.panelControl5.Dock = System.Windows.Forms.DockStyle.Top;
  5437. this.panelControl5.Location = new System.Drawing.Point(0, 0);
  5438. this.panelControl5.Name = "panelControl5";
  5439. this.panelControl5.Size = new System.Drawing.Size(1325, 48);
  5440. this.panelControl5.TabIndex = 12;
  5441. //
  5442. // DWGLcheckEdit
  5443. //
  5444. this.DWGLcheckEdit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  5445. this.DWGLcheckEdit.Location = new System.Drawing.Point(1084, 16);
  5446. this.DWGLcheckEdit.Margin = new System.Windows.Forms.Padding(2);
  5447. this.DWGLcheckEdit.MenuManager = this.xrDesignRibbonController1;
  5448. this.DWGLcheckEdit.Name = "DWGLcheckEdit";
  5449. this.DWGLcheckEdit.Properties.Caption = "浏览文件夹";
  5450. this.DWGLcheckEdit.Size = new System.Drawing.Size(97, 19);
  5451. this.DWGLcheckEdit.TabIndex = 17;
  5452. this.DWGLcheckEdit.Visible = false;
  5453. //
  5454. // DWGLdelBtn
  5455. //
  5456. this.DWGLdelBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  5457. this.DWGLdelBtn.Location = new System.Drawing.Point(1217, 15);
  5458. this.DWGLdelBtn.Name = "DWGLdelBtn";
  5459. this.DWGLdelBtn.Size = new System.Drawing.Size(72, 23);
  5460. this.DWGLdelBtn.TabIndex = 5;
  5461. this.DWGLdelBtn.Text = " 删除选中";
  5462. this.DWGLdelBtn.Click += new System.EventHandler(this.DWGLdelBtn_Click);
  5463. //
  5464. // DWGLimportfileBtn
  5465. //
  5466. this.DWGLimportfileBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  5467. this.DWGLimportfileBtn.Location = new System.Drawing.Point(993, 15);
  5468. this.DWGLimportfileBtn.Name = "DWGLimportfileBtn";
  5469. this.DWGLimportfileBtn.Size = new System.Drawing.Size(75, 23);
  5470. this.DWGLimportfileBtn.TabIndex = 0;
  5471. this.DWGLimportfileBtn.Text = "导入";
  5472. this.DWGLimportfileBtn.Click += new System.EventHandler(this.DWGLopenfileBtn_Click);
  5473. //
  5474. // DWGLanalysisBtn
  5475. //
  5476. this.DWGLanalysisBtn.Location = new System.Drawing.Point(15, 15);
  5477. this.DWGLanalysisBtn.Name = "DWGLanalysisBtn";
  5478. this.DWGLanalysisBtn.Size = new System.Drawing.Size(100, 23);
  5479. this.DWGLanalysisBtn.TabIndex = 5;
  5480. this.DWGLanalysisBtn.Text = "分析算法";
  5481. this.DWGLanalysisBtn.ToolTip = "未定义";
  5482. this.DWGLanalysisBtn.Click += new System.EventHandler(this.DWGLanalysisBtn_Click);
  5483. //
  5484. // xtraTabPageQK
  5485. //
  5486. this.xtraTabPageQK.Controls.Add(this.gridControl5);
  5487. this.xtraTabPageQK.Controls.Add(this.panelControl6);
  5488. this.xtraTabPageQK.Margin = new System.Windows.Forms.Padding(2);
  5489. this.xtraTabPageQK.Name = "xtraTabPageQK";
  5490. this.xtraTabPageQK.Size = new System.Drawing.Size(1325, 498);
  5491. this.xtraTabPageQK.Text = "缺口分析";
  5492. this.xtraTabPageQK.Paint += new System.Windows.Forms.PaintEventHandler(this.xtraTabPage2_Paint_1);
  5493. //
  5494. // gridControl5
  5495. //
  5496. this.gridControl5.Dock = System.Windows.Forms.DockStyle.Fill;
  5497. this.gridControl5.Location = new System.Drawing.Point(0, 48);
  5498. this.gridControl5.MainView = this.gridView5;
  5499. this.gridControl5.Name = "gridControl5";
  5500. this.gridControl5.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
  5501. this.repositoryItemCheckEdit5});
  5502. this.gridControl5.Size = new System.Drawing.Size(1325, 450);
  5503. this.gridControl5.TabIndex = 18;
  5504. this.gridControl5.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
  5505. this.gridView5});
  5506. //
  5507. // gridView5
  5508. //
  5509. this.gridView5.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
  5510. this.gridColumn55,
  5511. this.gridColumn56,
  5512. this.gridColumn57,
  5513. this.gridColumn58,
  5514. this.gridColumn61,
  5515. this.gridColumn62,
  5516. this.gridColumn63,
  5517. this.gridColumn64,
  5518. this.gridColumn65,
  5519. this.gridColumn66,
  5520. this.gridColumn75});
  5521. this.gridView5.GridControl = this.gridControl5;
  5522. this.gridView5.Name = "gridView5";
  5523. this.gridView5.OptionsSelection.MultiSelect = true;
  5524. this.gridView5.OptionsSelection.MultiSelectMode = DevExpress.XtraGrid.Views.Grid.GridMultiSelectMode.CheckBoxRowSelect;
  5525. this.gridView5.OptionsView.ColumnAutoWidth = false;
  5526. this.gridView5.OptionsView.ShowGroupPanel = false;
  5527. //
  5528. // gridColumn55
  5529. //
  5530. this.gridColumn55.Caption = "线路名";
  5531. this.gridColumn55.FieldName = "Xianlu";
  5532. this.gridColumn55.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Left;
  5533. this.gridColumn55.Name = "gridColumn55";
  5534. this.gridColumn55.OptionsColumn.ReadOnly = true;
  5535. this.gridColumn55.Visible = true;
  5536. this.gridColumn55.VisibleIndex = 1;
  5537. this.gridColumn55.Width = 72;
  5538. //
  5539. // gridColumn56
  5540. //
  5541. this.gridColumn56.Caption = "车站";
  5542. this.gridColumn56.FieldName = "Chezhan";
  5543. this.gridColumn56.Name = "gridColumn56";
  5544. this.gridColumn56.OptionsColumn.FixedWidth = true;
  5545. this.gridColumn56.OptionsColumn.ReadOnly = true;
  5546. this.gridColumn56.Visible = true;
  5547. this.gridColumn56.VisibleIndex = 2;
  5548. this.gridColumn56.Width = 87;
  5549. //
  5550. // gridColumn57
  5551. //
  5552. this.gridColumn57.Caption = "开始日期";
  5553. this.gridColumn57.FieldName = "Starttime";
  5554. this.gridColumn57.Name = "gridColumn57";
  5555. this.gridColumn57.OptionsColumn.ReadOnly = true;
  5556. this.gridColumn57.Visible = true;
  5557. this.gridColumn57.VisibleIndex = 3;
  5558. this.gridColumn57.Width = 116;
  5559. //
  5560. // gridColumn58
  5561. //
  5562. this.gridColumn58.Caption = "结束日期";
  5563. this.gridColumn58.FieldName = "Endtime";
  5564. this.gridColumn58.Name = "gridColumn58";
  5565. this.gridColumn58.OptionsColumn.FixedWidth = true;
  5566. this.gridColumn58.OptionsColumn.ReadOnly = true;
  5567. this.gridColumn58.Visible = true;
  5568. this.gridColumn58.VisibleIndex = 4;
  5569. this.gridColumn58.Width = 115;
  5570. //
  5571. // gridColumn61
  5572. //
  5573. this.gridColumn61.Caption = "原始文件名";
  5574. this.gridColumn61.FieldName = "Filename";
  5575. this.gridColumn61.Name = "gridColumn61";
  5576. this.gridColumn61.OptionsColumn.ReadOnly = true;
  5577. this.gridColumn61.Visible = true;
  5578. this.gridColumn61.VisibleIndex = 5;
  5579. this.gridColumn61.Width = 113;
  5580. //
  5581. // gridColumn62
  5582. //
  5583. this.gridColumn62.Caption = "文件大小";
  5584. this.gridColumn62.FieldName = "Filesize";
  5585. this.gridColumn62.Name = "gridColumn62";
  5586. this.gridColumn62.OptionsColumn.FixedWidth = true;
  5587. this.gridColumn62.OptionsColumn.ReadOnly = true;
  5588. this.gridColumn62.Visible = true;
  5589. this.gridColumn62.VisibleIndex = 6;
  5590. this.gridColumn62.Width = 82;
  5591. //
  5592. // gridColumn63
  5593. //
  5594. this.gridColumn63.Caption = "任务状态";
  5595. this.gridColumn63.FieldName = "Taskstatus";
  5596. this.gridColumn63.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Right;
  5597. this.gridColumn63.Name = "gridColumn63";
  5598. this.gridColumn63.OptionsColumn.FixedWidth = true;
  5599. this.gridColumn63.OptionsColumn.ReadOnly = true;
  5600. this.gridColumn63.Visible = true;
  5601. this.gridColumn63.VisibleIndex = 10;
  5602. this.gridColumn63.Width = 113;
  5603. //
  5604. // gridColumn64
  5605. //
  5606. this.gridColumn64.Caption = "文件状态";
  5607. this.gridColumn64.FieldName = "Filestatus";
  5608. this.gridColumn64.Name = "gridColumn64";
  5609. this.gridColumn64.OptionsColumn.FixedWidth = true;
  5610. this.gridColumn64.OptionsColumn.ReadOnly = true;
  5611. this.gridColumn64.Visible = true;
  5612. this.gridColumn64.VisibleIndex = 7;
  5613. this.gridColumn64.Width = 82;
  5614. //
  5615. // gridColumn65
  5616. //
  5617. this.gridColumn65.Caption = "备注";
  5618. this.gridColumn65.FieldName = "Remark";
  5619. this.gridColumn65.Name = "gridColumn65";
  5620. this.gridColumn65.Visible = true;
  5621. this.gridColumn65.VisibleIndex = 8;
  5622. this.gridColumn65.Width = 68;
  5623. //
  5624. // gridColumn66
  5625. //
  5626. this.gridColumn66.Caption = "id";
  5627. this.gridColumn66.FieldName = "Id";
  5628. this.gridColumn66.Name = "gridColumn66";
  5629. this.gridColumn66.OptionsColumn.ReadOnly = true;
  5630. //
  5631. // gridColumn75
  5632. //
  5633. this.gridColumn75.Caption = "文件路径";
  5634. this.gridColumn75.FieldName = "Srlj";
  5635. this.gridColumn75.Name = "gridColumn75";
  5636. this.gridColumn75.Visible = true;
  5637. this.gridColumn75.VisibleIndex = 9;
  5638. this.gridColumn75.Width = 411;
  5639. //
  5640. // repositoryItemCheckEdit5
  5641. //
  5642. this.repositoryItemCheckEdit5.AutoHeight = false;
  5643. this.repositoryItemCheckEdit5.Name = "repositoryItemCheckEdit5";
  5644. //
  5645. // panelControl6
  5646. //
  5647. this.panelControl6.Controls.Add(this.DWQKcheckEdit);
  5648. this.panelControl6.Controls.Add(this.DWQKdelBtn);
  5649. this.panelControl6.Controls.Add(this.DWQKimportfileBtn);
  5650. this.panelControl6.Controls.Add(this.DWQKanalysisBtn);
  5651. this.panelControl6.Dock = System.Windows.Forms.DockStyle.Top;
  5652. this.panelControl6.Location = new System.Drawing.Point(0, 0);
  5653. this.panelControl6.Name = "panelControl6";
  5654. this.panelControl6.Size = new System.Drawing.Size(1325, 48);
  5655. this.panelControl6.TabIndex = 17;
  5656. //
  5657. // DWQKcheckEdit
  5658. //
  5659. this.DWQKcheckEdit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  5660. this.DWQKcheckEdit.Location = new System.Drawing.Point(1084, 16);
  5661. this.DWQKcheckEdit.Margin = new System.Windows.Forms.Padding(2);
  5662. this.DWQKcheckEdit.MenuManager = this.xrDesignRibbonController1;
  5663. this.DWQKcheckEdit.Name = "DWQKcheckEdit";
  5664. this.DWQKcheckEdit.Properties.Caption = "浏览文件夹";
  5665. this.DWQKcheckEdit.Size = new System.Drawing.Size(99, 19);
  5666. this.DWQKcheckEdit.TabIndex = 18;
  5667. this.DWQKcheckEdit.Visible = false;
  5668. //
  5669. // DWQKdelBtn
  5670. //
  5671. this.DWQKdelBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  5672. this.DWQKdelBtn.Location = new System.Drawing.Point(1217, 15);
  5673. this.DWQKdelBtn.Name = "DWQKdelBtn";
  5674. this.DWQKdelBtn.Size = new System.Drawing.Size(72, 23);
  5675. this.DWQKdelBtn.TabIndex = 5;
  5676. this.DWQKdelBtn.Text = " 删除选中";
  5677. this.DWQKdelBtn.Click += new System.EventHandler(this.DWQKdelBtn_Click);
  5678. //
  5679. // DWQKimportfileBtn
  5680. //
  5681. this.DWQKimportfileBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  5682. this.DWQKimportfileBtn.Location = new System.Drawing.Point(993, 15);
  5683. this.DWQKimportfileBtn.Name = "DWQKimportfileBtn";
  5684. this.DWQKimportfileBtn.Size = new System.Drawing.Size(75, 23);
  5685. this.DWQKimportfileBtn.TabIndex = 0;
  5686. this.DWQKimportfileBtn.Text = "导入";
  5687. this.DWQKimportfileBtn.Click += new System.EventHandler(this.DWQKopenfileBtn_Click);
  5688. //
  5689. // DWQKanalysisBtn
  5690. //
  5691. this.DWQKanalysisBtn.Location = new System.Drawing.Point(15, 15);
  5692. this.DWQKanalysisBtn.Name = "DWQKanalysisBtn";
  5693. this.DWQKanalysisBtn.Size = new System.Drawing.Size(100, 23);
  5694. this.DWQKanalysisBtn.TabIndex = 5;
  5695. this.DWQKanalysisBtn.Text = "分析算法";
  5696. this.DWQKanalysisBtn.ToolTip = "未定义";
  5697. //
  5698. // xtraTabPageDWZS
  5699. //
  5700. this.xtraTabPageDWZS.Margin = new System.Windows.Forms.Padding(2);
  5701. this.xtraTabPageDWZS.Name = "xtraTabPageDWZS";
  5702. this.xtraTabPageDWZS.Size = new System.Drawing.Size(1325, 498);
  5703. this.xtraTabPageDWZS.Text = "电务数据展示";
  5704. //
  5705. // DevFrmMain
  5706. //
  5707. this.AllowFormGlass = DevExpress.Utils.DefaultBoolean.False;
  5708. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  5709. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  5710. this.ClientSize = new System.Drawing.Size(1331, 705);
  5711. this.Controls.Add(this.xtraTabControl1);
  5712. this.Controls.Add(this.ribbonStatusBar);
  5713. this.Controls.Add(this.ribbon);
  5714. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  5715. this.Name = "DevFrmMain";
  5716. this.Ribbon = this.ribbon;
  5717. this.StatusBar = this.ribbonStatusBar;
  5718. this.Text = "分析软件(DC)";
  5719. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.DevFrmMain_FormClosing);
  5720. this.Load += new System.EventHandler(this.DevFrmMain_Load);
  5721. ((System.ComponentModel.ISupportInitialize)(this.xrDesignRibbonController1)).EndInit();
  5722. ((System.ComponentModel.ISupportInitialize)(this.ribbon)).EndInit();
  5723. ((System.ComponentModel.ISupportInitialize)(this.applicationMenu1)).EndInit();
  5724. ((System.ComponentModel.ISupportInitialize)(this.recentlyUsedItemsComboBox1)).EndInit();
  5725. ((System.ComponentModel.ISupportInitialize)(this.designRepositoryItemComboBox1)).EndInit();
  5726. ((System.ComponentModel.ISupportInitialize)(this.repositoryItemProgressBar1)).EndInit();
  5727. ((System.ComponentModel.ISupportInitialize)(this.repositoryItemZoomTrackBar1)).EndInit();
  5728. ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckedComboBoxEdit1)).EndInit();
  5729. ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
  5730. ((System.ComponentModel.ISupportInitialize)(this.xrDesignDockManager1)).EndInit();
  5731. this.panelContainer1.ResumeLayout(false);
  5732. this.panelContainer2.ResumeLayout(false);
  5733. this.fieldListDockPanel1.ResumeLayout(false);
  5734. this.reportExplorerDockPanel1.ResumeLayout(false);
  5735. this.propertyGridDockPanel1.ResumeLayout(false);
  5736. this.toolBoxDockPanel1.ResumeLayout(false);
  5737. this.panelContainer3.ResumeLayout(false);
  5738. this.errorListDockPanel1.ResumeLayout(false);
  5739. this.groupAndSortDockPanel1.ResumeLayout(false);
  5740. ((System.ComponentModel.ISupportInitialize)(this.galleryDropDown1)).EndInit();
  5741. ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
  5742. ((System.ComponentModel.ISupportInitialize)(this.galleryDropDown2)).EndInit();
  5743. ((System.ComponentModel.ISupportInitialize)(this.popupMenu2)).EndInit();
  5744. ((System.ComponentModel.ISupportInitialize)(this.popupMenu3)).EndInit();
  5745. this.xtraTabPageLGL.ResumeLayout(false);
  5746. ((System.ComponentModel.ISupportInitialize)(this.gridControl3)).EndInit();
  5747. ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
  5748. ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).EndInit();
  5749. ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).EndInit();
  5750. this.panelControl4.ResumeLayout(false);
  5751. ((System.ComponentModel.ISupportInitialize)(this.LGLJCCcomboBoxEdit.Properties)).EndInit();
  5752. ((System.ComponentModel.ISupportInitialize)(this.LGLcheckEdit.Properties)).EndInit();
  5753. this.xtraTabPageJH.ResumeLayout(false);
  5754. ((System.ComponentModel.ISupportInitialize)(this.gridControl2)).EndInit();
  5755. ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
  5756. ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).EndInit();
  5757. ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
  5758. this.panelControl1.ResumeLayout(false);
  5759. ((System.ComponentModel.ISupportInitialize)(this.JHFXcheckEdit.Properties)).EndInit();
  5760. ((System.ComponentModel.ISupportInitialize)(this.JHFXJCCcomboBoxEdit.Properties)).EndInit();
  5761. this.xtraTabPageGJ.ResumeLayout(false);
  5762. this.xtraTabPageQX.ResumeLayout(false);
  5763. ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
  5764. ((System.ComponentModel.ISupportInitialize)(this.railwaybureau)).EndInit();
  5765. ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
  5766. ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
  5767. ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
  5768. this.panelControl2.ResumeLayout(false);
  5769. ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
  5770. this.xtraTabControl1.ResumeLayout(false);
  5771. this.xtraTabPageDC.ResumeLayout(false);
  5772. this.xtraTabPageGLData.ResumeLayout(false);
  5773. ((System.ComponentModel.ISupportInitialize)(this.gridControl6)).EndInit();
  5774. ((System.ComponentModel.ISupportInitialize)(this.gridView6)).EndInit();
  5775. ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit6)).EndInit();
  5776. ((System.ComponentModel.ISupportInitialize)(this.panelControl7)).EndInit();
  5777. this.panelControl7.ResumeLayout(false);
  5778. this.xtraTabPageQKData.ResumeLayout(false);
  5779. ((System.ComponentModel.ISupportInitialize)(this.gridControl7)).EndInit();
  5780. ((System.ComponentModel.ISupportInitialize)(this.gridView7)).EndInit();
  5781. ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit7)).EndInit();
  5782. ((System.ComponentModel.ISupportInitialize)(this.panelControl8)).EndInit();
  5783. this.panelControl8.ResumeLayout(false);
  5784. this.xtraTabPageGL.ResumeLayout(false);
  5785. ((System.ComponentModel.ISupportInitialize)(this.gridControl4)).EndInit();
  5786. ((System.ComponentModel.ISupportInitialize)(this.gridView4)).EndInit();
  5787. ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit4)).EndInit();
  5788. ((System.ComponentModel.ISupportInitialize)(this.panelControl5)).EndInit();
  5789. this.panelControl5.ResumeLayout(false);
  5790. ((System.ComponentModel.ISupportInitialize)(this.DWGLcheckEdit.Properties)).EndInit();
  5791. this.xtraTabPageQK.ResumeLayout(false);
  5792. ((System.ComponentModel.ISupportInitialize)(this.gridControl5)).EndInit();
  5793. ((System.ComponentModel.ISupportInitialize)(this.gridView5)).EndInit();
  5794. ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit5)).EndInit();
  5795. ((System.ComponentModel.ISupportInitialize)(this.panelControl6)).EndInit();
  5796. this.panelControl6.ResumeLayout(false);
  5797. ((System.ComponentModel.ISupportInitialize)(this.DWQKcheckEdit.Properties)).EndInit();
  5798. this.ResumeLayout(false);
  5799. this.PerformLayout();
  5800. }
  5801. #endregion
  5802. private DevExpress.XtraBars.Ribbon.RibbonControl ribbon;
  5803. private DevExpress.XtraBars.Ribbon.RibbonPage ribbonPage1;
  5804. private DevExpress.XtraBars.Ribbon.RibbonPageGroup ribbonPageGroup1;
  5805. private DevExpress.XtraBars.Ribbon.RibbonStatusBar ribbonStatusBar;
  5806. private DevExpress.XtraBars.BarButtonItem barButtonImageTile;
  5807. private DevExpress.XtraBars.BarButtonItem barButtonItem2;
  5808. private DevExpress.LookAndFeel.DefaultLookAndFeel defaultLookAndFeel1;
  5809. private DevExpress.XtraBars.SkinRibbonGalleryBarItem skinRibbonGalleryBarItem1;
  5810. private DevExpress.XtraBars.BarButtonItem barButtonItem1;
  5811. private DevExpress.XtraBars.Ribbon.RibbonPageGroup ribbonPageGroup4;
  5812. private DevExpress.XtraBars.Ribbon.RibbonPageGroup ribbonPageGroup5;
  5813. private DevExpress.XtraBars.Ribbon.RibbonPageGroup ribbonPageGroup6;
  5814. private DevExpress.XtraBars.Ribbon.RibbonPageGroup ribbonPageGroup2;
  5815. private DevExpress.XtraBars.BarButtonItem barButtonItem3;
  5816. private DevExpress.XtraBars.BarButtonItem barButtonItem6;
  5817. private DevExpress.XtraBars.BarButtonItem barButtonItem7;
  5818. private DevExpress.XtraBars.BarButtonItem btnQuXianInfo;
  5819. private DevExpress.XtraBars.BarButtonItem btnDaoChainfo;
  5820. private DevExpress.XtraBars.BarButtonItem btnGuanJieinfo;
  5821. private DevExpress.XtraBars.SkinRibbonGalleryBarItem skinRibbonGalleryBarItem2;
  5822. private DevExpress.XtraBars.BarButtonItem barButtonItem9;
  5823. private DevExpress.XtraBars.Ribbon.ApplicationMenu applicationMenu1;
  5824. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem31;
  5825. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem34;
  5826. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem32;
  5827. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem33;
  5828. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem52;
  5829. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem53;
  5830. private DevExpress.XtraBars.Ribbon.GalleryDropDown galleryDropDown1;
  5831. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem1;
  5832. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem2;
  5833. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem3;
  5834. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem4;
  5835. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem5;
  5836. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem6;
  5837. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem7;
  5838. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem8;
  5839. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem9;
  5840. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem10;
  5841. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem11;
  5842. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem12;
  5843. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem13;
  5844. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem14;
  5845. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem15;
  5846. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem16;
  5847. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem17;
  5848. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem18;
  5849. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem19;
  5850. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem20;
  5851. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem21;
  5852. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem22;
  5853. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem23;
  5854. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem24;
  5855. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem25;
  5856. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem26;
  5857. private DevExpress.XtraReports.UserDesigner.CommandColorBarItem commandColorBarItem1;
  5858. private DevExpress.XtraReports.UserDesigner.CommandColorBarItem commandColorBarItem2;
  5859. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem27;
  5860. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem28;
  5861. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem29;
  5862. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem30;
  5863. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem35;
  5864. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem36;
  5865. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem37;
  5866. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem38;
  5867. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem39;
  5868. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem40;
  5869. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem41;
  5870. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem42;
  5871. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem43;
  5872. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem44;
  5873. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem45;
  5874. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem46;
  5875. private DevExpress.XtraBars.BarEditItem barEditItem1;
  5876. private DevExpress.XtraReports.UserDesigner.RecentlyUsedItemsComboBox recentlyUsedItemsComboBox1;
  5877. private DevExpress.XtraBars.BarEditItem barEditItem2;
  5878. private DevExpress.XtraReports.UserDesigner.DesignRepositoryItemComboBox designRepositoryItemComboBox1;
  5879. private DevExpress.XtraReports.UserDesigner.BarDockPanelsListItem barDockPanelsListItem1;
  5880. private DevExpress.XtraReports.UserDesigner.ScriptsCommandBarItem scriptsCommandBarItem1;
  5881. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem47;
  5882. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem48;
  5883. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem49;
  5884. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem50;
  5885. private DevExpress.XtraReports.UserDesigner.CommandBarItem commandBarItem51;
  5886. private DevExpress.XtraReports.UserDesigner.XRDesignBarButtonGroup xrDesignBarButtonGroup1;
  5887. private DevExpress.XtraReports.UserDesigner.XRDesignBarButtonGroup xrDesignBarButtonGroup2;
  5888. private DevExpress.XtraReports.UserDesigner.XRDesignBarButtonGroup xrDesignBarButtonGroup3;
  5889. private DevExpress.XtraReports.UserDesigner.XRDesignBarButtonGroup xrDesignBarButtonGroup4;
  5890. private DevExpress.XtraReports.UserDesigner.XRDesignBarButtonGroup xrDesignBarButtonGroup5;
  5891. private DevExpress.XtraReports.UserDesigner.XRDesignBarButtonGroup xrDesignBarButtonGroup6;
  5892. private DevExpress.XtraReports.UserDesigner.XRDesignBarButtonGroup xrDesignBarButtonGroup7;
  5893. private DevExpress.XtraReports.UserDesigner.XRDesignBarButtonGroup xrDesignBarButtonGroup8;
  5894. private DevExpress.XtraReports.UserDesigner.XRDesignBarButtonGroup xrDesignBarButtonGroup9;
  5895. private DevExpress.XtraPrinting.Preview.PrintPreviewBarItem printPreviewBarItem1;
  5896. private DevExpress.XtraReports.UserDesigner.XRDesignRibbonController xrDesignRibbonController1;
  5897. private DevExpress.XtraPrinting.Preview.PrintPreviewStaticItem printPreviewStaticItem1;
  5898. private DevExpress.XtraBars.BarStaticItem barStaticItem1;
  5899. private DevExpress.XtraPrinting.Preview.ProgressBarEditItem progressBarEditItem1;
  5900. private DevExpress.XtraEditors.Repository.RepositoryItemProgressBar repositoryItemProgressBar1;
  5901. private DevExpress.XtraPrinting.Preview.PrintPreviewBarItem printPreviewBarItem49;
  5902. private DevExpress.XtraBars.BarButtonItem barButtonItem8;
  5903. private DevExpress.XtraPrinting.Preview.PrintPreviewStaticItem printPreviewStaticItem2;
  5904. private DevExpress.XtraPrinting.Preview.ZoomTrackBarEditItem zoomTrackBarEditItem1;
  5905. private DevExpress.XtraEditors.Repository.RepositoryItemZoomTrackBar repositoryItemZoomTrackBar1;
  5906. private DevExpress.XtraReports.UserDesigner.XRDesignDockManager xrDesignDockManager1;
  5907. private DevExpress.XtraBars.Docking.DockPanel panelContainer3;
  5908. private DevExpress.XtraReports.UserDesigner.ErrorListDockPanel errorListDockPanel1;
  5909. private DevExpress.XtraReports.UserDesigner.DesignControlContainer errorListDockPanel1_Container;
  5910. private DevExpress.XtraReports.UserDesigner.GroupAndSortDockPanel groupAndSortDockPanel1;
  5911. private DevExpress.XtraReports.UserDesigner.DesignControlContainer groupAndSortDockPanel1_Container;
  5912. private DevExpress.XtraReports.UserDesigner.ToolBoxDockPanel toolBoxDockPanel1;
  5913. private DevExpress.XtraReports.UserDesigner.DesignControlContainer toolBoxDockPanel1_Container;
  5914. private DevExpress.XtraBars.Docking.DockPanel panelContainer1;
  5915. private DevExpress.XtraBars.Docking.DockPanel panelContainer2;
  5916. private DevExpress.XtraReports.UserDesigner.FieldListDockPanel fieldListDockPanel1;
  5917. private DevExpress.XtraReports.UserDesigner.DesignControlContainer fieldListDockPanel1_Container;
  5918. private DevExpress.XtraReports.UserDesigner.ReportExplorerDockPanel reportExplorerDockPanel1;
  5919. private DevExpress.XtraReports.UserDesigner.DesignControlContainer reportExplorerDockPanel1_Container;
  5920. private DevExpress.XtraReports.UserDesigner.PropertyGridDockPanel propertyGridDockPanel1;
  5921. private DevExpress.XtraReports.UserDesigner.DesignControlContainer propertyGridDockPanel1_Container;
  5922. private DevExpress.XtraPrinting.Preview.PrintPreviewBarItem printPreviewBarItem2;
  5923. private DevExpress.XtraPrinting.Preview.PrintPreviewBarItem printPreviewBarItem3;
  5924. private DevExpress.XtraPrinting.Preview.PrintPreviewBarItem printPreviewBarItem4;
  5925. private DevExpress.XtraPrinting.Preview.PrintPreviewBarItem printPreviewBarItem5;
  5926. private DevExpress.XtraPrinting.Preview.PrintPreviewBarItem printPreviewBarItem6;
  5927. private DevExpress.XtraPrinting.Preview.PrintPreviewBarItem printPreviewBarItem7;
  5928. private DevExpress.XtraPrinting.Preview.PrintPreviewBarItem printPreviewBarItem8;
  5929. private DevExpress.XtraPrinting.Preview.PrintPreviewBarItem printPreviewBarItem9;
  5930. private DevExpress.XtraPrinting.Preview.PrintPreviewBarItem printPreviewBarItem10;
  5931. private DevExpress.XtraPrinting.Preview.PrintPreviewBarItem printPreviewBarItem11;
  5932. private DevExpress.XtraPrinting.Preview.PrintPreviewBarItem printPreviewBarItem12;
  5933. private DevExpress.XtraPrinting.Preview.PrintPreviewBarItem printPreviewBarItem13;
  5934. private DevExpress.XtraPrinting.Preview.PrintPreviewBarItem printPreviewBarItem14;
  5935. private DevExpress.XtraPrinting.Preview.PrintPreviewBarItem printPreviewBarItem15;
  5936. private DevExpress.XtraPrinting.Preview.PrintPreviewBarItem printPreviewBarItem16;
  5937. private DevExpress.XtraPrinting.Preview.PrintPreviewBarItem printPreviewBarItem17;
  5938. private DevExpress.XtraPrinting.Preview.PrintPreviewBarItem printPreviewBarItem18;
  5939. private DevExpress.XtraPrinting.Preview.PrintPreviewBarItem printPreviewBarItem19;
  5940. private DevExpress.XtraPrinting.Preview.PrintPreviewBarItem printPreviewBarItem20;
  5941. private DevExpress.XtraPrinting.Preview.PrintPreviewBarItem printPreviewBarItem21;
  5942. private DevExpress.XtraPrinting.Preview.PrintPreviewBarItem printPreviewBarItem22;
  5943. private DevExpress.XtraPrinting.Preview.PrintPreviewBarItem printPreviewBarItem23;
  5944. private DevExpress.XtraPrinting.Preview.PrintPreviewBarItem printPreviewBarItem24;
  5945. private DevExpress.XtraPrinting.Preview.PrintPreviewBarItem printPreviewBarItem25;
  5946. private DevExpress.XtraPrinting.Preview.PrintPreviewBarItem printPreviewBarItem26;
  5947. private DevExpress.XtraPrinting.Preview.PrintPreviewBarItem printPreviewBarItem27;
  5948. private DevExpress.XtraPrinting.Preview.PrintPreviewBarItem printPreviewBarItem28;
  5949. private DevExpress.XtraPrinting.Preview.PrintPreviewBarItem printPreviewBarItem29;
  5950. private DevExpress.XtraPrinting.Preview.PrintPreviewBarItem printPreviewBarItem30;
  5951. private DevExpress.XtraPrinting.Preview.PrintPreviewBarItem printPreviewBarItem31;
  5952. private DevExpress.XtraPrinting.Preview.PrintPreviewBarItem printPreviewBarItem32;
  5953. private DevExpress.XtraPrinting.Preview.PrintPreviewBarItem printPreviewBarItem33;
  5954. private DevExpress.XtraPrinting.Preview.PrintPreviewBarItem printPreviewBarItem34;
  5955. private DevExpress.XtraPrinting.Preview.PrintPreviewBarItem printPreviewBarItem35;
  5956. private DevExpress.XtraPrinting.Preview.PrintPreviewBarItem printPreviewBarItem36;
  5957. private DevExpress.XtraPrinting.Preview.PrintPreviewBarItem printPreviewBarItem37;
  5958. private DevExpress.XtraPrinting.Preview.PrintPreviewBarItem printPreviewBarItem38;
  5959. private DevExpress.XtraPrinting.Preview.PrintPreviewBarItem printPreviewBarItem39;
  5960. private DevExpress.XtraPrinting.Preview.PrintPreviewBarItem printPreviewBarItem40;
  5961. private DevExpress.XtraPrinting.Preview.PrintPreviewBarItem printPreviewBarItem41;
  5962. private DevExpress.XtraPrinting.Preview.PrintPreviewBarItem printPreviewBarItem42;
  5963. private DevExpress.XtraPrinting.Preview.PrintPreviewBarItem printPreviewBarItem43;
  5964. private DevExpress.XtraPrinting.Preview.PrintPreviewBarItem printPreviewBarItem44;
  5965. private DevExpress.XtraPrinting.Preview.PrintPreviewBarItem printPreviewBarItem45;
  5966. private DevExpress.XtraPrinting.Preview.PrintPreviewBarItem printPreviewBarItem46;
  5967. private DevExpress.XtraPrinting.Preview.PrintPreviewBarItem printPreviewBarItem47;
  5968. private DevExpress.XtraPrinting.Preview.PrintPreviewBarItem printPreviewBarItem48;
  5969. private DevExpress.XtraReports.UserDesigner.XRToolboxPageCategory xrToolboxPageCategory1;
  5970. private DevExpress.XtraReports.UserDesigner.XRDesignMdiController reportDesigner1;
  5971. private DevExpress.XtraBars.BarSubItem barSubItem1;
  5972. private DevExpress.XtraBars.BarSubItem barSubItem2;
  5973. private DevExpress.XtraBars.BarButtonItem quxiandata;
  5974. private DevExpress.XtraBars.BarButtonItem daochadata;
  5975. private DevExpress.XtraBars.BarButtonItem guanjiedata;
  5976. private DevExpress.XtraBars.PopupMenu popupMenu1;
  5977. private DevExpress.XtraEditors.Repository.RepositoryItemCheckedComboBoxEdit repositoryItemCheckedComboBoxEdit1;
  5978. private DevExpress.XtraBars.Ribbon.GalleryDropDown galleryDropDown2;
  5979. private DevExpress.XtraBars.PopupMenu popupMenu2;
  5980. private DevExpress.XtraBars.PopupMenu popupMenu3;
  5981. private DevExpress.XtraBars.BarButtonItem barButtonItem5;
  5982. private DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit repositoryItemCheckEdit1;
  5983. private DevExpress.XtraBars.BarButtonItem barButtonItem11;
  5984. private DevExpress.XtraBars.BarButtonItem barButtonItem13;
  5985. private DevExpress.XtraBars.Ribbon.RibbonPageGroup ribbonPageGroup3;
  5986. private DevExpress.XtraBars.BarButtonItem barButtonItem_DataManager;
  5987. private DevExpress.XtraBars.BarButtonItem barButtonItem14;
  5988. private DevExpress.XtraBars.BarButtonItem barButtonItem16;
  5989. private DevExpress.XtraBars.BarButtonItem barButtonItem15;
  5990. private DevExpress.XtraBars.BarSubItem barSubItem6;
  5991. private DevExpress.XtraBars.BarButtonItem barButtonItem17;
  5992. private DevExpress.XtraBars.BarButtonItem barButtonItem18;
  5993. private DevExpress.XtraBars.BarButtonItem barButtonItem4;
  5994. private DevExpress.XtraBars.BarButtonItem barButtonItem12;
  5995. private DevExpress.XtraBars.BarSubItem barSubItem7;
  5996. private DevExpress.XtraBars.BarButtonItem barButtonItem21;
  5997. private DevExpress.XtraBars.BarButtonItem barButtonItem22;
  5998. private DevExpress.XtraBars.BarButtonItem barButtonItem19;
  5999. private DevExpress.XtraBars.BarButtonItem barButtonItem20;
  6000. private DevExpress.XtraTab.XtraTabControl xtraTabControl1;
  6001. private DevExpress.XtraTab.XtraTabPage xtraTabPageQX;
  6002. private DevExpress.XtraGrid.GridControl gridControl1;
  6003. private DevExpress.XtraGrid.Views.Grid.GridView railwaybureau;
  6004. private DevExpress.XtraGrid.Columns.GridColumn gridColumn1;
  6005. private DevExpress.XtraGrid.Columns.GridColumn gridColumn2;
  6006. private DevExpress.XtraGrid.Columns.GridColumn gridColumn3;
  6007. private DevExpress.XtraGrid.Columns.GridColumn gridColumn4;
  6008. private DevExpress.XtraGrid.Columns.GridColumn gridColumn5;
  6009. private DevExpress.XtraGrid.Columns.GridColumn gridColumn6;
  6010. private DevExpress.XtraGrid.Columns.GridColumn gridColumn7;
  6011. private DevExpress.XtraGrid.Columns.GridColumn gridColumn8;
  6012. private DevExpress.XtraGrid.Columns.GridColumn gridColumn9;
  6013. private DevExpress.XtraGrid.Columns.GridColumn gridColumn10;
  6014. private DevExpress.XtraTab.XtraTabPage xtraTabPageGJ;
  6015. private DevExpress.XtraTab.XtraTabPage xtraTabPageJH;
  6016. private DevExpress.XtraTab.XtraTabPage xtraTabPageLGL;
  6017. private DevExpress.XtraTab.XtraTabPage xtraTabDataManager;
  6018. private DevExpress.XtraGrid.Views.Grid.GridView gridView1;
  6019. private DevExpress.XtraEditors.PanelControl panelControl1;
  6020. private DevExpress.XtraEditors.SimpleButton JHTQBtn;
  6021. private DevExpress.XtraEditors.SimpleButton LGLTQBtn;
  6022. private DevExpress.XtraEditors.SimpleButton LGLFXBtn;
  6023. private DevExpress.XtraEditors.PanelControl panelControl4;
  6024. private components.TZFunc.DCInform dcInform1;
  6025. private DevExpress.XtraGrid.Columns.GridColumn gridColumn11;
  6026. private DevExpress.XtraGrid.Columns.GridColumn gridColumn12;
  6027. private DevExpress.XtraGrid.Columns.GridColumn gridColumn13;
  6028. private DevExpress.XtraGrid.Columns.GridColumn gridColumn14;
  6029. private DevExpress.XtraGrid.Columns.GridColumn gridColumn15;
  6030. private DevExpress.XtraGrid.Columns.GridColumn gridColumn16;
  6031. private DevExpress.XtraGrid.Columns.GridColumn gridColumn17;
  6032. private components.TZFunc.GJInform gjInform1;
  6033. private components.TZFunc.DCInform dcInform2;
  6034. private DevExpress.XtraTab.XtraTabPage xtraTabPageDC;
  6035. private components.TZFunc.GJInform gjInform3;
  6036. private components.TZFunc.GJInform gjInform2;
  6037. private components.TZFunc.DCInform dcInform3;
  6038. private components.TZFunc.GJInform gjInform4;
  6039. private components.TZFunc.DCInform dcInform4;
  6040. private components.TZFunc.GJInform gjInform5;
  6041. private DevExpress.XtraBars.BarButtonItem GDJHbBtnI;
  6042. private DevExpress.XtraBars.BarButtonItem LGLbBtnI;
  6043. private components.TZFunc.DCInform dcInform5;
  6044. private components.TZFunc.GJInform gjInform6;
  6045. private DevExpress.XtraEditors.SimpleButton JHFXopenfileBtn;
  6046. private DevExpress.XtraEditors.SimpleButton LGLOpenfileBtn;
  6047. private DevExpress.XtraGrid.GridControl gridControl2;
  6048. private DevExpress.XtraGrid.Views.Grid.GridView gridView2;
  6049. private DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit repositoryItemCheckEdit3;
  6050. private DevExpress.XtraGrid.Columns.GridColumn gridColumn21;
  6051. private DevExpress.XtraGrid.Columns.GridColumn gridColumn22;
  6052. private DevExpress.XtraGrid.Columns.GridColumn gridColumn23;
  6053. private DevExpress.XtraGrid.Columns.GridColumn gridColumn24;
  6054. private DevExpress.XtraGrid.Columns.GridColumn gridColumn25;
  6055. private DevExpress.XtraGrid.Columns.GridColumn gridColumn26;
  6056. private DevExpress.XtraGrid.Columns.GridColumn gridColumn27;
  6057. private DevExpress.XtraGrid.Columns.GridColumn gridColumn28;
  6058. private DevExpress.XtraGrid.Columns.GridColumn gridColumn29;
  6059. private DevExpress.XtraGrid.Columns.GridColumn gridColumn30;
  6060. private DevExpress.XtraGrid.Columns.GridColumn gridColumn31;
  6061. private DevExpress.XtraGrid.Columns.GridColumn gridColumn32;
  6062. private components.TZFunc.DCInform dcInform6;
  6063. private components.TZFunc.GJInform gjInform7;
  6064. private DevExpress.XtraEditors.CheckEdit JHFXcheckEdit;
  6065. private DevExpress.XtraEditors.CheckEdit LGLcheckEdit;
  6066. private DevExpress.XtraEditors.SimpleButton JHFXjiancecheBtn;
  6067. private DevExpress.XtraEditors.ComboBoxEdit JHFXJCCcomboBoxEdit;
  6068. private DevExpress.XtraEditors.ComboBoxEdit LGLJCCcomboBoxEdit;
  6069. private DevExpress.XtraEditors.SimpleButton LGLjiancecheBtn;
  6070. private DMCtrl dmCtrl2;
  6071. private DevExpress.XtraEditors.SimpleButton JHdelBtn;
  6072. private DevExpress.XtraEditors.SimpleButton JHgengxinBtn;
  6073. private DevExpress.XtraEditors.SimpleButton LGLdelBtn;
  6074. private DevExpress.XtraEditors.SimpleButton LGLgengxinBtn;
  6075. private DevExpress.XtraGrid.Columns.GridColumn gridColumn19;
  6076. private DevExpress.XtraGrid.GridControl gridControl3;
  6077. private DevExpress.XtraGrid.Views.Grid.GridView gridView3;
  6078. private DevExpress.XtraGrid.Columns.GridColumn gridColumn20;
  6079. private DevExpress.XtraGrid.Columns.GridColumn gridColumn33;
  6080. private DevExpress.XtraGrid.Columns.GridColumn gridColumn35;
  6081. private DevExpress.XtraGrid.Columns.GridColumn gridColumn37;
  6082. private DevExpress.XtraGrid.Columns.GridColumn gridColumn38;
  6083. private DevExpress.XtraGrid.Columns.GridColumn gridColumn39;
  6084. private DevExpress.XtraGrid.Columns.GridColumn gridColumn40;
  6085. private DevExpress.XtraGrid.Columns.GridColumn gridColumn41;
  6086. private DevExpress.XtraGrid.Columns.GridColumn gridColumn42;
  6087. private DevExpress.XtraGrid.Columns.GridColumn gridColumn43;
  6088. private DevExpress.XtraGrid.Columns.GridColumn gridColumn44;
  6089. private DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit repositoryItemCheckEdit2;
  6090. private components.TZFunc.DCInform dcInform7;
  6091. private components.TZFunc.GJInform gjInform8;
  6092. private DevExpress.XtraEditors.PanelControl panelControl3;
  6093. private DevExpress.XtraEditors.PanelControl panelControl2;
  6094. private DevExpress.XtraEditors.SimpleButton deleteroebtnqx;
  6095. private DMCtrl dmCtrl1;
  6096. private DevExpress.XtraBars.BarButtonItem barButtonItem10;
  6097. private DevExpress.XtraBars.Ribbon.RibbonPageGroup ribbonPageGroup7;
  6098. private DevExpress.XtraTab.XtraTabPage xtraTabPageMTLF;
  6099. private components.MTLFF.MTLFCtrl mtlfCtrl1;
  6100. private DevExpress.XtraBars.BarButtonItem barButtonItem23;
  6101. private DevExpress.XtraTab.XtraTabPage xtraTabPageZZJH;
  6102. private components.ZZJH.ZZJHCtrl zzjhCtrl1;
  6103. private DevExpress.XtraBars.BarButtonItem barButtonItem24;
  6104. private DevExpress.XtraTab.XtraTabPage xtraTabPageXXXW;
  6105. private components.XXXW.XXXWCtrl xxxwCtrl1;
  6106. private DevExpress.XtraBars.BarButtonItem barButtonItem25;
  6107. private DevExpress.XtraBars.Ribbon.RibbonPage ribbonPage2;
  6108. private DevExpress.XtraBars.Ribbon.RibbonPageGroup ribbonPageGroup8;
  6109. private DevExpress.XtraBars.BarButtonItem barButtonItem26;
  6110. private DevExpress.XtraBars.BarButtonItem barButtonItem27;
  6111. private DevExpress.XtraBars.Ribbon.RibbonPageGroup ribbonPageGroup9;
  6112. private DevExpress.XtraBars.BarButtonItem barButtonItem28;
  6113. private DevExpress.XtraBars.Ribbon.RibbonMiniToolbar ribbonMiniToolbar1;
  6114. private DevExpress.XtraGrid.Columns.GridColumn gridColumn18;
  6115. private DevExpress.XtraEditors.SimpleButton WXSFBtn;
  6116. private components.TZFunc.DCInform dcInform8;
  6117. private components.TZFunc.GJInform gjInform9;
  6118. private DevExpress.XtraBars.BarButtonItem btnJXGJJ;
  6119. private DevExpress.XtraBars.BarButtonItem StartZDHBtn;
  6120. private DevExpress.XtraBars.BarButtonItem EndZDHBtn;
  6121. private DevExpress.XtraBars.Ribbon.RibbonPageGroup ribbonPageGroup10;
  6122. private DevExpress.XtraBars.BarButtonItem GLBtn;
  6123. private DevExpress.XtraBars.BarButtonItem QKBtn;
  6124. private DevExpress.XtraBars.BarButtonItem DWSJBtn;
  6125. private DevExpress.XtraBars.Ribbon.RibbonPageGroup ribbonPageGroup11;
  6126. private DevExpress.XtraTab.XtraTabPage xtraTabPageGL;
  6127. private DevExpress.XtraTab.XtraTabPage xtraTabPageQK;
  6128. private System.Windows.Forms.PageSetupDialog pageSetupDialog1;
  6129. private DevExpress.XtraTab.XtraTabPage xtraTabPageDWZS;
  6130. private DevExpress.XtraEditors.PanelControl panelControl5;
  6131. private DevExpress.XtraEditors.SimpleButton DWGLdelBtn;
  6132. private DevExpress.XtraEditors.SimpleButton DWGLimportfileBtn;
  6133. private DevExpress.XtraEditors.SimpleButton DWGLanalysisBtn;
  6134. private DevExpress.XtraEditors.PanelControl panelControl6;
  6135. private DevExpress.XtraEditors.SimpleButton DWQKdelBtn;
  6136. private DevExpress.XtraEditors.SimpleButton DWQKimportfileBtn;
  6137. private DevExpress.XtraEditors.SimpleButton DWQKanalysisBtn;
  6138. private DevExpress.XtraBars.BarButtonItem gongLvDataSetting;
  6139. private DevExpress.XtraBars.BarButtonItem queKouDataSetting;
  6140. private DevExpress.XtraBars.BarButtonItem barButtonItem29;
  6141. private DevExpress.XtraBars.BarLinkContainerItem barLinkContainerItem1;
  6142. private DevExpress.XtraBars.BarButtonItem barButtonItem30;
  6143. private DevExpress.XtraBars.BarButtonItem barButtonItem31;
  6144. private DevExpress.XtraTab.XtraTabPage xtraTabPageGLData;
  6145. private DevExpress.XtraTab.XtraTabPage xtraTabPageQKData;
  6146. private DevExpress.XtraGrid.GridControl gridControl6;
  6147. private DevExpress.XtraGrid.Views.Grid.GridView gridView6;
  6148. private DevExpress.XtraGrid.Columns.GridColumn gridColumn45;
  6149. private DevExpress.XtraGrid.Columns.GridColumn gridColumn46;
  6150. private DevExpress.XtraGrid.Columns.GridColumn gridColumn70;
  6151. private DevExpress.XtraGrid.Columns.GridColumn gridColumn71;
  6152. private DevExpress.XtraGrid.Columns.GridColumn gridColumn72;
  6153. private DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit repositoryItemCheckEdit6;
  6154. private DevExpress.XtraEditors.PanelControl panelControl7;
  6155. private DevExpress.XtraEditors.SimpleButton deleteGLdata;
  6156. private DevExpress.XtraGrid.GridControl gridControl7;
  6157. private DevExpress.XtraGrid.Views.Grid.GridView gridView7;
  6158. private DevExpress.XtraGrid.Columns.GridColumn gridColumn59;
  6159. private DevExpress.XtraGrid.Columns.GridColumn gridColumn60;
  6160. private DevExpress.XtraGrid.Columns.GridColumn gridColumn67;
  6161. private DevExpress.XtraGrid.Columns.GridColumn gridColumn68;
  6162. private DevExpress.XtraGrid.Columns.GridColumn gridColumn73;
  6163. private DevExpress.XtraGrid.Columns.GridColumn gridColumn69;
  6164. private DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit repositoryItemCheckEdit7;
  6165. private DevExpress.XtraEditors.PanelControl panelControl8;
  6166. private DevExpress.XtraEditors.SimpleButton deleteQKdata;
  6167. private DevExpress.XtraEditors.SimpleButton importGLData;
  6168. private DevExpress.XtraEditors.SimpleButton simpleButton1;
  6169. private DevExpress.XtraEditors.CheckEdit DWGLcheckEdit;
  6170. private DevExpress.XtraEditors.CheckEdit DWQKcheckEdit;
  6171. private DevExpress.XtraBars.Ribbon.RibbonPageGroup ribbonPageGroup12;
  6172. private DevExpress.XtraGrid.GridControl gridControl4;
  6173. private DevExpress.XtraGrid.Views.Grid.GridView gridView4;
  6174. private DevExpress.XtraGrid.Columns.GridColumn gridColumn34;
  6175. private DevExpress.XtraGrid.Columns.GridColumn gridColumn36;
  6176. private DevExpress.XtraGrid.Columns.GridColumn gridColumn47;
  6177. private DevExpress.XtraGrid.Columns.GridColumn gridColumn48;
  6178. private DevExpress.XtraGrid.Columns.GridColumn gridColumn49;
  6179. private DevExpress.XtraGrid.Columns.GridColumn gridColumn50;
  6180. private DevExpress.XtraGrid.Columns.GridColumn gridColumn51;
  6181. private DevExpress.XtraGrid.Columns.GridColumn gridColumn52;
  6182. private DevExpress.XtraGrid.Columns.GridColumn gridColumn53;
  6183. private DevExpress.XtraGrid.Columns.GridColumn gridColumn54;
  6184. private DevExpress.XtraGrid.Columns.GridColumn gridColumn74;
  6185. private DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit repositoryItemCheckEdit4;
  6186. private DevExpress.XtraGrid.GridControl gridControl5;
  6187. private DevExpress.XtraGrid.Views.Grid.GridView gridView5;
  6188. private DevExpress.XtraGrid.Columns.GridColumn gridColumn55;
  6189. private DevExpress.XtraGrid.Columns.GridColumn gridColumn56;
  6190. private DevExpress.XtraGrid.Columns.GridColumn gridColumn57;
  6191. private DevExpress.XtraGrid.Columns.GridColumn gridColumn58;
  6192. private DevExpress.XtraGrid.Columns.GridColumn gridColumn61;
  6193. private DevExpress.XtraGrid.Columns.GridColumn gridColumn62;
  6194. private DevExpress.XtraGrid.Columns.GridColumn gridColumn63;
  6195. private DevExpress.XtraGrid.Columns.GridColumn gridColumn64;
  6196. private DevExpress.XtraGrid.Columns.GridColumn gridColumn65;
  6197. private DevExpress.XtraGrid.Columns.GridColumn gridColumn66;
  6198. private DevExpress.XtraGrid.Columns.GridColumn gridColumn75;
  6199. private DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit repositoryItemCheckEdit5;
  6200. }
  6201. }