Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
This repository doesn't specify license. Please pay attention to the specific project description and its upstream code dependency when using it.
Clone or Download
MainFrm.Designer.cs 239.52 KB
Copy Edit Raw Blame History
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945
namespace WorldGIS
{
partial class MainFrm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainFrm));
this.treeImageList = new System.Windows.Forms.ImageList(this.components);
this.mainMenu = new System.Windows.Forms.MenuStrip();
this.文件ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.OpenWorkSpaceMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.MenuItemCloseWorkSpace = new System.Windows.Forms.ToolStripMenuItem();
this.SaveWorkSpaceMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.MenuItemSaveAsWorkSpace = new System.Windows.Forms.ToolStripMenuItem();
this.SaveAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.另存所有图层ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator17 = new System.Windows.Forms.ToolStripSeparator();
this.连接服务器toolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem();
this.连接数据库ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.连接Oracle数据库toolStripMenuItem6 = new System.Windows.Forms.ToolStripMenuItem();
this.menu_connectLDB = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator10 = new System.Windows.Forms.ToolStripSeparator();
this.AddLayerDataMenu = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem6 = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.AddTerrainMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem15 = new System.Windows.Forms.ToolStripMenuItem();
this.CreateNewDataMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.框选导出图层toolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.日志管理ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.ExitMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.NaviControlMenu = new System.Windows.Forms.ToolStripMenuItem();
this.GridMenue = new System.Windows.Forms.ToolStripMenuItem();
this.StatusMenu = new System.Windows.Forms.ToolStripMenuItem();
this.MainToolBarShowMenu = new System.Windows.Forms.ToolStripMenuItem();
this.NavigationControlMenu = new System.Windows.Forms.ToolStripMenuItem();
this.鹰眼ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.AtmospherMenue = new System.Windows.Forms.ToolStripMenuItem();
this.MarbleSurfaceMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.fullExtentMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.FullScreenMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.地下网格ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.星空ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.编辑ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.前进ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.undoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator9 = new System.Windows.Forms.ToolStripSeparator();
this.添加标注ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.AddPlaceMarkMenu = new System.Windows.Forms.ToolStripMenuItem();
this.AddModelMenu = new System.Windows.Forms.ToolStripMenuItem();
this.AddMultiModeMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.种树ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.添加动态对象ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.喷泉MenuItemAddFountain = new System.Windows.Forms.ToolStripMenuItem();
this.MenuItemAddDynamicMarker = new System.Windows.Forms.ToolStripMenuItem();
this.烟火ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.火苗ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.烟花ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.水柱ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.添加规则几何对象ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.menuItemAddBoxEntity = new System.Windows.Forms.ToolStripMenuItem();
this.menuItemAddSphereEntity = new System.Windows.Forms.ToolStripMenuItem();
this.menuItemAddCylinderEntity = new System.Windows.Forms.ToolStripMenuItem();
this.menuItemAddFrustumEntity = new System.Windows.Forms.ToolStripMenuItem();
this.menuItemAddPipeEntity = new System.Windows.Forms.ToolStripMenuItem();
this.menuItemAddPipeFrustumEntity = new System.Windows.Forms.ToolStripMenuItem();
this.menuItemAddEllipsoidEntity = new System.Windows.Forms.ToolStripMenuItem();
this.menuItemAddEllipCylinderEntity = new System.Windows.Forms.ToolStripMenuItem();
this.menuItemAddEllipFrustumEntity = new System.Windows.Forms.ToolStripMenuItem();
this.menuItemAddEllipPipeEntity = new System.Windows.Forms.ToolStripMenuItem();
this.menuItemAddEllipPipeFrustumEntity = new System.Windows.Forms.ToolStripMenuItem();
this.menuItemAddRangeEllipsoidEntity = new System.Windows.Forms.ToolStripMenuItem();
this.menuItemAddRangeEllipCylinderEntity = new System.Windows.Forms.ToolStripMenuItem();
this.menuItemAddRangeEllipFrustumEntity = new System.Windows.Forms.ToolStripMenuItem();
this.menuItemAddRangeEllipPipeEntity = new System.Windows.Forms.ToolStripMenuItem();
this.menuItemAddRangeEllipPipeFrustumEntity = new System.Windows.Forms.ToolStripMenuItem();
this.MoveModelLayerMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.menuItemElevateLayerModels = new System.Windows.Forms.ToolStripMenuItem();
this.featureLabelMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.框选删除toolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem7 = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem5 = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator21 = new System.Windows.Forms.ToolStripSeparator();
this.menuAddModelBat = new System.Windows.Forms.ToolStripMenuItem();
this.menuLine2PipelineModel = new System.Windows.Forms.ToolStripMenuItem();
this.批量生成管孔ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem4 = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator20 = new System.Windows.Forms.ToolStripSeparator();
this.批量修改颜色ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.批量修改字体ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.批量修改字段值ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.批量修改要素集模型路径toolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem12 = new System.Windows.Forms.ToolStripMenuItem();
this.批量修改高程模式ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem13 = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem11 = new System.Windows.Forms.ToolStripMenuItem();
this.批量修改模型高度ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.工具ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ActionBrowseMenu = new System.Windows.Forms.ToolStripMenuItem();
this.SelObjMenu = new System.Windows.Forms.ToolStripMenuItem();
this.ScaleObjMenu = new System.Windows.Forms.ToolStripMenuItem();
this.RotateObjMenu = new System.Windows.Forms.ToolStripMenuItem();
this.MoveObjMenu = new System.Windows.Forms.ToolStripMenuItem();
this.ElevateMenu = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator15 = new System.Windows.Forms.ToolStripSeparator();
this.AddLineMenu = new System.Windows.Forms.ToolStripMenuItem();
this.DrawPolygonMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.DrawWaterMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.框选删除ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.求解假东假北ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.线切割面ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.面切割线ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.双屏对比ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator22 = new System.Windows.Forms.ToolStripSeparator();
this.oSGBlfpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.FlyAroundCenterMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.FlyToPlaceMenu = new System.Windows.Forms.ToolStripMenuItem();
this.QuickFlyMenu = new System.Windows.Forms.ToolStripMenuItem();
this.MidSpeedFlyMenu = new System.Windows.Forms.ToolStripMenuItem();
this.SlowFlyMenu = new System.Windows.Forms.ToolStripMenuItem();
this.DefineFlyLineMenu = new System.Windows.Forms.ToolStripMenuItem();
this.FlyAroundCenterToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.FlyAroundEyeMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.pauseFlyMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.continueFlyMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.SceneSet = new System.Windows.Forms.ToolStripMenuItem();
this.MenuItemMouseOverEventEnable = new System.Windows.Forms.ToolStripMenuItem();
this.EnableMouseOverHighLightMenu = new System.Windows.Forms.ToolStripMenuItem();
this.MenuItem2DObjMouseOverEnable = new System.Windows.Forms.ToolStripMenuItem();
this.LockSceneMenu = new System.Windows.Forms.ToolStripMenuItem();
this.MenuItemEditSnapObject = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem9 = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator8 = new System.Windows.Forms.ToolStripSeparator();
this.TerrainExtraMenu = new System.Windows.Forms.ToolStripMenuItem();
this.SceneLightSet = new System.Windows.Forms.ToolStripMenuItem();
this.GroundTransSetMenu = new System.Windows.Forms.ToolStripMenuItem();
this.UnderGroundFloorMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.underGroundLockedMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator12 = new System.Windows.Forms.ToolStripSeparator();
this.AntiAntialiasingMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ShaderAtmosphereMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator();
this.ModelWireFrameMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ModelSolidMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ModelTextureMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
this.SelLevelMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.SelLevel1MenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.SelLevel2MenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.SelLevel3MenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.SetSelLevelMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.相机ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.CameraNavigationMenu = new System.Windows.Forms.ToolStripMenuItem();
this.CameraWalkMenu = new System.Windows.Forms.ToolStripMenuItem();
this.CameraUnderGroundMenu = new System.Windows.Forms.ToolStripMenuItem();
this.量算ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.平面距离量算ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.平面面积量算ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.距地面高度量算ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator19 = new System.Windows.Forms.ToolStripSeparator();
this.空间距离量算ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.空间面积量算ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.空间高度量算ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator18 = new System.Windows.Forms.ToolStripSeparator();
this.清除量算ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.AnalysisMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.SpaceVisibilityAnalysisMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ViewshedAnalysisMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ViewEnvelopeAnalysisMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem14 = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
this.横断面分析toolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem();
this.ProfileAnalysisMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.BaselineProfileAnalysisMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
this.DigPitSettingMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.LineDigPitMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.PolygonDigPitMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ClearPitsMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.DigFillAnalysisMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.NoSourceFloodSubmergeMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator11 = new System.Windows.Forms.ToolStripSeparator();
this.RefreshAnalysisMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ClearAnalysisMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.updatePipelineColorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.管线对接设置ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.对接选中管线ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.排管自动对接ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.对接选中图层ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.生成连接管ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.取消选中对接ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.取消整个图层对接ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator13 = new System.Windows.Forms.ToolStripSeparator();
this.tooltripItemFlow = new System.Windows.Forms.ToolStripMenuItem();
this.反转方向ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator14 = new System.Windows.Forms.ToolStripSeparator();
this.添加管件toolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem();
this.选中节点添加模型ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.选中管线缩进接头ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.管线自动缩进toolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem();
this.更改要素的名字toolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem();
this.更改所有管线的颜色ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator16 = new System.Windows.Forms.ToolStripSeparator();
this.查看管线属性ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.管线高级查询ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.显示漏出地面管线ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.管线碰撞分析ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.管线间距分析ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.管线水平距离ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.管线垂直距离ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.数据管理ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.Menu_DataManager_ImportMulti = new System.Windows.Forms.ToolStripMenuItem();
this.Menu_DataManager_ImportMultiByAbsolute = new System.Windows.Forms.ToolStripMenuItem();
this.雨水篦子入库ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.阀门入库ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.工井入库ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.排水入库toolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem8 = new System.Windows.Forms.ToolStripMenuItem();
this.管线入库ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.Menu_DataManager_ImportPipelineByAbsolute = new System.Windows.Forms.ToolStripMenuItem();
this.数据验证ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.新建数据库要素集ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.复制数据库要素集结构ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.复制数据库要素集ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.合并数据库要素集ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.备份数据库ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
this.shpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.lgdToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.更新图层字段值ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.检查图层ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.检查管线节点ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
this.generateTopoDataMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ConnexityAnalysisMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.CloseValvesAnalysisMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.TraceUpMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.TraceDownMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ClearUpDownTraceMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ClearCloseValvesAnalysisMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.清除连通分析结果ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.演示ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.DynamicCarMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.CopterMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.MissileMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.addRouteObjectMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.MenuItemShowSingleModel = new System.Windows.Forms.ToolStripMenuItem();
this.粒子系统ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.对象闪烁ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.线增长动画ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.选中发光ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.lGD数据源管理ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.关于ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.AboutUsMenu = new System.Windows.Forms.ToolStripMenuItem();
this.帮助ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.panelFindLocate = new System.Windows.Forms.Panel();
this.treeContexMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
this.Delete = new System.Windows.Forms.ToolStripMenuItem();
this.Rename = new System.Windows.Forms.ToolStripMenuItem();
this.atrributeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem10 = new System.Windows.Forms.ToolStripMenuItem();
this.FlyAlongWithLineMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.RotateAroundObjectMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ConvertToWaterMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ShowSingleModelTreeMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.attributeMappingToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.闪烁发光ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.myPlaceContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
this.RefreshMyplaceListMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.RemoveAllFeature = new System.Windows.Forms.ToolStripMenuItem();
this.MyPlaceSelectableMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.MyplaceEditableMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.SaveMyPlaceAs = new System.Windows.Forms.ToolStripMenuItem();
this.MyPlaceFeatureAddLayerMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.MyPlaceLayerOpaqueMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.MyPlaceVisibleDistMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.MyPlaceVisiblePixelSizeMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.layerNodeContexMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
this.RefreshLayerFeatureListMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.RemoveLayer = new System.Windows.Forms.ToolStripMenuItem();
this.移除所有要素toolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem();
this.MoveUp = new System.Windows.Forms.ToolStripMenuItem();
this.MoveDown = new System.Windows.Forms.ToolStripMenuItem();
this.LayerSelectableMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.LayerEditableMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.SaveLayerMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.SaveAsLayerMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.FeatureAddLayerMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.LayerOpaqueMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.MenuItemLayerVisibleAlt = new System.Windows.Forms.ToolStripMenuItem();
this.MenuItemObjectVisibleDist = new System.Windows.Forms.ToolStripMenuItem();
this.MenuItemVisiblePixelSize = new System.Windows.Forms.ToolStripMenuItem();
this.打开属性表ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.框选打开属性表toolStripMenuItem6 = new System.Windows.Forms.ToolStripMenuItem();
this.字段编辑ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.改变图层风格ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.属性ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.管线导出CADToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.面转为水面ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.timerWaterPipe = new System.Windows.Forms.Timer(this.components);
this.styleManager1 = new DevComponents.DotNetBar.StyleManager();
this.dotNetBarManager1 = new DevComponents.DotNetBar.DotNetBarManager(this.components);
this.dockSite4 = new DevComponents.DotNetBar.DockSite();
this.dockSite1 = new DevComponents.DotNetBar.DockSite();
this.dockSite2 = new DevComponents.DotNetBar.DockSite();
this.dockSite8 = new DevComponents.DotNetBar.DockSite();
this.dockSite5 = new DevComponents.DotNetBar.DockSite();
this.dockSite6 = new DevComponents.DotNetBar.DockSite();
this.dockSite7 = new DevComponents.DotNetBar.DockSite();
this.dockSite3 = new DevComponents.DotNetBar.DockSite();
this.rMouseUpContextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
this.rmuPauseFlyMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.rmuContinueFlyMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.rmuStopFlyMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.rmuRotateCenterFlyMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.RulerDistanceItem = new System.Windows.Forms.ToolStripMenuItem();
this.ChooseFeatureItem = new System.Windows.Forms.ToolStripMenuItem();
this.MoveFeatureItem = new System.Windows.Forms.ToolStripMenuItem();
this.rmuFullScreenMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.rmuCameraNavigation = new System.Windows.Forms.ToolStripMenuItem();
this.属性ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.框选导出图层ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
this.toolStripStatusLabelCurrentAction = new System.Windows.Forms.ToolStripStatusLabel();
this.toolStripStatusLabelDeskAddLayer = new System.Windows.Forms.ToolStripStatusLabel();
this.panelGlobeControl = new System.Windows.Forms.Panel();
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
this.panelFind = new System.Windows.Forms.Panel();
this.panel2 = new System.Windows.Forms.Panel();
this.treeFind = new DevComponents.AdvTree.AdvTree();
this.elementStyle4 = new DevComponents.DotNetBar.ElementStyle();
this.elementStyle7 = new DevComponents.DotNetBar.ElementStyle();
this.elementStyle3 = new DevComponents.DotNetBar.ElementStyle();
this.panel1 = new System.Windows.Forms.Panel();
this.comboBoxCondition = new System.Windows.Forms.ComboBox();
this.placeNameEBox = new System.Windows.Forms.TextBox();
this.label4 = new System.Windows.Forms.Label();
this.goFindButton = new System.Windows.Forms.Button();
this.label3 = new System.Windows.Forms.Label();
this.panelClearSave = new System.Windows.Forms.Panel();
this.buttonSaveFind = new System.Windows.Forms.Button();
this.buttonClearFind = new System.Windows.Forms.Button();
this.sideBar1 = new DevComponents.DotNetBar.SideBar();
this.layerTree = new DevComponents.AdvTree.AdvTree();
this.node1 = new DevComponents.AdvTree.Node();
this.elementStyle2 = new DevComponents.DotNetBar.ElementStyle();
this.elementStyle6 = new DevComponents.DotNetBar.ElementStyle();
this.elementStyle1 = new DevComponents.DotNetBar.ElementStyle();
this.elementStyle5 = new DevComponents.DotNetBar.ElementStyle();
this.sideBarPanelItem1 = new DevComponents.DotNetBar.SideBarPanelItem();
this.controlContainerItem1 = new DevComponents.DotNetBar.ControlContainerItem();
this.sideBarPanelItem2 = new DevComponents.DotNetBar.SideBarPanelItem();
this.controlContainerItem2 = new DevComponents.DotNetBar.ControlContainerItem();
this.expandableSplitter1 = new DevComponents.DotNetBar.ExpandableSplitter();
this.timerFeatureFaGuang = new System.Windows.Forms.Timer(this.components);
this.timerAnimation = new System.Windows.Forms.Timer(this.components);
this.treeFindMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
this.SaveasToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.delFeatureToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.delAllFeatureToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.lfpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.mainMenu.SuspendLayout();
this.treeContexMenu.SuspendLayout();
this.myPlaceContextMenu.SuspendLayout();
this.layerNodeContexMenu.SuspendLayout();
this.rMouseUpContextMenuStrip.SuspendLayout();
this.statusStrip1.SuspendLayout();
this.panelGlobeControl.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
this.splitContainer1.SuspendLayout();
this.panelFind.SuspendLayout();
this.panel2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.treeFind)).BeginInit();
this.panel1.SuspendLayout();
this.panelClearSave.SuspendLayout();
this.sideBar1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.layerTree)).BeginInit();
this.treeFindMenuStrip.SuspendLayout();
this.SuspendLayout();
//
// treeImageList
//
this.treeImageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("treeImageList.ImageStream")));
this.treeImageList.TransparentColor = System.Drawing.Color.Transparent;
this.treeImageList.Images.SetKeyName(0, "layers_16.png");
this.treeImageList.Images.SetKeyName(1, "closedfolder.png");
this.treeImageList.Images.SetKeyName(2, "openfolder.png");
this.treeImageList.Images.SetKeyName(3, "streamed_layer.png");
this.treeImageList.Images.SetKeyName(4, "white_linestring.png");
this.treeImageList.Images.SetKeyName(5, "white_polygon.png");
this.treeImageList.Images.SetKeyName(6, "white_3d.png");
this.treeImageList.Images.SetKeyName(7, "overlay.png");
this.treeImageList.Images.SetKeyName(8, "fountain.png");
this.treeImageList.Images.SetKeyName(9, "progressAnimation.gif");
this.treeImageList.Images.SetKeyName(10, "route.png");
//
// mainMenu
//
this.mainMenu.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(229)))), ((int)(((byte)(234)))), ((int)(((byte)(245)))));
this.mainMenu.ImageScalingSize = new System.Drawing.Size(20, 20);
this.mainMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.文件ToolStripMenuItem,
this.NaviControlMenu,
this.编辑ToolStripMenuItem,
this.工具ToolStripMenuItem,
this.FlyAroundCenterMenuItem,
this.SceneSet,
this.相机ToolStripMenuItem,
this.量算ToolStripMenuItem,
this.AnalysisMenuItem,
this.updatePipelineColorToolStripMenuItem,
this.数据管理ToolStripMenuItem,
this.toolStripMenuItem2,
this.演示ToolStripMenuItem,
this.关于ToolStripMenuItem,
this.lfpToolStripMenuItem});
this.mainMenu.Location = new System.Drawing.Point(0, 0);
this.mainMenu.Name = "mainMenu";
this.mainMenu.Padding = new System.Windows.Forms.Padding(8, 2, 0, 2);
this.mainMenu.Size = new System.Drawing.Size(1124, 28);
this.mainMenu.TabIndex = 0;
this.mainMenu.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.mainMenu_ItemClicked);
//
// 文件ToolStripMenuItem
//
this.文件ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.OpenWorkSpaceMenuItem,
this.MenuItemCloseWorkSpace,
this.SaveWorkSpaceMenuItem,
this.MenuItemSaveAsWorkSpace,
this.SaveAllToolStripMenuItem,
this.另存所有图层ToolStripMenuItem,
this.toolStripSeparator17,
this.连接服务器toolStripMenuItem3,
this.连接数据库ToolStripMenuItem,
this.连接Oracle数据库toolStripMenuItem6,
this.menu_connectLDB,
this.toolStripSeparator10,
this.AddLayerDataMenu,
this.toolStripMenuItem6,
this.toolStripMenuItem1,
this.AddTerrainMenuItem,
this.toolStripMenuItem15,
this.CreateNewDataMenuItem,
this.框选导出图层toolStripMenuItem3,
this.toolStripSeparator1,
this.日志管理ToolStripMenuItem1,
this.ExitMenuItem});
this.文件ToolStripMenuItem.Name = "文件ToolStripMenuItem";
this.文件ToolStripMenuItem.Size = new System.Drawing.Size(51, 24);
this.文件ToolStripMenuItem.Text = "文件";
//
// OpenWorkSpaceMenuItem
//
this.OpenWorkSpaceMenuItem.Name = "OpenWorkSpaceMenuItem";
this.OpenWorkSpaceMenuItem.Size = new System.Drawing.Size(229, 26);
this.OpenWorkSpaceMenuItem.Text = "打开工程";
this.OpenWorkSpaceMenuItem.Click += new System.EventHandler(this.OpenWorkSpaceMenuItem_Click);
//
// MenuItemCloseWorkSpace
//
this.MenuItemCloseWorkSpace.Name = "MenuItemCloseWorkSpace";
this.MenuItemCloseWorkSpace.Size = new System.Drawing.Size(229, 26);
this.MenuItemCloseWorkSpace.Text = "关闭工程";
this.MenuItemCloseWorkSpace.Click += new System.EventHandler(this.MenuItemCloseWorkSpace_Click);
//
// SaveWorkSpaceMenuItem
//
this.SaveWorkSpaceMenuItem.Name = "SaveWorkSpaceMenuItem";
this.SaveWorkSpaceMenuItem.Size = new System.Drawing.Size(229, 26);
this.SaveWorkSpaceMenuItem.Text = "保存工程";
this.SaveWorkSpaceMenuItem.Click += new System.EventHandler(this.SaveWorkSpaceMenuItem_Click);
//
// MenuItemSaveAsWorkSpace
//
this.MenuItemSaveAsWorkSpace.Name = "MenuItemSaveAsWorkSpace";
this.MenuItemSaveAsWorkSpace.Size = new System.Drawing.Size(229, 26);
this.MenuItemSaveAsWorkSpace.Text = "另存工程";
this.MenuItemSaveAsWorkSpace.Click += new System.EventHandler(this.MenuItemSaveAsWorkSpace_Click);
//
// SaveAllToolStripMenuItem
//
this.SaveAllToolStripMenuItem.Name = "SaveAllToolStripMenuItem";
this.SaveAllToolStripMenuItem.Size = new System.Drawing.Size(229, 26);
this.SaveAllToolStripMenuItem.Text = "保存所有图层";
this.SaveAllToolStripMenuItem.Click += new System.EventHandler(this.SaveAllToolStripMenuItem_Click);
//
// 另存所有图层ToolStripMenuItem
//
this.另存所有图层ToolStripMenuItem.Name = "另存所有图层ToolStripMenuItem";
this.另存所有图层ToolStripMenuItem.Size = new System.Drawing.Size(229, 26);
this.另存所有图层ToolStripMenuItem.Text = "另存所有图层";
this.另存所有图层ToolStripMenuItem.Click += new System.EventHandler(this.另存所有图层ToolStripMenuItem_Click);
//
// toolStripSeparator17
//
this.toolStripSeparator17.Name = "toolStripSeparator17";
this.toolStripSeparator17.Size = new System.Drawing.Size(226, 6);
//
// 连接服务器toolStripMenuItem3
//
this.连接服务器toolStripMenuItem3.Name = "连接服务器toolStripMenuItem3";
this.连接服务器toolStripMenuItem3.Size = new System.Drawing.Size(229, 26);
this.连接服务器toolStripMenuItem3.Text = "连接服务器";
this.连接服务器toolStripMenuItem3.Click += new System.EventHandler(this.连接服务器toolStripMenuItem3_Click);
//
// 连接数据库ToolStripMenuItem
//
this.连接数据库ToolStripMenuItem.Name = "连接数据库ToolStripMenuItem";
this.连接数据库ToolStripMenuItem.Size = new System.Drawing.Size(229, 26);
this.连接数据库ToolStripMenuItem.Text = "连接SqlServer数据库";
this.连接数据库ToolStripMenuItem.Click += new System.EventHandler(this.连接数据库ToolStripMenuItem_Click);
//
// 连接Oracle数据库toolStripMenuItem6
//
this.连接Oracle数据库toolStripMenuItem6.Name = "连接Oracle数据库toolStripMenuItem6";
this.连接Oracle数据库toolStripMenuItem6.Size = new System.Drawing.Size(229, 26);
this.连接Oracle数据库toolStripMenuItem6.Text = "连接Oracle数据库";
this.连接Oracle数据库toolStripMenuItem6.Click += new System.EventHandler(this.连接Oracle数据库toolStripMenuItem6_Click);
//
// menu_connectLDB
//
this.menu_connectLDB.Name = "menu_connectLDB";
this.menu_connectLDB.Size = new System.Drawing.Size(229, 26);
this.menu_connectLDB.Text = "连接LDB数据库";
this.menu_connectLDB.Click += new System.EventHandler(this.menu_connectLDB_Click);
//
// toolStripSeparator10
//
this.toolStripSeparator10.Name = "toolStripSeparator10";
this.toolStripSeparator10.Size = new System.Drawing.Size(226, 6);
//
// AddLayerDataMenu
//
this.AddLayerDataMenu.Name = "AddLayerDataMenu";
this.AddLayerDataMenu.Size = new System.Drawing.Size(229, 26);
this.AddLayerDataMenu.Text = "添加数据";
this.AddLayerDataMenu.Click += new System.EventHandler(this.AddLayerDataMenu_Click);
//
// toolStripMenuItem6
//
this.toolStripMenuItem6.Name = "toolStripMenuItem6";
this.toolStripMenuItem6.Size = new System.Drawing.Size(229, 26);
this.toolStripMenuItem6.Text = "添加CAD数据";
this.toolStripMenuItem6.Click += new System.EventHandler(this.toolStripMenuItem6_Click);
//
// toolStripMenuItem1
//
this.toolStripMenuItem1.Name = "toolStripMenuItem1";
this.toolStripMenuItem1.Size = new System.Drawing.Size(229, 26);
this.toolStripMenuItem1.Text = "添加数据库图层";
this.toolStripMenuItem1.Click += new System.EventHandler(this.toolStripMenuItem1_Click);
//
// AddTerrainMenuItem
//
this.AddTerrainMenuItem.Name = "AddTerrainMenuItem";
this.AddTerrainMenuItem.Size = new System.Drawing.Size(229, 26);
this.AddTerrainMenuItem.Text = "添加地形";
this.AddTerrainMenuItem.Click += new System.EventHandler(this.AddTerrainMenuItem_Click);
//
// toolStripMenuItem15
//
this.toolStripMenuItem15.Name = "toolStripMenuItem15";
this.toolStripMenuItem15.Size = new System.Drawing.Size(229, 26);
this.toolStripMenuItem15.Text = "添加动画";
this.toolStripMenuItem15.Click += new System.EventHandler(this.toolStripMenuItem15_Click);
//
// CreateNewDataMenuItem
//
this.CreateNewDataMenuItem.Name = "CreateNewDataMenuItem";
this.CreateNewDataMenuItem.Size = new System.Drawing.Size(229, 26);
this.CreateNewDataMenuItem.Text = "新建图层";
this.CreateNewDataMenuItem.Click += new System.EventHandler(this.CreateNewDataMenuItem_Click);
//
// 框选导出图层toolStripMenuItem3
//
this.框选导出图层toolStripMenuItem3.Name = "框选导出图层toolStripMenuItem3";
this.框选导出图层toolStripMenuItem3.Size = new System.Drawing.Size(229, 26);
this.框选导出图层toolStripMenuItem3.Text = "框选导出图层";
this.框选导出图层toolStripMenuItem3.Click += new System.EventHandler(this.框选导出图层toolStripMenuItem3_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(226, 6);
//
// 日志管理ToolStripMenuItem1
//
this.日志管理ToolStripMenuItem1.Name = "日志管理ToolStripMenuItem1";
this.日志管理ToolStripMenuItem1.Size = new System.Drawing.Size(229, 26);
this.日志管理ToolStripMenuItem1.Text = "日志管理";
this.日志管理ToolStripMenuItem1.Visible = false;
this.日志管理ToolStripMenuItem1.Click += new System.EventHandler(this.日志管理ToolStripMenuItem_Click);
//
// ExitMenuItem
//
this.ExitMenuItem.Name = "ExitMenuItem";
this.ExitMenuItem.Size = new System.Drawing.Size(229, 26);
this.ExitMenuItem.Text = "退出";
this.ExitMenuItem.Click += new System.EventHandler(this.ExitMenuItem_Click);
//
// NaviControlMenu
//
this.NaviControlMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.GridMenue,
this.StatusMenu,
this.MainToolBarShowMenu,
this.NavigationControlMenu,
this.鹰眼ToolStripMenuItem,
this.AtmospherMenue,
this.MarbleSurfaceMenuItem,
this.fullExtentMenuItem,
this.FullScreenMenuItem,
this.地下网格ToolStripMenuItem,
this.ToolStripMenuItem,
this.ToolStripMenuItem,
this.ToolStripMenuItem,
this.星空ToolStripMenuItem});
this.NaviControlMenu.Name = "NaviControlMenu";
this.NaviControlMenu.Size = new System.Drawing.Size(51, 24);
this.NaviControlMenu.Text = "视图";
//
// GridMenue
//
this.GridMenue.Name = "GridMenue";
this.GridMenue.Size = new System.Drawing.Size(159, 26);
this.GridMenue.Text = "经纬网";
this.GridMenue.Click += new System.EventHandler(this.GridMenue_Click);
//
// StatusMenu
//
this.StatusMenu.Name = "StatusMenu";
this.StatusMenu.Size = new System.Drawing.Size(159, 26);
this.StatusMenu.Text = "状态条";
this.StatusMenu.Click += new System.EventHandler(this.StatusMenu_Click);
//
// MainToolBarShowMenu
//
this.MainToolBarShowMenu.Name = "MainToolBarShowMenu";
this.MainToolBarShowMenu.Size = new System.Drawing.Size(159, 26);
this.MainToolBarShowMenu.Text = "工具条";
this.MainToolBarShowMenu.Click += new System.EventHandler(this.MainToolBarShowMenu_Click);
//
// NavigationControlMenu
//
this.NavigationControlMenu.Name = "NavigationControlMenu";
this.NavigationControlMenu.Size = new System.Drawing.Size(159, 26);
this.NavigationControlMenu.Text = "控制面板";
this.NavigationControlMenu.Click += new System.EventHandler(this.NavigationControlMenu_Click);
//
// 鹰眼ToolStripMenuItem
//
this.鹰眼ToolStripMenuItem.Name = "鹰眼ToolStripMenuItem";
this.鹰眼ToolStripMenuItem.Size = new System.Drawing.Size(159, 26);
this.鹰眼ToolStripMenuItem.Text = "鹰眼";
this.鹰眼ToolStripMenuItem.Click += new System.EventHandler(this.鹰眼ToolStripMenuItem_Click);
//
// AtmospherMenue
//
this.AtmospherMenue.Name = "AtmospherMenue";
this.AtmospherMenue.Size = new System.Drawing.Size(159, 26);
this.AtmospherMenue.Text = "大气层";
this.AtmospherMenue.Click += new System.EventHandler(this.AtmospherMenue_Click);
//
// MarbleSurfaceMenuItem
//
this.MarbleSurfaceMenuItem.Name = "MarbleSurfaceMenuItem";
this.MarbleSurfaceMenuItem.Size = new System.Drawing.Size(159, 26);
this.MarbleSurfaceMenuItem.Text = "大理石表面";
this.MarbleSurfaceMenuItem.Click += new System.EventHandler(this.MarbleSurfaceMenuItem_Click);
//
// fullExtentMenuItem
//
this.fullExtentMenuItem.Name = "fullExtentMenuItem";
this.fullExtentMenuItem.Size = new System.Drawing.Size(159, 26);
this.fullExtentMenuItem.Text = "显示全球";
this.fullExtentMenuItem.Click += new System.EventHandler(this.fullExtentMenuItem_Click);
//
// FullScreenMenuItem
//
this.FullScreenMenuItem.Name = "FullScreenMenuItem";
this.FullScreenMenuItem.Size = new System.Drawing.Size(159, 26);
this.FullScreenMenuItem.Text = "全屏显示";
this.FullScreenMenuItem.Click += new System.EventHandler(this.FullScreenMenuItem_Click);
//
// 地下网格ToolStripMenuItem
//
this.地下网格ToolStripMenuItem.Name = "地下网格ToolStripMenuItem";
this.地下网格ToolStripMenuItem.Size = new System.Drawing.Size(159, 26);
this.地下网格ToolStripMenuItem.Text = "地下网格";
this.地下网格ToolStripMenuItem.Click += new System.EventHandler(this.地下网格ToolStripMenuItem_Click);
//
// 雨ToolStripMenuItem
//
this.ToolStripMenuItem.Name = "雨ToolStripMenuItem";
this.ToolStripMenuItem.Size = new System.Drawing.Size(159, 26);
this.ToolStripMenuItem.Text = "雨";
this.ToolStripMenuItem.Click += new System.EventHandler(this.ToolStripMenuItem_Click);
//
// 雪ToolStripMenuItem
//
this.ToolStripMenuItem.Name = "雪ToolStripMenuItem";
this.ToolStripMenuItem.Size = new System.Drawing.Size(159, 26);
this.ToolStripMenuItem.Text = "雪";
this.ToolStripMenuItem.Click += new System.EventHandler(this.ToolStripMenuItem_Click);
//
// 云ToolStripMenuItem
//
this.ToolStripMenuItem.Name = "云ToolStripMenuItem";
this.ToolStripMenuItem.Size = new System.Drawing.Size(159, 26);
this.ToolStripMenuItem.Text = "云";
this.ToolStripMenuItem.Click += new System.EventHandler(this.ToolStripMenuItem_Click);
//
// 星空ToolStripMenuItem
//
this.星空ToolStripMenuItem.Name = "星空ToolStripMenuItem";
this.星空ToolStripMenuItem.Size = new System.Drawing.Size(159, 26);
this.星空ToolStripMenuItem.Text = "星空";
this.星空ToolStripMenuItem.Click += new System.EventHandler(this.海水ToolStripMenuItem_Click);
//
// 编辑ToolStripMenuItem
//
this.编辑ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.前进ToolStripMenuItem,
this.undoToolStripMenuItem,
this.toolStripSeparator9,
this.添加标注ToolStripMenuItem,
this.添加动态对象ToolStripMenuItem,
this.添加规则几何对象ToolStripMenuItem,
this.MoveModelLayerMenuItem,
this.menuItemElevateLayerModels,
this.featureLabelMenuItem,
this.框选删除toolStripMenuItem3,
this.toolStripMenuItem7,
this.toolStripMenuItem3,
this.toolStripMenuItem5,
this.toolStripSeparator21,
this.menuAddModelBat,
this.menuLine2PipelineModel,
this.批量生成管孔ToolStripMenuItem,
this.toolStripMenuItem4,
this.toolStripSeparator20,
this.批量修改颜色ToolStripMenuItem,
this.批量修改字体ToolStripMenuItem,
this.批量修改字段值ToolStripMenuItem,
this.批量修改要素集模型路径toolStripMenuItem,
this.toolStripMenuItem12,
this.批量修改高程模式ToolStripMenuItem,
this.toolStripMenuItem13,
this.toolStripMenuItem11,
this.批量修改模型高度ToolStripMenuItem});
this.编辑ToolStripMenuItem.Name = "编辑ToolStripMenuItem";
this.编辑ToolStripMenuItem.Size = new System.Drawing.Size(51, 24);
this.编辑ToolStripMenuItem.Text = "编辑";
//
// 前进ToolStripMenuItem
//
this.前进ToolStripMenuItem.Name = "前进ToolStripMenuItem";
this.前进ToolStripMenuItem.Size = new System.Drawing.Size(309, 26);
this.前进ToolStripMenuItem.Text = "前进(Ctrl+Y)";
this.前进ToolStripMenuItem.Click += new System.EventHandler(this.前进ToolStripMenuItem_Click);
//
// undoToolStripMenuItem
//
this.undoToolStripMenuItem.Name = "undoToolStripMenuItem";
this.undoToolStripMenuItem.Size = new System.Drawing.Size(309, 26);
this.undoToolStripMenuItem.Text = "回退(Ctrl+Z)";
this.undoToolStripMenuItem.Click += new System.EventHandler(this.undoToolStripMenuItem_Click);
//
// toolStripSeparator9
//
this.toolStripSeparator9.Name = "toolStripSeparator9";
this.toolStripSeparator9.Size = new System.Drawing.Size(306, 6);
//
// 添加标注ToolStripMenuItem
//
this.添加标注ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.AddPlaceMarkMenu,
this.AddModelMenu,
this.AddMultiModeMenuItem,
this.种树ToolStripMenuItem});
this.添加标注ToolStripMenuItem.Name = "添加标注ToolStripMenuItem";
this.添加标注ToolStripMenuItem.Size = new System.Drawing.Size(309, 26);
this.添加标注ToolStripMenuItem.Text = "添加对象";
//
// AddPlaceMarkMenu
//
this.AddPlaceMarkMenu.Name = "AddPlaceMarkMenu";
this.AddPlaceMarkMenu.Size = new System.Drawing.Size(174, 26);
this.AddPlaceMarkMenu.Text = "添加标注";
this.AddPlaceMarkMenu.Click += new System.EventHandler(this.Menu_Edit_AddMarker_Click);
//
// AddModelMenu
//
this.AddModelMenu.Name = "AddModelMenu";
this.AddModelMenu.Size = new System.Drawing.Size(174, 26);
this.AddModelMenu.Text = "添加模型";
this.AddModelMenu.Click += new System.EventHandler(this.Menu_Edit_AddModel_Click);
//
// AddMultiModeMenuItem
//
this.AddMultiModeMenuItem.Name = "AddMultiModeMenuItem";
this.AddMultiModeMenuItem.Size = new System.Drawing.Size(174, 26);
this.AddMultiModeMenuItem.Text = "批量添加模型";
this.AddMultiModeMenuItem.Click += new System.EventHandler(this.AddMultiModeMenuItem_Click);
//
// 种树ToolStripMenuItem
//
this.种树ToolStripMenuItem.Name = "种树ToolStripMenuItem";
this.种树ToolStripMenuItem.Size = new System.Drawing.Size(174, 26);
this.种树ToolStripMenuItem.Text = "种树";
this.种树ToolStripMenuItem.Click += new System.EventHandler(this.种树ToolStripMenuItem_Click);
//
// 添加动态对象ToolStripMenuItem
//
this.添加动态对象ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.喷泉MenuItemAddFountain,
this.MenuItemAddDynamicMarker,
this.烟火ToolStripMenuItem,
this.火苗ToolStripMenuItem,
this.烟花ToolStripMenuItem,
this.水柱ToolStripMenuItem});
this.添加动态对象ToolStripMenuItem.Name = "添加动态对象ToolStripMenuItem";
this.添加动态对象ToolStripMenuItem.Size = new System.Drawing.Size(309, 26);
this.添加动态对象ToolStripMenuItem.Text = "添加动态对象";
//
// 喷泉MenuItemAddFountain
//
this.喷泉MenuItemAddFountain.Name = "喷泉MenuItemAddFountain";
this.喷泉MenuItemAddFountain.Size = new System.Drawing.Size(144, 26);
this.喷泉MenuItemAddFountain.Text = "喷泉";
this.喷泉MenuItemAddFountain.Click += new System.EventHandler(this.喷泉MenuItemAddFountain_Click);
//
// MenuItemAddDynamicMarker
//
this.MenuItemAddDynamicMarker.Name = "MenuItemAddDynamicMarker";
this.MenuItemAddDynamicMarker.Size = new System.Drawing.Size(144, 26);
this.MenuItemAddDynamicMarker.Text = "动态标注";
this.MenuItemAddDynamicMarker.Click += new System.EventHandler(this.MenuItemAddDynamicMarker_Click);
//
// 烟火ToolStripMenuItem
//
this.烟火ToolStripMenuItem.Name = "烟火ToolStripMenuItem";
this.烟火ToolStripMenuItem.Size = new System.Drawing.Size(144, 26);
this.烟火ToolStripMenuItem.Text = "烟火";
this.烟火ToolStripMenuItem.Click += new System.EventHandler(this.烟火ToolStripMenuItem_Click);
//
// 火苗ToolStripMenuItem
//
this.火苗ToolStripMenuItem.Name = "火苗ToolStripMenuItem";
this.火苗ToolStripMenuItem.Size = new System.Drawing.Size(144, 26);
this.火苗ToolStripMenuItem.Text = "火苗";
this.火苗ToolStripMenuItem.Click += new System.EventHandler(this.火苗ToolStripMenuItem_Click);
//
// 烟花ToolStripMenuItem
//
this.烟花ToolStripMenuItem.Name = "烟花ToolStripMenuItem";
this.烟花ToolStripMenuItem.Size = new System.Drawing.Size(144, 26);
this.烟花ToolStripMenuItem.Text = "烟花";
this.烟花ToolStripMenuItem.Click += new System.EventHandler(this.烟花ToolStripMenuItem_Click);
//
// 水柱ToolStripMenuItem
//
this.水柱ToolStripMenuItem.Name = "水柱ToolStripMenuItem";
this.水柱ToolStripMenuItem.Size = new System.Drawing.Size(144, 26);
this.水柱ToolStripMenuItem.Text = "水柱";
this.水柱ToolStripMenuItem.Click += new System.EventHandler(this.水柱ToolStripMenuItem_Click);
//
// 添加规则几何对象ToolStripMenuItem
//
this.添加规则几何对象ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.menuItemAddBoxEntity,
this.menuItemAddSphereEntity,
this.menuItemAddCylinderEntity,
this.menuItemAddFrustumEntity,
this.menuItemAddPipeEntity,
this.menuItemAddPipeFrustumEntity,
this.menuItemAddEllipsoidEntity,
this.menuItemAddEllipCylinderEntity,
this.menuItemAddEllipFrustumEntity,
this.menuItemAddEllipPipeEntity,
this.menuItemAddEllipPipeFrustumEntity,
this.menuItemAddRangeEllipsoidEntity,
this.menuItemAddRangeEllipCylinderEntity,
this.menuItemAddRangeEllipFrustumEntity,
this.menuItemAddRangeEllipPipeEntity,
this.menuItemAddRangeEllipPipeFrustumEntity});
this.添加规则几何对象ToolStripMenuItem.Name = "添加规则几何对象ToolStripMenuItem";
this.添加规则几何对象ToolStripMenuItem.Size = new System.Drawing.Size(309, 26);
this.添加规则几何对象ToolStripMenuItem.Text = "添加规则几何对象";
//
// menuItemAddBoxEntity
//
this.menuItemAddBoxEntity.Name = "menuItemAddBoxEntity";
this.menuItemAddBoxEntity.Size = new System.Drawing.Size(174, 26);
this.menuItemAddBoxEntity.Text = "长方体";
this.menuItemAddBoxEntity.Click += new System.EventHandler(this.menuItemAddBoxEntity_Click);
//
// menuItemAddSphereEntity
//
this.menuItemAddSphereEntity.Name = "menuItemAddSphereEntity";
this.menuItemAddSphereEntity.Size = new System.Drawing.Size(174, 26);
this.menuItemAddSphereEntity.Text = "球";
this.menuItemAddSphereEntity.Click += new System.EventHandler(this.menuItemAddSphereEntity_Click);
//
// menuItemAddCylinderEntity
//
this.menuItemAddCylinderEntity.Name = "menuItemAddCylinderEntity";
this.menuItemAddCylinderEntity.Size = new System.Drawing.Size(174, 26);
this.menuItemAddCylinderEntity.Text = "柱";
this.menuItemAddCylinderEntity.Click += new System.EventHandler(this.menuItemAddCylinderEntity_Click);
//
// menuItemAddFrustumEntity
//
this.menuItemAddFrustumEntity.Name = "menuItemAddFrustumEntity";
this.menuItemAddFrustumEntity.Size = new System.Drawing.Size(174, 26);
this.menuItemAddFrustumEntity.Text = "台";
this.menuItemAddFrustumEntity.Click += new System.EventHandler(this.menuItemAddFrustumEntity_Click);
//
// menuItemAddPipeEntity
//
this.menuItemAddPipeEntity.Name = "menuItemAddPipeEntity";
this.menuItemAddPipeEntity.Size = new System.Drawing.Size(174, 26);
this.menuItemAddPipeEntity.Text = "管";
//
// menuItemAddPipeFrustumEntity
//
this.menuItemAddPipeFrustumEntity.Name = "menuItemAddPipeFrustumEntity";
this.menuItemAddPipeFrustumEntity.Size = new System.Drawing.Size(174, 26);
this.menuItemAddPipeFrustumEntity.Text = "管台";
//
// menuItemAddEllipsoidEntity
//
this.menuItemAddEllipsoidEntity.Name = "menuItemAddEllipsoidEntity";
this.menuItemAddEllipsoidEntity.Size = new System.Drawing.Size(174, 26);
this.menuItemAddEllipsoidEntity.Text = "椭球";
this.menuItemAddEllipsoidEntity.Click += new System.EventHandler(this.menuItemAddEllipsoidEntity_Click);
//
// menuItemAddEllipCylinderEntity
//
this.menuItemAddEllipCylinderEntity.Name = "menuItemAddEllipCylinderEntity";
this.menuItemAddEllipCylinderEntity.Size = new System.Drawing.Size(174, 26);
this.menuItemAddEllipCylinderEntity.Text = "椭圆柱";
this.menuItemAddEllipCylinderEntity.Click += new System.EventHandler(this.menuItemAddEllipCylinderEntity_Click);
//
// menuItemAddEllipFrustumEntity
//
this.menuItemAddEllipFrustumEntity.Name = "menuItemAddEllipFrustumEntity";
this.menuItemAddEllipFrustumEntity.Size = new System.Drawing.Size(174, 26);
this.menuItemAddEllipFrustumEntity.Text = "椭圆台";
this.menuItemAddEllipFrustumEntity.Click += new System.EventHandler(this.menuItemAddEllipFrustumEntity_Click);
//
// menuItemAddEllipPipeEntity
//
this.menuItemAddEllipPipeEntity.Name = "menuItemAddEllipPipeEntity";
this.menuItemAddEllipPipeEntity.Size = new System.Drawing.Size(174, 26);
this.menuItemAddEllipPipeEntity.Text = "椭圆管";
//
// menuItemAddEllipPipeFrustumEntity
//
this.menuItemAddEllipPipeFrustumEntity.Name = "menuItemAddEllipPipeFrustumEntity";
this.menuItemAddEllipPipeFrustumEntity.Size = new System.Drawing.Size(174, 26);
this.menuItemAddEllipPipeFrustumEntity.Text = "椭圆管台";
//
// menuItemAddRangeEllipsoidEntity
//
this.menuItemAddRangeEllipsoidEntity.Name = "menuItemAddRangeEllipsoidEntity";
this.menuItemAddRangeEllipsoidEntity.Size = new System.Drawing.Size(174, 26);
this.menuItemAddRangeEllipsoidEntity.Text = "缺口椭球";
this.menuItemAddRangeEllipsoidEntity.Click += new System.EventHandler(this.menuItemAddRangeEllipsoidEntity_Click);
//
// menuItemAddRangeEllipCylinderEntity
//
this.menuItemAddRangeEllipCylinderEntity.Name = "menuItemAddRangeEllipCylinderEntity";
this.menuItemAddRangeEllipCylinderEntity.Size = new System.Drawing.Size(174, 26);
this.menuItemAddRangeEllipCylinderEntity.Text = "缺口椭圆柱";
this.menuItemAddRangeEllipCylinderEntity.Click += new System.EventHandler(this.menuItemAddRangeEllipCylinderEntity_Click);
//
// menuItemAddRangeEllipFrustumEntity
//
this.menuItemAddRangeEllipFrustumEntity.Name = "menuItemAddRangeEllipFrustumEntity";
this.menuItemAddRangeEllipFrustumEntity.Size = new System.Drawing.Size(174, 26);
this.menuItemAddRangeEllipFrustumEntity.Text = "缺口椭圆台";
this.menuItemAddRangeEllipFrustumEntity.Click += new System.EventHandler(this.menuItemAddRangeEllipFrustumEntity_Click);
//
// menuItemAddRangeEllipPipeEntity
//
this.menuItemAddRangeEllipPipeEntity.Name = "menuItemAddRangeEllipPipeEntity";
this.menuItemAddRangeEllipPipeEntity.Size = new System.Drawing.Size(174, 26);
this.menuItemAddRangeEllipPipeEntity.Text = "缺口椭圆管";
//
// menuItemAddRangeEllipPipeFrustumEntity
//
this.menuItemAddRangeEllipPipeFrustumEntity.Name = "menuItemAddRangeEllipPipeFrustumEntity";
this.menuItemAddRangeEllipPipeFrustumEntity.Size = new System.Drawing.Size(174, 26);
this.menuItemAddRangeEllipPipeFrustumEntity.Text = "缺口椭圆管台";
//
// MoveModelLayerMenuItem
//
this.MoveModelLayerMenuItem.Name = "MoveModelLayerMenuItem";
this.MoveModelLayerMenuItem.Size = new System.Drawing.Size(309, 26);
this.MoveModelLayerMenuItem.Text = "平移模型图层";
this.MoveModelLayerMenuItem.Click += new System.EventHandler(this.MoveModelLayerMenuItem_Click);
//
// menuItemElevateLayerModels
//
this.menuItemElevateLayerModels.Name = "menuItemElevateLayerModels";
this.menuItemElevateLayerModels.Size = new System.Drawing.Size(309, 26);
this.menuItemElevateLayerModels.Text = "抬升模型图层";
this.menuItemElevateLayerModels.Click += new System.EventHandler(this.menuItemElevateLayerModels_Click);
//
// featureLabelMenuItem
//
this.featureLabelMenuItem.Name = "featureLabelMenuItem";
this.featureLabelMenuItem.Size = new System.Drawing.Size(309, 26);
this.featureLabelMenuItem.Text = "对象标注";
this.featureLabelMenuItem.Click += new System.EventHandler(this.featureLabelMenuItem_Click);
//
// 框选删除toolStripMenuItem3
//
this.框选删除toolStripMenuItem3.Name = "框选删除toolStripMenuItem3";
this.框选删除toolStripMenuItem3.Size = new System.Drawing.Size(309, 26);
this.框选删除toolStripMenuItem3.Text = "框选删除";
this.框选删除toolStripMenuItem3.Click += new System.EventHandler(this.框选删除ToolStripMenuItem_Click);
//
// toolStripMenuItem7
//
this.toolStripMenuItem7.Name = "toolStripMenuItem7";
this.toolStripMenuItem7.Size = new System.Drawing.Size(309, 26);
this.toolStripMenuItem7.Text = "设置框选删除目标图层";
this.toolStripMenuItem7.Click += new System.EventHandler(this.toolStripMenuItem7_Click);
//
// toolStripMenuItem3
//
this.toolStripMenuItem3.Name = "toolStripMenuItem3";
this.toolStripMenuItem3.Size = new System.Drawing.Size(309, 26);
this.toolStripMenuItem3.Text = "条件删除管线";
this.toolStripMenuItem3.Click += new System.EventHandler(this.toolStripMenuItem条件删除管线_Click);
//
// toolStripMenuItem5
//
this.toolStripMenuItem5.Name = "toolStripMenuItem5";
this.toolStripMenuItem5.Size = new System.Drawing.Size(309, 26);
this.toolStripMenuItem5.Text = "批量导出模型";
this.toolStripMenuItem5.Click += new System.EventHandler(this.toolStripMenuItem5_Click);
//
// toolStripSeparator21
//
this.toolStripSeparator21.Name = "toolStripSeparator21";
this.toolStripSeparator21.Size = new System.Drawing.Size(306, 6);
//
// menuAddModelBat
//
this.menuAddModelBat.Name = "menuAddModelBat";
this.menuAddModelBat.Size = new System.Drawing.Size(309, 26);
this.menuAddModelBat.Text = "批量生成模型";
this.menuAddModelBat.Click += new System.EventHandler(this.menuAddModelBat_Click);
//
// menuLine2PipelineModel
//
this.menuLine2PipelineModel.Name = "menuLine2PipelineModel";
this.menuLine2PipelineModel.Size = new System.Drawing.Size(309, 26);
this.menuLine2PipelineModel.Text = "批量生成管线";
this.menuLine2PipelineModel.Click += new System.EventHandler(this.menuLine2PipelineModel_Click);
//
// 批量生成管孔ToolStripMenuItem
//
this.批量生成管孔ToolStripMenuItem.Name = "批量生成管孔ToolStripMenuItem";
this.批量生成管孔ToolStripMenuItem.Size = new System.Drawing.Size(309, 26);
this.批量生成管孔ToolStripMenuItem.Text = "批量生成管孔";
this.批量生成管孔ToolStripMenuItem.Click += new System.EventHandler(this.批量生成管孔ToolStripMenuItem_Click);
//
// toolStripMenuItem4
//
this.toolStripMenuItem4.Name = "toolStripMenuItem4";
this.toolStripMenuItem4.Size = new System.Drawing.Size(309, 26);
this.toolStripMenuItem4.Text = "批量生成管沟";
this.toolStripMenuItem4.Click += new System.EventHandler(this.批量生成管沟ToolStripMenuItem_Click);
//
// toolStripSeparator20
//
this.toolStripSeparator20.Name = "toolStripSeparator20";
this.toolStripSeparator20.Size = new System.Drawing.Size(306, 6);
//
// 批量修改颜色ToolStripMenuItem
//
this.批量修改颜色ToolStripMenuItem.Name = "批量修改颜色ToolStripMenuItem";
this.批量修改颜色ToolStripMenuItem.Size = new System.Drawing.Size(309, 26);
this.批量修改颜色ToolStripMenuItem.Text = "批量修改颜色";
this.批量修改颜色ToolStripMenuItem.Click += new System.EventHandler(this.批量修改颜色ToolStripMenuItem_Click);
//
// 批量修改字体ToolStripMenuItem
//
this.批量修改字体ToolStripMenuItem.Name = "批量修改字体ToolStripMenuItem";
this.批量修改字体ToolStripMenuItem.Size = new System.Drawing.Size(309, 26);
this.批量修改字体ToolStripMenuItem.Text = "批量修改字体";
this.批量修改字体ToolStripMenuItem.Click += new System.EventHandler(this.批量修改字体ToolStripMenuItem_Click);
//
// 批量修改字段值ToolStripMenuItem
//
this.批量修改字段值ToolStripMenuItem.Name = "批量修改字段值ToolStripMenuItem";
this.批量修改字段值ToolStripMenuItem.Size = new System.Drawing.Size(309, 26);
this.批量修改字段值ToolStripMenuItem.Text = "批量修改字段值";
this.批量修改字段值ToolStripMenuItem.Click += new System.EventHandler(this.批量修改字段值ToolStripMenuItem_Click);
//
// 批量修改要素集模型路径toolStripMenuItem
//
this.批量修改要素集模型路径toolStripMenuItem.Name = "批量修改要素集模型路径toolStripMenuItem";
this.批量修改要素集模型路径toolStripMenuItem.Size = new System.Drawing.Size(309, 26);
this.批量修改要素集模型路径toolStripMenuItem.Text = "批量修改模型路径";
this.批量修改要素集模型路径toolStripMenuItem.Click += new System.EventHandler(this.批量修改要素集模型路径toolStripMenuItem_Click);
//
// toolStripMenuItem12
//
this.toolStripMenuItem12.Name = "toolStripMenuItem12";
this.toolStripMenuItem12.Size = new System.Drawing.Size(309, 26);
this.toolStripMenuItem12.Text = "线状要素根据字段转换为海拔高度";
this.toolStripMenuItem12.Click += new System.EventHandler(this.toolStripMenuItem12_Click);
//
// 批量修改高程模式ToolStripMenuItem
//
this.批量修改高程模式ToolStripMenuItem.Name = "批量修改高程模式ToolStripMenuItem";
this.批量修改高程模式ToolStripMenuItem.Size = new System.Drawing.Size(309, 26);
this.批量修改高程模式ToolStripMenuItem.Text = "线状要素转换为海拔高度";
this.批量修改高程模式ToolStripMenuItem.Click += new System.EventHandler(this.批量修改高程模式ToolStripMenuItem_Click);
//
// toolStripMenuItem13
//
this.toolStripMenuItem13.Name = "toolStripMenuItem13";
this.toolStripMenuItem13.Size = new System.Drawing.Size(309, 26);
this.toolStripMenuItem13.Text = "点状要素根据字段转换为海拔高度";
this.toolStripMenuItem13.Click += new System.EventHandler(this.toolStripMenuItem13_Click);
//
// toolStripMenuItem11
//
this.toolStripMenuItem11.Name = "toolStripMenuItem11";
this.toolStripMenuItem11.Size = new System.Drawing.Size(309, 26);
this.toolStripMenuItem11.Text = "点状要素转换为海拔高度";
this.toolStripMenuItem11.Click += new System.EventHandler(this.toolStripMenuItem11_Click_1);
//
// 批量修改模型高度ToolStripMenuItem
//
this.批量修改模型高度ToolStripMenuItem.Name = "批量修改模型高度ToolStripMenuItem";
this.批量修改模型高度ToolStripMenuItem.Size = new System.Drawing.Size(309, 26);
this.批量修改模型高度ToolStripMenuItem.Text = "批量修改工井模型高度";
this.批量修改模型高度ToolStripMenuItem.Click += new System.EventHandler(this.批量修改模型高度ToolStripMenuItem_Click);
//
// 工具ToolStripMenuItem
//
this.工具ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.ActionBrowseMenu,
this.SelObjMenu,
this.ScaleObjMenu,
this.RotateObjMenu,
this.MoveObjMenu,
this.ElevateMenu,
this.toolStripSeparator15,
this.AddLineMenu,
this.DrawPolygonMenuItem,
this.DrawWaterMenuItem,
this.框选删除ToolStripMenuItem,
this.求解假东假北ToolStripMenuItem,
this.线切割面ToolStripMenuItem,
this.面切割线ToolStripMenuItem,
this.双屏对比ToolStripMenuItem,
this.toolStripSeparator22,
this.oSGBlfpToolStripMenuItem});
this.工具ToolStripMenuItem.Name = "工具ToolStripMenuItem";
this.工具ToolStripMenuItem.Size = new System.Drawing.Size(51, 24);
this.工具ToolStripMenuItem.Text = "工具";
//
// ActionBrowseMenu
//
this.ActionBrowseMenu.Name = "ActionBrowseMenu";
this.ActionBrowseMenu.Size = new System.Drawing.Size(174, 26);
this.ActionBrowseMenu.Text = "浏览对象";
this.ActionBrowseMenu.Click += new System.EventHandler(this.ActionBrowseMenu_Click);
//
// SelObjMenu
//
this.SelObjMenu.Name = "SelObjMenu";
this.SelObjMenu.Size = new System.Drawing.Size(174, 26);
this.SelObjMenu.Text = "选中对象";
this.SelObjMenu.Click += new System.EventHandler(this.SelObjMenu_Click);
//
// ScaleObjMenu
//
this.ScaleObjMenu.Name = "ScaleObjMenu";
this.ScaleObjMenu.Size = new System.Drawing.Size(174, 26);
this.ScaleObjMenu.Text = "缩放对象";
this.ScaleObjMenu.Click += new System.EventHandler(this.ScaleObjMenu_Click);
//
// RotateObjMenu
//
this.RotateObjMenu.Name = "RotateObjMenu";
this.RotateObjMenu.Size = new System.Drawing.Size(174, 26);
this.RotateObjMenu.Text = "旋转对象";
this.RotateObjMenu.Click += new System.EventHandler(this.RotateObjMenu_Click);
//
// MoveObjMenu
//
this.MoveObjMenu.Name = "MoveObjMenu";
this.MoveObjMenu.Size = new System.Drawing.Size(174, 26);
this.MoveObjMenu.Text = "平移对象";
this.MoveObjMenu.Click += new System.EventHandler(this.MoveObjMenu_Click);
//
// ElevateMenu
//
this.ElevateMenu.Name = "ElevateMenu";
this.ElevateMenu.Size = new System.Drawing.Size(174, 26);
this.ElevateMenu.Text = "升降对象";
this.ElevateMenu.Click += new System.EventHandler(this.ElevateMenu_Click);
//
// toolStripSeparator15
//
this.toolStripSeparator15.Name = "toolStripSeparator15";
this.toolStripSeparator15.Size = new System.Drawing.Size(171, 6);
//
// AddLineMenu
//
this.AddLineMenu.Name = "AddLineMenu";
this.AddLineMenu.Size = new System.Drawing.Size(174, 26);
this.AddLineMenu.Text = "绘制线";
this.AddLineMenu.Click += new System.EventHandler(this.AddLineMenu_Click);
//
// DrawPolygonMenuItem
//
this.DrawPolygonMenuItem.Name = "DrawPolygonMenuItem";
this.DrawPolygonMenuItem.Size = new System.Drawing.Size(174, 26);
this.DrawPolygonMenuItem.Text = "绘制面";
this.DrawPolygonMenuItem.Click += new System.EventHandler(this.DrawPolygonMenuItem_Click);
//
// DrawWaterMenuItem
//
this.DrawWaterMenuItem.Name = "DrawWaterMenuItem";
this.DrawWaterMenuItem.Size = new System.Drawing.Size(174, 26);
this.DrawWaterMenuItem.Text = "绘制水面";
this.DrawWaterMenuItem.Click += new System.EventHandler(this.DrawWaterMenuItem_Click);
//
// 框选删除ToolStripMenuItem
//
this.框选删除ToolStripMenuItem.Name = "框选删除ToolStripMenuItem";
this.框选删除ToolStripMenuItem.Size = new System.Drawing.Size(174, 26);
this.框选删除ToolStripMenuItem.Text = "投影";
this.框选删除ToolStripMenuItem.Click += new System.EventHandler(this.投影ToolStripMenuItem_Click);
//
// 求解假东假北ToolStripMenuItem
//
this.求解假东假北ToolStripMenuItem.Name = "求解假东假北ToolStripMenuItem";
this.求解假东假北ToolStripMenuItem.Size = new System.Drawing.Size(174, 26);
this.求解假东假北ToolStripMenuItem.Text = "求解假东假北";
this.求解假东假北ToolStripMenuItem.Click += new System.EventHandler(this.求解假东假北ToolStripMenuItem_Click);
//
// 线切割面ToolStripMenuItem
//
this.线切割面ToolStripMenuItem.Name = "线切割面ToolStripMenuItem";
this.线切割面ToolStripMenuItem.Size = new System.Drawing.Size(174, 26);
this.线切割面ToolStripMenuItem.Text = "线切割面";
this.线切割面ToolStripMenuItem.Click += new System.EventHandler(this.线切割面ToolStripMenuItem_Click);
//
// 面切割线ToolStripMenuItem
//
this.面切割线ToolStripMenuItem.Name = "面切割线ToolStripMenuItem";
this.面切割线ToolStripMenuItem.Size = new System.Drawing.Size(174, 26);
this.面切割线ToolStripMenuItem.Text = "面切割线";
this.面切割线ToolStripMenuItem.Click += new System.EventHandler(this.面切割线ToolStripMenuItem_Click);
//
// 双屏对比ToolStripMenuItem
//
this.双屏对比ToolStripMenuItem.Name = "双屏对比ToolStripMenuItem";
this.双屏对比ToolStripMenuItem.Size = new System.Drawing.Size(174, 26);
this.双屏对比ToolStripMenuItem.Text = "双屏对比";
this.双屏对比ToolStripMenuItem.Click += new System.EventHandler(this.双屏对比ToolStripMenuItem_Click);
//
// toolStripSeparator22
//
this.toolStripSeparator22.Name = "toolStripSeparator22";
this.toolStripSeparator22.Size = new System.Drawing.Size(171, 6);
//
// oSGBlfpToolStripMenuItem
//
this.oSGBlfpToolStripMenuItem.Name = "oSGBlfpToolStripMenuItem";
this.oSGBlfpToolStripMenuItem.Size = new System.Drawing.Size(174, 26);
this.oSGBlfpToolStripMenuItem.Text = "OSGB->lfp";
this.oSGBlfpToolStripMenuItem.Click += new System.EventHandler(this.OSGBlfpToolStripMenuItem_Click);
//
// FlyAroundCenterMenuItem
//
this.FlyAroundCenterMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.FlyToPlaceMenu,
this.QuickFlyMenu,
this.MidSpeedFlyMenu,
this.SlowFlyMenu,
this.DefineFlyLineMenu,
this.FlyAroundCenterToolStripMenuItem,
this.FlyAroundEyeMenuItem,
this.pauseFlyMenuItem,
this.continueFlyMenuItem});
this.FlyAroundCenterMenuItem.Name = "FlyAroundCenterMenuItem";
this.FlyAroundCenterMenuItem.Size = new System.Drawing.Size(51, 24);
this.FlyAroundCenterMenuItem.Text = "飞行";
//
// FlyToPlaceMenu
//
this.FlyToPlaceMenu.Name = "FlyToPlaceMenu";
this.FlyToPlaceMenu.Size = new System.Drawing.Size(189, 26);
this.FlyToPlaceMenu.Text = "飞行到目标点";
this.FlyToPlaceMenu.Click += new System.EventHandler(this.FlyToPlaceMenu_Click);
//
// QuickFlyMenu
//
this.QuickFlyMenu.Name = "QuickFlyMenu";
this.QuickFlyMenu.Size = new System.Drawing.Size(189, 26);
this.QuickFlyMenu.Text = "快速沿线飞行";
this.QuickFlyMenu.Click += new System.EventHandler(this.QuickFlyMenu_Click);
//
// MidSpeedFlyMenu
//
this.MidSpeedFlyMenu.Name = "MidSpeedFlyMenu";
this.MidSpeedFlyMenu.Size = new System.Drawing.Size(189, 26);
this.MidSpeedFlyMenu.Text = "中速沿线飞行";
this.MidSpeedFlyMenu.Click += new System.EventHandler(this.MidSpeedFlyMenu_Click);
//
// SlowFlyMenu
//
this.SlowFlyMenu.Name = "SlowFlyMenu";
this.SlowFlyMenu.Size = new System.Drawing.Size(189, 26);
this.SlowFlyMenu.Text = "慢速沿线飞行";
this.SlowFlyMenu.Click += new System.EventHandler(this.SlowFlyMenu_Click);
//
// DefineFlyLineMenu
//
this.DefineFlyLineMenu.Name = "DefineFlyLineMenu";
this.DefineFlyLineMenu.Size = new System.Drawing.Size(189, 26);
this.DefineFlyLineMenu.Text = "自定义沿线飞行";
this.DefineFlyLineMenu.Click += new System.EventHandler(this.DefineFlyLineMenu_Click);
//
// FlyAroundCenterToolStripMenuItem
//
this.FlyAroundCenterToolStripMenuItem.Name = "FlyAroundCenterToolStripMenuItem";
this.FlyAroundCenterToolStripMenuItem.Size = new System.Drawing.Size(189, 26);
this.FlyAroundCenterToolStripMenuItem.Text = "绕中心点飞行";
this.FlyAroundCenterToolStripMenuItem.Click += new System.EventHandler(this.FlyAroundCenterToolStripMenuItem_Click);
//
// FlyAroundEyeMenuItem
//
this.FlyAroundEyeMenuItem.Name = "FlyAroundEyeMenuItem";
this.FlyAroundEyeMenuItem.Size = new System.Drawing.Size(189, 26);
this.FlyAroundEyeMenuItem.Text = "绕眼睛飞行";
this.FlyAroundEyeMenuItem.Click += new System.EventHandler(this.FlyAroundEyeMenuItem_Click);
//
// pauseFlyMenuItem
//
this.pauseFlyMenuItem.Name = "pauseFlyMenuItem";
this.pauseFlyMenuItem.Size = new System.Drawing.Size(189, 26);
this.pauseFlyMenuItem.Text = "暂停飞行";
this.pauseFlyMenuItem.Click += new System.EventHandler(this.pauseFlyMenuItem_Click);
//
// continueFlyMenuItem
//
this.continueFlyMenuItem.Name = "continueFlyMenuItem";
this.continueFlyMenuItem.Size = new System.Drawing.Size(189, 26);
this.continueFlyMenuItem.Text = "继续飞行";
this.continueFlyMenuItem.Click += new System.EventHandler(this.continueFlyMenuItem_Click);
//
// SceneSet
//
this.SceneSet.AutoSize = false;
this.SceneSet.AutoToolTip = true;
this.SceneSet.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.MenuItemMouseOverEventEnable,
this.EnableMouseOverHighLightMenu,
this.MenuItem2DObjMouseOverEnable,
this.LockSceneMenu,
this.MenuItemEditSnapObject,
this.toolStripMenuItem9,
this.toolStripSeparator8,
this.TerrainExtraMenu,
this.SceneLightSet,
this.GroundTransSetMenu,
this.UnderGroundFloorMenuItem,
this.underGroundLockedMenuItem,
this.toolStripSeparator12,
this.AntiAntialiasingMenuItem,
this.ShaderAtmosphereMenuItem,
this.toolStripSeparator7,
this.ModelWireFrameMenuItem,
this.ModelSolidMenuItem,
this.ModelTextureMenuItem,
this.toolStripSeparator6,
this.SelLevelMenuItem});
this.SceneSet.Name = "SceneSet";
this.SceneSet.Size = new System.Drawing.Size(41, 24);
this.SceneSet.Text = "设置";
//
// MenuItemMouseOverEventEnable
//
this.MenuItemMouseOverEventEnable.Name = "MenuItemMouseOverEventEnable";
this.MenuItemMouseOverEventEnable.Size = new System.Drawing.Size(249, 26);
this.MenuItemMouseOverEventEnable.Text = "允许浮动事件";
this.MenuItemMouseOverEventEnable.Click += new System.EventHandler(this.MenuItemMouseOverEventEnable_Click);
//
// EnableMouseOverHighLightMenu
//
this.EnableMouseOverHighLightMenu.Name = "EnableMouseOverHighLightMenu";
this.EnableMouseOverHighLightMenu.Size = new System.Drawing.Size(249, 26);
this.EnableMouseOverHighLightMenu.Text = "允许浮动高亮";
this.EnableMouseOverHighLightMenu.CheckedChanged += new System.EventHandler(this.EnableMouseOverHighLightMenu_CheckedChanged);
this.EnableMouseOverHighLightMenu.Click += new System.EventHandler(this.EnableMouseOverHighLightMenu_Click);
//
// MenuItem2DObjMouseOverEnable
//
this.MenuItem2DObjMouseOverEnable.Name = "MenuItem2DObjMouseOverEnable";
this.MenuItem2DObjMouseOverEnable.Size = new System.Drawing.Size(249, 26);
this.MenuItem2DObjMouseOverEnable.Text = "允许二维对象浮动提示";
this.MenuItem2DObjMouseOverEnable.Click += new System.EventHandler(this.MenuItem2DObjMouseOverEnable_Click);
//
// LockSceneMenu
//
this.LockSceneMenu.Name = "LockSceneMenu";
this.LockSceneMenu.Size = new System.Drawing.Size(249, 26);
this.LockSceneMenu.Text = "禁止鼠标浏览";
this.LockSceneMenu.Click += new System.EventHandler(this.LockSceneMenu_Click);
//
// MenuItemEditSnapObject
//
this.MenuItemEditSnapObject.Name = "MenuItemEditSnapObject";
this.MenuItemEditSnapObject.Size = new System.Drawing.Size(249, 26);
this.MenuItemEditSnapObject.Text = "编辑时捕捉到物体";
this.MenuItemEditSnapObject.Click += new System.EventHandler(this.MenuItemEditSnapObject_Click);
//
// toolStripMenuItem9
//
this.toolStripMenuItem9.Name = "toolStripMenuItem9";
this.toolStripMenuItem9.Size = new System.Drawing.Size(249, 26);
this.toolStripMenuItem9.Text = "允许移除视域后清除缓存";
this.toolStripMenuItem9.Click += new System.EventHandler(this.toolStripMenuItem9_Click);
//
// toolStripSeparator8
//
this.toolStripSeparator8.Name = "toolStripSeparator8";
this.toolStripSeparator8.Size = new System.Drawing.Size(246, 6);
//
// TerrainExtraMenu
//
this.TerrainExtraMenu.Name = "TerrainExtraMenu";
this.TerrainExtraMenu.Size = new System.Drawing.Size(249, 26);
this.TerrainExtraMenu.Text = "高程缩放设置";
this.TerrainExtraMenu.Click += new System.EventHandler(this.TerrainExtraMenu_Click);
//
// SceneLightSet
//
this.SceneLightSet.Name = "SceneLightSet";
this.SceneLightSet.Size = new System.Drawing.Size(249, 26);
this.SceneLightSet.Text = "场景光照设置";
this.SceneLightSet.Click += new System.EventHandler(this.SceneLightSet_Click);
//
// GroundTransSetMenu
//
this.GroundTransSetMenu.Name = "GroundTransSetMenu";
this.GroundTransSetMenu.Size = new System.Drawing.Size(249, 26);
this.GroundTransSetMenu.Text = "地面透明度设置";
this.GroundTransSetMenu.Click += new System.EventHandler(this.GroundTransSetMenu_Click);
//
// UnderGroundFloorMenuItem
//
this.UnderGroundFloorMenuItem.Name = "UnderGroundFloorMenuItem";
this.UnderGroundFloorMenuItem.Size = new System.Drawing.Size(249, 26);
this.UnderGroundFloorMenuItem.Text = "地下网格设置";
this.UnderGroundFloorMenuItem.Click += new System.EventHandler(this.UnderGroundFloorMenuItem_Click);
//
// underGroundLockedMenuItem
//
this.underGroundLockedMenuItem.Name = "underGroundLockedMenuItem";
this.underGroundLockedMenuItem.Size = new System.Drawing.Size(249, 26);
this.underGroundLockedMenuItem.Text = "锁定地下浏览";
this.underGroundLockedMenuItem.Click += new System.EventHandler(this.underGroundLockedMenuItem_Click);
//
// toolStripSeparator12
//
this.toolStripSeparator12.Name = "toolStripSeparator12";
this.toolStripSeparator12.Size = new System.Drawing.Size(246, 6);
//
// AntiAntialiasingMenuItem
//
this.AntiAntialiasingMenuItem.Name = "AntiAntialiasingMenuItem";
this.AntiAntialiasingMenuItem.Size = new System.Drawing.Size(249, 26);
this.AntiAntialiasingMenuItem.Text = "启用反走样";
this.AntiAntialiasingMenuItem.CheckedChanged += new System.EventHandler(this.AntiAntialiasingMenuItem_CheckedChanged);
this.AntiAntialiasingMenuItem.Click += new System.EventHandler(this.AntiAntialiasingMenuItem_Click);
//
// ShaderAtmosphereMenuItem
//
this.ShaderAtmosphereMenuItem.Name = "ShaderAtmosphereMenuItem";
this.ShaderAtmosphereMenuItem.Size = new System.Drawing.Size(249, 26);
this.ShaderAtmosphereMenuItem.Text = "启用光影大气";
this.ShaderAtmosphereMenuItem.Click += new System.EventHandler(this.ShaderAtmosphereMenuItem_Click);
//
// toolStripSeparator7
//
this.toolStripSeparator7.Name = "toolStripSeparator7";
this.toolStripSeparator7.Size = new System.Drawing.Size(246, 6);
//
// ModelWireFrameMenuItem
//
this.ModelWireFrameMenuItem.Name = "ModelWireFrameMenuItem";
this.ModelWireFrameMenuItem.Size = new System.Drawing.Size(249, 26);
this.ModelWireFrameMenuItem.Text = "模型线框模式";
this.ModelWireFrameMenuItem.Click += new System.EventHandler(this.ModelWireFrameMenuItem_Click);
//
// ModelSolidMenuItem
//
this.ModelSolidMenuItem.Name = "ModelSolidMenuItem";
this.ModelSolidMenuItem.Size = new System.Drawing.Size(249, 26);
this.ModelSolidMenuItem.Text = "模型实体模式";
this.ModelSolidMenuItem.Click += new System.EventHandler(this.ModelSolidMenuItem_Click);
//
// ModelTextureMenuItem
//
this.ModelTextureMenuItem.Name = "ModelTextureMenuItem";
this.ModelTextureMenuItem.Size = new System.Drawing.Size(249, 26);
this.ModelTextureMenuItem.Text = "模型纹理模式";
this.ModelTextureMenuItem.Click += new System.EventHandler(this.ModelTextureMenuItem_Click);
//
// toolStripSeparator6
//
this.toolStripSeparator6.Name = "toolStripSeparator6";
this.toolStripSeparator6.Size = new System.Drawing.Size(246, 6);
//
// SelLevelMenuItem
//
this.SelLevelMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.SelLevel1MenuItem,
this.SelLevel2MenuItem,
this.SelLevel3MenuItem,
this.SetSelLevelMenuItem});
this.SelLevelMenuItem.Name = "SelLevelMenuItem";
this.SelLevelMenuItem.Size = new System.Drawing.Size(249, 26);
this.SelLevelMenuItem.Text = "设置选择层次";
this.SelLevelMenuItem.Click += new System.EventHandler(this.SetSelLevelMenuItem_Click);
//
// SelLevel1MenuItem
//
this.SelLevel1MenuItem.Name = "SelLevel1MenuItem";
this.SelLevel1MenuItem.Size = new System.Drawing.Size(189, 26);
this.SelLevel1MenuItem.Text = "选择第一层对象";
this.SelLevel1MenuItem.Click += new System.EventHandler(this.SelLevel1MenuItem_Click);
//
// SelLevel2MenuItem
//
this.SelLevel2MenuItem.Name = "SelLevel2MenuItem";
this.SelLevel2MenuItem.Size = new System.Drawing.Size(189, 26);
this.SelLevel2MenuItem.Text = "选择第二层对象";
this.SelLevel2MenuItem.Click += new System.EventHandler(this.SelLevel2MenuItem_Click);
//
// SelLevel3MenuItem
//
this.SelLevel3MenuItem.Name = "SelLevel3MenuItem";
this.SelLevel3MenuItem.Size = new System.Drawing.Size(189, 26);
this.SelLevel3MenuItem.Text = "选择第三层对象";
this.SelLevel3MenuItem.Click += new System.EventHandler(this.SelLevel3MenuItem_Click);
//
// SetSelLevelMenuItem
//
this.SetSelLevelMenuItem.Name = "SetSelLevelMenuItem";
this.SetSelLevelMenuItem.Size = new System.Drawing.Size(189, 26);
this.SetSelLevelMenuItem.Text = "指定选择层次";
this.SetSelLevelMenuItem.Click += new System.EventHandler(this.SetSelLevelMenuItem_Click);
//
// 相机ToolStripMenuItem
//
this.相机ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.CameraNavigationMenu,
this.CameraWalkMenu,
this.CameraUnderGroundMenu});
this.相机ToolStripMenuItem.Name = "相机ToolStripMenuItem";
this.相机ToolStripMenuItem.Size = new System.Drawing.Size(51, 24);
this.相机ToolStripMenuItem.Text = "相机";
//
// CameraNavigationMenu
//
this.CameraNavigationMenu.Name = "CameraNavigationMenu";
this.CameraNavigationMenu.Size = new System.Drawing.Size(144, 26);
this.CameraNavigationMenu.Text = "浏览模式";
this.CameraNavigationMenu.Click += new System.EventHandler(this.CameraNavigation_Click);
//
// CameraWalkMenu
//
this.CameraWalkMenu.Name = "CameraWalkMenu";
this.CameraWalkMenu.Size = new System.Drawing.Size(144, 26);
this.CameraWalkMenu.Text = "行走模式";
this.CameraWalkMenu.Click += new System.EventHandler(this.CameraWalk_Click);
//
// CameraUnderGroundMenu
//
this.CameraUnderGroundMenu.Name = "CameraUnderGroundMenu";
this.CameraUnderGroundMenu.Size = new System.Drawing.Size(144, 26);
this.CameraUnderGroundMenu.Text = "地下模式";
this.CameraUnderGroundMenu.Click += new System.EventHandler(this.CameraUnderGroundMenu_Click);
//
// 量算ToolStripMenuItem
//
this.量算ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.平面距离量算ToolStripMenuItem,
this.平面面积量算ToolStripMenuItem,
this.距地面高度量算ToolStripMenuItem,
this.toolStripSeparator19,
this.空间距离量算ToolStripMenuItem,
this.空间面积量算ToolStripMenuItem,
this.空间高度量算ToolStripMenuItem,
this.toolStripSeparator18,
this.清除量算ToolStripMenuItem});
this.量算ToolStripMenuItem.Name = "量算ToolStripMenuItem";
this.量算ToolStripMenuItem.Size = new System.Drawing.Size(51, 24);
this.量算ToolStripMenuItem.Text = "量算";
//
// 平面距离量算ToolStripMenuItem
//
this.平面距离量算ToolStripMenuItem.Name = "平面距离量算ToolStripMenuItem";
this.平面距离量算ToolStripMenuItem.Size = new System.Drawing.Size(189, 26);
this.平面距离量算ToolStripMenuItem.Text = "平面距离量算";
this.平面距离量算ToolStripMenuItem.Click += new System.EventHandler(this.MeasureDistMenu_Click);
//
// 平面面积量算ToolStripMenuItem
//
this.平面面积量算ToolStripMenuItem.Name = "平面面积量算ToolStripMenuItem";
this.平面面积量算ToolStripMenuItem.Size = new System.Drawing.Size(189, 26);
this.平面面积量算ToolStripMenuItem.Text = "平面面积量算";
this.平面面积量算ToolStripMenuItem.Click += new System.EventHandler(this.MesureAreaMenu_Click);
//
// 距地面高度量算ToolStripMenuItem
//
this.距地面高度量算ToolStripMenuItem.Name = "距地面高度量算ToolStripMenuItem";
this.距地面高度量算ToolStripMenuItem.Size = new System.Drawing.Size(189, 26);
this.距地面高度量算ToolStripMenuItem.Text = "距地面高度量算";
this.距地面高度量算ToolStripMenuItem.Click += new System.EventHandler(this.MesureHeightMenu_Click);
//
// toolStripSeparator19
//
this.toolStripSeparator19.Name = "toolStripSeparator19";
this.toolStripSeparator19.Size = new System.Drawing.Size(186, 6);
//
// 空间距离量算ToolStripMenuItem
//
this.空间距离量算ToolStripMenuItem.Name = "空间距离量算ToolStripMenuItem";
this.空间距离量算ToolStripMenuItem.Size = new System.Drawing.Size(189, 26);
this.空间距离量算ToolStripMenuItem.Text = "空间距离量算";
this.空间距离量算ToolStripMenuItem.Click += new System.EventHandler(this.SpaceMeasureDistanceMenuItem_Click);
//
// 空间面积量算ToolStripMenuItem
//
this.空间面积量算ToolStripMenuItem.Name = "空间面积量算ToolStripMenuItem";
this.空间面积量算ToolStripMenuItem.Size = new System.Drawing.Size(189, 26);
this.空间面积量算ToolStripMenuItem.Text = "空间面积量算";
this.空间面积量算ToolStripMenuItem.Click += new System.EventHandler(this.SpaceAreaMeasureMenuItem_Click);
//
// 空间高度量算ToolStripMenuItem
//
this.空间高度量算ToolStripMenuItem.Name = "空间高度量算ToolStripMenuItem";
this.空间高度量算ToolStripMenuItem.Size = new System.Drawing.Size(189, 26);
this.空间高度量算ToolStripMenuItem.Text = "空间高度量算";
this.空间高度量算ToolStripMenuItem.Click += new System.EventHandler(this.SpaceHeightMeasureMenuItem_Click);
//
// toolStripSeparator18
//
this.toolStripSeparator18.Name = "toolStripSeparator18";
this.toolStripSeparator18.Size = new System.Drawing.Size(186, 6);
//
// 清除量算ToolStripMenuItem
//
this.清除量算ToolStripMenuItem.Name = "清除量算ToolStripMenuItem";
this.清除量算ToolStripMenuItem.Size = new System.Drawing.Size(189, 26);
this.清除量算ToolStripMenuItem.Text = "清除量算";
this.清除量算ToolStripMenuItem.Click += new System.EventHandler(this.ClearMeasureMenu_Click);
//
// AnalysisMenuItem
//
this.AnalysisMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.SpaceVisibilityAnalysisMenuItem,
this.ViewshedAnalysisMenuItem,
this.ViewEnvelopeAnalysisMenuItem,
this.toolStripMenuItem14,
this.toolStripSeparator4,
this.横断面分析toolStripMenuItem3,
this.ProfileAnalysisMenuItem,
this.BaselineProfileAnalysisMenuItem,
this.toolStripSeparator5,
this.DigPitSettingMenuItem,
this.LineDigPitMenuItem,
this.PolygonDigPitMenuItem,
this.ClearPitsMenuItem,
this.toolStripSeparator2,
this.DigFillAnalysisMenuItem,
this.NoSourceFloodSubmergeMenuItem,
this.toolStripSeparator11,
this.RefreshAnalysisMenuItem,
this.ClearAnalysisMenuItem});
this.AnalysisMenuItem.Name = "AnalysisMenuItem";
this.AnalysisMenuItem.Size = new System.Drawing.Size(51, 24);
this.AnalysisMenuItem.Text = "分析";
//
// SpaceVisibilityAnalysisMenuItem
//
this.SpaceVisibilityAnalysisMenuItem.Name = "SpaceVisibilityAnalysisMenuItem";
this.SpaceVisibilityAnalysisMenuItem.Size = new System.Drawing.Size(179, 26);
this.SpaceVisibilityAnalysisMenuItem.Text = "空间通视分析";
this.SpaceVisibilityAnalysisMenuItem.Click += new System.EventHandler(this.SpaceVisibilityAnalysisMenuItem_Click);
//
// ViewshedAnalysisMenuItem
//
this.ViewshedAnalysisMenuItem.Name = "ViewshedAnalysisMenuItem";
this.ViewshedAnalysisMenuItem.Size = new System.Drawing.Size(179, 26);
this.ViewshedAnalysisMenuItem.Text = "可视域分析";
this.ViewshedAnalysisMenuItem.Click += new System.EventHandler(this.ViewshedAnalysisMenuItem_Click);
//
// ViewEnvelopeAnalysisMenuItem
//
this.ViewEnvelopeAnalysisMenuItem.Name = "ViewEnvelopeAnalysisMenuItem";
this.ViewEnvelopeAnalysisMenuItem.Size = new System.Drawing.Size(179, 26);
this.ViewEnvelopeAnalysisMenuItem.Text = "可视包络分析";
this.ViewEnvelopeAnalysisMenuItem.Click += new System.EventHandler(this.ViewEnvelopeAnalysisMenuItem_Click);
//
// toolStripMenuItem14
//
this.toolStripMenuItem14.Name = "toolStripMenuItem14";
this.toolStripMenuItem14.Size = new System.Drawing.Size(179, 26);
this.toolStripMenuItem14.Text = "3D可视域分析";
this.toolStripMenuItem14.Click += new System.EventHandler(this.toolStripMenuItem14_Click);
//
// toolStripSeparator4
//
this.toolStripSeparator4.Name = "toolStripSeparator4";
this.toolStripSeparator4.Size = new System.Drawing.Size(176, 6);
//
// 横断面分析toolStripMenuItem3
//
this.横断面分析toolStripMenuItem3.Name = "横断面分析toolStripMenuItem3";
this.横断面分析toolStripMenuItem3.Size = new System.Drawing.Size(179, 26);
this.横断面分析toolStripMenuItem3.Text = "横断面分析";
this.横断面分析toolStripMenuItem3.Click += new System.EventHandler(this.横断面分析toolStripMenuItem3_Click);
//
// ProfileAnalysisMenuItem
//
this.ProfileAnalysisMenuItem.Name = "ProfileAnalysisMenuItem";
this.ProfileAnalysisMenuItem.Size = new System.Drawing.Size(179, 26);
this.ProfileAnalysisMenuItem.Text = "剖面分析";
this.ProfileAnalysisMenuItem.Click += new System.EventHandler(this.ProfileAnalysisMenuItem_Click);
//
// BaselineProfileAnalysisMenuItem
//
this.BaselineProfileAnalysisMenuItem.Name = "BaselineProfileAnalysisMenuItem";
this.BaselineProfileAnalysisMenuItem.Size = new System.Drawing.Size(179, 26);
this.BaselineProfileAnalysisMenuItem.Text = "基线剖面分析";
this.BaselineProfileAnalysisMenuItem.Click += new System.EventHandler(this.BaselineProfileAnalysisMenuItem_Click);
//
// toolStripSeparator5
//
this.toolStripSeparator5.Name = "toolStripSeparator5";
this.toolStripSeparator5.Size = new System.Drawing.Size(176, 6);
//
// DigPitSettingMenuItem
//
this.DigPitSettingMenuItem.Name = "DigPitSettingMenuItem";
this.DigPitSettingMenuItem.Size = new System.Drawing.Size(179, 26);
this.DigPitSettingMenuItem.Text = "挖坑设置";
this.DigPitSettingMenuItem.Click += new System.EventHandler(this.DigPitSettingMenuItem_Click);
//
// LineDigPitMenuItem
//
this.LineDigPitMenuItem.Name = "LineDigPitMenuItem";
this.LineDigPitMenuItem.Size = new System.Drawing.Size(179, 26);
this.LineDigPitMenuItem.Text = "沿线挖坑";
this.LineDigPitMenuItem.Click += new System.EventHandler(this.LineDigPitMenuItem_Click);
//
// PolygonDigPitMenuItem
//
this.PolygonDigPitMenuItem.Name = "PolygonDigPitMenuItem";
this.PolygonDigPitMenuItem.Size = new System.Drawing.Size(179, 26);
this.PolygonDigPitMenuItem.Text = "多边形挖坑";
this.PolygonDigPitMenuItem.Click += new System.EventHandler(this.PolygonDigPitMenuItem_Click);
//
// ClearPitsMenuItem
//
this.ClearPitsMenuItem.Name = "ClearPitsMenuItem";
this.ClearPitsMenuItem.Size = new System.Drawing.Size(179, 26);
this.ClearPitsMenuItem.Text = "清除所有坑";
this.ClearPitsMenuItem.Click += new System.EventHandler(this.ClearPitsMenuItem_Click);
//
// toolStripSeparator2
//
this.toolStripSeparator2.Name = "toolStripSeparator2";
this.toolStripSeparator2.Size = new System.Drawing.Size(176, 6);
//
// DigFillAnalysisMenuItem
//
this.DigFillAnalysisMenuItem.Name = "DigFillAnalysisMenuItem";
this.DigFillAnalysisMenuItem.Size = new System.Drawing.Size(179, 26);
this.DigFillAnalysisMenuItem.Text = "填挖方分析";
this.DigFillAnalysisMenuItem.Click += new System.EventHandler(this.DigFillAnalysisMenuItem_Click);
//
// NoSourceFloodSubmergeMenuItem
//
this.NoSourceFloodSubmergeMenuItem.Name = "NoSourceFloodSubmergeMenuItem";
this.NoSourceFloodSubmergeMenuItem.Size = new System.Drawing.Size(179, 26);
this.NoSourceFloodSubmergeMenuItem.Text = "无源淹没分析";
this.NoSourceFloodSubmergeMenuItem.Click += new System.EventHandler(this.NoSourceFloodSubmergeMenuItem_Click);
//
// toolStripSeparator11
//
this.toolStripSeparator11.Name = "toolStripSeparator11";
this.toolStripSeparator11.Size = new System.Drawing.Size(176, 6);
//
// RefreshAnalysisMenuItem
//
this.RefreshAnalysisMenuItem.Name = "RefreshAnalysisMenuItem";
this.RefreshAnalysisMenuItem.Size = new System.Drawing.Size(179, 26);
this.RefreshAnalysisMenuItem.Text = "刷新分析结果";
this.RefreshAnalysisMenuItem.Click += new System.EventHandler(this.RefreshAnalysisMenuItem_Click);
//
// ClearAnalysisMenuItem
//
this.ClearAnalysisMenuItem.Name = "ClearAnalysisMenuItem";
this.ClearAnalysisMenuItem.Size = new System.Drawing.Size(179, 26);
this.ClearAnalysisMenuItem.Text = "清除分析结果";
this.ClearAnalysisMenuItem.Click += new System.EventHandler(this.ClearAnalysisMenuItem_Click);
//
// updatePipelineColorToolStripMenuItem
//
this.updatePipelineColorToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.管线对接设置ToolStripMenuItem,
this.对接选中管线ToolStripMenuItem,
this.排管自动对接ToolStripMenuItem,
this.对接选中图层ToolStripMenuItem,
this.生成连接管ToolStripMenuItem,
this.取消选中对接ToolStripMenuItem,
this.取消整个图层对接ToolStripMenuItem,
this.toolStripSeparator13,
this.tooltripItemFlow,
this.反转方向ToolStripMenuItem,
this.toolStripSeparator14,
this.添加管件toolStripMenuItem3,
this.选中节点添加模型ToolStripMenuItem,
this.选中管线缩进接头ToolStripMenuItem,
this.管线自动缩进toolStripMenuItem3,
this.更改要素的名字toolStripMenuItem3,
this.更改所有管线的颜色ToolStripMenuItem,
this.toolStripSeparator16,
this.查看管线属性ToolStripMenuItem,
this.管线高级查询ToolStripMenuItem,
this.显示漏出地面管线ToolStripMenuItem,
this.管线碰撞分析ToolStripMenuItem,
this.管线间距分析ToolStripMenuItem,
this.管线水平距离ToolStripMenuItem,
this.管线垂直距离ToolStripMenuItem});
this.updatePipelineColorToolStripMenuItem.Name = "updatePipelineColorToolStripMenuItem";
this.updatePipelineColorToolStripMenuItem.Size = new System.Drawing.Size(51, 24);
this.updatePipelineColorToolStripMenuItem.Text = "管线";
//
// 管线对接设置ToolStripMenuItem
//
this.管线对接设置ToolStripMenuItem.Name = "管线对接设置ToolStripMenuItem";
this.管线对接设置ToolStripMenuItem.Size = new System.Drawing.Size(249, 26);
this.管线对接设置ToolStripMenuItem.Text = "管线对接设置";
this.管线对接设置ToolStripMenuItem.Click += new System.EventHandler(this.管线对接设置ToolStripMenuItem_Click);
//
// 对接选中管线ToolStripMenuItem
//
this.对接选中管线ToolStripMenuItem.Name = "对接选中管线ToolStripMenuItem";
this.对接选中管线ToolStripMenuItem.Size = new System.Drawing.Size(249, 26);
this.对接选中管线ToolStripMenuItem.Text = "对接选中管线";
this.对接选中管线ToolStripMenuItem.Click += new System.EventHandler(this.对接选中管线ToolStripMenuItem_Click);
//
// 排管自动对接ToolStripMenuItem
//
this.排管自动对接ToolStripMenuItem.Name = "排管自动对接ToolStripMenuItem";
this.排管自动对接ToolStripMenuItem.Size = new System.Drawing.Size(249, 26);
this.排管自动对接ToolStripMenuItem.Text = "对接选中管线-无容限值";
this.排管自动对接ToolStripMenuItem.Click += new System.EventHandler(this.对接选中管线无容限值ToolStripMenuItem_Click);
//
// 对接选中图层ToolStripMenuItem
//
this.对接选中图层ToolStripMenuItem.Name = "对接选中图层ToolStripMenuItem";
this.对接选中图层ToolStripMenuItem.Size = new System.Drawing.Size(249, 26);
this.对接选中图层ToolStripMenuItem.Text = "管线图层自动对接";
this.对接选中图层ToolStripMenuItem.Click += new System.EventHandler(this.对接选中图层ToolStripMenuItem_Click);
//
// 生成连接管ToolStripMenuItem
//
this.生成连接管ToolStripMenuItem.Name = "生成连接管ToolStripMenuItem";
this.生成连接管ToolStripMenuItem.Size = new System.Drawing.Size(249, 26);
this.生成连接管ToolStripMenuItem.Text = "生成连接管";
this.生成连接管ToolStripMenuItem.Click += new System.EventHandler(this.生成连接管ToolStripMenuItem_Click);
//
// 取消选中对接ToolStripMenuItem
//
this.取消选中对接ToolStripMenuItem.Name = "取消选中对接ToolStripMenuItem";
this.取消选中对接ToolStripMenuItem.Size = new System.Drawing.Size(249, 26);
this.取消选中对接ToolStripMenuItem.Text = "取消选中对接";
this.取消选中对接ToolStripMenuItem.Click += new System.EventHandler(this.取消选中对接ToolStripMenuItem_Click);
//
// 取消整个图层对接ToolStripMenuItem
//
this.取消整个图层对接ToolStripMenuItem.Name = "取消整个图层对接ToolStripMenuItem";
this.取消整个图层对接ToolStripMenuItem.Size = new System.Drawing.Size(249, 26);
this.取消整个图层对接ToolStripMenuItem.Text = "取消整个图层对接";
this.取消整个图层对接ToolStripMenuItem.Click += new System.EventHandler(this.取消整个图层对接ToolStripMenuItem_Click);
//
// toolStripSeparator13
//
this.toolStripSeparator13.Name = "toolStripSeparator13";
this.toolStripSeparator13.Size = new System.Drawing.Size(246, 6);
//
// tooltripItemFlow
//
this.tooltripItemFlow.Name = "tooltripItemFlow";
this.tooltripItemFlow.Size = new System.Drawing.Size(249, 26);
this.tooltripItemFlow.Text = "流向显示";
this.tooltripItemFlow.Click += new System.EventHandler(this.tooltripItemFlow_Click);
//
// 反转方向ToolStripMenuItem
//
this.反转方向ToolStripMenuItem.Name = "反转方向ToolStripMenuItem";
this.反转方向ToolStripMenuItem.Size = new System.Drawing.Size(249, 26);
this.反转方向ToolStripMenuItem.Text = "反转管线流向(Ctrl+G)";
this.反转方向ToolStripMenuItem.Click += new System.EventHandler(this.反转方向ToolStripMenuItem_Click);
//
// toolStripSeparator14
//
this.toolStripSeparator14.Name = "toolStripSeparator14";
this.toolStripSeparator14.Size = new System.Drawing.Size(246, 6);
//
// 添加管件toolStripMenuItem3
//
this.添加管件toolStripMenuItem3.Name = "添加管件toolStripMenuItem3";
this.添加管件toolStripMenuItem3.Size = new System.Drawing.Size(249, 26);
this.添加管件toolStripMenuItem3.Text = "添加管件";
this.添加管件toolStripMenuItem3.Click += new System.EventHandler(this.添加管件ToolStripMenuItem_Click);
//
// 选中节点添加模型ToolStripMenuItem
//
this.选中节点添加模型ToolStripMenuItem.Name = "选中节点添加模型ToolStripMenuItem";
this.选中节点添加模型ToolStripMenuItem.Size = new System.Drawing.Size(249, 26);
this.选中节点添加模型ToolStripMenuItem.Text = "选中节点添加模型";
this.选中节点添加模型ToolStripMenuItem.Click += new System.EventHandler(this.选中节点添加模型ToolStripMenuItem_Click);
//
// 选中管线缩进接头ToolStripMenuItem
//
this.选中管线缩进接头ToolStripMenuItem.Name = "选中管线缩进接头ToolStripMenuItem";
this.选中管线缩进接头ToolStripMenuItem.Size = new System.Drawing.Size(249, 26);
this.选中管线缩进接头ToolStripMenuItem.Text = "选中管线缩进接头";
this.选中管线缩进接头ToolStripMenuItem.Click += new System.EventHandler(this.选中管线缩进接头ToolStripMenuItem_Click);
//
// 管线自动缩进toolStripMenuItem3
//
this.管线自动缩进toolStripMenuItem3.Name = "管线自动缩进toolStripMenuItem3";
this.管线自动缩进toolStripMenuItem3.Size = new System.Drawing.Size(249, 26);
this.管线自动缩进toolStripMenuItem3.Text = "管线自动缩进接头";
this.管线自动缩进toolStripMenuItem3.Click += new System.EventHandler(this.管线自动缩进toolStripMenuItem3_Click_1);
//
// 更改要素的名字toolStripMenuItem3
//
this.更改要素的名字toolStripMenuItem3.Name = "更改要素的名字toolStripMenuItem3";
this.更改要素的名字toolStripMenuItem3.Size = new System.Drawing.Size(249, 26);
this.更改要素的名字toolStripMenuItem3.Text = "批量修改数据库要素名称";
this.更改要素的名字toolStripMenuItem3.Click += new System.EventHandler(this.更改要素的名字toolStripMenuItem3_Click);
//
// 更改所有管线的颜色ToolStripMenuItem
//
this.更改所有管线的颜色ToolStripMenuItem.Name = "更改所有管线的颜色ToolStripMenuItem";
this.更改所有管线的颜色ToolStripMenuItem.ShowShortcutKeys = false;
this.更改所有管线的颜色ToolStripMenuItem.Size = new System.Drawing.Size(249, 26);
this.更改所有管线的颜色ToolStripMenuItem.Text = "批量修改数据库管线颜色";
this.更改所有管线的颜色ToolStripMenuItem.Click += new System.EventHandler(this.修改数据库管线颜色ToolStripMenuItem_Click);
//
// toolStripSeparator16
//
this.toolStripSeparator16.Name = "toolStripSeparator16";
this.toolStripSeparator16.Size = new System.Drawing.Size(246, 6);
//
// 查看管线属性ToolStripMenuItem
//
this.查看管线属性ToolStripMenuItem.Name = "查看管线属性ToolStripMenuItem";
this.查看管线属性ToolStripMenuItem.Size = new System.Drawing.Size(249, 26);
this.查看管线属性ToolStripMenuItem.Text = "查看管线属性";
this.查看管线属性ToolStripMenuItem.Visible = false;
this.查看管线属性ToolStripMenuItem.Click += new System.EventHandler(this.查看管线属性ToolStripMenuItem_Click);
//
// 管线高级查询ToolStripMenuItem
//
this.管线高级查询ToolStripMenuItem.Name = "管线高级查询ToolStripMenuItem";
this.管线高级查询ToolStripMenuItem.Size = new System.Drawing.Size(249, 26);
this.管线高级查询ToolStripMenuItem.Text = "管线高级查询";
this.管线高级查询ToolStripMenuItem.Click += new System.EventHandler(this.管线高级查询ToolStripMenuItem_Click);
//
// 显示漏出地面管线ToolStripMenuItem
//
this.显示漏出地面管线ToolStripMenuItem.Name = "显示漏出地面管线ToolStripMenuItem";
this.显示漏出地面管线ToolStripMenuItem.Size = new System.Drawing.Size(249, 26);
this.显示漏出地面管线ToolStripMenuItem.Text = "地上管线";
this.显示漏出地面管线ToolStripMenuItem.Click += new System.EventHandler(this.显示漏出地面管线ToolStripMenuItem_Click);
//
// 管线碰撞分析ToolStripMenuItem
//
this.管线碰撞分析ToolStripMenuItem.Name = "管线碰撞分析ToolStripMenuItem";
this.管线碰撞分析ToolStripMenuItem.Size = new System.Drawing.Size(249, 26);
this.管线碰撞分析ToolStripMenuItem.Text = "管线碰撞分析";
this.管线碰撞分析ToolStripMenuItem.Click += new System.EventHandler(this.管线碰撞分析ToolStripMenuItem_Click);
//
// 管线间距分析ToolStripMenuItem
//
this.管线间距分析ToolStripMenuItem.Name = "管线间距分析ToolStripMenuItem";
this.管线间距分析ToolStripMenuItem.Size = new System.Drawing.Size(249, 26);
this.管线间距分析ToolStripMenuItem.Text = "管线间距分析";
this.管线间距分析ToolStripMenuItem.Click += new System.EventHandler(this.管线间距分析ToolStripMenuItem_Click);
//
// 管线水平距离ToolStripMenuItem
//
this.管线水平距离ToolStripMenuItem.Name = "管线水平距离ToolStripMenuItem";
this.管线水平距离ToolStripMenuItem.Size = new System.Drawing.Size(249, 26);
this.管线水平距离ToolStripMenuItem.Text = "管线水平距离";
this.管线水平距离ToolStripMenuItem.Click += new System.EventHandler(this.管线水平距离ToolStripMenuItem_Click);
//
// 管线垂直距离ToolStripMenuItem
//
this.管线垂直距离ToolStripMenuItem.Name = "管线垂直距离ToolStripMenuItem";
this.管线垂直距离ToolStripMenuItem.Size = new System.Drawing.Size(249, 26);
this.管线垂直距离ToolStripMenuItem.Text = "管线垂直距离";
this.管线垂直距离ToolStripMenuItem.Click += new System.EventHandler(this.管线垂直距离ToolStripMenuItem_Click);
//
// 数据管理ToolStripMenuItem
//
this.数据管理ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.Menu_DataManager_ImportMulti,
this.Menu_DataManager_ImportMultiByAbsolute,
this.雨水篦子入库ToolStripMenuItem1,
this.阀门入库ToolStripMenuItem1,
this.工井入库ToolStripMenuItem,
this.排水入库toolStripMenuItem3,
this.toolStripMenuItem8,
this.管线入库ToolStripMenuItem,
this.Menu_DataManager_ImportPipelineByAbsolute,
this.数据验证ToolStripMenuItem,
this.新建数据库要素集ToolStripMenuItem,
this.复制数据库要素集结构ToolStripMenuItem1,
this.复制数据库要素集ToolStripMenuItem,
this.合并数据库要素集ToolStripMenuItem,
this.备份数据库ToolStripMenuItem,
this.toolStripSeparator3,
this.shpToolStripMenuItem,
this.lgdToolStripMenuItem,
this.更新图层字段值ToolStripMenuItem,
this.检查图层ToolStripMenuItem,
this.检查管线节点ToolStripMenuItem});
this.数据管理ToolStripMenuItem.Name = "数据管理ToolStripMenuItem";
this.数据管理ToolStripMenuItem.Size = new System.Drawing.Size(81, 24);
this.数据管理ToolStripMenuItem.Text = "数据管理";
//
// Menu_DataManager_ImportMulti
//
this.Menu_DataManager_ImportMulti.Name = "Menu_DataManager_ImportMulti";
this.Menu_DataManager_ImportMulti.Size = new System.Drawing.Size(249, 26);
this.Menu_DataManager_ImportMulti.Text = "管孔方沟入库";
this.Menu_DataManager_ImportMulti.Click += new System.EventHandler(this.管孔方沟入库ToolStripMenuItem_Click);
//
// Menu_DataManager_ImportMultiByAbsolute
//
this.Menu_DataManager_ImportMultiByAbsolute.Name = "Menu_DataManager_ImportMultiByAbsolute";
this.Menu_DataManager_ImportMultiByAbsolute.Size = new System.Drawing.Size(249, 26);
this.Menu_DataManager_ImportMultiByAbsolute.Text = "管孔方沟以海拔高度入库";
this.Menu_DataManager_ImportMultiByAbsolute.Click += new System.EventHandler(this.Menu_DataManager_ImportMultiByAbsolute_Click);
//
// 雨水篦子入库ToolStripMenuItem1
//
this.雨水篦子入库ToolStripMenuItem1.Name = "雨水篦子入库ToolStripMenuItem1";
this.雨水篦子入库ToolStripMenuItem1.Size = new System.Drawing.Size(249, 26);
this.雨水篦子入库ToolStripMenuItem1.Text = "雨水篦子入库";
this.雨水篦子入库ToolStripMenuItem1.Click += new System.EventHandler(this.雨水篦子入库ToolStripMenuItem_Click);
//
// 阀门入库ToolStripMenuItem1
//
this.阀门入库ToolStripMenuItem1.Name = "阀门入库ToolStripMenuItem1";
this.阀门入库ToolStripMenuItem1.Size = new System.Drawing.Size(249, 26);
this.阀门入库ToolStripMenuItem1.Text = "阀门入库";
this.阀门入库ToolStripMenuItem1.Click += new System.EventHandler(this.阀门入库ToolStripMenuItem_Click);
//
// 工井入库ToolStripMenuItem
//
this.工井入库ToolStripMenuItem.Name = "工井入库ToolStripMenuItem";
this.工井入库ToolStripMenuItem.Size = new System.Drawing.Size(249, 26);
this.工井入库ToolStripMenuItem.Text = "工井入库";
this.工井入库ToolStripMenuItem.Click += new System.EventHandler(this.工井入库ToolStripMenuItem_Click);
//
// 排水入库toolStripMenuItem3
//
this.排水入库toolStripMenuItem3.Name = "排水入库toolStripMenuItem3";
this.排水入库toolStripMenuItem3.Size = new System.Drawing.Size(249, 26);
this.排水入库toolStripMenuItem3.Text = "排水入库";
this.排水入库toolStripMenuItem3.Click += new System.EventHandler(this.排水入库ToolStripMenuItem_Click_1);
//
// toolStripMenuItem8
//
this.toolStripMenuItem8.Name = "toolStripMenuItem8";
this.toolStripMenuItem8.Size = new System.Drawing.Size(249, 26);
this.toolStripMenuItem8.Text = "管点入库";
this.toolStripMenuItem8.Click += new System.EventHandler(this.toolStripMenuItem8_Click_1);
//
// 管线入库ToolStripMenuItem
//
this.管线入库ToolStripMenuItem.Name = "管线入库ToolStripMenuItem";
this.管线入库ToolStripMenuItem.Size = new System.Drawing.Size(249, 26);
this.管线入库ToolStripMenuItem.Text = "管线入库";
this.管线入库ToolStripMenuItem.Click += new System.EventHandler(this.管线入库ToolStripMenuItem_Click);
//
// Menu_DataManager_ImportPipelineByAbsolute
//
this.Menu_DataManager_ImportPipelineByAbsolute.Name = "Menu_DataManager_ImportPipelineByAbsolute";
this.Menu_DataManager_ImportPipelineByAbsolute.Size = new System.Drawing.Size(249, 26);
this.Menu_DataManager_ImportPipelineByAbsolute.Text = "管线以海拔高度入库";
this.Menu_DataManager_ImportPipelineByAbsolute.Click += new System.EventHandler(this.Menu_DataManager_ImportPipelineByAbsolute_Click);
//
// 数据验证ToolStripMenuItem
//
this.数据验证ToolStripMenuItem.Name = "数据验证ToolStripMenuItem";
this.数据验证ToolStripMenuItem.Size = new System.Drawing.Size(249, 26);
this.数据验证ToolStripMenuItem.Text = "数据验证";
this.数据验证ToolStripMenuItem.Click += new System.EventHandler(this.数据验证toolStripMenuItem3_Click);
//
// 新建数据库要素集ToolStripMenuItem
//
this.新建数据库要素集ToolStripMenuItem.Name = "新建数据库要素集ToolStripMenuItem";
this.新建数据库要素集ToolStripMenuItem.Size = new System.Drawing.Size(249, 26);
this.新建数据库要素集ToolStripMenuItem.Text = "新建数据库要素集";
this.新建数据库要素集ToolStripMenuItem.Click += new System.EventHandler(this.新建数据库数据集ToolStripMenuItem_Click);
//
// 复制数据库要素集结构ToolStripMenuItem1
//
this.复制数据库要素集结构ToolStripMenuItem1.Name = "复制数据库要素集结构ToolStripMenuItem1";
this.复制数据库要素集结构ToolStripMenuItem1.Size = new System.Drawing.Size(249, 26);
this.复制数据库要素集结构ToolStripMenuItem1.Text = "复制数据库要素集结构";
this.复制数据库要素集结构ToolStripMenuItem1.Click += new System.EventHandler(this.复制数据库要素集结构ToolStripMenuItem_Click);
//
// 复制数据库要素集ToolStripMenuItem
//
this.复制数据库要素集ToolStripMenuItem.Name = "复制数据库要素集ToolStripMenuItem";
this.复制数据库要素集ToolStripMenuItem.Size = new System.Drawing.Size(249, 26);
this.复制数据库要素集ToolStripMenuItem.Text = "复制数据库要素集";
this.复制数据库要素集ToolStripMenuItem.Click += new System.EventHandler(this.toolstripItem_CopyDataSet_Click);
//
// 合并数据库要素集ToolStripMenuItem
//
this.合并数据库要素集ToolStripMenuItem.Name = "合并数据库要素集ToolStripMenuItem";
this.合并数据库要素集ToolStripMenuItem.Size = new System.Drawing.Size(249, 26);
this.合并数据库要素集ToolStripMenuItem.Text = "合并数据库要素集";
this.合并数据库要素集ToolStripMenuItem.Click += new System.EventHandler(this.tooltripItem_UnionDataSet_Click);
//
// 备份数据库ToolStripMenuItem
//
this.备份数据库ToolStripMenuItem.Name = "备份数据库ToolStripMenuItem";
this.备份数据库ToolStripMenuItem.Size = new System.Drawing.Size(249, 26);
this.备份数据库ToolStripMenuItem.Text = "备份SqlServer数据库";
this.备份数据库ToolStripMenuItem.Click += new System.EventHandler(this.备份数据库toolStripMenuItem3_Click);
//
// toolStripSeparator3
//
this.toolStripSeparator3.Name = "toolStripSeparator3";
this.toolStripSeparator3.Size = new System.Drawing.Size(246, 6);
//
// shpToolStripMenuItem
//
this.shpToolStripMenuItem.Name = "shpToolStripMenuItem";
this.shpToolStripMenuItem.Size = new System.Drawing.Size(249, 26);
this.shpToolStripMenuItem.Text = "ShpToLgd、Kml";
this.shpToolStripMenuItem.Click += new System.EventHandler(this.shp2KMLToolStripMenuItem_Click);
//
// lgdToolStripMenuItem
//
this.lgdToolStripMenuItem.Name = "lgdToolStripMenuItem";
this.lgdToolStripMenuItem.Size = new System.Drawing.Size(249, 26);
this.lgdToolStripMenuItem.Text = "合并Lgd、Kml";
this.lgdToolStripMenuItem.Click += new System.EventHandler(this.合并lgdkml图层toolStripMenuItem3_Click);
//
// 更新图层字段值ToolStripMenuItem
//
this.更新图层字段值ToolStripMenuItem.Name = "更新图层字段值ToolStripMenuItem";
this.更新图层字段值ToolStripMenuItem.Size = new System.Drawing.Size(249, 26);
this.更新图层字段值ToolStripMenuItem.Text = "更新图层字段值";
this.更新图层字段值ToolStripMenuItem.Click += new System.EventHandler(this.更新图层字段值ToolStripMenuItem_Click);
//
// 检查图层ToolStripMenuItem
//
this.检查图层ToolStripMenuItem.Name = "检查图层ToolStripMenuItem";
this.检查图层ToolStripMenuItem.Size = new System.Drawing.Size(249, 26);
this.检查图层ToolStripMenuItem.Text = "检查图层字段";
this.检查图层ToolStripMenuItem.Click += new System.EventHandler(this.检查图层ToolStripMenuItem_Click);
//
// 检查管线节点ToolStripMenuItem
//
this.检查管线节点ToolStripMenuItem.Name = "检查管线节点ToolStripMenuItem";
this.检查管线节点ToolStripMenuItem.Size = new System.Drawing.Size(249, 26);
this.检查管线节点ToolStripMenuItem.Text = "检查管线节点";
this.检查管线节点ToolStripMenuItem.Click += new System.EventHandler(this.检查管线节点ToolStripMenuItem_Click);
//
// toolStripMenuItem2
//
this.toolStripMenuItem2.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.generateTopoDataMenuItem,
this.ConnexityAnalysisMenuItem,
this.CloseValvesAnalysisMenuItem,
this.TraceUpMenuItem,
this.TraceDownMenuItem,
this.ClearUpDownTraceMenuItem,
this.ClearCloseValvesAnalysisMenuItem,
this.清除连通分析结果ToolStripMenuItem});
this.toolStripMenuItem2.Name = "toolStripMenuItem2";
this.toolStripMenuItem2.Size = new System.Drawing.Size(51, 24);
this.toolStripMenuItem2.Text = "拓扑";
//
// generateTopoDataMenuItem
//
this.generateTopoDataMenuItem.Name = "generateTopoDataMenuItem";
this.generateTopoDataMenuItem.Size = new System.Drawing.Size(204, 26);
this.generateTopoDataMenuItem.Text = "创建拓扑";
this.generateTopoDataMenuItem.Click += new System.EventHandler(this.generateTopoDataMenuItem_Click);
//
// ConnexityAnalysisMenuItem
//
this.ConnexityAnalysisMenuItem.Name = "ConnexityAnalysisMenuItem";
this.ConnexityAnalysisMenuItem.Size = new System.Drawing.Size(204, 26);
this.ConnexityAnalysisMenuItem.Text = "连通分析";
this.ConnexityAnalysisMenuItem.Click += new System.EventHandler(this.ConnexityAnalysisMenuItem_Click);
//
// CloseValvesAnalysisMenuItem
//
this.CloseValvesAnalysisMenuItem.Name = "CloseValvesAnalysisMenuItem";
this.CloseValvesAnalysisMenuItem.Size = new System.Drawing.Size(204, 26);
this.CloseValvesAnalysisMenuItem.Text = "关阀分析";
this.CloseValvesAnalysisMenuItem.Click += new System.EventHandler(this.CloseValvesAnalysisMenuItem_Click);
//
// TraceUpMenuItem
//
this.TraceUpMenuItem.Name = "TraceUpMenuItem";
this.TraceUpMenuItem.Size = new System.Drawing.Size(204, 26);
this.TraceUpMenuItem.Text = "上游追踪";
this.TraceUpMenuItem.Click += new System.EventHandler(this.TraceUpMenuItem_Click);
//
// TraceDownMenuItem
//
this.TraceDownMenuItem.Name = "TraceDownMenuItem";
this.TraceDownMenuItem.Size = new System.Drawing.Size(204, 26);
this.TraceDownMenuItem.Text = "下游追踪";
this.TraceDownMenuItem.Click += new System.EventHandler(this.TraceDownMenuItem_Click);
//
// ClearUpDownTraceMenuItem
//
this.ClearUpDownTraceMenuItem.Name = "ClearUpDownTraceMenuItem";
this.ClearUpDownTraceMenuItem.Size = new System.Drawing.Size(204, 26);
this.ClearUpDownTraceMenuItem.Text = "清除追踪结果";
this.ClearUpDownTraceMenuItem.Click += new System.EventHandler(this.ClearUpDownTraceMenuItem_Click);
//
// ClearCloseValvesAnalysisMenuItem
//
this.ClearCloseValvesAnalysisMenuItem.Name = "ClearCloseValvesAnalysisMenuItem";
this.ClearCloseValvesAnalysisMenuItem.Size = new System.Drawing.Size(204, 26);
this.ClearCloseValvesAnalysisMenuItem.Text = "清除关阀分析结果";
this.ClearCloseValvesAnalysisMenuItem.Click += new System.EventHandler(this.ClearCloseValvesAnalysisMenuItem_Click);
//
// 清除连通分析结果ToolStripMenuItem
//
this.清除连通分析结果ToolStripMenuItem.Name = "清除连通分析结果ToolStripMenuItem";
this.清除连通分析结果ToolStripMenuItem.Size = new System.Drawing.Size(204, 26);
this.清除连通分析结果ToolStripMenuItem.Text = "清除连通分析结果";
this.清除连通分析结果ToolStripMenuItem.Click += new System.EventHandler(this.清除连通分析结果ToolStripMenuItem_Click);
//
// 演示ToolStripMenuItem
//
this.演示ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.DynamicCarMenuItem,
this.CopterMenuItem,
this.MissileMenuItem,
this.addRouteObjectMenuItem,
this.MenuItemShowSingleModel,
this.粒子系统ToolStripMenuItem,
this.对象闪烁ToolStripMenuItem,
this.线增长动画ToolStripMenuItem,
this.选中发光ToolStripMenuItem,
this.lGD数据源管理ToolStripMenuItem});
this.演示ToolStripMenuItem.Name = "演示ToolStripMenuItem";
this.演示ToolStripMenuItem.Size = new System.Drawing.Size(51, 24);
this.演示ToolStripMenuItem.Text = "演示";
//
// DynamicCarMenuItem
//
this.DynamicCarMenuItem.Name = "DynamicCarMenuItem";
this.DynamicCarMenuItem.Size = new System.Drawing.Size(216, 26);
this.DynamicCarMenuItem.Text = "汽车";
this.DynamicCarMenuItem.Click += new System.EventHandler(this.DynamicCarMenuItem_Click);
//
// CopterMenuItem
//
this.CopterMenuItem.Name = "CopterMenuItem";
this.CopterMenuItem.Size = new System.Drawing.Size(216, 26);
this.CopterMenuItem.Text = "飞机";
this.CopterMenuItem.Click += new System.EventHandler(this.CopterMenuItem_Click);
//
// MissileMenuItem
//
this.MissileMenuItem.Name = "MissileMenuItem";
this.MissileMenuItem.Size = new System.Drawing.Size(216, 26);
this.MissileMenuItem.Text = "导弹";
this.MissileMenuItem.Click += new System.EventHandler(this.MissileMenuItem_Click);
//
// addRouteObjectMenuItem
//
this.addRouteObjectMenuItem.Name = "addRouteObjectMenuItem";
this.addRouteObjectMenuItem.Size = new System.Drawing.Size(216, 26);
this.addRouteObjectMenuItem.Text = "沿线运动对象";
this.addRouteObjectMenuItem.Click += new System.EventHandler(this.addRouteObjectMenuItem_Click);
//
// MenuItemShowSingleModel
//
this.MenuItemShowSingleModel.Name = "MenuItemShowSingleModel";
this.MenuItemShowSingleModel.Size = new System.Drawing.Size(216, 26);
this.MenuItemShowSingleModel.Text = "展示单个模型";
this.MenuItemShowSingleModel.Click += new System.EventHandler(this.MenuItemShowSingleModel_Click);
//
// 粒子系统ToolStripMenuItem
//
this.粒子系统ToolStripMenuItem.Name = "粒子系统ToolStripMenuItem";
this.粒子系统ToolStripMenuItem.Size = new System.Drawing.Size(216, 26);
this.粒子系统ToolStripMenuItem.Text = "粒子系统";
this.粒子系统ToolStripMenuItem.Click += new System.EventHandler(this.粒子系统ToolStripMenuItem_Click);
//
// 对象闪烁ToolStripMenuItem
//
this.对象闪烁ToolStripMenuItem.Name = "对象闪烁ToolStripMenuItem";
this.对象闪烁ToolStripMenuItem.Size = new System.Drawing.Size(216, 26);
this.对象闪烁ToolStripMenuItem.Text = "选中对象闪烁";
this.对象闪烁ToolStripMenuItem.Click += new System.EventHandler(this.对象闪烁ToolStripMenuItem_Click);
//
// 线增长动画ToolStripMenuItem
//
this.线增长动画ToolStripMenuItem.Name = "线增长动画ToolStripMenuItem";
this.线增长动画ToolStripMenuItem.Size = new System.Drawing.Size(216, 26);
this.线增长动画ToolStripMenuItem.Text = "线增长动画";
this.线增长动画ToolStripMenuItem.Visible = false;
this.线增长动画ToolStripMenuItem.Click += new System.EventHandler(this.线增长动画ToolStripMenuItem_Click);
//
// 选中发光ToolStripMenuItem
//
this.选中发光ToolStripMenuItem.Name = "选中发光ToolStripMenuItem";
this.选中发光ToolStripMenuItem.Size = new System.Drawing.Size(216, 26);
this.选中发光ToolStripMenuItem.Text = "选中对象发光";
this.选中发光ToolStripMenuItem.Click += new System.EventHandler(this.选中发光ToolStripMenuItem_Click);
//
// lGD数据源管理ToolStripMenuItem
//
this.lGD数据源管理ToolStripMenuItem.Name = "lGD数据源管理ToolStripMenuItem";
this.lGD数据源管理ToolStripMenuItem.Size = new System.Drawing.Size(216, 26);
this.lGD数据源管理ToolStripMenuItem.Text = "LGD数据源管理";
this.lGD数据源管理ToolStripMenuItem.Click += new System.EventHandler(this.lGD数据源管理ToolStripMenuItem_Click);
//
// 关于ToolStripMenuItem
//
this.关于ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.AboutUsMenu,
this.帮助ToolStripMenuItem});
this.关于ToolStripMenuItem.Name = "关于ToolStripMenuItem";
this.关于ToolStripMenuItem.Size = new System.Drawing.Size(51, 24);
this.关于ToolStripMenuItem.Text = "关于";
this.关于ToolStripMenuItem.Click += new System.EventHandler(this.关于ToolStripMenuItem_Click);
//
// AboutUsMenu
//
this.AboutUsMenu.Name = "AboutUsMenu";
this.AboutUsMenu.Size = new System.Drawing.Size(216, 26);
this.AboutUsMenu.Text = "关于我们";
this.AboutUsMenu.Click += new System.EventHandler(this.AboutUsMenu_Click);
//
// 帮助ToolStripMenuItem
//
this.帮助ToolStripMenuItem.Name = "帮助ToolStripMenuItem";
this.帮助ToolStripMenuItem.Size = new System.Drawing.Size(216, 26);
this.帮助ToolStripMenuItem.Text = "帮助";
this.帮助ToolStripMenuItem.Visible = false;
this.帮助ToolStripMenuItem.Click += new System.EventHandler(this.帮助ToolStripMenuItem_Click);
//
// panelFindLocate
//
this.panelFindLocate.BackColor = System.Drawing.Color.White;
this.panelFindLocate.Location = new System.Drawing.Point(120, 159);
this.panelFindLocate.Name = "panelFindLocate";
this.panelFindLocate.Size = new System.Drawing.Size(281, 266);
this.panelFindLocate.TabIndex = 4;
//
// treeContexMenu
//
this.treeContexMenu.ImageScalingSize = new System.Drawing.Size(20, 20);
this.treeContexMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.Delete,
this.Rename,
this.atrributeToolStripMenuItem,
this.toolStripMenuItem10,
this.FlyAlongWithLineMenuItem,
this.RotateAroundObjectMenuItem,
this.ConvertToWaterMenuItem,
this.ShowSingleModelTreeMenuItem,
this.attributeMappingToolStripMenuItem,
this.闪烁发光ToolStripMenuItem});
this.treeContexMenu.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.VerticalStackWithOverflow;
this.treeContexMenu.Name = "Add";
this.treeContexMenu.Size = new System.Drawing.Size(184, 244);
this.treeContexMenu.Text = "添加";
//
// Delete
//
this.Delete.Name = "Delete";
this.Delete.Size = new System.Drawing.Size(183, 24);
this.Delete.Text = "删除";
this.Delete.Click += new System.EventHandler(this.Delete_Click);
//
// Rename
//
this.Rename.Name = "Rename";
this.Rename.Size = new System.Drawing.Size(183, 24);
this.Rename.Text = "重命名";
this.Rename.Click += new System.EventHandler(this.Rename_Click);
//
// atrributeToolStripMenuItem
//
this.atrributeToolStripMenuItem.Name = "atrributeToolStripMenuItem";
this.atrributeToolStripMenuItem.Size = new System.Drawing.Size(183, 24);
this.atrributeToolStripMenuItem.Text = "属性";
this.atrributeToolStripMenuItem.Click += new System.EventHandler(this.atrributeToolStripMenuItem_Click);
//
// toolStripMenuItem10
//
this.toolStripMenuItem10.Name = "toolStripMenuItem10";
this.toolStripMenuItem10.Size = new System.Drawing.Size(183, 24);
this.toolStripMenuItem10.Text = "定位";
this.toolStripMenuItem10.Click += new System.EventHandler(this.toolStripMenuItem10_Click);
//
// FlyAlongWithLineMenuItem
//
this.FlyAlongWithLineMenuItem.Name = "FlyAlongWithLineMenuItem";
this.FlyAlongWithLineMenuItem.Size = new System.Drawing.Size(183, 24);
this.FlyAlongWithLineMenuItem.Text = "沿线飞行";
this.FlyAlongWithLineMenuItem.Click += new System.EventHandler(this.FlyAlongWithLineMenuItem_Click);
//
// RotateAroundObjectMenuItem
//
this.RotateAroundObjectMenuItem.Name = "RotateAroundObjectMenuItem";
this.RotateAroundObjectMenuItem.Size = new System.Drawing.Size(183, 24);
this.RotateAroundObjectMenuItem.Text = "绕对象旋转";
this.RotateAroundObjectMenuItem.Click += new System.EventHandler(this.RotateAroundObjectMenuItem_Click);
//
// ConvertToWaterMenuItem
//
this.ConvertToWaterMenuItem.Name = "ConvertToWaterMenuItem";
this.ConvertToWaterMenuItem.Size = new System.Drawing.Size(183, 24);
this.ConvertToWaterMenuItem.Text = "转换为水面";
this.ConvertToWaterMenuItem.Click += new System.EventHandler(this.ConvertToWaterMenuItem_Click);
//
// ShowSingleModelTreeMenuItem
//
this.ShowSingleModelTreeMenuItem.Name = "ShowSingleModelTreeMenuItem";
this.ShowSingleModelTreeMenuItem.Size = new System.Drawing.Size(183, 24);
this.ShowSingleModelTreeMenuItem.Text = "展示单个模型";
this.ShowSingleModelTreeMenuItem.Click += new System.EventHandler(this.ShowSingleModelTreeMenuItem_Click);
//
// attributeMappingToolStripMenuItem
//
this.attributeMappingToolStripMenuItem.Name = "attributeMappingToolStripMenuItem";
this.attributeMappingToolStripMenuItem.Size = new System.Drawing.Size(183, 24);
this.attributeMappingToolStripMenuItem.Text = "打开属性对照表";
this.attributeMappingToolStripMenuItem.Visible = false;
this.attributeMappingToolStripMenuItem.Click += new System.EventHandler(this.attributeMappingToolStripMenuItem_Click);
//
// 闪烁发光ToolStripMenuItem
//
this.闪烁发光ToolStripMenuItem.Name = "闪烁发光ToolStripMenuItem";
this.闪烁发光ToolStripMenuItem.Size = new System.Drawing.Size(183, 24);
this.闪烁发光ToolStripMenuItem.Text = "闪烁发光";
this.闪烁发光ToolStripMenuItem.Click += new System.EventHandler(this.闪烁发光ToolStripMenuItem_Click);
//
// myPlaceContextMenu
//
this.myPlaceContextMenu.ImageScalingSize = new System.Drawing.Size(20, 20);
this.myPlaceContextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.RefreshMyplaceListMenuItem,
this.RemoveAllFeature,
this.MyPlaceSelectableMenuItem,
this.MyplaceEditableMenuItem,
this.SaveMyPlaceAs,
this.MyPlaceFeatureAddLayerMenuItem,
this.MyPlaceLayerOpaqueMenuItem,
this.MyPlaceVisibleDistMenuItem,
this.MyPlaceVisiblePixelSizeMenuItem});
this.myPlaceContextMenu.Name = "myPlaceContextMenu";
this.myPlaceContextMenu.Size = new System.Drawing.Size(169, 220);
//
// RefreshMyplaceListMenuItem
//
this.RefreshMyplaceListMenuItem.Name = "RefreshMyplaceListMenuItem";
this.RefreshMyplaceListMenuItem.Size = new System.Drawing.Size(168, 24);
this.RefreshMyplaceListMenuItem.Text = "刷新列表";
this.RefreshMyplaceListMenuItem.Click += new System.EventHandler(this.RefreshMyplaceListMenuItem_Click);
//
// RemoveAllFeature
//
this.RemoveAllFeature.Name = "RemoveAllFeature";
this.RemoveAllFeature.Size = new System.Drawing.Size(168, 24);
this.RemoveAllFeature.Text = "移除所有";
this.RemoveAllFeature.Click += new System.EventHandler(this.RemoveAllFeature_Click);
//
// MyPlaceSelectableMenuItem
//
this.MyPlaceSelectableMenuItem.Name = "MyPlaceSelectableMenuItem";
this.MyPlaceSelectableMenuItem.Size = new System.Drawing.Size(168, 24);
this.MyPlaceSelectableMenuItem.Text = "可选择";
this.MyPlaceSelectableMenuItem.Click += new System.EventHandler(this.MyPlaceSelectableMenuItem_Click);
//
// MyplaceEditableMenuItem
//
this.MyplaceEditableMenuItem.Name = "MyplaceEditableMenuItem";
this.MyplaceEditableMenuItem.Size = new System.Drawing.Size(168, 24);
this.MyplaceEditableMenuItem.Text = "可编辑";
this.MyplaceEditableMenuItem.Click += new System.EventHandler(this.MyplaceEditableMenuItem_Click);
//
// SaveMyPlaceAs
//
this.SaveMyPlaceAs.Name = "SaveMyPlaceAs";
this.SaveMyPlaceAs.Size = new System.Drawing.Size(168, 24);
this.SaveMyPlaceAs.Text = "另存为";
this.SaveMyPlaceAs.Click += new System.EventHandler(this.SaveMyPlaceAs_Click);
//
// MyPlaceFeatureAddLayerMenuItem
//
this.MyPlaceFeatureAddLayerMenuItem.Name = "MyPlaceFeatureAddLayerMenuItem";
this.MyPlaceFeatureAddLayerMenuItem.Size = new System.Drawing.Size(168, 24);
this.MyPlaceFeatureAddLayerMenuItem.Text = "目标图层";
this.MyPlaceFeatureAddLayerMenuItem.Click += new System.EventHandler(this.MyPlaceFeatureAddLayerMenuItem_Click);
//
// MyPlaceLayerOpaqueMenuItem
//
this.MyPlaceLayerOpaqueMenuItem.Name = "MyPlaceLayerOpaqueMenuItem";
this.MyPlaceLayerOpaqueMenuItem.Size = new System.Drawing.Size(168, 24);
this.MyPlaceLayerOpaqueMenuItem.Text = "图层透明度";
this.MyPlaceLayerOpaqueMenuItem.Click += new System.EventHandler(this.MyPlaceLayerOpaqueMenuItem_Click);
//
// MyPlaceVisibleDistMenuItem
//
this.MyPlaceVisibleDistMenuItem.Name = "MyPlaceVisibleDistMenuItem";
this.MyPlaceVisibleDistMenuItem.Size = new System.Drawing.Size(168, 24);
this.MyPlaceVisibleDistMenuItem.Text = "对象可见距离";
this.MyPlaceVisibleDistMenuItem.Click += new System.EventHandler(this.MyPlaceVisibleDistMenuItem_Click);
//
// MyPlaceVisiblePixelSizeMenuItem
//
this.MyPlaceVisiblePixelSizeMenuItem.Name = "MyPlaceVisiblePixelSizeMenuItem";
this.MyPlaceVisiblePixelSizeMenuItem.Size = new System.Drawing.Size(168, 24);
this.MyPlaceVisiblePixelSizeMenuItem.Text = "对象可见像素";
this.MyPlaceVisiblePixelSizeMenuItem.Click += new System.EventHandler(this.MyPlaceVisiblePixelSizeMenuItem_Click);
//
// layerNodeContexMenu
//
this.layerNodeContexMenu.ImageScalingSize = new System.Drawing.Size(20, 20);
this.layerNodeContexMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.RefreshLayerFeatureListMenuItem,
this.RemoveLayer,
this.移除所有要素toolStripMenuItem3,
this.MoveUp,
this.MoveDown,
this.LayerSelectableMenuItem,
this.LayerEditableMenuItem,
this.SaveLayerMenuItem,
this.SaveAsLayerMenuItem,
this.FeatureAddLayerMenuItem,
this.LayerOpaqueMenuItem,
this.MenuItemLayerVisibleAlt,
this.MenuItemObjectVisibleDist,
this.MenuItemVisiblePixelSize,
this.打开属性表ToolStripMenuItem,
this.框选打开属性表toolStripMenuItem6,
this.字段编辑ToolStripMenuItem,
this.改变图层风格ToolStripMenuItem,
this.属性ToolStripMenuItem,
this.管线导出CADToolStripMenuItem,
this.面转为水面ToolStripMenuItem});
this.layerNodeContexMenu.Name = "layerNodeContexMenu";
this.layerNodeContexMenu.Size = new System.Drawing.Size(184, 508);
//
// RefreshLayerFeatureListMenuItem
//
this.RefreshLayerFeatureListMenuItem.Name = "RefreshLayerFeatureListMenuItem";
this.RefreshLayerFeatureListMenuItem.Size = new System.Drawing.Size(183, 24);
this.RefreshLayerFeatureListMenuItem.Text = "刷新列表";
this.RefreshLayerFeatureListMenuItem.Click += new System.EventHandler(this.RefreshLayerFeatureListMenuItem_Click);
//
// RemoveLayer
//
this.RemoveLayer.Name = "RemoveLayer";
this.RemoveLayer.Size = new System.Drawing.Size(183, 24);
this.RemoveLayer.Text = "移除图层";
this.RemoveLayer.Click += new System.EventHandler(this.RemoveLayer_Click);
//
// 移除所有要素toolStripMenuItem3
//
this.移除所有要素toolStripMenuItem3.Name = "移除所有要素toolStripMenuItem3";
this.移除所有要素toolStripMenuItem3.Size = new System.Drawing.Size(183, 24);
this.移除所有要素toolStripMenuItem3.Text = "移除所有";
this.移除所有要素toolStripMenuItem3.Click += new System.EventHandler(this.移除所有要素toolStripMenuItem3_Click);
//
// MoveUp
//
this.MoveUp.Name = "MoveUp";
this.MoveUp.Size = new System.Drawing.Size(183, 24);
this.MoveUp.Text = "上移";
this.MoveUp.Click += new System.EventHandler(this.MoveUp_Click);
//
// MoveDown
//
this.MoveDown.Name = "MoveDown";
this.MoveDown.Size = new System.Drawing.Size(183, 24);
this.MoveDown.Text = "下移";
this.MoveDown.Click += new System.EventHandler(this.MoveDown_Click);
//
// LayerSelectableMenuItem
//
this.LayerSelectableMenuItem.Name = "LayerSelectableMenuItem";
this.LayerSelectableMenuItem.Size = new System.Drawing.Size(183, 24);
this.LayerSelectableMenuItem.Text = "可选择";
this.LayerSelectableMenuItem.Click += new System.EventHandler(this.LayerSelectableMenuItem_Click);
//
// LayerEditableMenuItem
//
this.LayerEditableMenuItem.Name = "LayerEditableMenuItem";
this.LayerEditableMenuItem.Size = new System.Drawing.Size(183, 24);
this.LayerEditableMenuItem.Text = "可编辑";
this.LayerEditableMenuItem.Click += new System.EventHandler(this.LayerEditableMenuItem_Click);
//
// SaveLayerMenuItem
//
this.SaveLayerMenuItem.Name = "SaveLayerMenuItem";
this.SaveLayerMenuItem.Size = new System.Drawing.Size(183, 24);
this.SaveLayerMenuItem.Text = "保存";
this.SaveLayerMenuItem.Click += new System.EventHandler(this.SaveLayerMenuItem_Click);
//
// SaveAsLayerMenuItem
//
this.SaveAsLayerMenuItem.Name = "SaveAsLayerMenuItem";
this.SaveAsLayerMenuItem.Size = new System.Drawing.Size(183, 24);
this.SaveAsLayerMenuItem.Text = "另存为...";
this.SaveAsLayerMenuItem.Click += new System.EventHandler(this.SaveAsLayerMenuItem_Click);
//
// FeatureAddLayerMenuItem
//
this.FeatureAddLayerMenuItem.Name = "FeatureAddLayerMenuItem";
this.FeatureAddLayerMenuItem.Size = new System.Drawing.Size(183, 24);
this.FeatureAddLayerMenuItem.Text = "目标图层";
this.FeatureAddLayerMenuItem.Click += new System.EventHandler(this.FeatureAddLayerMenuItem_Click);
//
// LayerOpaqueMenuItem
//
this.LayerOpaqueMenuItem.Name = "LayerOpaqueMenuItem";
this.LayerOpaqueMenuItem.Size = new System.Drawing.Size(183, 24);
this.LayerOpaqueMenuItem.Text = "图层透明度";
this.LayerOpaqueMenuItem.Click += new System.EventHandler(this.LayerOpaqueMenuItem_Click);
//
// MenuItemLayerVisibleAlt
//
this.MenuItemLayerVisibleAlt.Name = "MenuItemLayerVisibleAlt";
this.MenuItemLayerVisibleAlt.Size = new System.Drawing.Size(183, 24);
this.MenuItemLayerVisibleAlt.Text = "图层可见高度";
this.MenuItemLayerVisibleAlt.Click += new System.EventHandler(this.MenuItemLayerVisibleAlt_Click);
//
// MenuItemObjectVisibleDist
//
this.MenuItemObjectVisibleDist.Name = "MenuItemObjectVisibleDist";
this.MenuItemObjectVisibleDist.Size = new System.Drawing.Size(183, 24);
this.MenuItemObjectVisibleDist.Text = "对象可见距离";
this.MenuItemObjectVisibleDist.Click += new System.EventHandler(this.MenuItemObjectVisibleDist_Click);
//
// MenuItemVisiblePixelSize
//
this.MenuItemVisiblePixelSize.Name = "MenuItemVisiblePixelSize";
this.MenuItemVisiblePixelSize.Size = new System.Drawing.Size(183, 24);
this.MenuItemVisiblePixelSize.Text = "对象可见像素";
this.MenuItemVisiblePixelSize.Click += new System.EventHandler(this.MenuItemVisiblePixelSize_Click);
//
// 打开属性表ToolStripMenuItem
//
this.打开属性表ToolStripMenuItem.Name = "打开属性表ToolStripMenuItem";
this.打开属性表ToolStripMenuItem.Size = new System.Drawing.Size(183, 24);
this.打开属性表ToolStripMenuItem.Text = "打开属性表";
this.打开属性表ToolStripMenuItem.Click += new System.EventHandler(this.打开属性表ToolStripMenuItem_Click);
//
// 框选打开属性表toolStripMenuItem6
//
this.框选打开属性表toolStripMenuItem6.Name = "框选打开属性表toolStripMenuItem6";
this.框选打开属性表toolStripMenuItem6.Size = new System.Drawing.Size(183, 24);
this.框选打开属性表toolStripMenuItem6.Text = "框选打开属性表";
this.框选打开属性表toolStripMenuItem6.Click += new System.EventHandler(this.框选打开属性表toolStripMenuItem6_Click);
//
// 字段编辑ToolStripMenuItem
//
this.字段编辑ToolStripMenuItem.Name = "字段编辑ToolStripMenuItem";
this.字段编辑ToolStripMenuItem.Size = new System.Drawing.Size(183, 24);
this.字段编辑ToolStripMenuItem.Text = "字段编辑";
this.字段编辑ToolStripMenuItem.Click += new System.EventHandler(this.字段编辑ToolStripMenuItem_Click);
//
// 改变图层风格ToolStripMenuItem
//
this.改变图层风格ToolStripMenuItem.Name = "改变图层风格ToolStripMenuItem";
this.改变图层风格ToolStripMenuItem.Size = new System.Drawing.Size(183, 24);
this.改变图层风格ToolStripMenuItem.Text = "改变图层风格";
this.改变图层风格ToolStripMenuItem.Click += new System.EventHandler(this.改变图层风格ToolStripMenuItem_Click);
//
// 属性ToolStripMenuItem
//
this.属性ToolStripMenuItem.Name = "属性ToolStripMenuItem";
this.属性ToolStripMenuItem.Size = new System.Drawing.Size(183, 24);
this.属性ToolStripMenuItem.Text = "属性";
this.属性ToolStripMenuItem.Click += new System.EventHandler(this.属性ToolStripMenuItem_Click);
//
// 管线导出CADToolStripMenuItem
//
this.管线导出CADToolStripMenuItem.Name = "管线导出CADToolStripMenuItem";
this.管线导出CADToolStripMenuItem.Size = new System.Drawing.Size(183, 24);
this.管线导出CADToolStripMenuItem.Text = "管线导出CAD";
this.管线导出CADToolStripMenuItem.Click += new System.EventHandler(this.管线导出CADToolStripMenuItem_Click_1);
//
// 面转为水面ToolStripMenuItem
//
this.面转为水面ToolStripMenuItem.Name = "面转为水面ToolStripMenuItem";
this.面转为水面ToolStripMenuItem.Size = new System.Drawing.Size(183, 24);
this.面转为水面ToolStripMenuItem.Text = "面转为水面";
this.面转为水面ToolStripMenuItem.Click += new System.EventHandler(this.面转为水面ToolStripMenuItem_Click);
//
// timerWaterPipe
//
this.timerWaterPipe.Tick += new System.EventHandler(this.timerWaterPipe_Tick);
//
// styleManager1
//
this.styleManager1.ManagerStyle = DevComponents.DotNetBar.eStyle.Office2007Black;
//
// dotNetBarManager1
//
this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.F1);
this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlC);
this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlA);
this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlV);
this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlX);
this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlZ);
this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlY);
this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Del);
this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Ins);
this.dotNetBarManager1.BottomDockSite = this.dockSite4;
this.dotNetBarManager1.EnableFullSizeDock = false;
this.dotNetBarManager1.LeftDockSite = this.dockSite1;
this.dotNetBarManager1.ParentForm = this;
this.dotNetBarManager1.RightDockSite = this.dockSite2;
this.dotNetBarManager1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Windows7;
this.dotNetBarManager1.ToolbarBottomDockSite = this.dockSite8;
this.dotNetBarManager1.ToolbarLeftDockSite = this.dockSite5;
this.dotNetBarManager1.ToolbarRightDockSite = this.dockSite6;
this.dotNetBarManager1.ToolbarTopDockSite = this.dockSite7;
this.dotNetBarManager1.TopDockSite = this.dockSite3;
//
// dockSite4
//
this.dockSite4.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
this.dockSite4.Dock = System.Windows.Forms.DockStyle.Bottom;
this.dockSite4.Location = new System.Drawing.Point(0, 684);
this.dockSite4.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.dockSite4.Name = "dockSite4";
this.dockSite4.Size = new System.Drawing.Size(1124, 0);
this.dockSite4.TabIndex = 14;
this.dockSite4.TabStop = false;
//
// dockSite1
//
this.dockSite1.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
this.dockSite1.Dock = System.Windows.Forms.DockStyle.Left;
this.dockSite1.Location = new System.Drawing.Point(0, 28);
this.dockSite1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.dockSite1.Name = "dockSite1";
this.dockSite1.Size = new System.Drawing.Size(0, 656);
this.dockSite1.TabIndex = 11;
this.dockSite1.TabStop = false;
//
// dockSite2
//
this.dockSite2.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
this.dockSite2.Dock = System.Windows.Forms.DockStyle.Right;
this.dockSite2.Location = new System.Drawing.Point(1124, 28);
this.dockSite2.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.dockSite2.Name = "dockSite2";
this.dockSite2.Size = new System.Drawing.Size(0, 656);
this.dockSite2.TabIndex = 12;
this.dockSite2.TabStop = false;
//
// dockSite8
//
this.dockSite8.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
this.dockSite8.Dock = System.Windows.Forms.DockStyle.Bottom;
this.dockSite8.Location = new System.Drawing.Point(0, 684);
this.dockSite8.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.dockSite8.Name = "dockSite8";
this.dockSite8.Size = new System.Drawing.Size(1124, 0);
this.dockSite8.TabIndex = 18;
this.dockSite8.TabStop = false;
//
// dockSite5
//
this.dockSite5.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
this.dockSite5.Dock = System.Windows.Forms.DockStyle.Left;
this.dockSite5.Location = new System.Drawing.Point(0, 0);
this.dockSite5.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.dockSite5.Name = "dockSite5";
this.dockSite5.Size = new System.Drawing.Size(0, 684);
this.dockSite5.TabIndex = 15;
this.dockSite5.TabStop = false;
//
// dockSite6
//
this.dockSite6.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
this.dockSite6.Dock = System.Windows.Forms.DockStyle.Right;
this.dockSite6.Location = new System.Drawing.Point(1124, 0);
this.dockSite6.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.dockSite6.Name = "dockSite6";
this.dockSite6.Size = new System.Drawing.Size(0, 684);
this.dockSite6.TabIndex = 16;
this.dockSite6.TabStop = false;
//
// dockSite7
//
this.dockSite7.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
this.dockSite7.Dock = System.Windows.Forms.DockStyle.Top;
this.dockSite7.Location = new System.Drawing.Point(0, 0);
this.dockSite7.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.dockSite7.Name = "dockSite7";
this.dockSite7.Size = new System.Drawing.Size(1124, 0);
this.dockSite7.TabIndex = 17;
this.dockSite7.TabStop = false;
//
// dockSite3
//
this.dockSite3.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
this.dockSite3.Dock = System.Windows.Forms.DockStyle.Top;
this.dockSite3.Location = new System.Drawing.Point(0, 0);
this.dockSite3.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.dockSite3.Name = "dockSite3";
this.dockSite3.Size = new System.Drawing.Size(1124, 0);
this.dockSite3.TabIndex = 13;
this.dockSite3.TabStop = false;
//
// rMouseUpContextMenuStrip
//
this.rMouseUpContextMenuStrip.ImageScalingSize = new System.Drawing.Size(20, 20);
this.rMouseUpContextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.rmuPauseFlyMenuItem,
this.rmuContinueFlyMenuItem,
this.rmuStopFlyMenuItem,
this.rmuRotateCenterFlyMenuItem,
this.RulerDistanceItem,
this.ChooseFeatureItem,
this.MoveFeatureItem,
this.rmuFullScreenMenuItem,
this.rmuCameraNavigation,
this.属性ToolStripMenuItem1,
this.框选导出图层ToolStripMenuItem});
this.rMouseUpContextMenuStrip.Name = "rMouseUpContextMenuStrip";
this.rMouseUpContextMenuStrip.Size = new System.Drawing.Size(169, 268);
//
// rmuPauseFlyMenuItem
//
this.rmuPauseFlyMenuItem.Name = "rmuPauseFlyMenuItem";
this.rmuPauseFlyMenuItem.Size = new System.Drawing.Size(168, 24);
this.rmuPauseFlyMenuItem.Text = "暂停飞行";
this.rmuPauseFlyMenuItem.Click += new System.EventHandler(this.rmuPauseFlyMenuItem_Click);
//
// rmuContinueFlyMenuItem
//
this.rmuContinueFlyMenuItem.Name = "rmuContinueFlyMenuItem";
this.rmuContinueFlyMenuItem.Size = new System.Drawing.Size(168, 24);
this.rmuContinueFlyMenuItem.Text = "继续飞行";
this.rmuContinueFlyMenuItem.Click += new System.EventHandler(this.rmuContinueFlyMenuItem_Click);
//
// rmuStopFlyMenuItem
//
this.rmuStopFlyMenuItem.Name = "rmuStopFlyMenuItem";
this.rmuStopFlyMenuItem.Size = new System.Drawing.Size(168, 24);
this.rmuStopFlyMenuItem.Text = "终止飞行";
this.rmuStopFlyMenuItem.Click += new System.EventHandler(this.rmuStopFlyMenuItem_Click);
//
// rmuRotateCenterFlyMenuItem
//
this.rmuRotateCenterFlyMenuItem.Name = "rmuRotateCenterFlyMenuItem";
this.rmuRotateCenterFlyMenuItem.Size = new System.Drawing.Size(168, 24);
this.rmuRotateCenterFlyMenuItem.Text = "绕中心飞行";
this.rmuRotateCenterFlyMenuItem.Click += new System.EventHandler(this.rmuRotateCenterFlyMenuItem_Click);
//
// RulerDistanceItem
//
this.RulerDistanceItem.Name = "RulerDistanceItem";
this.RulerDistanceItem.Size = new System.Drawing.Size(168, 24);
this.RulerDistanceItem.Text = "测量距离";
this.RulerDistanceItem.Click += new System.EventHandler(this.RulerDistanceItem_Click);
//
// ChooseFeatureItem
//
this.ChooseFeatureItem.Name = "ChooseFeatureItem";
this.ChooseFeatureItem.Size = new System.Drawing.Size(168, 24);
this.ChooseFeatureItem.Text = "选择对象";
this.ChooseFeatureItem.Click += new System.EventHandler(this.ChooseFeatureItem_Click);
//
// MoveFeatureItem
//
this.MoveFeatureItem.Name = "MoveFeatureItem";
this.MoveFeatureItem.Size = new System.Drawing.Size(168, 24);
this.MoveFeatureItem.Text = "平移对象";
this.MoveFeatureItem.Click += new System.EventHandler(this.MoveFeatureItem_Click);
//
// rmuFullScreenMenuItem
//
this.rmuFullScreenMenuItem.Name = "rmuFullScreenMenuItem";
this.rmuFullScreenMenuItem.Size = new System.Drawing.Size(168, 24);
this.rmuFullScreenMenuItem.Text = "全屏显示";
this.rmuFullScreenMenuItem.Click += new System.EventHandler(this.rmuFullScreenMenuItem_Click);
//
// rmuCameraNavigation
//
this.rmuCameraNavigation.Name = "rmuCameraNavigation";
this.rmuCameraNavigation.Size = new System.Drawing.Size(168, 24);
this.rmuCameraNavigation.Text = "浏览模式";
this.rmuCameraNavigation.Click += new System.EventHandler(this.rmuCameraNavigation_Click);
//
// 属性ToolStripMenuItem1
//
this.属性ToolStripMenuItem1.Name = "属性ToolStripMenuItem1";
this.属性ToolStripMenuItem1.Size = new System.Drawing.Size(168, 24);
this.属性ToolStripMenuItem1.Text = "属性";
this.属性ToolStripMenuItem1.Click += new System.EventHandler(this.属性ToolStripMenuItem1_Click);
//
// 框选导出图层ToolStripMenuItem
//
this.框选导出图层ToolStripMenuItem.Name = "框选导出图层ToolStripMenuItem";
this.框选导出图层ToolStripMenuItem.Size = new System.Drawing.Size(168, 24);
this.框选导出图层ToolStripMenuItem.Text = "框选导出图层";
this.框选导出图层ToolStripMenuItem.Click += new System.EventHandler(this.框选导出图层toolStripMenuItem3_Click);
//
// statusStrip1
//
this.statusStrip1.AutoSize = false;
this.statusStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripStatusLabelCurrentAction,
this.toolStripStatusLabelDeskAddLayer});
this.statusStrip1.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow;
this.statusStrip1.Location = new System.Drawing.Point(0, 656);
this.statusStrip1.Name = "statusStrip1";
this.statusStrip1.Padding = new System.Windows.Forms.Padding(1, 0, 19, 0);
this.statusStrip1.Size = new System.Drawing.Size(1124, 28);
this.statusStrip1.TabIndex = 19;
this.statusStrip1.Text = "statusStrip1";
//
// toolStripStatusLabelCurrentAction
//
this.toolStripStatusLabelCurrentAction.AutoSize = false;
this.toolStripStatusLabelCurrentAction.BackColor = System.Drawing.Color.Transparent;
this.toolStripStatusLabelCurrentAction.Name = "toolStripStatusLabelCurrentAction";
this.toolStripStatusLabelCurrentAction.Size = new System.Drawing.Size(154, 17);
this.toolStripStatusLabelCurrentAction.Text = "toolStripStatusLabel1";
//
// toolStripStatusLabelDeskAddLayer
//
this.toolStripStatusLabelDeskAddLayer.AutoSize = false;
this.toolStripStatusLabelDeskAddLayer.BackColor = System.Drawing.Color.Transparent;
this.toolStripStatusLabelDeskAddLayer.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Bold);
this.toolStripStatusLabelDeskAddLayer.ForeColor = System.Drawing.Color.Red;
this.toolStripStatusLabelDeskAddLayer.Name = "toolStripStatusLabelDeskAddLayer";
this.toolStripStatusLabelDeskAddLayer.Size = new System.Drawing.Size(154, 17);
this.toolStripStatusLabelDeskAddLayer.Spring = true;
this.toolStripStatusLabelDeskAddLayer.Text = "toolStripStatusLabel2";
//
// panelGlobeControl
//
this.panelGlobeControl.AutoSize = true;
this.panelGlobeControl.BackColor = System.Drawing.Color.Black;
this.panelGlobeControl.Controls.Add(this.splitContainer1);
this.panelGlobeControl.Dock = System.Windows.Forms.DockStyle.Fill;
this.panelGlobeControl.Location = new System.Drawing.Point(280, 28);
this.panelGlobeControl.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.panelGlobeControl.Name = "panelGlobeControl";
this.panelGlobeControl.Size = new System.Drawing.Size(844, 628);
this.panelGlobeControl.TabIndex = 22;
//
// splitContainer1
//
this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
this.splitContainer1.Location = new System.Drawing.Point(0, 0);
this.splitContainer1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.splitContainer1.Name = "splitContainer1";
this.splitContainer1.Size = new System.Drawing.Size(844, 628);
this.splitContainer1.SplitterDistance = 446;
this.splitContainer1.SplitterWidth = 5;
this.splitContainer1.TabIndex = 0;
//
// panelFind
//
this.panelFind.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(229)))), ((int)(((byte)(234)))), ((int)(((byte)(245)))));
this.panelFind.Controls.Add(this.panel2);
this.panelFind.Controls.Add(this.panel1);
this.panelFind.Controls.Add(this.panelClearSave);
this.panelFind.Location = new System.Drawing.Point(4, 60);
this.panelFind.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.panelFind.Name = "panelFind";
this.panelFind.Size = new System.Drawing.Size(272, 541);
this.panelFind.TabIndex = 8;
//
// panel2
//
this.panel2.Controls.Add(this.treeFind);
this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel2.Location = new System.Drawing.Point(0, 110);
this.panel2.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.panel2.Name = "panel2";
this.panel2.Size = new System.Drawing.Size(272, 391);
this.panel2.TabIndex = 17;
//
// treeFind
//
this.treeFind.AllowDrop = true;
this.treeFind.BackColor = System.Drawing.Color.White;
//
//
//
this.treeFind.BackgroundStyle.Class = "";
this.treeFind.Dock = System.Windows.Forms.DockStyle.Fill;
this.treeFind.Location = new System.Drawing.Point(0, 0);
this.treeFind.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.treeFind.Name = "treeFind";
this.treeFind.NodeStyle = this.elementStyle4;
this.treeFind.NodeStyleSelected = this.elementStyle7;
this.treeFind.PathSeparator = ";";
this.treeFind.Size = new System.Drawing.Size(272, 391);
this.treeFind.Styles.Add(this.elementStyle3);
this.treeFind.Styles.Add(this.elementStyle4);
this.treeFind.Styles.Add(this.elementStyle7);
this.treeFind.TabIndex = 9;
this.treeFind.NodeClick += new DevComponents.AdvTree.TreeNodeMouseEventHandler(this.treeFind_NodeClick);
this.treeFind.NodeDoubleClick += new DevComponents.AdvTree.TreeNodeMouseEventHandler(this.treeFind_NodeDoubleClick);
//
// elementStyle4
//
this.elementStyle4.BackColor = System.Drawing.Color.Transparent;
this.elementStyle4.BackColor2 = System.Drawing.Color.Transparent;
this.elementStyle4.BackColorGradientAngle = 90;
this.elementStyle4.BorderBottomWidth = 1;
this.elementStyle4.BorderColor = System.Drawing.Color.DarkGray;
this.elementStyle4.BorderLeftWidth = 1;
this.elementStyle4.BorderRightWidth = 1;
this.elementStyle4.BorderTopWidth = 1;
this.elementStyle4.Class = "";
this.elementStyle4.CornerDiameter = 4;
this.elementStyle4.Description = "BlueLight";
this.elementStyle4.Name = "elementStyle4";
this.elementStyle4.PaddingBottom = 1;
this.elementStyle4.PaddingLeft = 1;
this.elementStyle4.PaddingRight = 1;
this.elementStyle4.PaddingTop = 1;
this.elementStyle4.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(69)))), ((int)(((byte)(84)))), ((int)(((byte)(115)))));
//
// elementStyle7
//
this.elementStyle7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(239)))), ((int)(((byte)(201)))));
this.elementStyle7.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(210)))), ((int)(((byte)(132)))));
this.elementStyle7.BackColorGradientAngle = 90;
this.elementStyle7.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
this.elementStyle7.BorderBottomWidth = 1;
this.elementStyle7.BorderColor = System.Drawing.Color.DarkGray;
this.elementStyle7.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
this.elementStyle7.BorderLeftWidth = 1;
this.elementStyle7.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
this.elementStyle7.BorderRightWidth = 1;
this.elementStyle7.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
this.elementStyle7.BorderTopWidth = 1;
this.elementStyle7.Class = "";
this.elementStyle7.CornerDiameter = 4;
this.elementStyle7.Description = "OrangeLight";
this.elementStyle7.Name = "elementStyle7";
this.elementStyle7.PaddingBottom = 1;
this.elementStyle7.PaddingLeft = 1;
this.elementStyle7.PaddingRight = 1;
this.elementStyle7.PaddingTop = 1;
this.elementStyle7.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(117)))), ((int)(((byte)(83)))), ((int)(((byte)(2)))));
//
// elementStyle3
//
this.elementStyle3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(230)))), ((int)(((byte)(247)))));
this.elementStyle3.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(138)))), ((int)(((byte)(168)))), ((int)(((byte)(228)))));
this.elementStyle3.BackColorGradientAngle = 90;
this.elementStyle3.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
this.elementStyle3.BorderBottomWidth = 1;
this.elementStyle3.BorderColor = System.Drawing.Color.DarkGray;
this.elementStyle3.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
this.elementStyle3.BorderLeftWidth = 1;
this.elementStyle3.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
this.elementStyle3.BorderRightWidth = 1;
this.elementStyle3.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
this.elementStyle3.BorderTopWidth = 1;
this.elementStyle3.Class = "";
this.elementStyle3.CornerDiameter = 4;
this.elementStyle3.Description = "Blue";
this.elementStyle3.Name = "elementStyle3";
this.elementStyle3.PaddingBottom = 1;
this.elementStyle3.PaddingLeft = 1;
this.elementStyle3.PaddingRight = 1;
this.elementStyle3.PaddingTop = 1;
this.elementStyle3.TextColor = System.Drawing.Color.Black;
//
// panel1
//
this.panel1.Controls.Add(this.comboBoxCondition);
this.panel1.Controls.Add(this.placeNameEBox);
this.panel1.Controls.Add(this.label4);
this.panel1.Controls.Add(this.goFindButton);
this.panel1.Controls.Add(this.label3);
this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
this.panel1.Location = new System.Drawing.Point(0, 0);
this.panel1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(272, 110);
this.panel1.TabIndex = 16;
//
// comboBoxCondition
//
this.comboBoxCondition.FormattingEnabled = true;
this.comboBoxCondition.Items.AddRange(new object[] {
"包含",
"等于"});
this.comboBoxCondition.Location = new System.Drawing.Point(77, 45);
this.comboBoxCondition.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.comboBoxCondition.Name = "comboBoxCondition";
this.comboBoxCondition.Size = new System.Drawing.Size(163, 23);
this.comboBoxCondition.TabIndex = 14;
this.comboBoxCondition.Text = "包含";
//
// placeNameEBox
//
this.placeNameEBox.Location = new System.Drawing.Point(77, 10);
this.placeNameEBox.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.placeNameEBox.Name = "placeNameEBox";
this.placeNameEBox.Size = new System.Drawing.Size(163, 25);
this.placeNameEBox.TabIndex = 10;
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(15, 49);
this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(52, 15);
this.label4.TabIndex = 15;
this.label4.Text = "条件:";
//
// goFindButton
//
this.goFindButton.Location = new System.Drawing.Point(172, 78);
this.goFindButton.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.goFindButton.Name = "goFindButton";
this.goFindButton.Size = new System.Drawing.Size(69, 26);
this.goFindButton.TabIndex = 11;
this.goFindButton.Text = "搜索";
this.goFindButton.UseVisualStyleBackColor = true;
this.goFindButton.Click += new System.EventHandler(this.goFindButton_Click_1);
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(15, 15);
this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(52, 15);
this.label3.TabIndex = 13;
this.label3.Text = "名称:";
//
// panelClearSave
//
this.panelClearSave.Controls.Add(this.buttonSaveFind);
this.panelClearSave.Controls.Add(this.buttonClearFind);
this.panelClearSave.Dock = System.Windows.Forms.DockStyle.Bottom;
this.panelClearSave.Location = new System.Drawing.Point(0, 501);
this.panelClearSave.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.panelClearSave.Name = "panelClearSave";
this.panelClearSave.Size = new System.Drawing.Size(272, 40);
this.panelClearSave.TabIndex = 12;
//
// buttonSaveFind
//
this.buttonSaveFind.Location = new System.Drawing.Point(17, 8);
this.buttonSaveFind.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.buttonSaveFind.Name = "buttonSaveFind";
this.buttonSaveFind.Size = new System.Drawing.Size(73, 26);
this.buttonSaveFind.TabIndex = 6;
this.buttonSaveFind.Text = "保存";
this.buttonSaveFind.UseVisualStyleBackColor = true;
this.buttonSaveFind.Click += new System.EventHandler(this.buttonSaveFind_Click);
//
// buttonClearFind
//
this.buttonClearFind.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.buttonClearFind.Location = new System.Drawing.Point(172, 8);
this.buttonClearFind.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.buttonClearFind.Name = "buttonClearFind";
this.buttonClearFind.Size = new System.Drawing.Size(69, 26);
this.buttonClearFind.TabIndex = 5;
this.buttonClearFind.Text = "清除";
this.buttonClearFind.UseVisualStyleBackColor = true;
this.buttonClearFind.Click += new System.EventHandler(this.buttonClearFind_Click);
//
// sideBar1
//
this.sideBar1.AccessibleRole = System.Windows.Forms.AccessibleRole.ToolBar;
this.sideBar1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(238)))), ((int)(((byte)(243)))), ((int)(((byte)(250)))));
this.sideBar1.BorderStyle = DevComponents.DotNetBar.eBorderType.None;
this.sideBar1.Controls.Add(this.layerTree);
this.sideBar1.Controls.Add(this.panelFind);
this.sideBar1.Dock = System.Windows.Forms.DockStyle.Left;
this.sideBar1.ExpandedPanel = this.sideBarPanelItem1;
this.sideBar1.Location = new System.Drawing.Point(0, 28);
this.sideBar1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.sideBar1.Name = "sideBar1";
this.sideBar1.Panels.AddRange(new DevComponents.DotNetBar.BaseItem[] {
this.sideBarPanelItem1,
this.sideBarPanelItem2});
this.sideBar1.Size = new System.Drawing.Size(280, 628);
this.sideBar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
this.sideBar1.TabIndex = 24;
this.sideBar1.Text = "sideBar1";
//
// layerTree
//
this.layerTree.AllowDrop = true;
this.layerTree.BackColor = System.Drawing.Color.White;
//
//
//
this.layerTree.BackgroundStyle.Class = "";
this.layerTree.Location = new System.Drawing.Point(3, 28);
this.layerTree.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.layerTree.Name = "layerTree";
this.layerTree.Nodes.AddRange(new DevComponents.AdvTree.Node[] {
this.node1});
this.layerTree.NodeStyle = this.elementStyle2;
this.layerTree.NodeStyleSelected = this.elementStyle6;
this.layerTree.PathSeparator = ";";
this.layerTree.Size = new System.Drawing.Size(274, 135);
this.layerTree.Styles.Add(this.elementStyle1);
this.layerTree.Styles.Add(this.elementStyle2);
this.layerTree.Styles.Add(this.elementStyle5);
this.layerTree.Styles.Add(this.elementStyle6);
this.layerTree.TabIndex = 0;
this.layerTree.AfterCheck += new DevComponents.AdvTree.AdvTreeCellEventHandler(this.layerTree_AfterCheck);
this.layerTree.AfterCellEditComplete += new DevComponents.AdvTree.CellEditEventHandler(this.layerTree_AfterCellEditComplete);
this.layerTree.NodeClick += new DevComponents.AdvTree.TreeNodeMouseEventHandler(this.layerTree_NodeClick);
this.layerTree.NodeDoubleClick += new DevComponents.AdvTree.TreeNodeMouseEventHandler(this.layerTree_NodeDoubleClick);
//
// node1
//
this.node1.Name = "node1";
this.node1.Text = "13432";
//
// elementStyle2
//
this.elementStyle2.BackColor = System.Drawing.Color.Transparent;
this.elementStyle2.BackColor2 = System.Drawing.Color.Transparent;
this.elementStyle2.BackColorGradientAngle = 90;
this.elementStyle2.BorderBottomWidth = 1;
this.elementStyle2.BorderColor = System.Drawing.Color.DarkGray;
this.elementStyle2.BorderLeftWidth = 1;
this.elementStyle2.BorderRightWidth = 1;
this.elementStyle2.BorderTopWidth = 1;
this.elementStyle2.Class = "";
this.elementStyle2.CornerDiameter = 4;
this.elementStyle2.Description = "BlueLight";
this.elementStyle2.Name = "elementStyle2";
this.elementStyle2.PaddingBottom = 1;
this.elementStyle2.PaddingLeft = 1;
this.elementStyle2.PaddingRight = 1;
this.elementStyle2.PaddingTop = 1;
this.elementStyle2.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(69)))), ((int)(((byte)(84)))), ((int)(((byte)(115)))));
//
// elementStyle6
//
this.elementStyle6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(239)))), ((int)(((byte)(201)))));
this.elementStyle6.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(210)))), ((int)(((byte)(132)))));
this.elementStyle6.BackColorGradientAngle = 90;
this.elementStyle6.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
this.elementStyle6.BorderBottomWidth = 1;
this.elementStyle6.BorderColor = System.Drawing.Color.DarkGray;
this.elementStyle6.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
this.elementStyle6.BorderLeftWidth = 1;
this.elementStyle6.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
this.elementStyle6.BorderRightWidth = 1;
this.elementStyle6.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
this.elementStyle6.BorderTopWidth = 1;
this.elementStyle6.Class = "";
this.elementStyle6.CornerDiameter = 4;
this.elementStyle6.Description = "OrangeLight";
this.elementStyle6.Name = "elementStyle6";
this.elementStyle6.PaddingBottom = 1;
this.elementStyle6.PaddingLeft = 1;
this.elementStyle6.PaddingRight = 1;
this.elementStyle6.PaddingTop = 1;
this.elementStyle6.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(117)))), ((int)(((byte)(83)))), ((int)(((byte)(2)))));
//
// elementStyle1
//
this.elementStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(230)))), ((int)(((byte)(247)))));
this.elementStyle1.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(138)))), ((int)(((byte)(168)))), ((int)(((byte)(228)))));
this.elementStyle1.BackColorGradientAngle = 90;
this.elementStyle1.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
this.elementStyle1.BorderBottomWidth = 1;
this.elementStyle1.BorderColor = System.Drawing.Color.DarkGray;
this.elementStyle1.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
this.elementStyle1.BorderLeftWidth = 1;
this.elementStyle1.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
this.elementStyle1.BorderRightWidth = 1;
this.elementStyle1.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
this.elementStyle1.BorderTopWidth = 1;
this.elementStyle1.Class = "";
this.elementStyle1.CornerDiameter = 4;
this.elementStyle1.Description = "Blue";
this.elementStyle1.Name = "elementStyle1";
this.elementStyle1.PaddingBottom = 1;
this.elementStyle1.PaddingLeft = 1;
this.elementStyle1.PaddingRight = 1;
this.elementStyle1.PaddingTop = 1;
this.elementStyle1.TextColor = System.Drawing.Color.Black;
//
// elementStyle5
//
this.elementStyle5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(230)))), ((int)(((byte)(247)))));
this.elementStyle5.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(138)))), ((int)(((byte)(168)))), ((int)(((byte)(228)))));
this.elementStyle5.BackColorGradientAngle = 90;
this.elementStyle5.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
this.elementStyle5.BorderBottomWidth = 1;
this.elementStyle5.BorderColor = System.Drawing.Color.DarkGray;
this.elementStyle5.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
this.elementStyle5.BorderLeftWidth = 1;
this.elementStyle5.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
this.elementStyle5.BorderRightWidth = 1;
this.elementStyle5.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
this.elementStyle5.BorderTopWidth = 1;
this.elementStyle5.Class = "";
this.elementStyle5.CornerDiameter = 4;
this.elementStyle5.Description = "Blue";
this.elementStyle5.Name = "elementStyle5";
this.elementStyle5.PaddingBottom = 1;
this.elementStyle5.PaddingLeft = 1;
this.elementStyle5.PaddingRight = 1;
this.elementStyle5.PaddingTop = 1;
this.elementStyle5.TextColor = System.Drawing.Color.Black;
//
// sideBarPanelItem1
//
this.sideBarPanelItem1.BackgroundStyle.BackColor1.Color = System.Drawing.Color.White;
this.sideBarPanelItem1.FontBold = true;
this.sideBarPanelItem1.Name = "sideBarPanelItem1";
this.sideBarPanelItem1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
this.controlContainerItem1});
this.sideBarPanelItem1.Text = "图层控制";
//
// controlContainerItem1
//
this.controlContainerItem1.AllowItemResize = true;
this.controlContainerItem1.Control = this.layerTree;
this.controlContainerItem1.MenuVisibility = DevComponents.DotNetBar.eMenuVisibility.VisibleAlways;
this.controlContainerItem1.Name = "controlContainerItem1";
this.controlContainerItem1.Text = "controlContainerItem1";
//
// sideBarPanelItem2
//
this.sideBarPanelItem2.FontBold = true;
this.sideBarPanelItem2.Name = "sideBarPanelItem2";
this.sideBarPanelItem2.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
this.controlContainerItem2});
this.sideBarPanelItem2.Text = "查询定位";
//
// controlContainerItem2
//
this.controlContainerItem2.AllowItemResize = true;
this.controlContainerItem2.Control = this.panelFind;
this.controlContainerItem2.MenuVisibility = DevComponents.DotNetBar.eMenuVisibility.VisibleAlways;
this.controlContainerItem2.Name = "controlContainerItem2";
this.controlContainerItem2.Text = "controlContainerItem2";
//
// expandableSplitter1
//
this.expandableSplitter1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(241)))), ((int)(((byte)(242)))));
this.expandableSplitter1.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(167)))), ((int)(((byte)(173)))), ((int)(((byte)(182)))));
this.expandableSplitter1.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
this.expandableSplitter1.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
this.expandableSplitter1.ExpandableControl = this.sideBar1;
this.expandableSplitter1.ExpandFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(167)))), ((int)(((byte)(173)))), ((int)(((byte)(182)))));
this.expandableSplitter1.ExpandFillColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
this.expandableSplitter1.ExpandLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
this.expandableSplitter1.ExpandLineColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
this.expandableSplitter1.GripDarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
this.expandableSplitter1.GripDarkColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
this.expandableSplitter1.GripLightColor = System.Drawing.Color.FromArgb(((int)(((byte)(205)))), ((int)(((byte)(208)))), ((int)(((byte)(213)))));
this.expandableSplitter1.GripLightColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
this.expandableSplitter1.HotBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(252)))), ((int)(((byte)(151)))), ((int)(((byte)(61)))));
this.expandableSplitter1.HotBackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(184)))), ((int)(((byte)(94)))));
this.expandableSplitter1.HotBackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground2;
this.expandableSplitter1.HotBackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground;
this.expandableSplitter1.HotExpandFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(167)))), ((int)(((byte)(173)))), ((int)(((byte)(182)))));
this.expandableSplitter1.HotExpandFillColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
this.expandableSplitter1.HotExpandLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
this.expandableSplitter1.HotExpandLineColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
this.expandableSplitter1.HotGripDarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(167)))), ((int)(((byte)(173)))), ((int)(((byte)(182)))));
this.expandableSplitter1.HotGripDarkColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
this.expandableSplitter1.HotGripLightColor = System.Drawing.Color.FromArgb(((int)(((byte)(205)))), ((int)(((byte)(208)))), ((int)(((byte)(213)))));
this.expandableSplitter1.HotGripLightColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
this.expandableSplitter1.Location = new System.Drawing.Point(280, 28);
this.expandableSplitter1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.expandableSplitter1.Name = "expandableSplitter1";
this.expandableSplitter1.Size = new System.Drawing.Size(7, 628);
this.expandableSplitter1.Style = DevComponents.DotNetBar.eSplitterStyle.Office2007;
this.expandableSplitter1.TabIndex = 25;
this.expandableSplitter1.TabStop = false;
//
// timerFeatureFaGuang
//
this.timerFeatureFaGuang.Tick += new System.EventHandler(this.timerFeatureFaGuang_Tick);
//
// treeFindMenuStrip
//
this.treeFindMenuStrip.ImageScalingSize = new System.Drawing.Size(20, 20);
this.treeFindMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.SaveasToolStripMenuItem,
this.delFeatureToolStripMenuItem,
this.delAllFeatureToolStripMenuItem});
this.treeFindMenuStrip.Name = "treeFindMenuStrip";
this.treeFindMenuStrip.Size = new System.Drawing.Size(169, 76);
//
// SaveasToolStripMenuItem
//
this.SaveasToolStripMenuItem.Name = "SaveasToolStripMenuItem";
this.SaveasToolStripMenuItem.Size = new System.Drawing.Size(168, 24);
this.SaveasToolStripMenuItem.Text = "导出查询结果";
this.SaveasToolStripMenuItem.Click += new System.EventHandler(this.SaveasToolStripMenuItem_Click);
//
// delFeatureToolStripMenuItem
//
this.delFeatureToolStripMenuItem.Name = "delFeatureToolStripMenuItem";
this.delFeatureToolStripMenuItem.Size = new System.Drawing.Size(168, 24);
this.delFeatureToolStripMenuItem.Text = "删除对象";
this.delFeatureToolStripMenuItem.Click += new System.EventHandler(this.delFeatureToolStripMenuItem_Click);
//
// delAllFeatureToolStripMenuItem
//
this.delAllFeatureToolStripMenuItem.Name = "delAllFeatureToolStripMenuItem";
this.delAllFeatureToolStripMenuItem.Size = new System.Drawing.Size(168, 24);
this.delAllFeatureToolStripMenuItem.Text = "删除所有对象";
this.delAllFeatureToolStripMenuItem.Click += new System.EventHandler(this.delAllFeatureToolStripMenuItem_Click);
//
// lfpToolStripMenuItem
//
this.lfpToolStripMenuItem.Name = "lfpToolStripMenuItem";
this.lfpToolStripMenuItem.Size = new System.Drawing.Size(40, 24);
this.lfpToolStripMenuItem.Text = "lfp";
this.lfpToolStripMenuItem.Click += new System.EventHandler(this.lfpToolStripMenuItem_Click);
//
// MainFrm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1124, 684);
this.Controls.Add(this.expandableSplitter1);
this.Controls.Add(this.panelGlobeControl);
this.Controls.Add(this.sideBar1);
this.Controls.Add(this.statusStrip1);
this.Controls.Add(this.dockSite2);
this.Controls.Add(this.dockSite1);
this.Controls.Add(this.mainMenu);
this.Controls.Add(this.dockSite3);
this.Controls.Add(this.dockSite4);
this.Controls.Add(this.dockSite5);
this.Controls.Add(this.dockSite6);
this.Controls.Add(this.dockSite7);
this.Controls.Add(this.dockSite8);
this.DoubleBuffered = true;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.KeyPreview = true;
this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.Name = "MainFrm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "LocaSpaceDemo";
this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
this.HelpButtonClicked += new System.ComponentModel.CancelEventHandler(this.MainFrm_HelpButtonClicked);
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainFrm_FormClosing);
this.Load += new System.EventHandler(this.MainFrm_Load);
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.MainFrm_KeyDown);
this.Resize += new System.EventHandler(this.MainFrm_Resize);
this.mainMenu.ResumeLayout(false);
this.mainMenu.PerformLayout();
this.treeContexMenu.ResumeLayout(false);
this.myPlaceContextMenu.ResumeLayout(false);
this.layerNodeContexMenu.ResumeLayout(false);
this.rMouseUpContextMenuStrip.ResumeLayout(false);
this.statusStrip1.ResumeLayout(false);
this.statusStrip1.PerformLayout();
this.panelGlobeControl.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
this.splitContainer1.ResumeLayout(false);
this.panelFind.ResumeLayout(false);
this.panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.treeFind)).EndInit();
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
this.panelClearSave.ResumeLayout(false);
this.sideBar1.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.layerTree)).EndInit();
this.treeFindMenuStrip.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ImageList treeImageList;
private System.Windows.Forms.MenuStrip mainMenu;
private System.Windows.Forms.ContextMenuStrip treeContexMenu;
private System.Windows.Forms.ToolStripMenuItem Delete;
private System.Windows.Forms.ToolStripMenuItem Rename;
private System.Windows.Forms.ToolStripMenuItem atrributeToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 文件ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem NaviControlMenu;
private System.Windows.Forms.ToolStripMenuItem 编辑ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem AnalysisMenuItem;
private System.Windows.Forms.ToolStripMenuItem FlyAroundCenterMenuItem;
private System.Windows.Forms.ToolStripMenuItem SceneSet;
private System.Windows.Forms.ToolStripMenuItem AddLayerDataMenu;
private System.Windows.Forms.ToolStripMenuItem AtmospherMenue;
private System.Windows.Forms.ToolStripMenuItem GridMenue;
private System.Windows.Forms.ToolStripMenuItem StatusMenu;
private System.Windows.Forms.ToolStripMenuItem NavigationControlMenu;
private System.Windows.Forms.ToolStripMenuItem FlyToPlaceMenu;
private System.Windows.Forms.ToolStripMenuItem 关于ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem AboutUsMenu;
private System.Windows.Forms.ToolStripMenuItem TerrainExtraMenu;
private System.Windows.Forms.ToolStripMenuItem LockSceneMenu;
private System.Windows.Forms.ToolStripMenuItem MainToolBarShowMenu;
private System.Windows.Forms.ToolStripMenuItem QuickFlyMenu;
private System.Windows.Forms.ToolStripMenuItem MidSpeedFlyMenu;
private System.Windows.Forms.ToolStripMenuItem SlowFlyMenu;
private System.Windows.Forms.ToolStripMenuItem DefineFlyLineMenu;
private System.Windows.Forms.ContextMenuStrip myPlaceContextMenu;
private System.Windows.Forms.ToolStripMenuItem RemoveAllFeature;
private System.Windows.Forms.ToolStripMenuItem SaveMyPlaceAs;
private System.Windows.Forms.ContextMenuStrip layerNodeContexMenu;
private System.Windows.Forms.ToolStripMenuItem RemoveLayer;
private System.Windows.Forms.ToolStripMenuItem MoveUp;
private System.Windows.Forms.ToolStripMenuItem MoveDown;
private System.Windows.Forms.ToolStripMenuItem SceneLightSet;
private System.Windows.Forms.ToolStripMenuItem 相机ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem CameraNavigationMenu;
private System.Windows.Forms.ToolStripMenuItem CameraWalkMenu;
private System.Windows.Forms.ToolStripMenuItem CameraUnderGroundMenu;
private System.Windows.Forms.ToolStripMenuItem GroundTransSetMenu;
private System.Windows.Forms.ToolStripMenuItem EnableMouseOverHighLightMenu;
private System.Windows.Forms.ToolStripMenuItem OpenWorkSpaceMenuItem;
private System.Windows.Forms.ToolStripMenuItem SaveWorkSpaceMenuItem;
private System.Windows.Forms.ToolStripMenuItem AntiAntialiasingMenuItem;
private System.Windows.Forms.ToolStripMenuItem ShaderAtmosphereMenuItem;
private System.Windows.Forms.ToolStripMenuItem ModelWireFrameMenuItem;
private System.Windows.Forms.ToolStripMenuItem ModelSolidMenuItem;
private System.Windows.Forms.ToolStripMenuItem ModelTextureMenuItem;
private System.Windows.Forms.ToolStripMenuItem SaveAllToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem FlyAlongWithLineMenuItem;
private System.Windows.Forms.ToolStripMenuItem FlyAroundCenterToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem FlyAroundEyeMenuItem;
private System.Windows.Forms.ToolStripMenuItem RotateAroundObjectMenuItem;
private System.Windows.Forms.ToolStripMenuItem 演示ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem DynamicCarMenuItem;
private System.Windows.Forms.ToolStripMenuItem CopterMenuItem;
private System.Windows.Forms.ToolStripMenuItem MissileMenuItem;
private System.Windows.Forms.ToolStripMenuItem SaveLayerMenuItem;
private System.Windows.Forms.ToolStripMenuItem SaveAsLayerMenuItem;
private System.Windows.Forms.Timer timerWaterPipe;
private System.Windows.Forms.ToolStripMenuItem RefreshMyplaceListMenuItem;
private System.Windows.Forms.ToolStripMenuItem MyplaceEditableMenuItem;
private System.Windows.Forms.ToolStripMenuItem MyPlaceSelectableMenuItem;
private System.Windows.Forms.ToolStripMenuItem LayerEditableMenuItem;
private System.Windows.Forms.ToolStripMenuItem LayerSelectableMenuItem;
private System.Windows.Forms.ToolStripMenuItem RefreshLayerFeatureListMenuItem;
private System.Windows.Forms.ToolStripMenuItem MyPlaceFeatureAddLayerMenuItem;
private System.Windows.Forms.ToolStripMenuItem FeatureAddLayerMenuItem;
private System.Windows.Forms.ToolStripMenuItem ConvertToWaterMenuItem;
private System.Windows.Forms.ToolStripMenuItem addRouteObjectMenuItem;
private System.Windows.Forms.ToolStripMenuItem MarbleSurfaceMenuItem;
private System.Windows.Forms.ToolStripMenuItem MenuItemMouseOverEventEnable;
private System.Windows.Forms.ToolStripMenuItem MenuItemEditSnapObject;
private System.Windows.Forms.ToolStripMenuItem ViewEnvelopeAnalysisMenuItem;
private System.Windows.Forms.ToolStripMenuItem ViewshedAnalysisMenuItem;
private System.Windows.Forms.ToolStripMenuItem RefreshAnalysisMenuItem;
private System.Windows.Forms.ToolStripMenuItem ClearAnalysisMenuItem;
private System.Windows.Forms.ToolStripMenuItem SpaceVisibilityAnalysisMenuItem;
private System.Windows.Forms.ToolStripMenuItem ProfileAnalysisMenuItem;
private System.Windows.Forms.ToolStripMenuItem DigFillAnalysisMenuItem;
private System.Windows.Forms.ToolStripMenuItem BaselineProfileAnalysisMenuItem;
private System.Windows.Forms.ToolStripMenuItem NoSourceFloodSubmergeMenuItem;
private System.Windows.Forms.ToolStripMenuItem FullScreenMenuItem;
private System.Windows.Forms.Panel panelFindLocate;
private DevComponents.DotNetBar.StyleManager styleManager1;
private System.Windows.Forms.ToolStripMenuItem ExitMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator8;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator7;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator6;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator4;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator5;
private DevComponents.DotNetBar.DotNetBarManager dotNetBarManager1;
private DevComponents.DotNetBar.DockSite dockSite4;
private DevComponents.DotNetBar.DockSite dockSite1;
private DevComponents.DotNetBar.DockSite dockSite2;
private DevComponents.DotNetBar.DockSite dockSite3;
private DevComponents.DotNetBar.DockSite dockSite5;
private DevComponents.DotNetBar.DockSite dockSite6;
private DevComponents.DotNetBar.DockSite dockSite7;
private DevComponents.DotNetBar.DockSite dockSite8;
private System.Windows.Forms.ToolStripMenuItem MenuItemShowSingleModel;
private System.Windows.Forms.ToolStripMenuItem ShowSingleModelTreeMenuItem;
private System.Windows.Forms.ToolStripMenuItem SelLevelMenuItem;
private System.Windows.Forms.ToolStripMenuItem SelLevel1MenuItem;
private System.Windows.Forms.ToolStripMenuItem SelLevel2MenuItem;
private System.Windows.Forms.ToolStripMenuItem SelLevel3MenuItem;
private System.Windows.Forms.ToolStripMenuItem SetSelLevelMenuItem;
private System.Windows.Forms.ToolStripMenuItem MenuItemObjectVisibleDist;
private System.Windows.Forms.ToolStripMenuItem MenuItemVisiblePixelSize;
private System.Windows.Forms.ToolStripMenuItem MyPlaceVisibleDistMenuItem;
private System.Windows.Forms.ToolStripMenuItem MyPlaceVisiblePixelSizeMenuItem;
private System.Windows.Forms.ToolStripMenuItem LayerOpaqueMenuItem;
private System.Windows.Forms.ToolStripMenuItem MyPlaceLayerOpaqueMenuItem;
private System.Windows.Forms.ToolStripMenuItem MoveModelLayerMenuItem;
private System.Windows.Forms.ToolStripMenuItem 添加规则几何对象ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem menuItemAddBoxEntity;
private System.Windows.Forms.ToolStripMenuItem menuItemAddSphereEntity;
private System.Windows.Forms.ToolStripMenuItem menuItemAddCylinderEntity;
private System.Windows.Forms.ToolStripMenuItem menuItemAddFrustumEntity;
private System.Windows.Forms.ToolStripMenuItem menuItemAddEllipsoidEntity;
private System.Windows.Forms.ToolStripMenuItem menuItemAddPipeEntity;
private System.Windows.Forms.ToolStripMenuItem menuItemAddEllipCylinderEntity;
private System.Windows.Forms.ToolStripMenuItem menuItemAddEllipFrustumEntity;
private System.Windows.Forms.ToolStripMenuItem menuItemAddEllipPipeEntity;
private System.Windows.Forms.ToolStripMenuItem menuItemAddRangeEllipsoidEntity;
private System.Windows.Forms.ToolStripMenuItem menuItemAddRangeEllipCylinderEntity;
private System.Windows.Forms.ToolStripMenuItem menuItemAddRangeEllipFrustumEntity;
private System.Windows.Forms.ToolStripMenuItem menuItemAddRangeEllipPipeEntity;
private System.Windows.Forms.ToolStripMenuItem menuItemElevateLayerModels;
private System.Windows.Forms.ToolStripMenuItem menuItemAddPipeFrustumEntity;
private System.Windows.Forms.ToolStripMenuItem menuItemAddEllipPipeFrustumEntity;
private System.Windows.Forms.ToolStripMenuItem menuItemAddRangeEllipPipeFrustumEntity;
private System.Windows.Forms.ToolStripMenuItem MenuItemSaveAsWorkSpace;
private System.Windows.Forms.ToolStripMenuItem MenuItemCloseWorkSpace;
private System.Windows.Forms.ToolStripMenuItem 添加动态对象ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 喷泉MenuItemAddFountain;
private System.Windows.Forms.ToolStripMenuItem MenuItemAddDynamicMarker;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator10;
private System.Windows.Forms.ToolStripMenuItem CreateNewDataMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator11;
private System.Windows.Forms.ToolStripMenuItem DigPitSettingMenuItem;
private System.Windows.Forms.ToolStripMenuItem LineDigPitMenuItem;
private System.Windows.Forms.ToolStripMenuItem PolygonDigPitMenuItem;
private System.Windows.Forms.ToolStripMenuItem ClearPitsMenuItem;
private System.Windows.Forms.ToolStripMenuItem fullExtentMenuItem;
private System.Windows.Forms.ToolStripMenuItem pauseFlyMenuItem;
private System.Windows.Forms.ToolStripMenuItem continueFlyMenuItem;
private System.Windows.Forms.ContextMenuStrip rMouseUpContextMenuStrip;
private System.Windows.Forms.ToolStripMenuItem rmuPauseFlyMenuItem;
private System.Windows.Forms.ToolStripMenuItem rmuContinueFlyMenuItem;
private System.Windows.Forms.ToolStripMenuItem rmuStopFlyMenuItem;
private System.Windows.Forms.ToolStripMenuItem rmuRotateCenterFlyMenuItem;
private System.Windows.Forms.ToolStripMenuItem MenuItemLayerVisibleAlt;
private System.Windows.Forms.ToolStripMenuItem UnderGroundFloorMenuItem;
private System.Windows.Forms.ToolStripMenuItem featureLabelMenuItem;
private System.Windows.Forms.ToolStripMenuItem underGroundLockedMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator12;
private System.Windows.Forms.ToolStripMenuItem AddTerrainMenuItem;
private System.Windows.Forms.ToolStripMenuItem MenuItem2DObjMouseOverEnable;
private System.Windows.Forms.ToolStripMenuItem rmuFullScreenMenuItem;
private System.Windows.Forms.ToolStripMenuItem rmuCameraNavigation;
private System.Windows.Forms.ToolStripMenuItem menuLine2PipelineModel;
private System.Windows.Forms.ToolStripMenuItem menuAddModelBat;
private System.Windows.Forms.ToolStripMenuItem 批量生成管孔ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 连接数据库ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem1;
private System.Windows.Forms.ToolStripMenuItem 打开属性表ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 字段编辑ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem updatePipelineColorToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 管线对接设置ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 对接选中管线ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 对接选中图层ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 生成连接管ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 选中节点添加模型ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 取消选中对接ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 取消整个图层对接ToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator13;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator14;
private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem2;
private System.Windows.Forms.ToolStripMenuItem generateTopoDataMenuItem;
private System.Windows.Forms.ToolStripMenuItem ConnexityAnalysisMenuItem;
private System.Windows.Forms.ToolStripMenuItem CloseValvesAnalysisMenuItem;
private System.Windows.Forms.ToolStripMenuItem TraceUpMenuItem;
private System.Windows.Forms.ToolStripMenuItem TraceDownMenuItem;
private System.Windows.Forms.ToolStripMenuItem ClearUpDownTraceMenuItem;
private System.Windows.Forms.ToolStripMenuItem ClearCloseValvesAnalysisMenuItem;
private System.Windows.Forms.ToolStripMenuItem tooltripItemFlow;
private System.Windows.Forms.ToolStripMenuItem attributeMappingToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 更改所有管线的颜色ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 查看管线属性ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 改变图层风格ToolStripMenuItem;
private System.Windows.Forms.Panel panelGlobeControl;
private System.Windows.Forms.Panel panelFind;
private DevComponents.AdvTree.AdvTree treeFind;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.ComboBox comboBoxCondition;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Panel panelClearSave;
private System.Windows.Forms.Button buttonSaveFind;
private System.Windows.Forms.Button buttonClearFind;
private System.Windows.Forms.Button goFindButton;
private System.Windows.Forms.TextBox placeNameEBox;
private System.Windows.Forms.ToolStripButton toolOpenFile;
private System.Windows.Forms.ToolStripButton GSOAtmosphere;
private System.Windows.Forms.ToolStripButton LatLonGrid;
private System.Windows.Forms.ToolStripButton StatusBarTool;
private System.Windows.Forms.ToolStripButton MeasureDistance;
private System.Windows.Forms.ToolStripButton MeasureHeight;
private System.Windows.Forms.ToolStripButton MeasureArea;
private System.Windows.Forms.ToolStripButton clearMeasure;
private System.Windows.Forms.ToolStripButton FlyTo;
private System.Windows.Forms.ToolStripButton AddPalceMark;
private System.Windows.Forms.ToolStripButton AddLine;
private System.Windows.Forms.ToolStripButton DrawPolygonToolButton;
private System.Windows.Forms.ToolStripButton toolStripButton1;
private System.Windows.Forms.ToolStripButton SelModel;
private System.Windows.Forms.ToolStripButton MoveModel;
private System.Windows.Forms.ToolStripButton scaleModel;
private System.Windows.Forms.ToolStripButton RotateModel;
private System.Windows.Forms.StatusStrip statusStrip1;
private DevComponents.DotNetBar.ExpandableSplitter expandableSplitter1;
internal DevComponents.DotNetBar.SideBar sideBar1;
private DevComponents.AdvTree.AdvTree layerTree;
private DevComponents.DotNetBar.SideBarPanelItem sideBarPanelItem1;
private DevComponents.DotNetBar.ControlContainerItem controlContainerItem1;
private DevComponents.DotNetBar.SideBarPanelItem sideBarPanelItem2;
private DevComponents.DotNetBar.ControlContainerItem controlContainerItem2;
private System.Windows.Forms.ToolStripMenuItem 连接服务器toolStripMenuItem3;
private System.Windows.Forms.ToolStripMenuItem 属性ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 属性ToolStripMenuItem1;
private System.Windows.Forms.ToolStripMenuItem 反转方向ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 框选导出图层toolStripMenuItem3;
private System.Windows.Forms.ToolStripMenuItem 管线导出CADToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 框选导出图层ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 工具ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem SelObjMenu;
private System.Windows.Forms.ToolStripMenuItem ScaleObjMenu;
private System.Windows.Forms.ToolStripMenuItem RotateObjMenu;
private System.Windows.Forms.ToolStripMenuItem MoveObjMenu;
private System.Windows.Forms.ToolStripMenuItem ElevateMenu;
private System.Windows.Forms.ToolStripMenuItem ActionBrowseMenu;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator15;
private System.Windows.Forms.ToolStripMenuItem AddLineMenu;
private System.Windows.Forms.ToolStripMenuItem DrawPolygonMenuItem;
private System.Windows.Forms.ToolStripMenuItem DrawWaterMenuItem;
private System.Windows.Forms.ToolStripMenuItem 添加标注ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem AddPlaceMarkMenu;
private System.Windows.Forms.ToolStripMenuItem AddModelMenu;
private System.Windows.Forms.ToolStripMenuItem AddMultiModeMenuItem;
private System.Windows.Forms.ToolStripMenuItem undoToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 前进ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 选中管线缩进接头ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 烟火ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 火苗ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 烟花ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 水柱ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 粒子系统ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 帮助ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 添加管件toolStripMenuItem3;
private System.Windows.Forms.ToolStripMenuItem 管线高级查询ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 显示漏出地面管线ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 管线碰撞分析ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 更改要素的名字toolStripMenuItem3;
private System.Windows.Forms.ToolStripMenuItem 框选删除ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 横断面分析toolStripMenuItem3;
private System.Windows.Forms.ToolStripMenuItem 管线间距分析ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 框选删除toolStripMenuItem3;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator9;
private System.Windows.Forms.ToolStripMenuItem 清除连通分析结果ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 批量修改颜色ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 批量修改字段值ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 批量修改字体ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 面转为水面ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 对象闪烁ToolStripMenuItem;
private System.Windows.Forms.Timer timerFeatureFaGuang;
private System.Windows.Forms.ToolStripMenuItem 闪烁发光ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 批量修改要素集模型路径toolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 求解假东假北ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 线增长动画ToolStripMenuItem;
private System.Windows.Forms.Timer timerAnimation;
private System.Windows.Forms.ToolStripMenuItem 管线自动缩进toolStripMenuItem3;
private System.Windows.Forms.ToolStripMenuItem 地下网格ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 选中发光ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 移除所有要素toolStripMenuItem3;
private System.Windows.Forms.ToolStripMenuItem 数据管理ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem Menu_DataManager_ImportMulti;
private System.Windows.Forms.ToolStripMenuItem 雨水篦子入库ToolStripMenuItem1;
private System.Windows.Forms.ToolStripMenuItem 阀门入库ToolStripMenuItem1;
private System.Windows.Forms.ToolStripMenuItem 工井入库ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 排水入库toolStripMenuItem3;
private System.Windows.Forms.ToolStripMenuItem 管线入库ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 数据验证ToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator16;
private System.Windows.Forms.ToolStripMenuItem 复制数据库要素集ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 合并数据库要素集ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem shpToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem3;
private System.Windows.Forms.ToolStripMenuItem lgdToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 备份数据库ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 新建数据库要素集ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 复制数据库要素集结构ToolStripMenuItem1;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator17;
private System.Windows.Forms.ToolStripMenuItem 日志管理ToolStripMenuItem1;
private System.Windows.Forms.ToolStripMenuItem 种树ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 量算ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 平面距离量算ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 平面面积量算ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 距地面高度量算ToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator19;
private System.Windows.Forms.ToolStripMenuItem 空间距离量算ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 空间面积量算ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 空间高度量算ToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator18;
private System.Windows.Forms.ToolStripMenuItem 清除量算ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem4;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator3;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator21;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator20;
private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabelCurrentAction;
private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabelDeskAddLayer;
private System.Windows.Forms.ToolStripMenuItem 更新图层字段值ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem5;
private System.Windows.Forms.ToolStripMenuItem 检查图层ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 框选打开属性表toolStripMenuItem6;
private System.Windows.Forms.ToolStripMenuItem 检查管线节点ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 连接Oracle数据库toolStripMenuItem6;
private System.Windows.Forms.ToolStripMenuItem RulerDistanceItem;
private System.Windows.Forms.ToolStripMenuItem ChooseFeatureItem;
private System.Windows.Forms.ToolStripMenuItem MoveFeatureItem;
private System.Windows.Forms.ContextMenuStrip treeFindMenuStrip;
private System.Windows.Forms.ToolStripMenuItem SaveasToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem delFeatureToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem delAllFeatureToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 另存所有图层ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem6;
private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem7;
private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem8;
private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem9;
private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem10;
private System.Windows.Forms.ToolStripMenuItem 鹰眼ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 星空ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 批量修改高程模式ToolStripMenuItem;
private DevComponents.DotNetBar.ElementStyle elementStyle1;
private DevComponents.DotNetBar.ElementStyle elementStyle2;
private DevComponents.AdvTree.Node node1;
private DevComponents.DotNetBar.ElementStyle elementStyle4;
private DevComponents.DotNetBar.ElementStyle elementStyle3;
private System.Windows.Forms.ToolStripMenuItem 批量修改模型高度ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem11;
private System.Windows.Forms.ToolStripMenuItem Menu_DataManager_ImportMultiByAbsolute;
private System.Windows.Forms.ToolStripMenuItem Menu_DataManager_ImportPipelineByAbsolute;
private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem12;
private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem13;
private System.Windows.Forms.ToolStripMenuItem 排管自动对接ToolStripMenuItem;
private System.Windows.Forms.Panel panel2;
private System.Windows.Forms.Panel panel1;
private DevComponents.DotNetBar.ElementStyle elementStyle6;
private DevComponents.DotNetBar.ElementStyle elementStyle5;
private DevComponents.DotNetBar.ElementStyle elementStyle7;
private System.Windows.Forms.ToolStripMenuItem 线切割面ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 面切割线ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 管线水平距离ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 管线垂直距离ToolStripMenuItem;
private System.Windows.Forms.SplitContainer splitContainer1;
private System.Windows.Forms.ToolStripMenuItem 双屏对比ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem14;
private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem15;
private System.Windows.Forms.ToolStripMenuItem menu_connectLDB;
private System.Windows.Forms.ToolStripMenuItem lGD数据源管理ToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator22;
private System.Windows.Forms.ToolStripMenuItem oSGBlfpToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem lfpToolStripMenuItem;
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化