2
0

MainForm.Designer.cs 431 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305
  1. using System.Windows.Forms;
  2. namespace Optimizer
  3. {
  4. partial class MainForm
  5. {
  6. /// <summary>
  7. /// Required designer variable.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// Clean up any resources being used.
  12. /// </summary>
  13. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region Windows Form Designer generated code
  23. /// <summary>
  24. /// Required method for Designer support - do not modify
  25. /// the contents of this method with the code editor.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.components = new System.ComponentModel.Container();
  30. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
  31. this.tpanel = new System.Windows.Forms.Panel();
  32. this.linkUpdate = new System.Windows.Forms.LinkLabel();
  33. this.lblLab = new System.Windows.Forms.Label();
  34. this.txtBitness = new System.Windows.Forms.Label();
  35. this.txtOS = new System.Windows.Forms.Label();
  36. this.txtVersion = new System.Windows.Forms.Label();
  37. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  38. this.label2 = new System.Windows.Forms.Label();
  39. this.bpanel = new System.Windows.Forms.Panel();
  40. this.tabCollection = new System.Windows.Forms.TabControl();
  41. this.universalTab = new System.Windows.Forms.TabPage();
  42. this.restartButton = new System.Windows.Forms.Button();
  43. this.windowsXTab = new System.Windows.Forms.TabPage();
  44. this.restartButton10 = new System.Windows.Forms.Button();
  45. this.windowsVIIITab = new System.Windows.Forms.TabPage();
  46. this.restartButton8 = new System.Windows.Forms.Button();
  47. this.modernAppsTab = new System.Windows.Forms.TabPage();
  48. this.txtUWP = new System.Windows.Forms.Label();
  49. this.uninstallModernAppsButton = new System.Windows.Forms.Button();
  50. this.refreshModernAppsButton = new System.Windows.Forms.Button();
  51. this.txtModernAppsTitle = new System.Windows.Forms.Label();
  52. this.panelModernAppsList = new System.Windows.Forms.Panel();
  53. this.listModernApps = new System.Windows.Forms.CheckedListBox();
  54. this.startupTab = new System.Windows.Forms.TabPage();
  55. this.cancelBackup = new System.Windows.Forms.Button();
  56. this.doBackup = new System.Windows.Forms.Button();
  57. this.txtBackupTitle = new System.Windows.Forms.TextBox();
  58. this.lblBackupTitle = new System.Windows.Forms.Label();
  59. this.restoreStartupB = new System.Windows.Forms.Button();
  60. this.backupStartupB = new System.Windows.Forms.Button();
  61. this.findInRegB = new System.Windows.Forms.Button();
  62. this.locateFileB = new System.Windows.Forms.Button();
  63. this.refreshStartupB = new System.Windows.Forms.Button();
  64. this.panel3 = new System.Windows.Forms.Panel();
  65. this.listStartupItems = new System.Windows.Forms.ListView();
  66. this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  67. this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  68. this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  69. this.removeStartupItemB = new System.Windows.Forms.Button();
  70. this.startupTitle = new System.Windows.Forms.Label();
  71. this.appsTab = new System.Windows.Forms.TabPage();
  72. this.txtFeedError = new System.Windows.Forms.Label();
  73. this.panel10 = new System.Windows.Forms.Panel();
  74. this.appsTitle = new System.Windows.Forms.Label();
  75. this.btnGetFeed = new System.Windows.Forms.Button();
  76. this.panelCommonApps = new System.Windows.Forms.Panel();
  77. this.btnDownloadApps = new System.Windows.Forms.Button();
  78. this.setDownDirLbl = new System.Windows.Forms.Label();
  79. this.txtDownloadFolder = new System.Windows.Forms.TextBox();
  80. this.changeDownDirB = new System.Windows.Forms.Button();
  81. this.txtDownloadStatus = new System.Windows.Forms.Label();
  82. this.linkWarnings = new System.Windows.Forms.LinkLabel();
  83. this.bitPref = new System.Windows.Forms.Label();
  84. this.goToDownloadsB = new System.Windows.Forms.Button();
  85. this.panelApps5 = new System.Windows.Forms.Panel();
  86. this.pictureBox58 = new System.Windows.Forms.PictureBox();
  87. this.pictureBox57 = new System.Windows.Forms.PictureBox();
  88. this.pictureBox81 = new System.Windows.Forms.PictureBox();
  89. this.pictureBox8 = new System.Windows.Forms.PictureBox();
  90. this.pictureBox59 = new System.Windows.Forms.PictureBox();
  91. this.pictureBox46 = new System.Windows.Forms.PictureBox();
  92. this.pictureBox10 = new System.Windows.Forms.PictureBox();
  93. this.pictureBox11 = new System.Windows.Forms.PictureBox();
  94. this.pictureBox47 = new System.Windows.Forms.PictureBox();
  95. this.pictureBox12 = new System.Windows.Forms.PictureBox();
  96. this.pictureBox65 = new System.Windows.Forms.PictureBox();
  97. this.pictureBox45 = new System.Windows.Forms.PictureBox();
  98. this.pictureBox13 = new System.Windows.Forms.PictureBox();
  99. this.pictureBox48 = new System.Windows.Forms.PictureBox();
  100. this.pictureBox9 = new System.Windows.Forms.PictureBox();
  101. this.pictureBox82 = new System.Windows.Forms.PictureBox();
  102. this.pictureBox60 = new System.Windows.Forms.PictureBox();
  103. this.pictureBox22 = new System.Windows.Forms.PictureBox();
  104. this.pictureBox23 = new System.Windows.Forms.PictureBox();
  105. this.pictureBox21 = new System.Windows.Forms.PictureBox();
  106. this.pictureBox24 = new System.Windows.Forms.PictureBox();
  107. this.pictureBox52 = new System.Windows.Forms.PictureBox();
  108. this.pictureBox14 = new System.Windows.Forms.PictureBox();
  109. this.pictureBox71 = new System.Windows.Forms.PictureBox();
  110. this.pictureBox15 = new System.Windows.Forms.PictureBox();
  111. this.pictureBox16 = new System.Windows.Forms.PictureBox();
  112. this.pictureBox43 = new System.Windows.Forms.PictureBox();
  113. this.pictureBox63 = new System.Windows.Forms.PictureBox();
  114. this.panelApps6 = new System.Windows.Forms.Panel();
  115. this.pictureBox75 = new System.Windows.Forms.PictureBox();
  116. this.pictureBox54 = new System.Windows.Forms.PictureBox();
  117. this.pictureBox53 = new System.Windows.Forms.PictureBox();
  118. this.pictureBox80 = new System.Windows.Forms.PictureBox();
  119. this.pictureBox49 = new System.Windows.Forms.PictureBox();
  120. this.pictureBox51 = new System.Windows.Forms.PictureBox();
  121. this.pictureBox18 = new System.Windows.Forms.PictureBox();
  122. this.pictureBox50 = new System.Windows.Forms.PictureBox();
  123. this.pictureBox78 = new System.Windows.Forms.PictureBox();
  124. this.pictureBox19 = new System.Windows.Forms.PictureBox();
  125. this.pictureBox79 = new System.Windows.Forms.PictureBox();
  126. this.pictureBox20 = new System.Windows.Forms.PictureBox();
  127. this.pictureBox17 = new System.Windows.Forms.PictureBox();
  128. this.pictureBox77 = new System.Windows.Forms.PictureBox();
  129. this.pictureBox76 = new System.Windows.Forms.PictureBox();
  130. this.pictureBox74 = new System.Windows.Forms.PictureBox();
  131. this.pictureBox68 = new System.Windows.Forms.PictureBox();
  132. this.pictureBox61 = new System.Windows.Forms.PictureBox();
  133. this.pictureBox66 = new System.Windows.Forms.PictureBox();
  134. this.pictureBox72 = new System.Windows.Forms.PictureBox();
  135. this.pictureBox67 = new System.Windows.Forms.PictureBox();
  136. this.pictureBox73 = new System.Windows.Forms.PictureBox();
  137. this.pictureBox70 = new System.Windows.Forms.PictureBox();
  138. this.pictureBox69 = new System.Windows.Forms.PictureBox();
  139. this.panelApps1 = new System.Windows.Forms.Panel();
  140. this.pictureBox39 = new System.Windows.Forms.PictureBox();
  141. this.pictureBox37 = new System.Windows.Forms.PictureBox();
  142. this.pictureBox64 = new System.Windows.Forms.PictureBox();
  143. this.pictureBox44 = new System.Windows.Forms.PictureBox();
  144. this.pictureBox38 = new System.Windows.Forms.PictureBox();
  145. this.pictureBox62 = new System.Windows.Forms.PictureBox();
  146. this.pictureBox40 = new System.Windows.Forms.PictureBox();
  147. this.pictureBox33 = new System.Windows.Forms.PictureBox();
  148. this.pictureBox5 = new System.Windows.Forms.PictureBox();
  149. this.pictureBox41 = new System.Windows.Forms.PictureBox();
  150. this.pictureBox4 = new System.Windows.Forms.PictureBox();
  151. this.pictureBox42 = new System.Windows.Forms.PictureBox();
  152. this.pictureBox34 = new System.Windows.Forms.PictureBox();
  153. this.pictureBox3 = new System.Windows.Forms.PictureBox();
  154. this.pictureBox32 = new System.Windows.Forms.PictureBox();
  155. this.pictureBox35 = new System.Windows.Forms.PictureBox();
  156. this.pictureBox7 = new System.Windows.Forms.PictureBox();
  157. this.pictureBox31 = new System.Windows.Forms.PictureBox();
  158. this.picturemaxthon = new System.Windows.Forms.PictureBox();
  159. this.pictureBox36 = new System.Windows.Forms.PictureBox();
  160. this.pictureBox2 = new System.Windows.Forms.PictureBox();
  161. this.pictureBox6 = new System.Windows.Forms.PictureBox();
  162. this.pictureBox55 = new System.Windows.Forms.PictureBox();
  163. this.pictureBox56 = new System.Windows.Forms.PictureBox();
  164. this.pictureBox27 = new System.Windows.Forms.PictureBox();
  165. this.pictureBox25 = new System.Windows.Forms.PictureBox();
  166. this.pictureBox30 = new System.Windows.Forms.PictureBox();
  167. this.pictureBox28 = new System.Windows.Forms.PictureBox();
  168. this.pictureBox29 = new System.Windows.Forms.PictureBox();
  169. this.pictureBox26 = new System.Windows.Forms.PictureBox();
  170. this.cleanerTab = new System.Windows.Forms.TabPage();
  171. this.cleanerTitle = new System.Windows.Forms.Label();
  172. this.panel1 = new System.Windows.Forms.Panel();
  173. this.lblPretext = new System.Windows.Forms.Label();
  174. this.lblFootprint = new System.Windows.Forms.Label();
  175. this.cleanDriveB = new System.Windows.Forms.Button();
  176. this.pingerTab = new System.Windows.Forms.TabPage();
  177. this.btnSpeedtest = new System.Windows.Forms.Button();
  178. this.flushCacheB = new System.Windows.Forms.Button();
  179. this.btnExport = new System.Windows.Forms.Button();
  180. this.copyB = new System.Windows.Forms.Button();
  181. this.copyIPB = new System.Windows.Forms.Button();
  182. this.panel7 = new System.Windows.Forms.Panel();
  183. this.listPingResults = new System.Windows.Forms.ListBox();
  184. this.lblResults = new System.Windows.Forms.Label();
  185. this.btnShodan = new System.Windows.Forms.Button();
  186. this.btnPing = new System.Windows.Forms.Button();
  187. this.txtPingInput = new System.Windows.Forms.TextBox();
  188. this.lblPinger = new System.Windows.Forms.Label();
  189. this.pingerTitle = new System.Windows.Forms.Label();
  190. this.hostsEditorTab = new System.Windows.Forms.TabPage();
  191. this.panel4 = new System.Windows.Forms.Panel();
  192. this.lblAdblockSub = new System.Windows.Forms.Label();
  193. this.linkAdvancedEdit = new System.Windows.Forms.LinkLabel();
  194. this.lblAdblock = new System.Windows.Forms.Label();
  195. this.linkRestoreDefault = new System.Windows.Forms.LinkLabel();
  196. this.adblockUlti = new System.Windows.Forms.Button();
  197. this.adblockP = new System.Windows.Forms.Button();
  198. this.adblockS = new System.Windows.Forms.Button();
  199. this.adblockBasic = new System.Windows.Forms.Button();
  200. this.lblLock = new System.Windows.Forms.Label();
  201. this.panelList = new System.Windows.Forms.Panel();
  202. this.listHostEntries = new System.Windows.Forms.ListBox();
  203. this.refreshHostsB = new System.Windows.Forms.Button();
  204. this.removeHostB = new System.Windows.Forms.Button();
  205. this.removeAllHostsB = new System.Windows.Forms.Button();
  206. this.addHostB = new System.Windows.Forms.Button();
  207. this.txtIP = new System.Windows.Forms.TextBox();
  208. this.txtDomain = new System.Windows.Forms.TextBox();
  209. this.lblDomain = new System.Windows.Forms.Label();
  210. this.lblIP = new System.Windows.Forms.Label();
  211. this.hostsTitle = new System.Windows.Forms.Label();
  212. this.linkLocate = new System.Windows.Forms.LinkLabel();
  213. this.registryFixerTab = new System.Windows.Forms.TabPage();
  214. this.panel2 = new System.Windows.Forms.Panel();
  215. this.regFixB = new System.Windows.Forms.Button();
  216. this.regLbl = new System.Windows.Forms.Label();
  217. this.registryTitle = new System.Windows.Forms.Label();
  218. this.integratorTab = new System.Windows.Forms.TabPage();
  219. this.synapse = new System.Windows.Forms.TabControl();
  220. this.integratorInfoTab = new System.Windows.Forms.TabPage();
  221. this.integrator7 = new System.Windows.Forms.Label();
  222. this.integrator6 = new System.Windows.Forms.Label();
  223. this.integrator5 = new System.Windows.Forms.Label();
  224. this.integrator4 = new System.Windows.Forms.Label();
  225. this.integrator3 = new System.Windows.Forms.Label();
  226. this.integrator2 = new System.Windows.Forms.Label();
  227. this.integrator1 = new System.Windows.Forms.Label();
  228. this.tabPage8 = new System.Windows.Forms.TabPage();
  229. this.btnAddItem = new System.Windows.Forms.Button();
  230. this.itemnamegroup = new System.Windows.Forms.GroupBox();
  231. this.txtItemName = new System.Windows.Forms.TextBox();
  232. this.security = new System.Windows.Forms.GroupBox();
  233. this.itemposition = new System.Windows.Forms.GroupBox();
  234. this.icontoaddgroup = new System.Windows.Forms.GroupBox();
  235. this.btnBrowseIcon = new System.Windows.Forms.Button();
  236. this.txtIcon = new System.Windows.Forms.TextBox();
  237. this.itemtoaddgroup = new System.Windows.Forms.GroupBox();
  238. this.btnBrowseItem = new System.Windows.Forms.Button();
  239. this.txtItem = new System.Windows.Forms.TextBox();
  240. this.itemtype = new System.Windows.Forms.GroupBox();
  241. this.addItemL = new System.Windows.Forms.Label();
  242. this.tabPage9 = new System.Windows.Forms.TabPage();
  243. this.panel5 = new System.Windows.Forms.Panel();
  244. this.listDesktopItems = new System.Windows.Forms.ListBox();
  245. this.refreshIIB = new System.Windows.Forms.Button();
  246. this.removeDIB = new System.Windows.Forms.Button();
  247. this.removeAllIIB = new System.Windows.Forms.Button();
  248. this.removeIntegratorItemsL = new System.Windows.Forms.Label();
  249. this.tabPage10 = new System.Windows.Forms.TabPage();
  250. this.RemoveOwnerB = new System.Windows.Forms.Button();
  251. this.AddOwnerB = new System.Windows.Forms.Button();
  252. this.readyMenusL = new System.Windows.Forms.Label();
  253. this.PMB = new System.Windows.Forms.Button();
  254. this.DSB = new System.Windows.Forms.Button();
  255. this.STB = new System.Windows.Forms.Button();
  256. this.SSB = new System.Windows.Forms.Button();
  257. this.WAB = new System.Windows.Forms.Button();
  258. this.tabPage11 = new System.Windows.Forms.TabPage();
  259. this.panel6 = new System.Windows.Forms.Panel();
  260. this.listCustomCommands = new System.Windows.Forms.ListBox();
  261. this.removeCCB = new System.Windows.Forms.Button();
  262. this.refreshCCB = new System.Windows.Forms.Button();
  263. this.removeCCL = new System.Windows.Forms.Label();
  264. this.btnCreateCustomCommand = new System.Windows.Forms.Button();
  265. this.button48 = new System.Windows.Forms.Button();
  266. this.txtRunKeyword = new System.Windows.Forms.TextBox();
  267. this.ccKeywordL = new System.Windows.Forms.Label();
  268. this.txtRunFile = new System.Windows.Forms.TextBox();
  269. this.ccFileL = new System.Windows.Forms.Label();
  270. this.ccL = new System.Windows.Forms.Label();
  271. this.optionsTab = new System.Windows.Forms.TabPage();
  272. this.pictureBox85 = new System.Windows.Forms.PictureBox();
  273. this.panel9 = new System.Windows.Forms.Panel();
  274. this.pictureBox89 = new System.Windows.Forms.PictureBox();
  275. this.pictureBox88 = new System.Windows.Forms.PictureBox();
  276. this.pictureBox87 = new System.Windows.Forms.PictureBox();
  277. this.pictureBox86 = new System.Windows.Forms.PictureBox();
  278. this.panel8 = new System.Windows.Forms.Panel();
  279. this.radioCaramel = new System.Windows.Forms.RadioButton();
  280. this.radioZerg = new System.Windows.Forms.RadioButton();
  281. this.radioOcean = new System.Windows.Forms.RadioButton();
  282. this.radioMagma = new System.Windows.Forms.RadioButton();
  283. this.radioLime = new System.Windows.Forms.RadioButton();
  284. this.radioMinimal = new System.Windows.Forms.RadioButton();
  285. this.languagesL = new System.Windows.Forms.Label();
  286. this.lblUpdateDisabled = new System.Windows.Forms.Label();
  287. this.linkLabel6 = new System.Windows.Forms.LinkLabel();
  288. this.pictureBox84 = new System.Windows.Forms.PictureBox();
  289. this.pictureBox83 = new System.Windows.Forms.PictureBox();
  290. this.linkLabel5 = new System.Windows.Forms.LinkLabel();
  291. this.btnOpenConf = new System.Windows.Forms.Button();
  292. this.lblTroubleshoot = new System.Windows.Forms.Label();
  293. this.lblUpdating = new System.Windows.Forms.Label();
  294. this.btnViewLog = new System.Windows.Forms.Button();
  295. this.l2 = new System.Windows.Forms.LinkLabel();
  296. this.btnChangelog = new System.Windows.Forms.Button();
  297. this.btnUpdate = new System.Windows.Forms.Button();
  298. this.btnResetConfig = new System.Windows.Forms.Button();
  299. this.lblTheming = new System.Windows.Forms.Label();
  300. this.defineCommandDialog = new System.Windows.Forms.OpenFileDialog();
  301. this.defineProgramDialog = new System.Windows.Forms.OpenFileDialog();
  302. this.defineFolderDialog = new System.Windows.Forms.FolderBrowserDialog();
  303. this.defineFileDialog = new System.Windows.Forms.OpenFileDialog();
  304. this.DefineProgramIconDialog = new System.Windows.Forms.OpenFileDialog();
  305. this.DefineFolderIconDialog = new System.Windows.Forms.OpenFileDialog();
  306. this.DefineURLIconDialog = new System.Windows.Forms.OpenFileDialog();
  307. this.DefineFileIconDialog = new System.Windows.Forms.OpenFileDialog();
  308. this.DefineCommandIconDialog = new System.Windows.Forms.OpenFileDialog();
  309. this.ExportDialog = new System.Windows.Forms.SaveFileDialog();
  310. this.launcherMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
  311. this.trayStartup = new System.Windows.Forms.ToolStripMenuItem();
  312. this.trayCleaner = new System.Windows.Forms.ToolStripMenuItem();
  313. this.trayPinger = new System.Windows.Forms.ToolStripMenuItem();
  314. this.trayHosts = new System.Windows.Forms.ToolStripMenuItem();
  315. this.trayAD = new System.Windows.Forms.ToolStripMenuItem();
  316. this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
  317. this.trayRestartExplorer = new System.Windows.Forms.ToolStripMenuItem();
  318. this.trayExit = new System.Windows.Forms.ToolStripMenuItem();
  319. this.launcherIcon = new System.Windows.Forms.NotifyIcon(this.components);
  320. this.helpBox = new System.Windows.Forms.ToolTip(this.components);
  321. this.txtNetFw = new System.Windows.Forms.Label();
  322. this.stickySw = new Optimizer.ToggleSwitch();
  323. this.smartScreenSw = new Optimizer.ToggleSwitch();
  324. this.faxSw = new Optimizer.ToggleSwitch();
  325. this.compatSw = new Optimizer.ToggleSwitch();
  326. this.officeTelemetrySw = new Optimizer.ToggleSwitch();
  327. this.telemetryTasksSw = new Optimizer.ToggleSwitch();
  328. this.superfetchSw = new Optimizer.ToggleSwitch();
  329. this.homegroupSw = new Optimizer.ToggleSwitch();
  330. this.reportingSw = new Optimizer.ToggleSwitch();
  331. this.mediaSharingSw = new Optimizer.ToggleSwitch();
  332. this.printSw = new Optimizer.ToggleSwitch();
  333. this.systemRestoreSw = new Optimizer.ToggleSwitch();
  334. this.performanceSw = new Optimizer.ToggleSwitch();
  335. this.defenderSw = new Optimizer.ToggleSwitch();
  336. this.networkSw = new Optimizer.ToggleSwitch();
  337. this.actionSw = new Optimizer.ToggleSwitch();
  338. this.castSw = new Optimizer.ToggleSwitch();
  339. this.longPathsSw = new Optimizer.ToggleSwitch();
  340. this.ccSw = new Optimizer.ToggleSwitch();
  341. this.featuresSw = new Optimizer.ToggleSwitch();
  342. this.insiderSw = new Optimizer.ToggleSwitch();
  343. this.darkSw = new Optimizer.ToggleSwitch();
  344. this.spellSw = new Optimizer.ToggleSwitch();
  345. this.inkSw = new Optimizer.ToggleSwitch();
  346. this.driversSw = new Optimizer.ToggleSwitch();
  347. this.sensorSw = new Optimizer.ToggleSwitch();
  348. this.privacySw = new Optimizer.ToggleSwitch();
  349. this.telemetryServicesSw = new Optimizer.ToggleSwitch();
  350. this.autoUpdatesSw = new Optimizer.ToggleSwitch();
  351. this.peopleSw = new Optimizer.ToggleSwitch();
  352. this.adsSw = new Optimizer.ToggleSwitch();
  353. this.colorBarSw = new Optimizer.ToggleSwitch();
  354. this.oldExplorerSw = new Optimizer.ToggleSwitch();
  355. this.xboxSw = new Optimizer.ToggleSwitch();
  356. this.cortanaSw = new Optimizer.ToggleSwitch();
  357. this.gameBarSw = new Optimizer.ToggleSwitch();
  358. this.uODSw = new Optimizer.ToggleSwitch();
  359. this.oldMixerSw = new Optimizer.ToggleSwitch();
  360. this.disableOneDriveSw = new Optimizer.ToggleSwitch();
  361. this.chkOnlyRemovable = new Optimizer.ColoredCheckBox();
  362. this.chkSelectAllModernApps = new Optimizer.ColoredCheckBox();
  363. this.cAutoInstall = new Optimizer.ColoredCheckBox();
  364. this.progressDownloader = new Optimizer.ColoredProgress();
  365. this.c64 = new Optimizer.ColoredRadioButton();
  366. this.c32 = new Optimizer.ColoredRadioButton();
  367. this.cLightShot = new Optimizer.ColoredCheckBox();
  368. this.cViper = new Optimizer.ColoredCheckBox();
  369. this.cVLC = new Optimizer.ColoredCheckBox();
  370. this.cGyazo = new Optimizer.ColoredCheckBox();
  371. this.cFoobar = new Optimizer.ColoredCheckBox();
  372. this.cPot = new Optimizer.ColoredCheckBox();
  373. this.cAudacity = new Optimizer.ColoredCheckBox();
  374. this.cPhotoFiltre = new Optimizer.ColoredCheckBox();
  375. this.cIrfan = new Optimizer.ColoredCheckBox();
  376. this.ciTunes = new Optimizer.ColoredCheckBox();
  377. this.cGIMP = new Optimizer.ColoredCheckBox();
  378. this.cWinamp = new Optimizer.ColoredCheckBox();
  379. this.cBS = new Optimizer.ColoredCheckBox();
  380. this.cSpotify = new Optimizer.ColoredCheckBox();
  381. this.cMp3Tag = new Optimizer.ColoredCheckBox();
  382. this.cMega = new Optimizer.ColoredCheckBox();
  383. this.cAdobeReader = new Optimizer.ColoredCheckBox();
  384. this.cBlender = new Optimizer.ColoredCheckBox();
  385. this.cFoxit = new Optimizer.ColoredCheckBox();
  386. this.cEvernote = new Optimizer.ColoredCheckBox();
  387. this.cSumatra = new Optimizer.ColoredCheckBox();
  388. this.cLibreOffice = new Optimizer.ColoredCheckBox();
  389. this.cPeaZip = new Optimizer.ColoredCheckBox();
  390. this.cFlux = new Optimizer.ColoredCheckBox();
  391. this.c7zip = new Optimizer.ColoredCheckBox();
  392. this.cWinRar = new Optimizer.ColoredCheckBox();
  393. this.cDropbox = new Optimizer.ColoredCheckBox();
  394. this.cOneDrive = new Optimizer.ColoredCheckBox();
  395. this.cSteam = new Optimizer.ColoredCheckBox();
  396. this.cOrigin = new Optimizer.ColoredCheckBox();
  397. this.cVCPP = new Optimizer.ColoredCheckBox();
  398. this.cQB = new Optimizer.ColoredCheckBox();
  399. this.cEpicStore = new Optimizer.ColoredCheckBox();
  400. this.cUT2 = new Optimizer.ColoredCheckBox();
  401. this.cBlizzard = new Optimizer.ColoredCheckBox();
  402. this.cDeluge = new Optimizer.ColoredCheckBox();
  403. this.cNF472 = new Optimizer.ColoredCheckBox();
  404. this.cUbi = new Optimizer.ColoredCheckBox();
  405. this.cNF452 = new Optimizer.ColoredCheckBox();
  406. this.cUT3 = new Optimizer.ColoredCheckBox();
  407. this.cNF40 = new Optimizer.ColoredCheckBox();
  408. this.cBT = new Optimizer.ColoredCheckBox();
  409. this.cNF35 = new Optimizer.ColoredCheckBox();
  410. this.cIObitSU = new Optimizer.ColoredCheckBox();
  411. this.cIObitU = new Optimizer.ColoredCheckBox();
  412. this.cRevo = new Optimizer.ColoredCheckBox();
  413. this.cIObitDB = new Optimizer.ColoredCheckBox();
  414. this.cIObitSD = new Optimizer.ColoredCheckBox();
  415. this.cUUI = new Optimizer.ColoredCheckBox();
  416. this.cRufus = new Optimizer.ColoredCheckBox();
  417. this.cMalwarebytes = new Optimizer.ColoredCheckBox();
  418. this.cAntiExploit = new Optimizer.ColoredCheckBox();
  419. this.cFileZilla = new Optimizer.ColoredCheckBox();
  420. this.cGitHub = new Optimizer.ColoredCheckBox();
  421. this.cNode = new Optimizer.ColoredCheckBox();
  422. this.cPutty = new Optimizer.ColoredCheckBox();
  423. this.cNPP = new Optimizer.ColoredCheckBox();
  424. this.cWinScp = new Optimizer.ColoredCheckBox();
  425. this.cAndroidStudio = new Optimizer.ColoredCheckBox();
  426. this.cXAMPP = new Optimizer.ColoredCheckBox();
  427. this.cChromium = new Optimizer.ColoredCheckBox();
  428. this.cEclipse = new Optimizer.ColoredCheckBox();
  429. this.cPostman = new Optimizer.ColoredCheckBox();
  430. this.cSublimeText = new Optimizer.ColoredCheckBox();
  431. this.cVivaldi = new Optimizer.ColoredCheckBox();
  432. this.cAtom = new Optimizer.ColoredCheckBox();
  433. this.cMaxthon = new Optimizer.ColoredCheckBox();
  434. this.cVS = new Optimizer.ColoredCheckBox();
  435. this.cChrome = new Optimizer.ColoredCheckBox();
  436. this.cVSCode = new Optimizer.ColoredCheckBox();
  437. this.cOpera = new Optimizer.ColoredCheckBox();
  438. this.cSublimeMerge = new Optimizer.ColoredCheckBox();
  439. this.cFirefox = new Optimizer.ColoredCheckBox();
  440. this.cTor = new Optimizer.ColoredCheckBox();
  441. this.cDiscord = new Optimizer.ColoredCheckBox();
  442. this.cAnyDesk = new Optimizer.ColoredCheckBox();
  443. this.cMSTeams = new Optimizer.ColoredCheckBox();
  444. this.cViber = new Optimizer.ColoredCheckBox();
  445. this.cSkype = new Optimizer.ColoredCheckBox();
  446. this.cThunderbird = new Optimizer.ColoredCheckBox();
  447. this.cZoom = new Optimizer.ColoredCheckBox();
  448. this.cTV = new Optimizer.ColoredCheckBox();
  449. this.checkErrorReports = new Optimizer.ColoredCheckBox();
  450. this.checkSelectAll = new Optimizer.ColoredCheckBox();
  451. this.checkMediaCache = new Optimizer.ColoredCheckBox();
  452. this.checkTemp = new Optimizer.ColoredCheckBox();
  453. this.checkLogs = new Optimizer.ColoredCheckBox();
  454. this.checkBin = new Optimizer.ColoredCheckBox();
  455. this.checkMiniDumps = new Optimizer.ColoredCheckBox();
  456. this.chkReadOnly = new Optimizer.ColoredCheckBox();
  457. this.chkBlock = new Optimizer.ColoredCheckBox();
  458. this.checkRestartExplorer = new Optimizer.ColoredCheckBox();
  459. this.checkRegistryEditor = new Optimizer.ColoredCheckBox();
  460. this.checkEnableAll = new Optimizer.ColoredCheckBox();
  461. this.checkContextMenu = new Optimizer.ColoredCheckBox();
  462. this.checkTaskManager = new Optimizer.ColoredCheckBox();
  463. this.checkCommandPrompt = new Optimizer.ColoredCheckBox();
  464. this.checkFirewall = new Optimizer.ColoredCheckBox();
  465. this.checkRunDialog = new Optimizer.ColoredCheckBox();
  466. this.checkFolderOptions = new Optimizer.ColoredCheckBox();
  467. this.checkControlPanel = new Optimizer.ColoredCheckBox();
  468. this.checkShift = new Optimizer.ColoredCheckBox();
  469. this.radioTop = new Optimizer.ColoredRadioButton();
  470. this.radioMiddle = new Optimizer.ColoredRadioButton();
  471. this.radioBottom = new Optimizer.ColoredRadioButton();
  472. this.checkDefaultIcon = new Optimizer.ColoredCheckBox();
  473. this.radioCommand = new Optimizer.ColoredRadioButton();
  474. this.radioProgram = new Optimizer.ColoredRadioButton();
  475. this.radioFolder = new Optimizer.ColoredRadioButton();
  476. this.radioLink = new Optimizer.ColoredRadioButton();
  477. this.radioFile = new Optimizer.ColoredRadioButton();
  478. this.radioTurkish = new Optimizer.ColoredRadioButton();
  479. this.radioHellenic = new Optimizer.ColoredRadioButton();
  480. this.radioEnglish = new Optimizer.ColoredRadioButton();
  481. this.radioRussian = new Optimizer.ColoredRadioButton();
  482. this.helpTipsToggle = new Optimizer.ToggleSwitch();
  483. this.quickAccessToggle = new Optimizer.ToggleSwitch();
  484. this.tpanel.SuspendLayout();
  485. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  486. this.bpanel.SuspendLayout();
  487. this.tabCollection.SuspendLayout();
  488. this.universalTab.SuspendLayout();
  489. this.windowsXTab.SuspendLayout();
  490. this.windowsVIIITab.SuspendLayout();
  491. this.modernAppsTab.SuspendLayout();
  492. this.panelModernAppsList.SuspendLayout();
  493. this.startupTab.SuspendLayout();
  494. this.panel3.SuspendLayout();
  495. this.appsTab.SuspendLayout();
  496. this.panel10.SuspendLayout();
  497. this.panelCommonApps.SuspendLayout();
  498. this.panelApps5.SuspendLayout();
  499. ((System.ComponentModel.ISupportInitialize)(this.pictureBox58)).BeginInit();
  500. ((System.ComponentModel.ISupportInitialize)(this.pictureBox57)).BeginInit();
  501. ((System.ComponentModel.ISupportInitialize)(this.pictureBox81)).BeginInit();
  502. ((System.ComponentModel.ISupportInitialize)(this.pictureBox8)).BeginInit();
  503. ((System.ComponentModel.ISupportInitialize)(this.pictureBox59)).BeginInit();
  504. ((System.ComponentModel.ISupportInitialize)(this.pictureBox46)).BeginInit();
  505. ((System.ComponentModel.ISupportInitialize)(this.pictureBox10)).BeginInit();
  506. ((System.ComponentModel.ISupportInitialize)(this.pictureBox11)).BeginInit();
  507. ((System.ComponentModel.ISupportInitialize)(this.pictureBox47)).BeginInit();
  508. ((System.ComponentModel.ISupportInitialize)(this.pictureBox12)).BeginInit();
  509. ((System.ComponentModel.ISupportInitialize)(this.pictureBox65)).BeginInit();
  510. ((System.ComponentModel.ISupportInitialize)(this.pictureBox45)).BeginInit();
  511. ((System.ComponentModel.ISupportInitialize)(this.pictureBox13)).BeginInit();
  512. ((System.ComponentModel.ISupportInitialize)(this.pictureBox48)).BeginInit();
  513. ((System.ComponentModel.ISupportInitialize)(this.pictureBox9)).BeginInit();
  514. ((System.ComponentModel.ISupportInitialize)(this.pictureBox82)).BeginInit();
  515. ((System.ComponentModel.ISupportInitialize)(this.pictureBox60)).BeginInit();
  516. ((System.ComponentModel.ISupportInitialize)(this.pictureBox22)).BeginInit();
  517. ((System.ComponentModel.ISupportInitialize)(this.pictureBox23)).BeginInit();
  518. ((System.ComponentModel.ISupportInitialize)(this.pictureBox21)).BeginInit();
  519. ((System.ComponentModel.ISupportInitialize)(this.pictureBox24)).BeginInit();
  520. ((System.ComponentModel.ISupportInitialize)(this.pictureBox52)).BeginInit();
  521. ((System.ComponentModel.ISupportInitialize)(this.pictureBox14)).BeginInit();
  522. ((System.ComponentModel.ISupportInitialize)(this.pictureBox71)).BeginInit();
  523. ((System.ComponentModel.ISupportInitialize)(this.pictureBox15)).BeginInit();
  524. ((System.ComponentModel.ISupportInitialize)(this.pictureBox16)).BeginInit();
  525. ((System.ComponentModel.ISupportInitialize)(this.pictureBox43)).BeginInit();
  526. ((System.ComponentModel.ISupportInitialize)(this.pictureBox63)).BeginInit();
  527. this.panelApps6.SuspendLayout();
  528. ((System.ComponentModel.ISupportInitialize)(this.pictureBox75)).BeginInit();
  529. ((System.ComponentModel.ISupportInitialize)(this.pictureBox54)).BeginInit();
  530. ((System.ComponentModel.ISupportInitialize)(this.pictureBox53)).BeginInit();
  531. ((System.ComponentModel.ISupportInitialize)(this.pictureBox80)).BeginInit();
  532. ((System.ComponentModel.ISupportInitialize)(this.pictureBox49)).BeginInit();
  533. ((System.ComponentModel.ISupportInitialize)(this.pictureBox51)).BeginInit();
  534. ((System.ComponentModel.ISupportInitialize)(this.pictureBox18)).BeginInit();
  535. ((System.ComponentModel.ISupportInitialize)(this.pictureBox50)).BeginInit();
  536. ((System.ComponentModel.ISupportInitialize)(this.pictureBox78)).BeginInit();
  537. ((System.ComponentModel.ISupportInitialize)(this.pictureBox19)).BeginInit();
  538. ((System.ComponentModel.ISupportInitialize)(this.pictureBox79)).BeginInit();
  539. ((System.ComponentModel.ISupportInitialize)(this.pictureBox20)).BeginInit();
  540. ((System.ComponentModel.ISupportInitialize)(this.pictureBox17)).BeginInit();
  541. ((System.ComponentModel.ISupportInitialize)(this.pictureBox77)).BeginInit();
  542. ((System.ComponentModel.ISupportInitialize)(this.pictureBox76)).BeginInit();
  543. ((System.ComponentModel.ISupportInitialize)(this.pictureBox74)).BeginInit();
  544. ((System.ComponentModel.ISupportInitialize)(this.pictureBox68)).BeginInit();
  545. ((System.ComponentModel.ISupportInitialize)(this.pictureBox61)).BeginInit();
  546. ((System.ComponentModel.ISupportInitialize)(this.pictureBox66)).BeginInit();
  547. ((System.ComponentModel.ISupportInitialize)(this.pictureBox72)).BeginInit();
  548. ((System.ComponentModel.ISupportInitialize)(this.pictureBox67)).BeginInit();
  549. ((System.ComponentModel.ISupportInitialize)(this.pictureBox73)).BeginInit();
  550. ((System.ComponentModel.ISupportInitialize)(this.pictureBox70)).BeginInit();
  551. ((System.ComponentModel.ISupportInitialize)(this.pictureBox69)).BeginInit();
  552. this.panelApps1.SuspendLayout();
  553. ((System.ComponentModel.ISupportInitialize)(this.pictureBox39)).BeginInit();
  554. ((System.ComponentModel.ISupportInitialize)(this.pictureBox37)).BeginInit();
  555. ((System.ComponentModel.ISupportInitialize)(this.pictureBox64)).BeginInit();
  556. ((System.ComponentModel.ISupportInitialize)(this.pictureBox44)).BeginInit();
  557. ((System.ComponentModel.ISupportInitialize)(this.pictureBox38)).BeginInit();
  558. ((System.ComponentModel.ISupportInitialize)(this.pictureBox62)).BeginInit();
  559. ((System.ComponentModel.ISupportInitialize)(this.pictureBox40)).BeginInit();
  560. ((System.ComponentModel.ISupportInitialize)(this.pictureBox33)).BeginInit();
  561. ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).BeginInit();
  562. ((System.ComponentModel.ISupportInitialize)(this.pictureBox41)).BeginInit();
  563. ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit();
  564. ((System.ComponentModel.ISupportInitialize)(this.pictureBox42)).BeginInit();
  565. ((System.ComponentModel.ISupportInitialize)(this.pictureBox34)).BeginInit();
  566. ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
  567. ((System.ComponentModel.ISupportInitialize)(this.pictureBox32)).BeginInit();
  568. ((System.ComponentModel.ISupportInitialize)(this.pictureBox35)).BeginInit();
  569. ((System.ComponentModel.ISupportInitialize)(this.pictureBox7)).BeginInit();
  570. ((System.ComponentModel.ISupportInitialize)(this.pictureBox31)).BeginInit();
  571. ((System.ComponentModel.ISupportInitialize)(this.picturemaxthon)).BeginInit();
  572. ((System.ComponentModel.ISupportInitialize)(this.pictureBox36)).BeginInit();
  573. ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
  574. ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).BeginInit();
  575. ((System.ComponentModel.ISupportInitialize)(this.pictureBox55)).BeginInit();
  576. ((System.ComponentModel.ISupportInitialize)(this.pictureBox56)).BeginInit();
  577. ((System.ComponentModel.ISupportInitialize)(this.pictureBox27)).BeginInit();
  578. ((System.ComponentModel.ISupportInitialize)(this.pictureBox25)).BeginInit();
  579. ((System.ComponentModel.ISupportInitialize)(this.pictureBox30)).BeginInit();
  580. ((System.ComponentModel.ISupportInitialize)(this.pictureBox28)).BeginInit();
  581. ((System.ComponentModel.ISupportInitialize)(this.pictureBox29)).BeginInit();
  582. ((System.ComponentModel.ISupportInitialize)(this.pictureBox26)).BeginInit();
  583. this.cleanerTab.SuspendLayout();
  584. this.panel1.SuspendLayout();
  585. this.pingerTab.SuspendLayout();
  586. this.panel7.SuspendLayout();
  587. this.hostsEditorTab.SuspendLayout();
  588. this.panel4.SuspendLayout();
  589. this.panelList.SuspendLayout();
  590. this.registryFixerTab.SuspendLayout();
  591. this.panel2.SuspendLayout();
  592. this.integratorTab.SuspendLayout();
  593. this.synapse.SuspendLayout();
  594. this.integratorInfoTab.SuspendLayout();
  595. this.tabPage8.SuspendLayout();
  596. this.itemnamegroup.SuspendLayout();
  597. this.security.SuspendLayout();
  598. this.itemposition.SuspendLayout();
  599. this.icontoaddgroup.SuspendLayout();
  600. this.itemtoaddgroup.SuspendLayout();
  601. this.itemtype.SuspendLayout();
  602. this.tabPage9.SuspendLayout();
  603. this.panel5.SuspendLayout();
  604. this.tabPage10.SuspendLayout();
  605. this.tabPage11.SuspendLayout();
  606. this.panel6.SuspendLayout();
  607. this.optionsTab.SuspendLayout();
  608. ((System.ComponentModel.ISupportInitialize)(this.pictureBox85)).BeginInit();
  609. this.panel9.SuspendLayout();
  610. ((System.ComponentModel.ISupportInitialize)(this.pictureBox89)).BeginInit();
  611. ((System.ComponentModel.ISupportInitialize)(this.pictureBox88)).BeginInit();
  612. ((System.ComponentModel.ISupportInitialize)(this.pictureBox87)).BeginInit();
  613. ((System.ComponentModel.ISupportInitialize)(this.pictureBox86)).BeginInit();
  614. this.panel8.SuspendLayout();
  615. ((System.ComponentModel.ISupportInitialize)(this.pictureBox84)).BeginInit();
  616. ((System.ComponentModel.ISupportInitialize)(this.pictureBox83)).BeginInit();
  617. this.launcherMenu.SuspendLayout();
  618. this.SuspendLayout();
  619. //
  620. // tpanel
  621. //
  622. this.tpanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  623. this.tpanel.Controls.Add(this.txtNetFw);
  624. this.tpanel.Controls.Add(this.linkUpdate);
  625. this.tpanel.Controls.Add(this.lblLab);
  626. this.tpanel.Controls.Add(this.txtBitness);
  627. this.tpanel.Controls.Add(this.txtOS);
  628. this.tpanel.Controls.Add(this.txtVersion);
  629. this.tpanel.Controls.Add(this.pictureBox1);
  630. this.tpanel.Controls.Add(this.label2);
  631. this.tpanel.Dock = System.Windows.Forms.DockStyle.Top;
  632. this.tpanel.Location = new System.Drawing.Point(0, 0);
  633. this.tpanel.Margin = new System.Windows.Forms.Padding(2);
  634. this.tpanel.Name = "tpanel";
  635. this.tpanel.Size = new System.Drawing.Size(870, 64);
  636. this.tpanel.TabIndex = 1;
  637. //
  638. // linkUpdate
  639. //
  640. this.linkUpdate.ActiveLinkColor = System.Drawing.Color.Goldenrod;
  641. this.linkUpdate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  642. this.linkUpdate.Font = new System.Drawing.Font("Segoe UI Semibold", 13F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  643. this.linkUpdate.ForeColor = System.Drawing.Color.Gold;
  644. this.linkUpdate.LinkColor = System.Drawing.Color.Gold;
  645. this.linkUpdate.Location = new System.Drawing.Point(538, 6);
  646. this.linkUpdate.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  647. this.linkUpdate.Name = "linkUpdate";
  648. this.linkUpdate.Size = new System.Drawing.Size(320, 50);
  649. this.linkUpdate.TabIndex = 69;
  650. this.linkUpdate.TabStop = true;
  651. this.linkUpdate.Tag = "";
  652. this.linkUpdate.Text = "Update available";
  653. this.linkUpdate.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  654. this.linkUpdate.Visible = false;
  655. this.linkUpdate.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkUpdate_LinkClicked);
  656. //
  657. // lblLab
  658. //
  659. this.lblLab.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  660. this.lblLab.Font = new System.Drawing.Font("Segoe UI Semibold", 13F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  661. this.lblLab.ForeColor = System.Drawing.Color.Gold;
  662. this.lblLab.Location = new System.Drawing.Point(462, 6);
  663. this.lblLab.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  664. this.lblLab.Name = "lblLab";
  665. this.lblLab.Size = new System.Drawing.Size(402, 50);
  666. this.lblLab.TabIndex = 68;
  667. this.lblLab.Text = "EXPERIMENTAL BUILD\r\n(delete after testing)";
  668. this.lblLab.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  669. this.lblLab.Visible = false;
  670. //
  671. // txtBitness
  672. //
  673. this.txtBitness.AutoSize = true;
  674. this.txtBitness.ForeColor = System.Drawing.Color.Silver;
  675. this.txtBitness.Location = new System.Drawing.Point(188, 24);
  676. this.txtBitness.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  677. this.txtBitness.Name = "txtBitness";
  678. this.txtBitness.Size = new System.Drawing.Size(44, 15);
  679. this.txtBitness.TabIndex = 4;
  680. this.txtBitness.Text = "bitness";
  681. //
  682. // txtOS
  683. //
  684. this.txtOS.AutoSize = true;
  685. this.txtOS.ForeColor = System.Drawing.Color.Silver;
  686. this.txtOS.Location = new System.Drawing.Point(188, 6);
  687. this.txtOS.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  688. this.txtOS.Name = "txtOS";
  689. this.txtOS.Size = new System.Drawing.Size(19, 15);
  690. this.txtOS.TabIndex = 3;
  691. this.txtOS.Text = "os";
  692. //
  693. // txtVersion
  694. //
  695. this.txtVersion.AutoSize = true;
  696. this.txtVersion.ForeColor = System.Drawing.Color.Silver;
  697. this.txtVersion.Location = new System.Drawing.Point(69, 37);
  698. this.txtVersion.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  699. this.txtVersion.Name = "txtVersion";
  700. this.txtVersion.Size = new System.Drawing.Size(77, 15);
  701. this.txtVersion.TabIndex = 1;
  702. this.txtVersion.Text = "Version: {VN}";
  703. //
  704. // pictureBox1
  705. //
  706. this.pictureBox1.Cursor = System.Windows.Forms.Cursors.Hand;
  707. this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
  708. this.pictureBox1.Location = new System.Drawing.Point(10, 10);
  709. this.pictureBox1.Margin = new System.Windows.Forms.Padding(2);
  710. this.pictureBox1.Name = "pictureBox1";
  711. this.pictureBox1.Size = new System.Drawing.Size(44, 43);
  712. this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  713. this.pictureBox1.TabIndex = 1;
  714. this.pictureBox1.TabStop = false;
  715. this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click);
  716. //
  717. // label2
  718. //
  719. this.label2.AutoSize = true;
  720. this.label2.Font = new System.Drawing.Font("Segoe UI Semibold", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  721. this.label2.ForeColor = System.Drawing.Color.White;
  722. this.label2.Location = new System.Drawing.Point(67, 7);
  723. this.label2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  724. this.label2.Name = "label2";
  725. this.label2.Size = new System.Drawing.Size(97, 25);
  726. this.label2.TabIndex = 2;
  727. this.label2.Text = "Optimizer";
  728. //
  729. // bpanel
  730. //
  731. this.bpanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  732. this.bpanel.Controls.Add(this.tabCollection);
  733. this.bpanel.Dock = System.Windows.Forms.DockStyle.Fill;
  734. this.bpanel.Location = new System.Drawing.Point(0, 64);
  735. this.bpanel.Margin = new System.Windows.Forms.Padding(2);
  736. this.bpanel.Name = "bpanel";
  737. this.bpanel.Size = new System.Drawing.Size(870, 641);
  738. this.bpanel.TabIndex = 2;
  739. //
  740. // tabCollection
  741. //
  742. this.tabCollection.Controls.Add(this.universalTab);
  743. this.tabCollection.Controls.Add(this.windowsXTab);
  744. this.tabCollection.Controls.Add(this.windowsVIIITab);
  745. this.tabCollection.Controls.Add(this.modernAppsTab);
  746. this.tabCollection.Controls.Add(this.startupTab);
  747. this.tabCollection.Controls.Add(this.appsTab);
  748. this.tabCollection.Controls.Add(this.cleanerTab);
  749. this.tabCollection.Controls.Add(this.pingerTab);
  750. this.tabCollection.Controls.Add(this.hostsEditorTab);
  751. this.tabCollection.Controls.Add(this.registryFixerTab);
  752. this.tabCollection.Controls.Add(this.integratorTab);
  753. this.tabCollection.Controls.Add(this.optionsTab);
  754. this.tabCollection.Dock = System.Windows.Forms.DockStyle.Fill;
  755. this.tabCollection.Location = new System.Drawing.Point(0, 0);
  756. this.tabCollection.Margin = new System.Windows.Forms.Padding(2);
  757. this.tabCollection.Name = "tabCollection";
  758. this.tabCollection.SelectedIndex = 0;
  759. this.tabCollection.Size = new System.Drawing.Size(868, 639);
  760. this.tabCollection.TabIndex = 0;
  761. this.tabCollection.SelectedIndexChanged += new System.EventHandler(this.aio_SelectedIndexChanged);
  762. //
  763. // universalTab
  764. //
  765. this.universalTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  766. this.universalTab.Controls.Add(this.stickySw);
  767. this.universalTab.Controls.Add(this.smartScreenSw);
  768. this.universalTab.Controls.Add(this.faxSw);
  769. this.universalTab.Controls.Add(this.compatSw);
  770. this.universalTab.Controls.Add(this.officeTelemetrySw);
  771. this.universalTab.Controls.Add(this.telemetryTasksSw);
  772. this.universalTab.Controls.Add(this.superfetchSw);
  773. this.universalTab.Controls.Add(this.homegroupSw);
  774. this.universalTab.Controls.Add(this.reportingSw);
  775. this.universalTab.Controls.Add(this.mediaSharingSw);
  776. this.universalTab.Controls.Add(this.printSw);
  777. this.universalTab.Controls.Add(this.systemRestoreSw);
  778. this.universalTab.Controls.Add(this.performanceSw);
  779. this.universalTab.Controls.Add(this.defenderSw);
  780. this.universalTab.Controls.Add(this.networkSw);
  781. this.universalTab.Controls.Add(this.restartButton);
  782. this.universalTab.Location = new System.Drawing.Point(4, 24);
  783. this.universalTab.Margin = new System.Windows.Forms.Padding(2);
  784. this.universalTab.Name = "universalTab";
  785. this.universalTab.Padding = new System.Windows.Forms.Padding(2);
  786. this.universalTab.Size = new System.Drawing.Size(860, 611);
  787. this.universalTab.TabIndex = 0;
  788. this.universalTab.Text = "Universal";
  789. //
  790. // restartButton
  791. //
  792. this.restartButton.AutoSize = true;
  793. this.restartButton.BackColor = System.Drawing.Color.DodgerBlue;
  794. this.restartButton.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  795. this.restartButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  796. this.restartButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  797. this.restartButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  798. this.restartButton.ForeColor = System.Drawing.Color.White;
  799. this.restartButton.Location = new System.Drawing.Point(14, 310);
  800. this.restartButton.Margin = new System.Windows.Forms.Padding(2);
  801. this.restartButton.Name = "restartButton";
  802. this.restartButton.Size = new System.Drawing.Size(115, 31);
  803. this.restartButton.TabIndex = 30;
  804. this.restartButton.Text = "Apply && Restart";
  805. this.restartButton.UseVisualStyleBackColor = false;
  806. this.restartButton.Click += new System.EventHandler(this.button39_Click);
  807. //
  808. // windowsXTab
  809. //
  810. this.windowsXTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  811. this.windowsXTab.Controls.Add(this.restartButton10);
  812. this.windowsXTab.Controls.Add(this.actionSw);
  813. this.windowsXTab.Controls.Add(this.castSw);
  814. this.windowsXTab.Controls.Add(this.longPathsSw);
  815. this.windowsXTab.Controls.Add(this.ccSw);
  816. this.windowsXTab.Controls.Add(this.featuresSw);
  817. this.windowsXTab.Controls.Add(this.insiderSw);
  818. this.windowsXTab.Controls.Add(this.darkSw);
  819. this.windowsXTab.Controls.Add(this.spellSw);
  820. this.windowsXTab.Controls.Add(this.inkSw);
  821. this.windowsXTab.Controls.Add(this.driversSw);
  822. this.windowsXTab.Controls.Add(this.sensorSw);
  823. this.windowsXTab.Controls.Add(this.privacySw);
  824. this.windowsXTab.Controls.Add(this.telemetryServicesSw);
  825. this.windowsXTab.Controls.Add(this.autoUpdatesSw);
  826. this.windowsXTab.Controls.Add(this.peopleSw);
  827. this.windowsXTab.Controls.Add(this.adsSw);
  828. this.windowsXTab.Controls.Add(this.colorBarSw);
  829. this.windowsXTab.Controls.Add(this.oldExplorerSw);
  830. this.windowsXTab.Controls.Add(this.xboxSw);
  831. this.windowsXTab.Controls.Add(this.cortanaSw);
  832. this.windowsXTab.Controls.Add(this.gameBarSw);
  833. this.windowsXTab.Controls.Add(this.uODSw);
  834. this.windowsXTab.Controls.Add(this.oldMixerSw);
  835. this.windowsXTab.Location = new System.Drawing.Point(4, 24);
  836. this.windowsXTab.Margin = new System.Windows.Forms.Padding(2);
  837. this.windowsXTab.Name = "windowsXTab";
  838. this.windowsXTab.Padding = new System.Windows.Forms.Padding(2);
  839. this.windowsXTab.Size = new System.Drawing.Size(860, 611);
  840. this.windowsXTab.TabIndex = 1;
  841. this.windowsXTab.Text = "Windows 10";
  842. //
  843. // restartButton10
  844. //
  845. this.restartButton10.AutoSize = true;
  846. this.restartButton10.BackColor = System.Drawing.Color.DodgerBlue;
  847. this.restartButton10.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  848. this.restartButton10.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  849. this.restartButton10.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  850. this.restartButton10.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  851. this.restartButton10.ForeColor = System.Drawing.Color.White;
  852. this.restartButton10.Location = new System.Drawing.Point(14, 457);
  853. this.restartButton10.Margin = new System.Windows.Forms.Padding(2);
  854. this.restartButton10.Name = "restartButton10";
  855. this.restartButton10.Size = new System.Drawing.Size(115, 31);
  856. this.restartButton10.TabIndex = 31;
  857. this.restartButton10.Text = "Apply && Restart";
  858. this.restartButton10.UseVisualStyleBackColor = false;
  859. this.restartButton10.Click += new System.EventHandler(this.button43_Click);
  860. //
  861. // windowsVIIITab
  862. //
  863. this.windowsVIIITab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  864. this.windowsVIIITab.Controls.Add(this.disableOneDriveSw);
  865. this.windowsVIIITab.Controls.Add(this.restartButton8);
  866. this.windowsVIIITab.Location = new System.Drawing.Point(4, 24);
  867. this.windowsVIIITab.Margin = new System.Windows.Forms.Padding(2);
  868. this.windowsVIIITab.Name = "windowsVIIITab";
  869. this.windowsVIIITab.Padding = new System.Windows.Forms.Padding(2);
  870. this.windowsVIIITab.Size = new System.Drawing.Size(860, 611);
  871. this.windowsVIIITab.TabIndex = 2;
  872. this.windowsVIIITab.Text = "Windows 8.1";
  873. //
  874. // restartButton8
  875. //
  876. this.restartButton8.AutoSize = true;
  877. this.restartButton8.BackColor = System.Drawing.Color.DodgerBlue;
  878. this.restartButton8.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  879. this.restartButton8.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  880. this.restartButton8.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  881. this.restartButton8.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  882. this.restartButton8.ForeColor = System.Drawing.Color.White;
  883. this.restartButton8.Location = new System.Drawing.Point(14, 65);
  884. this.restartButton8.Margin = new System.Windows.Forms.Padding(2);
  885. this.restartButton8.Name = "restartButton8";
  886. this.restartButton8.Size = new System.Drawing.Size(115, 31);
  887. this.restartButton8.TabIndex = 32;
  888. this.restartButton8.Text = "Apply && Restart";
  889. this.restartButton8.UseVisualStyleBackColor = false;
  890. this.restartButton8.Click += new System.EventHandler(this.button44_Click);
  891. //
  892. // modernAppsTab
  893. //
  894. this.modernAppsTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  895. this.modernAppsTab.Controls.Add(this.chkOnlyRemovable);
  896. this.modernAppsTab.Controls.Add(this.chkSelectAllModernApps);
  897. this.modernAppsTab.Controls.Add(this.txtUWP);
  898. this.modernAppsTab.Controls.Add(this.uninstallModernAppsButton);
  899. this.modernAppsTab.Controls.Add(this.refreshModernAppsButton);
  900. this.modernAppsTab.Controls.Add(this.txtModernAppsTitle);
  901. this.modernAppsTab.Controls.Add(this.panelModernAppsList);
  902. this.modernAppsTab.Location = new System.Drawing.Point(4, 24);
  903. this.modernAppsTab.Name = "modernAppsTab";
  904. this.modernAppsTab.Padding = new System.Windows.Forms.Padding(3);
  905. this.modernAppsTab.Size = new System.Drawing.Size(860, 611);
  906. this.modernAppsTab.TabIndex = 11;
  907. this.modernAppsTab.Text = "UWP Apps";
  908. //
  909. // txtUWP
  910. //
  911. this.txtUWP.AutoSize = true;
  912. this.txtUWP.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  913. this.txtUWP.ForeColor = System.Drawing.Color.Silver;
  914. this.txtUWP.Location = new System.Drawing.Point(499, 195);
  915. this.txtUWP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  916. this.txtUWP.Name = "txtUWP";
  917. this.txtUWP.Size = new System.Drawing.Size(160, 231);
  918. this.txtUWP.TabIndex = 51;
  919. this.txtUWP.Tag = "";
  920. this.txtUWP.Text = "IMPORTANT:\r\n\r\nIf you uninstall Store\r\nyou won\'t be able\r\nto install new apps!\r\n\r\n" +
  921. "Also, some apps\r\ncan\'t be uninstalled.\r\n\r\nLike Microsoft Edge,\r\nSettings, etc.";
  922. //
  923. // uninstallModernAppsButton
  924. //
  925. this.uninstallModernAppsButton.BackColor = System.Drawing.Color.DodgerBlue;
  926. this.uninstallModernAppsButton.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  927. this.uninstallModernAppsButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  928. this.uninstallModernAppsButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  929. this.uninstallModernAppsButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  930. this.uninstallModernAppsButton.ForeColor = System.Drawing.Color.White;
  931. this.uninstallModernAppsButton.Location = new System.Drawing.Point(503, 76);
  932. this.uninstallModernAppsButton.Margin = new System.Windows.Forms.Padding(2);
  933. this.uninstallModernAppsButton.Name = "uninstallModernAppsButton";
  934. this.uninstallModernAppsButton.Size = new System.Drawing.Size(169, 31);
  935. this.uninstallModernAppsButton.TabIndex = 50;
  936. this.uninstallModernAppsButton.Text = "Uninstall";
  937. this.uninstallModernAppsButton.UseVisualStyleBackColor = false;
  938. this.uninstallModernAppsButton.Click += new System.EventHandler(this.button74_Click);
  939. //
  940. // refreshModernAppsButton
  941. //
  942. this.refreshModernAppsButton.BackColor = System.Drawing.Color.DodgerBlue;
  943. this.refreshModernAppsButton.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  944. this.refreshModernAppsButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  945. this.refreshModernAppsButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  946. this.refreshModernAppsButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  947. this.refreshModernAppsButton.ForeColor = System.Drawing.Color.White;
  948. this.refreshModernAppsButton.Location = new System.Drawing.Point(503, 41);
  949. this.refreshModernAppsButton.Margin = new System.Windows.Forms.Padding(2);
  950. this.refreshModernAppsButton.Name = "refreshModernAppsButton";
  951. this.refreshModernAppsButton.Size = new System.Drawing.Size(169, 31);
  952. this.refreshModernAppsButton.TabIndex = 49;
  953. this.refreshModernAppsButton.Text = "Refresh";
  954. this.refreshModernAppsButton.UseVisualStyleBackColor = false;
  955. this.refreshModernAppsButton.Click += new System.EventHandler(this.button75_Click);
  956. //
  957. // txtModernAppsTitle
  958. //
  959. this.txtModernAppsTitle.AutoSize = true;
  960. this.txtModernAppsTitle.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  961. this.txtModernAppsTitle.ForeColor = System.Drawing.Color.DodgerBlue;
  962. this.txtModernAppsTitle.Location = new System.Drawing.Point(6, 10);
  963. this.txtModernAppsTitle.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  964. this.txtModernAppsTitle.Name = "txtModernAppsTitle";
  965. this.txtModernAppsTitle.Size = new System.Drawing.Size(291, 28);
  966. this.txtModernAppsTitle.TabIndex = 47;
  967. this.txtModernAppsTitle.Tag = "themeable";
  968. this.txtModernAppsTitle.Text = "Uninstall unwanted UWP Apps";
  969. //
  970. // panelModernAppsList
  971. //
  972. this.panelModernAppsList.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  973. | System.Windows.Forms.AnchorStyles.Left)));
  974. this.panelModernAppsList.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  975. this.panelModernAppsList.Controls.Add(this.listModernApps);
  976. this.panelModernAppsList.Location = new System.Drawing.Point(11, 41);
  977. this.panelModernAppsList.Name = "panelModernAppsList";
  978. this.panelModernAppsList.Size = new System.Drawing.Size(487, 449);
  979. this.panelModernAppsList.TabIndex = 0;
  980. //
  981. // listModernApps
  982. //
  983. this.listModernApps.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  984. this.listModernApps.BorderStyle = System.Windows.Forms.BorderStyle.None;
  985. this.listModernApps.CheckOnClick = true;
  986. this.listModernApps.Dock = System.Windows.Forms.DockStyle.Fill;
  987. this.listModernApps.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  988. this.listModernApps.ForeColor = System.Drawing.Color.White;
  989. this.listModernApps.FormattingEnabled = true;
  990. this.listModernApps.HorizontalScrollbar = true;
  991. this.listModernApps.Location = new System.Drawing.Point(0, 0);
  992. this.listModernApps.Name = "listModernApps";
  993. this.listModernApps.Size = new System.Drawing.Size(485, 447);
  994. this.listModernApps.Sorted = true;
  995. this.listModernApps.TabIndex = 0;
  996. //
  997. // startupTab
  998. //
  999. this.startupTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1000. this.startupTab.Controls.Add(this.cancelBackup);
  1001. this.startupTab.Controls.Add(this.doBackup);
  1002. this.startupTab.Controls.Add(this.txtBackupTitle);
  1003. this.startupTab.Controls.Add(this.lblBackupTitle);
  1004. this.startupTab.Controls.Add(this.restoreStartupB);
  1005. this.startupTab.Controls.Add(this.backupStartupB);
  1006. this.startupTab.Controls.Add(this.findInRegB);
  1007. this.startupTab.Controls.Add(this.locateFileB);
  1008. this.startupTab.Controls.Add(this.refreshStartupB);
  1009. this.startupTab.Controls.Add(this.panel3);
  1010. this.startupTab.Controls.Add(this.removeStartupItemB);
  1011. this.startupTab.Controls.Add(this.startupTitle);
  1012. this.startupTab.Location = new System.Drawing.Point(4, 24);
  1013. this.startupTab.Margin = new System.Windows.Forms.Padding(2);
  1014. this.startupTab.Name = "startupTab";
  1015. this.startupTab.Size = new System.Drawing.Size(860, 611);
  1016. this.startupTab.TabIndex = 7;
  1017. this.startupTab.Text = "Startup";
  1018. //
  1019. // cancelBackup
  1020. //
  1021. this.cancelBackup.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  1022. this.cancelBackup.BackColor = System.Drawing.Color.DodgerBlue;
  1023. this.cancelBackup.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  1024. this.cancelBackup.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  1025. this.cancelBackup.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  1026. this.cancelBackup.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1027. this.cancelBackup.ForeColor = System.Drawing.Color.White;
  1028. this.cancelBackup.Location = new System.Drawing.Point(432, 522);
  1029. this.cancelBackup.Margin = new System.Windows.Forms.Padding(2);
  1030. this.cancelBackup.Name = "cancelBackup";
  1031. this.cancelBackup.Size = new System.Drawing.Size(90, 25);
  1032. this.cancelBackup.TabIndex = 61;
  1033. this.cancelBackup.Text = "Cancel";
  1034. this.cancelBackup.UseVisualStyleBackColor = false;
  1035. this.cancelBackup.Visible = false;
  1036. this.cancelBackup.Click += new System.EventHandler(this.button14_Click);
  1037. //
  1038. // doBackup
  1039. //
  1040. this.doBackup.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  1041. this.doBackup.BackColor = System.Drawing.Color.DodgerBlue;
  1042. this.doBackup.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  1043. this.doBackup.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  1044. this.doBackup.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  1045. this.doBackup.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1046. this.doBackup.ForeColor = System.Drawing.Color.White;
  1047. this.doBackup.Location = new System.Drawing.Point(338, 522);
  1048. this.doBackup.Margin = new System.Windows.Forms.Padding(2);
  1049. this.doBackup.Name = "doBackup";
  1050. this.doBackup.Size = new System.Drawing.Size(90, 25);
  1051. this.doBackup.TabIndex = 60;
  1052. this.doBackup.Text = "OK";
  1053. this.doBackup.UseVisualStyleBackColor = false;
  1054. this.doBackup.Visible = false;
  1055. this.doBackup.Click += new System.EventHandler(this.button13_Click);
  1056. //
  1057. // txtBackupTitle
  1058. //
  1059. this.txtBackupTitle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1060. this.txtBackupTitle.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1061. this.txtBackupTitle.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1062. this.txtBackupTitle.ForeColor = System.Drawing.Color.White;
  1063. this.txtBackupTitle.Location = new System.Drawing.Point(11, 522);
  1064. this.txtBackupTitle.Margin = new System.Windows.Forms.Padding(2);
  1065. this.txtBackupTitle.Name = "txtBackupTitle";
  1066. this.txtBackupTitle.Size = new System.Drawing.Size(323, 25);
  1067. this.txtBackupTitle.TabIndex = 58;
  1068. this.txtBackupTitle.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1069. this.txtBackupTitle.Visible = false;
  1070. //
  1071. // lblBackupTitle
  1072. //
  1073. this.lblBackupTitle.AutoSize = true;
  1074. this.lblBackupTitle.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1075. this.lblBackupTitle.ForeColor = System.Drawing.Color.Silver;
  1076. this.lblBackupTitle.Location = new System.Drawing.Point(7, 501);
  1077. this.lblBackupTitle.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1078. this.lblBackupTitle.Name = "lblBackupTitle";
  1079. this.lblBackupTitle.Size = new System.Drawing.Size(86, 19);
  1080. this.lblBackupTitle.TabIndex = 59;
  1081. this.lblBackupTitle.Tag = "";
  1082. this.lblBackupTitle.Text = "Backup title:";
  1083. this.lblBackupTitle.Visible = false;
  1084. //
  1085. // restoreStartupB
  1086. //
  1087. this.restoreStartupB.BackColor = System.Drawing.Color.DodgerBlue;
  1088. this.restoreStartupB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  1089. this.restoreStartupB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  1090. this.restoreStartupB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  1091. this.restoreStartupB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1092. this.restoreStartupB.ForeColor = System.Drawing.Color.White;
  1093. this.restoreStartupB.Location = new System.Drawing.Point(175, 502);
  1094. this.restoreStartupB.Margin = new System.Windows.Forms.Padding(2);
  1095. this.restoreStartupB.Name = "restoreStartupB";
  1096. this.restoreStartupB.Size = new System.Drawing.Size(160, 31);
  1097. this.restoreStartupB.TabIndex = 42;
  1098. this.restoreStartupB.Text = "Restore";
  1099. this.restoreStartupB.UseVisualStyleBackColor = false;
  1100. this.restoreStartupB.Click += new System.EventHandler(this.button12_Click);
  1101. //
  1102. // backupStartupB
  1103. //
  1104. this.backupStartupB.BackColor = System.Drawing.Color.DodgerBlue;
  1105. this.backupStartupB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  1106. this.backupStartupB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  1107. this.backupStartupB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  1108. this.backupStartupB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1109. this.backupStartupB.ForeColor = System.Drawing.Color.White;
  1110. this.backupStartupB.Location = new System.Drawing.Point(11, 502);
  1111. this.backupStartupB.Margin = new System.Windows.Forms.Padding(2);
  1112. this.backupStartupB.Name = "backupStartupB";
  1113. this.backupStartupB.Size = new System.Drawing.Size(160, 31);
  1114. this.backupStartupB.TabIndex = 41;
  1115. this.backupStartupB.Text = "Backup";
  1116. this.backupStartupB.UseVisualStyleBackColor = false;
  1117. this.backupStartupB.Click += new System.EventHandler(this.button11_Click);
  1118. //
  1119. // findInRegB
  1120. //
  1121. this.findInRegB.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  1122. this.findInRegB.BackColor = System.Drawing.Color.DodgerBlue;
  1123. this.findInRegB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  1124. this.findInRegB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  1125. this.findInRegB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  1126. this.findInRegB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1127. this.findInRegB.ForeColor = System.Drawing.Color.White;
  1128. this.findInRegB.Location = new System.Drawing.Point(521, 537);
  1129. this.findInRegB.Margin = new System.Windows.Forms.Padding(2);
  1130. this.findInRegB.Name = "findInRegB";
  1131. this.findInRegB.Size = new System.Drawing.Size(160, 31);
  1132. this.findInRegB.TabIndex = 40;
  1133. this.findInRegB.Text = "Find in Registry";
  1134. this.findInRegB.UseVisualStyleBackColor = false;
  1135. this.findInRegB.Click += new System.EventHandler(this.button64_Click);
  1136. //
  1137. // locateFileB
  1138. //
  1139. this.locateFileB.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  1140. this.locateFileB.BackColor = System.Drawing.Color.DodgerBlue;
  1141. this.locateFileB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  1142. this.locateFileB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  1143. this.locateFileB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  1144. this.locateFileB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1145. this.locateFileB.ForeColor = System.Drawing.Color.White;
  1146. this.locateFileB.Location = new System.Drawing.Point(521, 502);
  1147. this.locateFileB.Margin = new System.Windows.Forms.Padding(2);
  1148. this.locateFileB.Name = "locateFileB";
  1149. this.locateFileB.Size = new System.Drawing.Size(160, 31);
  1150. this.locateFileB.TabIndex = 39;
  1151. this.locateFileB.Text = "Locate file";
  1152. this.locateFileB.UseVisualStyleBackColor = false;
  1153. this.locateFileB.Click += new System.EventHandler(this.button31_Click);
  1154. //
  1155. // refreshStartupB
  1156. //
  1157. this.refreshStartupB.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  1158. this.refreshStartupB.BackColor = System.Drawing.Color.DodgerBlue;
  1159. this.refreshStartupB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  1160. this.refreshStartupB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  1161. this.refreshStartupB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  1162. this.refreshStartupB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1163. this.refreshStartupB.ForeColor = System.Drawing.Color.White;
  1164. this.refreshStartupB.Location = new System.Drawing.Point(685, 537);
  1165. this.refreshStartupB.Margin = new System.Windows.Forms.Padding(2);
  1166. this.refreshStartupB.Name = "refreshStartupB";
  1167. this.refreshStartupB.Size = new System.Drawing.Size(160, 31);
  1168. this.refreshStartupB.TabIndex = 38;
  1169. this.refreshStartupB.Text = "Refresh";
  1170. this.refreshStartupB.UseVisualStyleBackColor = false;
  1171. this.refreshStartupB.Click += new System.EventHandler(this.button37_Click);
  1172. //
  1173. // panel3
  1174. //
  1175. this.panel3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  1176. | System.Windows.Forms.AnchorStyles.Right)));
  1177. this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1178. this.panel3.Controls.Add(this.listStartupItems);
  1179. this.panel3.Location = new System.Drawing.Point(11, 40);
  1180. this.panel3.Margin = new System.Windows.Forms.Padding(2);
  1181. this.panel3.Name = "panel3";
  1182. this.panel3.Size = new System.Drawing.Size(834, 459);
  1183. this.panel3.TabIndex = 37;
  1184. //
  1185. // listStartupItems
  1186. //
  1187. this.listStartupItems.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1188. this.listStartupItems.BorderStyle = System.Windows.Forms.BorderStyle.None;
  1189. this.listStartupItems.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
  1190. this.columnHeader1,
  1191. this.columnHeader2,
  1192. this.columnHeader3});
  1193. this.listStartupItems.Dock = System.Windows.Forms.DockStyle.Fill;
  1194. this.listStartupItems.ForeColor = System.Drawing.Color.White;
  1195. this.listStartupItems.FullRowSelect = true;
  1196. this.listStartupItems.HideSelection = false;
  1197. this.listStartupItems.Location = new System.Drawing.Point(0, 0);
  1198. this.listStartupItems.Margin = new System.Windows.Forms.Padding(2);
  1199. this.listStartupItems.MultiSelect = false;
  1200. this.listStartupItems.Name = "listStartupItems";
  1201. this.listStartupItems.ShowGroups = false;
  1202. this.listStartupItems.Size = new System.Drawing.Size(832, 457);
  1203. this.listStartupItems.TabIndex = 0;
  1204. this.listStartupItems.UseCompatibleStateImageBehavior = false;
  1205. this.listStartupItems.View = System.Windows.Forms.View.Details;
  1206. this.listStartupItems.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.listStartupItems_ColumnClick);
  1207. //
  1208. // columnHeader1
  1209. //
  1210. this.columnHeader1.Text = "Name";
  1211. this.columnHeader1.Width = 194;
  1212. //
  1213. // columnHeader2
  1214. //
  1215. this.columnHeader2.Text = "Location";
  1216. this.columnHeader2.Width = 507;
  1217. //
  1218. // columnHeader3
  1219. //
  1220. this.columnHeader3.Text = "Type";
  1221. this.columnHeader3.Width = 134;
  1222. //
  1223. // removeStartupItemB
  1224. //
  1225. this.removeStartupItemB.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  1226. this.removeStartupItemB.BackColor = System.Drawing.Color.DodgerBlue;
  1227. this.removeStartupItemB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  1228. this.removeStartupItemB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  1229. this.removeStartupItemB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  1230. this.removeStartupItemB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1231. this.removeStartupItemB.ForeColor = System.Drawing.Color.White;
  1232. this.removeStartupItemB.Location = new System.Drawing.Point(685, 502);
  1233. this.removeStartupItemB.Margin = new System.Windows.Forms.Padding(2);
  1234. this.removeStartupItemB.Name = "removeStartupItemB";
  1235. this.removeStartupItemB.Size = new System.Drawing.Size(160, 31);
  1236. this.removeStartupItemB.TabIndex = 36;
  1237. this.removeStartupItemB.Text = "Remove";
  1238. this.removeStartupItemB.UseVisualStyleBackColor = false;
  1239. this.removeStartupItemB.Click += new System.EventHandler(this.button32_Click);
  1240. //
  1241. // startupTitle
  1242. //
  1243. this.startupTitle.AutoSize = true;
  1244. this.startupTitle.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1245. this.startupTitle.ForeColor = System.Drawing.Color.DodgerBlue;
  1246. this.startupTitle.Location = new System.Drawing.Point(6, 10);
  1247. this.startupTitle.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1248. this.startupTitle.Name = "startupTitle";
  1249. this.startupTitle.Size = new System.Drawing.Size(254, 28);
  1250. this.startupTitle.TabIndex = 3;
  1251. this.startupTitle.Tag = "themeable";
  1252. this.startupTitle.Text = "Choose your startup items";
  1253. //
  1254. // appsTab
  1255. //
  1256. this.appsTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1257. this.appsTab.Controls.Add(this.txtFeedError);
  1258. this.appsTab.Controls.Add(this.panel10);
  1259. this.appsTab.Controls.Add(this.panelCommonApps);
  1260. this.appsTab.Controls.Add(this.panelApps5);
  1261. this.appsTab.Controls.Add(this.panelApps6);
  1262. this.appsTab.Controls.Add(this.panelApps1);
  1263. this.appsTab.Location = new System.Drawing.Point(4, 24);
  1264. this.appsTab.Name = "appsTab";
  1265. this.appsTab.Padding = new System.Windows.Forms.Padding(3);
  1266. this.appsTab.Size = new System.Drawing.Size(860, 611);
  1267. this.appsTab.TabIndex = 12;
  1268. this.appsTab.Text = "Common Apps";
  1269. //
  1270. // txtFeedError
  1271. //
  1272. this.txtFeedError.BackColor = System.Drawing.Color.Transparent;
  1273. this.txtFeedError.Dock = System.Windows.Forms.DockStyle.Fill;
  1274. this.txtFeedError.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1275. this.txtFeedError.ForeColor = System.Drawing.Color.Gold;
  1276. this.txtFeedError.Location = new System.Drawing.Point(3, 47);
  1277. this.txtFeedError.Name = "txtFeedError";
  1278. this.txtFeedError.Size = new System.Drawing.Size(854, 398);
  1279. this.txtFeedError.TabIndex = 167;
  1280. this.txtFeedError.Text = "No internet connection, try refreshing links again";
  1281. this.txtFeedError.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1282. this.txtFeedError.Visible = false;
  1283. //
  1284. // panel10
  1285. //
  1286. this.panel10.Controls.Add(this.appsTitle);
  1287. this.panel10.Controls.Add(this.btnGetFeed);
  1288. this.panel10.Dock = System.Windows.Forms.DockStyle.Top;
  1289. this.panel10.Location = new System.Drawing.Point(3, 3);
  1290. this.panel10.Name = "panel10";
  1291. this.panel10.Size = new System.Drawing.Size(854, 44);
  1292. this.panel10.TabIndex = 163;
  1293. //
  1294. // appsTitle
  1295. //
  1296. this.appsTitle.AutoSize = true;
  1297. this.appsTitle.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1298. this.appsTitle.ForeColor = System.Drawing.Color.DodgerBlue;
  1299. this.appsTitle.Location = new System.Drawing.Point(5, 7);
  1300. this.appsTitle.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1301. this.appsTitle.Name = "appsTitle";
  1302. this.appsTitle.Size = new System.Drawing.Size(365, 28);
  1303. this.appsTitle.TabIndex = 53;
  1304. this.appsTitle.Tag = "themeable";
  1305. this.appsTitle.Text = "Quickly download && install useful apps";
  1306. //
  1307. // btnGetFeed
  1308. //
  1309. this.btnGetFeed.BackColor = System.Drawing.Color.DodgerBlue;
  1310. this.btnGetFeed.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  1311. this.btnGetFeed.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  1312. this.btnGetFeed.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  1313. this.btnGetFeed.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1314. this.btnGetFeed.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1315. this.btnGetFeed.ForeColor = System.Drawing.Color.White;
  1316. this.btnGetFeed.Location = new System.Drawing.Point(708, 7);
  1317. this.btnGetFeed.Margin = new System.Windows.Forms.Padding(2);
  1318. this.btnGetFeed.Name = "btnGetFeed";
  1319. this.btnGetFeed.Size = new System.Drawing.Size(144, 32);
  1320. this.btnGetFeed.TabIndex = 161;
  1321. this.btnGetFeed.Text = "Refresh links";
  1322. this.btnGetFeed.UseVisualStyleBackColor = false;
  1323. this.btnGetFeed.Click += new System.EventHandler(this.btnGetFeed_Click);
  1324. //
  1325. // panelCommonApps
  1326. //
  1327. this.panelCommonApps.Controls.Add(this.cAutoInstall);
  1328. this.panelCommonApps.Controls.Add(this.progressDownloader);
  1329. this.panelCommonApps.Controls.Add(this.c64);
  1330. this.panelCommonApps.Controls.Add(this.c32);
  1331. this.panelCommonApps.Controls.Add(this.btnDownloadApps);
  1332. this.panelCommonApps.Controls.Add(this.setDownDirLbl);
  1333. this.panelCommonApps.Controls.Add(this.txtDownloadFolder);
  1334. this.panelCommonApps.Controls.Add(this.changeDownDirB);
  1335. this.panelCommonApps.Controls.Add(this.txtDownloadStatus);
  1336. this.panelCommonApps.Controls.Add(this.linkWarnings);
  1337. this.panelCommonApps.Controls.Add(this.bitPref);
  1338. this.panelCommonApps.Controls.Add(this.goToDownloadsB);
  1339. this.panelCommonApps.Dock = System.Windows.Forms.DockStyle.Bottom;
  1340. this.panelCommonApps.Location = new System.Drawing.Point(3, 445);
  1341. this.panelCommonApps.Name = "panelCommonApps";
  1342. this.panelCommonApps.Size = new System.Drawing.Size(854, 165);
  1343. this.panelCommonApps.TabIndex = 162;
  1344. //
  1345. // btnDownloadApps
  1346. //
  1347. this.btnDownloadApps.BackColor = System.Drawing.Color.DodgerBlue;
  1348. this.btnDownloadApps.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  1349. this.btnDownloadApps.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  1350. this.btnDownloadApps.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  1351. this.btnDownloadApps.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1352. this.btnDownloadApps.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1353. this.btnDownloadApps.ForeColor = System.Drawing.Color.White;
  1354. this.btnDownloadApps.Location = new System.Drawing.Point(708, 127);
  1355. this.btnDownloadApps.Margin = new System.Windows.Forms.Padding(2);
  1356. this.btnDownloadApps.Name = "btnDownloadApps";
  1357. this.btnDownloadApps.Size = new System.Drawing.Size(143, 35);
  1358. this.btnDownloadApps.TabIndex = 50;
  1359. this.btnDownloadApps.Text = "Download";
  1360. this.btnDownloadApps.UseVisualStyleBackColor = false;
  1361. this.btnDownloadApps.Click += new System.EventHandler(this.btnDownloadApps_Click);
  1362. //
  1363. // setDownDirLbl
  1364. //
  1365. this.setDownDirLbl.AutoSize = true;
  1366. this.setDownDirLbl.Font = new System.Drawing.Font("Segoe UI Semibold", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1367. this.setDownDirLbl.ForeColor = System.Drawing.Color.DodgerBlue;
  1368. this.setDownDirLbl.Location = new System.Drawing.Point(2, 2);
  1369. this.setDownDirLbl.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1370. this.setDownDirLbl.Name = "setDownDirLbl";
  1371. this.setDownDirLbl.Size = new System.Drawing.Size(184, 25);
  1372. this.setDownDirLbl.TabIndex = 69;
  1373. this.setDownDirLbl.Tag = "themeable";
  1374. this.setDownDirLbl.Text = "Set download folder";
  1375. //
  1376. // txtDownloadFolder
  1377. //
  1378. this.txtDownloadFolder.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(30)))), ((int)(((byte)(30)))));
  1379. this.txtDownloadFolder.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1380. this.txtDownloadFolder.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1381. this.txtDownloadFolder.ForeColor = System.Drawing.Color.Silver;
  1382. this.txtDownloadFolder.Location = new System.Drawing.Point(7, 28);
  1383. this.txtDownloadFolder.Name = "txtDownloadFolder";
  1384. this.txtDownloadFolder.Size = new System.Drawing.Size(302, 27);
  1385. this.txtDownloadFolder.TabIndex = 70;
  1386. this.txtDownloadFolder.TextChanged += new System.EventHandler(this.txtDownloadFolder_TextChanged);
  1387. //
  1388. // changeDownDirB
  1389. //
  1390. this.changeDownDirB.BackColor = System.Drawing.Color.DodgerBlue;
  1391. this.changeDownDirB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  1392. this.changeDownDirB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  1393. this.changeDownDirB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  1394. this.changeDownDirB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1395. this.changeDownDirB.ForeColor = System.Drawing.Color.White;
  1396. this.changeDownDirB.Location = new System.Drawing.Point(312, 28);
  1397. this.changeDownDirB.Margin = new System.Windows.Forms.Padding(2);
  1398. this.changeDownDirB.Name = "changeDownDirB";
  1399. this.changeDownDirB.Size = new System.Drawing.Size(57, 27);
  1400. this.changeDownDirB.TabIndex = 71;
  1401. this.changeDownDirB.Text = "Change";
  1402. this.changeDownDirB.UseVisualStyleBackColor = false;
  1403. this.changeDownDirB.Click += new System.EventHandler(this.button5_Click);
  1404. //
  1405. // txtDownloadStatus
  1406. //
  1407. this.txtDownloadStatus.AutoSize = true;
  1408. this.txtDownloadStatus.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1409. this.txtDownloadStatus.ForeColor = System.Drawing.Color.LightGray;
  1410. this.txtDownloadStatus.Location = new System.Drawing.Point(3, 83);
  1411. this.txtDownloadStatus.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1412. this.txtDownloadStatus.Name = "txtDownloadStatus";
  1413. this.txtDownloadStatus.Size = new System.Drawing.Size(38, 21);
  1414. this.txtDownloadStatus.TabIndex = 72;
  1415. this.txtDownloadStatus.Tag = "";
  1416. this.txtDownloadStatus.Text = "Idle";
  1417. //
  1418. // linkWarnings
  1419. //
  1420. this.linkWarnings.ActiveLinkColor = System.Drawing.Color.Gold;
  1421. this.linkWarnings.AutoSize = true;
  1422. this.linkWarnings.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1423. this.linkWarnings.ForeColor = System.Drawing.Color.Gold;
  1424. this.linkWarnings.LinkColor = System.Drawing.Color.Gold;
  1425. this.linkWarnings.Location = new System.Drawing.Point(4, 135);
  1426. this.linkWarnings.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1427. this.linkWarnings.Name = "linkWarnings";
  1428. this.linkWarnings.Size = new System.Drawing.Size(106, 21);
  1429. this.linkWarnings.TabIndex = 78;
  1430. this.linkWarnings.TabStop = true;
  1431. this.linkWarnings.Tag = "";
  1432. this.linkWarnings.Text = "See warnings";
  1433. this.linkWarnings.Visible = false;
  1434. this.linkWarnings.VisitedLinkColor = System.Drawing.Color.Gold;
  1435. this.linkWarnings.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
  1436. //
  1437. // bitPref
  1438. //
  1439. this.bitPref.AutoSize = true;
  1440. this.bitPref.Font = new System.Drawing.Font("Segoe UI Semibold", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1441. this.bitPref.ForeColor = System.Drawing.Color.DodgerBlue;
  1442. this.bitPref.Location = new System.Drawing.Point(454, 1);
  1443. this.bitPref.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1444. this.bitPref.Name = "bitPref";
  1445. this.bitPref.Size = new System.Drawing.Size(164, 25);
  1446. this.bitPref.TabIndex = 74;
  1447. this.bitPref.Tag = "themeable";
  1448. this.bitPref.Text = "Set bit preference";
  1449. //
  1450. // goToDownloadsB
  1451. //
  1452. this.goToDownloadsB.BackColor = System.Drawing.Color.DodgerBlue;
  1453. this.goToDownloadsB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  1454. this.goToDownloadsB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  1455. this.goToDownloadsB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  1456. this.goToDownloadsB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1457. this.goToDownloadsB.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1458. this.goToDownloadsB.ForeColor = System.Drawing.Color.White;
  1459. this.goToDownloadsB.Location = new System.Drawing.Point(561, 127);
  1460. this.goToDownloadsB.Margin = new System.Windows.Forms.Padding(2);
  1461. this.goToDownloadsB.Name = "goToDownloadsB";
  1462. this.goToDownloadsB.Size = new System.Drawing.Size(143, 35);
  1463. this.goToDownloadsB.TabIndex = 77;
  1464. this.goToDownloadsB.Text = "Go to Downloads";
  1465. this.goToDownloadsB.UseVisualStyleBackColor = false;
  1466. this.goToDownloadsB.Click += new System.EventHandler(this.button6_Click);
  1467. //
  1468. // panelApps5
  1469. //
  1470. this.panelApps5.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  1471. | System.Windows.Forms.AnchorStyles.Left)));
  1472. this.panelApps5.AutoScroll = true;
  1473. this.panelApps5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1474. this.panelApps5.Controls.Add(this.cLightShot);
  1475. this.panelApps5.Controls.Add(this.pictureBox58);
  1476. this.panelApps5.Controls.Add(this.cViper);
  1477. this.panelApps5.Controls.Add(this.pictureBox57);
  1478. this.panelApps5.Controls.Add(this.cVLC);
  1479. this.panelApps5.Controls.Add(this.cGyazo);
  1480. this.panelApps5.Controls.Add(this.pictureBox81);
  1481. this.panelApps5.Controls.Add(this.cFoobar);
  1482. this.panelApps5.Controls.Add(this.pictureBox8);
  1483. this.panelApps5.Controls.Add(this.cPot);
  1484. this.panelApps5.Controls.Add(this.cAudacity);
  1485. this.panelApps5.Controls.Add(this.cPhotoFiltre);
  1486. this.panelApps5.Controls.Add(this.cIrfan);
  1487. this.panelApps5.Controls.Add(this.pictureBox59);
  1488. this.panelApps5.Controls.Add(this.pictureBox46);
  1489. this.panelApps5.Controls.Add(this.pictureBox10);
  1490. this.panelApps5.Controls.Add(this.ciTunes);
  1491. this.panelApps5.Controls.Add(this.cGIMP);
  1492. this.panelApps5.Controls.Add(this.pictureBox11);
  1493. this.panelApps5.Controls.Add(this.cWinamp);
  1494. this.panelApps5.Controls.Add(this.pictureBox47);
  1495. this.panelApps5.Controls.Add(this.pictureBox12);
  1496. this.panelApps5.Controls.Add(this.pictureBox65);
  1497. this.panelApps5.Controls.Add(this.pictureBox45);
  1498. this.panelApps5.Controls.Add(this.cBS);
  1499. this.panelApps5.Controls.Add(this.pictureBox13);
  1500. this.panelApps5.Controls.Add(this.pictureBox48);
  1501. this.panelApps5.Controls.Add(this.cSpotify);
  1502. this.panelApps5.Controls.Add(this.pictureBox9);
  1503. this.panelApps5.Controls.Add(this.cMp3Tag);
  1504. this.panelApps5.Controls.Add(this.pictureBox82);
  1505. this.panelApps5.Controls.Add(this.cMega);
  1506. this.panelApps5.Controls.Add(this.pictureBox60);
  1507. this.panelApps5.Controls.Add(this.cAdobeReader);
  1508. this.panelApps5.Controls.Add(this.cBlender);
  1509. this.panelApps5.Controls.Add(this.pictureBox22);
  1510. this.panelApps5.Controls.Add(this.cFoxit);
  1511. this.panelApps5.Controls.Add(this.pictureBox23);
  1512. this.panelApps5.Controls.Add(this.pictureBox21);
  1513. this.panelApps5.Controls.Add(this.pictureBox24);
  1514. this.panelApps5.Controls.Add(this.cEvernote);
  1515. this.panelApps5.Controls.Add(this.cSumatra);
  1516. this.panelApps5.Controls.Add(this.pictureBox52);
  1517. this.panelApps5.Controls.Add(this.cLibreOffice);
  1518. this.panelApps5.Controls.Add(this.cPeaZip);
  1519. this.panelApps5.Controls.Add(this.pictureBox14);
  1520. this.panelApps5.Controls.Add(this.cFlux);
  1521. this.panelApps5.Controls.Add(this.pictureBox71);
  1522. this.panelApps5.Controls.Add(this.pictureBox15);
  1523. this.panelApps5.Controls.Add(this.pictureBox16);
  1524. this.panelApps5.Controls.Add(this.c7zip);
  1525. this.panelApps5.Controls.Add(this.cWinRar);
  1526. this.panelApps5.Controls.Add(this.cDropbox);
  1527. this.panelApps5.Controls.Add(this.pictureBox43);
  1528. this.panelApps5.Controls.Add(this.cOneDrive);
  1529. this.panelApps5.Controls.Add(this.pictureBox63);
  1530. this.panelApps5.Location = new System.Drawing.Point(257, 48);
  1531. this.panelApps5.Name = "panelApps5";
  1532. this.panelApps5.Size = new System.Drawing.Size(240, 389);
  1533. this.panelApps5.TabIndex = 158;
  1534. //
  1535. // pictureBox58
  1536. //
  1537. this.pictureBox58.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox58.BackgroundImage")));
  1538. this.pictureBox58.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1539. this.pictureBox58.Location = new System.Drawing.Point(4, 817);
  1540. this.pictureBox58.Name = "pictureBox58";
  1541. this.pictureBox58.Size = new System.Drawing.Size(24, 24);
  1542. this.pictureBox58.TabIndex = 118;
  1543. this.pictureBox58.TabStop = false;
  1544. //
  1545. // pictureBox57
  1546. //
  1547. this.pictureBox57.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox57.BackgroundImage")));
  1548. this.pictureBox57.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1549. this.pictureBox57.Location = new System.Drawing.Point(4, 788);
  1550. this.pictureBox57.Name = "pictureBox57";
  1551. this.pictureBox57.Size = new System.Drawing.Size(24, 24);
  1552. this.pictureBox57.TabIndex = 119;
  1553. this.pictureBox57.TabStop = false;
  1554. //
  1555. // pictureBox81
  1556. //
  1557. this.pictureBox81.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox81.BackgroundImage")));
  1558. this.pictureBox81.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1559. this.pictureBox81.Location = new System.Drawing.Point(4, 758);
  1560. this.pictureBox81.Name = "pictureBox81";
  1561. this.pictureBox81.Size = new System.Drawing.Size(24, 24);
  1562. this.pictureBox81.TabIndex = 137;
  1563. this.pictureBox81.TabStop = false;
  1564. //
  1565. // pictureBox8
  1566. //
  1567. this.pictureBox8.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox8.BackgroundImage")));
  1568. this.pictureBox8.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
  1569. this.pictureBox8.Location = new System.Drawing.Point(3, 518);
  1570. this.pictureBox8.Name = "pictureBox8";
  1571. this.pictureBox8.Size = new System.Drawing.Size(24, 24);
  1572. this.pictureBox8.TabIndex = 92;
  1573. this.pictureBox8.TabStop = false;
  1574. //
  1575. // pictureBox59
  1576. //
  1577. this.pictureBox59.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox59.BackgroundImage")));
  1578. this.pictureBox59.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1579. this.pictureBox59.Location = new System.Drawing.Point(4, 547);
  1580. this.pictureBox59.Name = "pictureBox59";
  1581. this.pictureBox59.Size = new System.Drawing.Size(24, 24);
  1582. this.pictureBox59.TabIndex = 123;
  1583. this.pictureBox59.TabStop = false;
  1584. //
  1585. // pictureBox46
  1586. //
  1587. this.pictureBox46.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox46.BackgroundImage")));
  1588. this.pictureBox46.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1589. this.pictureBox46.Location = new System.Drawing.Point(4, 697);
  1590. this.pictureBox46.Name = "pictureBox46";
  1591. this.pictureBox46.Size = new System.Drawing.Size(24, 24);
  1592. this.pictureBox46.TabIndex = 105;
  1593. this.pictureBox46.TabStop = false;
  1594. //
  1595. // pictureBox10
  1596. //
  1597. this.pictureBox10.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox10.BackgroundImage")));
  1598. this.pictureBox10.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
  1599. this.pictureBox10.Location = new System.Drawing.Point(3, 488);
  1600. this.pictureBox10.Name = "pictureBox10";
  1601. this.pictureBox10.Size = new System.Drawing.Size(24, 24);
  1602. this.pictureBox10.TabIndex = 161;
  1603. this.pictureBox10.TabStop = false;
  1604. //
  1605. // pictureBox11
  1606. //
  1607. this.pictureBox11.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox11.BackgroundImage")));
  1608. this.pictureBox11.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1609. this.pictureBox11.Location = new System.Drawing.Point(3, 398);
  1610. this.pictureBox11.Name = "pictureBox11";
  1611. this.pictureBox11.Size = new System.Drawing.Size(24, 24);
  1612. this.pictureBox11.TabIndex = 158;
  1613. this.pictureBox11.TabStop = false;
  1614. //
  1615. // pictureBox47
  1616. //
  1617. this.pictureBox47.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox47.BackgroundImage")));
  1618. this.pictureBox47.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1619. this.pictureBox47.Location = new System.Drawing.Point(4, 608);
  1620. this.pictureBox47.Name = "pictureBox47";
  1621. this.pictureBox47.Size = new System.Drawing.Size(24, 24);
  1622. this.pictureBox47.TabIndex = 103;
  1623. this.pictureBox47.TabStop = false;
  1624. //
  1625. // pictureBox12
  1626. //
  1627. this.pictureBox12.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox12.BackgroundImage")));
  1628. this.pictureBox12.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1629. this.pictureBox12.Location = new System.Drawing.Point(3, 428);
  1630. this.pictureBox12.Name = "pictureBox12";
  1631. this.pictureBox12.Size = new System.Drawing.Size(24, 24);
  1632. this.pictureBox12.TabIndex = 160;
  1633. this.pictureBox12.TabStop = false;
  1634. //
  1635. // pictureBox65
  1636. //
  1637. this.pictureBox65.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox65.BackgroundImage")));
  1638. this.pictureBox65.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1639. this.pictureBox65.Location = new System.Drawing.Point(4, 578);
  1640. this.pictureBox65.Name = "pictureBox65";
  1641. this.pictureBox65.Size = new System.Drawing.Size(24, 24);
  1642. this.pictureBox65.TabIndex = 130;
  1643. this.pictureBox65.TabStop = false;
  1644. //
  1645. // pictureBox45
  1646. //
  1647. this.pictureBox45.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox45.BackgroundImage")));
  1648. this.pictureBox45.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1649. this.pictureBox45.Location = new System.Drawing.Point(4, 668);
  1650. this.pictureBox45.Name = "pictureBox45";
  1651. this.pictureBox45.Size = new System.Drawing.Size(24, 24);
  1652. this.pictureBox45.TabIndex = 106;
  1653. this.pictureBox45.TabStop = false;
  1654. //
  1655. // pictureBox13
  1656. //
  1657. this.pictureBox13.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox13.BackgroundImage")));
  1658. this.pictureBox13.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1659. this.pictureBox13.Location = new System.Drawing.Point(3, 458);
  1660. this.pictureBox13.Name = "pictureBox13";
  1661. this.pictureBox13.Size = new System.Drawing.Size(24, 24);
  1662. this.pictureBox13.TabIndex = 159;
  1663. this.pictureBox13.TabStop = false;
  1664. //
  1665. // pictureBox48
  1666. //
  1667. this.pictureBox48.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox48.BackgroundImage")));
  1668. this.pictureBox48.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1669. this.pictureBox48.Location = new System.Drawing.Point(4, 638);
  1670. this.pictureBox48.Name = "pictureBox48";
  1671. this.pictureBox48.Size = new System.Drawing.Size(24, 24);
  1672. this.pictureBox48.TabIndex = 104;
  1673. this.pictureBox48.TabStop = false;
  1674. //
  1675. // pictureBox9
  1676. //
  1677. this.pictureBox9.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox9.BackgroundImage")));
  1678. this.pictureBox9.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1679. this.pictureBox9.Location = new System.Drawing.Point(3, 368);
  1680. this.pictureBox9.Name = "pictureBox9";
  1681. this.pictureBox9.Size = new System.Drawing.Size(24, 24);
  1682. this.pictureBox9.TabIndex = 157;
  1683. this.pictureBox9.TabStop = false;
  1684. //
  1685. // pictureBox82
  1686. //
  1687. this.pictureBox82.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox82.BackgroundImage")));
  1688. this.pictureBox82.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1689. this.pictureBox82.Location = new System.Drawing.Point(3, 303);
  1690. this.pictureBox82.Name = "pictureBox82";
  1691. this.pictureBox82.Size = new System.Drawing.Size(24, 24);
  1692. this.pictureBox82.TabIndex = 151;
  1693. this.pictureBox82.TabStop = false;
  1694. //
  1695. // pictureBox60
  1696. //
  1697. this.pictureBox60.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox60.BackgroundImage")));
  1698. this.pictureBox60.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1699. this.pictureBox60.Location = new System.Drawing.Point(4, 727);
  1700. this.pictureBox60.Name = "pictureBox60";
  1701. this.pictureBox60.Size = new System.Drawing.Size(24, 24);
  1702. this.pictureBox60.TabIndex = 134;
  1703. this.pictureBox60.TabStop = false;
  1704. //
  1705. // pictureBox22
  1706. //
  1707. this.pictureBox22.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox22.BackgroundImage")));
  1708. this.pictureBox22.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1709. this.pictureBox22.Location = new System.Drawing.Point(3, 63);
  1710. this.pictureBox22.Name = "pictureBox22";
  1711. this.pictureBox22.Size = new System.Drawing.Size(24, 24);
  1712. this.pictureBox22.TabIndex = 96;
  1713. this.pictureBox22.TabStop = false;
  1714. //
  1715. // pictureBox23
  1716. //
  1717. this.pictureBox23.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox23.BackgroundImage")));
  1718. this.pictureBox23.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1719. this.pictureBox23.Location = new System.Drawing.Point(3, 93);
  1720. this.pictureBox23.Name = "pictureBox23";
  1721. this.pictureBox23.Size = new System.Drawing.Size(24, 24);
  1722. this.pictureBox23.TabIndex = 98;
  1723. this.pictureBox23.TabStop = false;
  1724. //
  1725. // pictureBox21
  1726. //
  1727. this.pictureBox21.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox21.BackgroundImage")));
  1728. this.pictureBox21.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
  1729. this.pictureBox21.Location = new System.Drawing.Point(3, 33);
  1730. this.pictureBox21.Name = "pictureBox21";
  1731. this.pictureBox21.Size = new System.Drawing.Size(24, 24);
  1732. this.pictureBox21.TabIndex = 95;
  1733. this.pictureBox21.TabStop = false;
  1734. //
  1735. // pictureBox24
  1736. //
  1737. this.pictureBox24.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox24.BackgroundImage")));
  1738. this.pictureBox24.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1739. this.pictureBox24.Location = new System.Drawing.Point(3, 3);
  1740. this.pictureBox24.Name = "pictureBox24";
  1741. this.pictureBox24.Size = new System.Drawing.Size(24, 24);
  1742. this.pictureBox24.TabIndex = 97;
  1743. this.pictureBox24.TabStop = false;
  1744. //
  1745. // pictureBox52
  1746. //
  1747. this.pictureBox52.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox52.BackgroundImage")));
  1748. this.pictureBox52.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1749. this.pictureBox52.Location = new System.Drawing.Point(3, 123);
  1750. this.pictureBox52.Name = "pictureBox52";
  1751. this.pictureBox52.Size = new System.Drawing.Size(24, 24);
  1752. this.pictureBox52.TabIndex = 98;
  1753. this.pictureBox52.TabStop = false;
  1754. //
  1755. // pictureBox14
  1756. //
  1757. this.pictureBox14.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox14.BackgroundImage")));
  1758. this.pictureBox14.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
  1759. this.pictureBox14.Location = new System.Drawing.Point(3, 153);
  1760. this.pictureBox14.Name = "pictureBox14";
  1761. this.pictureBox14.Size = new System.Drawing.Size(24, 24);
  1762. this.pictureBox14.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  1763. this.pictureBox14.TabIndex = 91;
  1764. this.pictureBox14.TabStop = false;
  1765. //
  1766. // pictureBox71
  1767. //
  1768. this.pictureBox71.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox71.BackgroundImage")));
  1769. this.pictureBox71.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
  1770. this.pictureBox71.Location = new System.Drawing.Point(4, 338);
  1771. this.pictureBox71.Name = "pictureBox71";
  1772. this.pictureBox71.Size = new System.Drawing.Size(24, 24);
  1773. this.pictureBox71.TabIndex = 149;
  1774. this.pictureBox71.TabStop = false;
  1775. //
  1776. // pictureBox15
  1777. //
  1778. this.pictureBox15.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox15.BackgroundImage")));
  1779. this.pictureBox15.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1780. this.pictureBox15.Location = new System.Drawing.Point(3, 213);
  1781. this.pictureBox15.Name = "pictureBox15";
  1782. this.pictureBox15.Size = new System.Drawing.Size(24, 24);
  1783. this.pictureBox15.TabIndex = 93;
  1784. this.pictureBox15.TabStop = false;
  1785. //
  1786. // pictureBox16
  1787. //
  1788. this.pictureBox16.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox16.BackgroundImage")));
  1789. this.pictureBox16.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1790. this.pictureBox16.Location = new System.Drawing.Point(3, 183);
  1791. this.pictureBox16.Name = "pictureBox16";
  1792. this.pictureBox16.Size = new System.Drawing.Size(24, 24);
  1793. this.pictureBox16.TabIndex = 92;
  1794. this.pictureBox16.TabStop = false;
  1795. //
  1796. // pictureBox43
  1797. //
  1798. this.pictureBox43.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox43.BackgroundImage")));
  1799. this.pictureBox43.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1800. this.pictureBox43.Location = new System.Drawing.Point(3, 273);
  1801. this.pictureBox43.Name = "pictureBox43";
  1802. this.pictureBox43.Size = new System.Drawing.Size(24, 24);
  1803. this.pictureBox43.TabIndex = 105;
  1804. this.pictureBox43.TabStop = false;
  1805. //
  1806. // pictureBox63
  1807. //
  1808. this.pictureBox63.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox63.BackgroundImage")));
  1809. this.pictureBox63.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1810. this.pictureBox63.Location = new System.Drawing.Point(3, 243);
  1811. this.pictureBox63.Name = "pictureBox63";
  1812. this.pictureBox63.Size = new System.Drawing.Size(24, 24);
  1813. this.pictureBox63.TabIndex = 128;
  1814. this.pictureBox63.TabStop = false;
  1815. //
  1816. // panelApps6
  1817. //
  1818. this.panelApps6.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  1819. | System.Windows.Forms.AnchorStyles.Left)));
  1820. this.panelApps6.AutoScroll = true;
  1821. this.panelApps6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1822. this.panelApps6.Controls.Add(this.cSteam);
  1823. this.panelApps6.Controls.Add(this.pictureBox75);
  1824. this.panelApps6.Controls.Add(this.cOrigin);
  1825. this.panelApps6.Controls.Add(this.cVCPP);
  1826. this.panelApps6.Controls.Add(this.pictureBox54);
  1827. this.panelApps6.Controls.Add(this.cQB);
  1828. this.panelApps6.Controls.Add(this.cEpicStore);
  1829. this.panelApps6.Controls.Add(this.cUT2);
  1830. this.panelApps6.Controls.Add(this.pictureBox53);
  1831. this.panelApps6.Controls.Add(this.pictureBox80);
  1832. this.panelApps6.Controls.Add(this.cBlizzard);
  1833. this.panelApps6.Controls.Add(this.pictureBox49);
  1834. this.panelApps6.Controls.Add(this.cDeluge);
  1835. this.panelApps6.Controls.Add(this.pictureBox51);
  1836. this.panelApps6.Controls.Add(this.cNF472);
  1837. this.panelApps6.Controls.Add(this.cUbi);
  1838. this.panelApps6.Controls.Add(this.pictureBox18);
  1839. this.panelApps6.Controls.Add(this.pictureBox50);
  1840. this.panelApps6.Controls.Add(this.pictureBox78);
  1841. this.panelApps6.Controls.Add(this.pictureBox19);
  1842. this.panelApps6.Controls.Add(this.cNF452);
  1843. this.panelApps6.Controls.Add(this.cUT3);
  1844. this.panelApps6.Controls.Add(this.pictureBox79);
  1845. this.panelApps6.Controls.Add(this.pictureBox20);
  1846. this.panelApps6.Controls.Add(this.cNF40);
  1847. this.panelApps6.Controls.Add(this.pictureBox17);
  1848. this.panelApps6.Controls.Add(this.pictureBox77);
  1849. this.panelApps6.Controls.Add(this.cBT);
  1850. this.panelApps6.Controls.Add(this.cNF35);
  1851. this.panelApps6.Controls.Add(this.pictureBox76);
  1852. this.panelApps6.Controls.Add(this.cIObitSU);
  1853. this.panelApps6.Controls.Add(this.cIObitU);
  1854. this.panelApps6.Controls.Add(this.pictureBox74);
  1855. this.panelApps6.Controls.Add(this.cRevo);
  1856. this.panelApps6.Controls.Add(this.pictureBox68);
  1857. this.panelApps6.Controls.Add(this.cIObitDB);
  1858. this.panelApps6.Controls.Add(this.cIObitSD);
  1859. this.panelApps6.Controls.Add(this.pictureBox61);
  1860. this.panelApps6.Controls.Add(this.cUUI);
  1861. this.panelApps6.Controls.Add(this.pictureBox66);
  1862. this.panelApps6.Controls.Add(this.pictureBox72);
  1863. this.panelApps6.Controls.Add(this.pictureBox67);
  1864. this.panelApps6.Controls.Add(this.cRufus);
  1865. this.panelApps6.Controls.Add(this.pictureBox73);
  1866. this.panelApps6.Controls.Add(this.cMalwarebytes);
  1867. this.panelApps6.Controls.Add(this.pictureBox70);
  1868. this.panelApps6.Controls.Add(this.cAntiExploit);
  1869. this.panelApps6.Controls.Add(this.pictureBox69);
  1870. this.panelApps6.Location = new System.Drawing.Point(503, 48);
  1871. this.panelApps6.Name = "panelApps6";
  1872. this.panelApps6.Size = new System.Drawing.Size(242, 389);
  1873. this.panelApps6.TabIndex = 162;
  1874. //
  1875. // pictureBox75
  1876. //
  1877. this.pictureBox75.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox75.BackgroundImage")));
  1878. this.pictureBox75.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1879. this.pictureBox75.Location = new System.Drawing.Point(5, 514);
  1880. this.pictureBox75.Name = "pictureBox75";
  1881. this.pictureBox75.Size = new System.Drawing.Size(24, 24);
  1882. this.pictureBox75.TabIndex = 162;
  1883. this.pictureBox75.TabStop = false;
  1884. //
  1885. // pictureBox54
  1886. //
  1887. this.pictureBox54.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox54.BackgroundImage")));
  1888. this.pictureBox54.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1889. this.pictureBox54.Location = new System.Drawing.Point(5, 693);
  1890. this.pictureBox54.Name = "pictureBox54";
  1891. this.pictureBox54.Size = new System.Drawing.Size(24, 24);
  1892. this.pictureBox54.TabIndex = 110;
  1893. this.pictureBox54.TabStop = false;
  1894. //
  1895. // pictureBox53
  1896. //
  1897. this.pictureBox53.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox53.BackgroundImage")));
  1898. this.pictureBox53.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1899. this.pictureBox53.Location = new System.Drawing.Point(5, 663);
  1900. this.pictureBox53.Name = "pictureBox53";
  1901. this.pictureBox53.Size = new System.Drawing.Size(24, 24);
  1902. this.pictureBox53.TabIndex = 108;
  1903. this.pictureBox53.TabStop = false;
  1904. //
  1905. // pictureBox80
  1906. //
  1907. this.pictureBox80.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox80.BackgroundImage")));
  1908. this.pictureBox80.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1909. this.pictureBox80.Location = new System.Drawing.Point(5, 124);
  1910. this.pictureBox80.Name = "pictureBox80";
  1911. this.pictureBox80.Size = new System.Drawing.Size(24, 24);
  1912. this.pictureBox80.TabIndex = 172;
  1913. this.pictureBox80.TabStop = false;
  1914. //
  1915. // pictureBox49
  1916. //
  1917. this.pictureBox49.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox49.BackgroundImage")));
  1918. this.pictureBox49.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1919. this.pictureBox49.Location = new System.Drawing.Point(5, 633);
  1920. this.pictureBox49.Name = "pictureBox49";
  1921. this.pictureBox49.Size = new System.Drawing.Size(24, 24);
  1922. this.pictureBox49.TabIndex = 105;
  1923. this.pictureBox49.TabStop = false;
  1924. //
  1925. // pictureBox51
  1926. //
  1927. this.pictureBox51.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox51.BackgroundImage")));
  1928. this.pictureBox51.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1929. this.pictureBox51.Location = new System.Drawing.Point(5, 603);
  1930. this.pictureBox51.Name = "pictureBox51";
  1931. this.pictureBox51.Size = new System.Drawing.Size(24, 24);
  1932. this.pictureBox51.TabIndex = 104;
  1933. this.pictureBox51.TabStop = false;
  1934. //
  1935. // pictureBox18
  1936. //
  1937. this.pictureBox18.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox18.BackgroundImage")));
  1938. this.pictureBox18.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1939. this.pictureBox18.Location = new System.Drawing.Point(5, 544);
  1940. this.pictureBox18.Name = "pictureBox18";
  1941. this.pictureBox18.Size = new System.Drawing.Size(24, 24);
  1942. this.pictureBox18.TabIndex = 93;
  1943. this.pictureBox18.TabStop = false;
  1944. //
  1945. // pictureBox50
  1946. //
  1947. this.pictureBox50.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox50.BackgroundImage")));
  1948. this.pictureBox50.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1949. this.pictureBox50.Location = new System.Drawing.Point(5, 573);
  1950. this.pictureBox50.Name = "pictureBox50";
  1951. this.pictureBox50.Size = new System.Drawing.Size(24, 24);
  1952. this.pictureBox50.TabIndex = 103;
  1953. this.pictureBox50.TabStop = false;
  1954. //
  1955. // pictureBox78
  1956. //
  1957. this.pictureBox78.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox78.BackgroundImage")));
  1958. this.pictureBox78.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1959. this.pictureBox78.Location = new System.Drawing.Point(5, 94);
  1960. this.pictureBox78.Name = "pictureBox78";
  1961. this.pictureBox78.Size = new System.Drawing.Size(24, 24);
  1962. this.pictureBox78.TabIndex = 170;
  1963. this.pictureBox78.TabStop = false;
  1964. //
  1965. // pictureBox19
  1966. //
  1967. this.pictureBox19.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox19.BackgroundImage")));
  1968. this.pictureBox19.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1969. this.pictureBox19.Location = new System.Drawing.Point(5, 484);
  1970. this.pictureBox19.Name = "pictureBox19";
  1971. this.pictureBox19.Size = new System.Drawing.Size(24, 24);
  1972. this.pictureBox19.TabIndex = 94;
  1973. this.pictureBox19.TabStop = false;
  1974. //
  1975. // pictureBox79
  1976. //
  1977. this.pictureBox79.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox79.BackgroundImage")));
  1978. this.pictureBox79.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1979. this.pictureBox79.Location = new System.Drawing.Point(5, 64);
  1980. this.pictureBox79.Name = "pictureBox79";
  1981. this.pictureBox79.Size = new System.Drawing.Size(24, 24);
  1982. this.pictureBox79.TabIndex = 168;
  1983. this.pictureBox79.TabStop = false;
  1984. //
  1985. // pictureBox20
  1986. //
  1987. this.pictureBox20.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox20.BackgroundImage")));
  1988. this.pictureBox20.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1989. this.pictureBox20.Location = new System.Drawing.Point(5, 454);
  1990. this.pictureBox20.Name = "pictureBox20";
  1991. this.pictureBox20.Size = new System.Drawing.Size(24, 24);
  1992. this.pictureBox20.TabIndex = 92;
  1993. this.pictureBox20.TabStop = false;
  1994. //
  1995. // pictureBox17
  1996. //
  1997. this.pictureBox17.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox17.BackgroundImage")));
  1998. this.pictureBox17.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1999. this.pictureBox17.Location = new System.Drawing.Point(5, 424);
  2000. this.pictureBox17.Name = "pictureBox17";
  2001. this.pictureBox17.Size = new System.Drawing.Size(24, 24);
  2002. this.pictureBox17.TabIndex = 91;
  2003. this.pictureBox17.TabStop = false;
  2004. //
  2005. // pictureBox77
  2006. //
  2007. this.pictureBox77.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox77.BackgroundImage")));
  2008. this.pictureBox77.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2009. this.pictureBox77.Location = new System.Drawing.Point(5, 34);
  2010. this.pictureBox77.Name = "pictureBox77";
  2011. this.pictureBox77.Size = new System.Drawing.Size(24, 24);
  2012. this.pictureBox77.TabIndex = 166;
  2013. this.pictureBox77.TabStop = false;
  2014. //
  2015. // pictureBox76
  2016. //
  2017. this.pictureBox76.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox76.BackgroundImage")));
  2018. this.pictureBox76.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2019. this.pictureBox76.Location = new System.Drawing.Point(5, 4);
  2020. this.pictureBox76.Name = "pictureBox76";
  2021. this.pictureBox76.Size = new System.Drawing.Size(24, 24);
  2022. this.pictureBox76.TabIndex = 164;
  2023. this.pictureBox76.TabStop = false;
  2024. //
  2025. // pictureBox74
  2026. //
  2027. this.pictureBox74.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox74.BackgroundImage")));
  2028. this.pictureBox74.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
  2029. this.pictureBox74.Location = new System.Drawing.Point(5, 244);
  2030. this.pictureBox74.Name = "pictureBox74";
  2031. this.pictureBox74.Size = new System.Drawing.Size(24, 24);
  2032. this.pictureBox74.TabIndex = 161;
  2033. this.pictureBox74.TabStop = false;
  2034. //
  2035. // pictureBox68
  2036. //
  2037. this.pictureBox68.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox68.BackgroundImage")));
  2038. this.pictureBox68.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
  2039. this.pictureBox68.Location = new System.Drawing.Point(5, 274);
  2040. this.pictureBox68.Name = "pictureBox68";
  2041. this.pictureBox68.Size = new System.Drawing.Size(24, 24);
  2042. this.pictureBox68.TabIndex = 143;
  2043. this.pictureBox68.TabStop = false;
  2044. //
  2045. // pictureBox61
  2046. //
  2047. this.pictureBox61.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox61.BackgroundImage")));
  2048. this.pictureBox61.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2049. this.pictureBox61.Location = new System.Drawing.Point(5, 154);
  2050. this.pictureBox61.Name = "pictureBox61";
  2051. this.pictureBox61.Size = new System.Drawing.Size(24, 24);
  2052. this.pictureBox61.TabIndex = 139;
  2053. this.pictureBox61.TabStop = false;
  2054. //
  2055. // pictureBox66
  2056. //
  2057. this.pictureBox66.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox66.BackgroundImage")));
  2058. this.pictureBox66.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2059. this.pictureBox66.Location = new System.Drawing.Point(5, 184);
  2060. this.pictureBox66.Name = "pictureBox66";
  2061. this.pictureBox66.Size = new System.Drawing.Size(24, 24);
  2062. this.pictureBox66.TabIndex = 140;
  2063. this.pictureBox66.TabStop = false;
  2064. //
  2065. // pictureBox72
  2066. //
  2067. this.pictureBox72.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox72.BackgroundImage")));
  2068. this.pictureBox72.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
  2069. this.pictureBox72.Location = new System.Drawing.Point(5, 393);
  2070. this.pictureBox72.Name = "pictureBox72";
  2071. this.pictureBox72.Size = new System.Drawing.Size(24, 24);
  2072. this.pictureBox72.TabIndex = 153;
  2073. this.pictureBox72.TabStop = false;
  2074. //
  2075. // pictureBox67
  2076. //
  2077. this.pictureBox67.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox67.BackgroundImage")));
  2078. this.pictureBox67.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2079. this.pictureBox67.Location = new System.Drawing.Point(5, 214);
  2080. this.pictureBox67.Name = "pictureBox67";
  2081. this.pictureBox67.Size = new System.Drawing.Size(24, 24);
  2082. this.pictureBox67.TabIndex = 141;
  2083. this.pictureBox67.TabStop = false;
  2084. //
  2085. // pictureBox73
  2086. //
  2087. this.pictureBox73.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox73.BackgroundImage")));
  2088. this.pictureBox73.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
  2089. this.pictureBox73.Location = new System.Drawing.Point(5, 363);
  2090. this.pictureBox73.Name = "pictureBox73";
  2091. this.pictureBox73.Size = new System.Drawing.Size(24, 24);
  2092. this.pictureBox73.TabIndex = 151;
  2093. this.pictureBox73.TabStop = false;
  2094. //
  2095. // pictureBox70
  2096. //
  2097. this.pictureBox70.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox70.BackgroundImage")));
  2098. this.pictureBox70.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
  2099. this.pictureBox70.Location = new System.Drawing.Point(5, 303);
  2100. this.pictureBox70.Name = "pictureBox70";
  2101. this.pictureBox70.Size = new System.Drawing.Size(24, 24);
  2102. this.pictureBox70.TabIndex = 145;
  2103. this.pictureBox70.TabStop = false;
  2104. //
  2105. // pictureBox69
  2106. //
  2107. this.pictureBox69.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox69.BackgroundImage")));
  2108. this.pictureBox69.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
  2109. this.pictureBox69.Location = new System.Drawing.Point(5, 333);
  2110. this.pictureBox69.Name = "pictureBox69";
  2111. this.pictureBox69.Size = new System.Drawing.Size(24, 24);
  2112. this.pictureBox69.TabIndex = 147;
  2113. this.pictureBox69.TabStop = false;
  2114. //
  2115. // panelApps1
  2116. //
  2117. this.panelApps1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  2118. | System.Windows.Forms.AnchorStyles.Left)));
  2119. this.panelApps1.AutoScroll = true;
  2120. this.panelApps1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2121. this.panelApps1.Controls.Add(this.cFileZilla);
  2122. this.panelApps1.Controls.Add(this.pictureBox39);
  2123. this.panelApps1.Controls.Add(this.cGitHub);
  2124. this.panelApps1.Controls.Add(this.pictureBox37);
  2125. this.panelApps1.Controls.Add(this.cNode);
  2126. this.panelApps1.Controls.Add(this.cPutty);
  2127. this.panelApps1.Controls.Add(this.pictureBox64);
  2128. this.panelApps1.Controls.Add(this.pictureBox44);
  2129. this.panelApps1.Controls.Add(this.cNPP);
  2130. this.panelApps1.Controls.Add(this.cWinScp);
  2131. this.panelApps1.Controls.Add(this.pictureBox38);
  2132. this.panelApps1.Controls.Add(this.cAndroidStudio);
  2133. this.panelApps1.Controls.Add(this.pictureBox62);
  2134. this.panelApps1.Controls.Add(this.cXAMPP);
  2135. this.panelApps1.Controls.Add(this.cChromium);
  2136. this.panelApps1.Controls.Add(this.cEclipse);
  2137. this.panelApps1.Controls.Add(this.cPostman);
  2138. this.panelApps1.Controls.Add(this.cSublimeText);
  2139. this.panelApps1.Controls.Add(this.cVivaldi);
  2140. this.panelApps1.Controls.Add(this.pictureBox40);
  2141. this.panelApps1.Controls.Add(this.pictureBox33);
  2142. this.panelApps1.Controls.Add(this.pictureBox5);
  2143. this.panelApps1.Controls.Add(this.pictureBox41);
  2144. this.panelApps1.Controls.Add(this.cAtom);
  2145. this.panelApps1.Controls.Add(this.pictureBox4);
  2146. this.panelApps1.Controls.Add(this.pictureBox42);
  2147. this.panelApps1.Controls.Add(this.pictureBox34);
  2148. this.panelApps1.Controls.Add(this.pictureBox3);
  2149. this.panelApps1.Controls.Add(this.pictureBox32);
  2150. this.panelApps1.Controls.Add(this.cMaxthon);
  2151. this.panelApps1.Controls.Add(this.pictureBox35);
  2152. this.panelApps1.Controls.Add(this.pictureBox7);
  2153. this.panelApps1.Controls.Add(this.pictureBox31);
  2154. this.panelApps1.Controls.Add(this.picturemaxthon);
  2155. this.panelApps1.Controls.Add(this.pictureBox36);
  2156. this.panelApps1.Controls.Add(this.pictureBox2);
  2157. this.panelApps1.Controls.Add(this.cVS);
  2158. this.panelApps1.Controls.Add(this.cChrome);
  2159. this.panelApps1.Controls.Add(this.cVSCode);
  2160. this.panelApps1.Controls.Add(this.cOpera);
  2161. this.panelApps1.Controls.Add(this.cSublimeMerge);
  2162. this.panelApps1.Controls.Add(this.cFirefox);
  2163. this.panelApps1.Controls.Add(this.pictureBox6);
  2164. this.panelApps1.Controls.Add(this.cTor);
  2165. this.panelApps1.Controls.Add(this.cDiscord);
  2166. this.panelApps1.Controls.Add(this.cAnyDesk);
  2167. this.panelApps1.Controls.Add(this.cMSTeams);
  2168. this.panelApps1.Controls.Add(this.cViber);
  2169. this.panelApps1.Controls.Add(this.pictureBox55);
  2170. this.panelApps1.Controls.Add(this.pictureBox56);
  2171. this.panelApps1.Controls.Add(this.cSkype);
  2172. this.panelApps1.Controls.Add(this.cThunderbird);
  2173. this.panelApps1.Controls.Add(this.cZoom);
  2174. this.panelApps1.Controls.Add(this.pictureBox27);
  2175. this.panelApps1.Controls.Add(this.pictureBox25);
  2176. this.panelApps1.Controls.Add(this.pictureBox30);
  2177. this.panelApps1.Controls.Add(this.pictureBox28);
  2178. this.panelApps1.Controls.Add(this.cTV);
  2179. this.panelApps1.Controls.Add(this.pictureBox29);
  2180. this.panelApps1.Controls.Add(this.pictureBox26);
  2181. this.panelApps1.Location = new System.Drawing.Point(11, 48);
  2182. this.panelApps1.Name = "panelApps1";
  2183. this.panelApps1.Size = new System.Drawing.Size(240, 389);
  2184. this.panelApps1.TabIndex = 154;
  2185. //
  2186. // pictureBox39
  2187. //
  2188. this.pictureBox39.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox39.BackgroundImage")));
  2189. this.pictureBox39.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2190. this.pictureBox39.Location = new System.Drawing.Point(5, 843);
  2191. this.pictureBox39.Name = "pictureBox39";
  2192. this.pictureBox39.Size = new System.Drawing.Size(24, 24);
  2193. this.pictureBox39.TabIndex = 100;
  2194. this.pictureBox39.TabStop = false;
  2195. //
  2196. // pictureBox37
  2197. //
  2198. this.pictureBox37.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox37.BackgroundImage")));
  2199. this.pictureBox37.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2200. this.pictureBox37.Location = new System.Drawing.Point(5, 873);
  2201. this.pictureBox37.Name = "pictureBox37";
  2202. this.pictureBox37.Size = new System.Drawing.Size(24, 24);
  2203. this.pictureBox37.TabIndex = 99;
  2204. this.pictureBox37.TabStop = false;
  2205. //
  2206. // pictureBox64
  2207. //
  2208. this.pictureBox64.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox64.BackgroundImage")));
  2209. this.pictureBox64.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2210. this.pictureBox64.Location = new System.Drawing.Point(5, 633);
  2211. this.pictureBox64.Name = "pictureBox64";
  2212. this.pictureBox64.Size = new System.Drawing.Size(24, 24);
  2213. this.pictureBox64.TabIndex = 129;
  2214. this.pictureBox64.TabStop = false;
  2215. //
  2216. // pictureBox44
  2217. //
  2218. this.pictureBox44.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox44.BackgroundImage")));
  2219. this.pictureBox44.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2220. this.pictureBox44.Location = new System.Drawing.Point(5, 813);
  2221. this.pictureBox44.Name = "pictureBox44";
  2222. this.pictureBox44.Size = new System.Drawing.Size(24, 24);
  2223. this.pictureBox44.TabIndex = 106;
  2224. this.pictureBox44.TabStop = false;
  2225. //
  2226. // pictureBox38
  2227. //
  2228. this.pictureBox38.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox38.BackgroundImage")));
  2229. this.pictureBox38.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2230. this.pictureBox38.Location = new System.Drawing.Point(5, 752);
  2231. this.pictureBox38.Name = "pictureBox38";
  2232. this.pictureBox38.Size = new System.Drawing.Size(24, 24);
  2233. this.pictureBox38.TabIndex = 103;
  2234. this.pictureBox38.TabStop = false;
  2235. //
  2236. // pictureBox62
  2237. //
  2238. this.pictureBox62.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox62.BackgroundImage")));
  2239. this.pictureBox62.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2240. this.pictureBox62.Location = new System.Drawing.Point(5, 663);
  2241. this.pictureBox62.Name = "pictureBox62";
  2242. this.pictureBox62.Size = new System.Drawing.Size(24, 24);
  2243. this.pictureBox62.TabIndex = 131;
  2244. this.pictureBox62.TabStop = false;
  2245. //
  2246. // pictureBox40
  2247. //
  2248. this.pictureBox40.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox40.BackgroundImage")));
  2249. this.pictureBox40.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2250. this.pictureBox40.Location = new System.Drawing.Point(5, 722);
  2251. this.pictureBox40.Name = "pictureBox40";
  2252. this.pictureBox40.Size = new System.Drawing.Size(24, 24);
  2253. this.pictureBox40.TabIndex = 101;
  2254. this.pictureBox40.TabStop = false;
  2255. //
  2256. // pictureBox33
  2257. //
  2258. this.pictureBox33.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox33.BackgroundImage")));
  2259. this.pictureBox33.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2260. this.pictureBox33.Location = new System.Drawing.Point(5, 483);
  2261. this.pictureBox33.Name = "pictureBox33";
  2262. this.pictureBox33.Size = new System.Drawing.Size(24, 24);
  2263. this.pictureBox33.TabIndex = 100;
  2264. this.pictureBox33.TabStop = false;
  2265. //
  2266. // pictureBox5
  2267. //
  2268. this.pictureBox5.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox5.BackgroundImage")));
  2269. this.pictureBox5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2270. this.pictureBox5.Location = new System.Drawing.Point(5, 92);
  2271. this.pictureBox5.Name = "pictureBox5";
  2272. this.pictureBox5.Size = new System.Drawing.Size(24, 24);
  2273. this.pictureBox5.TabIndex = 83;
  2274. this.pictureBox5.TabStop = false;
  2275. //
  2276. // pictureBox41
  2277. //
  2278. this.pictureBox41.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox41.BackgroundImage")));
  2279. this.pictureBox41.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2280. this.pictureBox41.Location = new System.Drawing.Point(5, 782);
  2281. this.pictureBox41.Name = "pictureBox41";
  2282. this.pictureBox41.Size = new System.Drawing.Size(24, 24);
  2283. this.pictureBox41.TabIndex = 104;
  2284. this.pictureBox41.TabStop = false;
  2285. //
  2286. // pictureBox4
  2287. //
  2288. this.pictureBox4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox4.BackgroundImage")));
  2289. this.pictureBox4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
  2290. this.pictureBox4.Location = new System.Drawing.Point(5, 62);
  2291. this.pictureBox4.Name = "pictureBox4";
  2292. this.pictureBox4.Size = new System.Drawing.Size(24, 24);
  2293. this.pictureBox4.TabIndex = 84;
  2294. this.pictureBox4.TabStop = false;
  2295. //
  2296. // pictureBox42
  2297. //
  2298. this.pictureBox42.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox42.BackgroundImage")));
  2299. this.pictureBox42.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2300. this.pictureBox42.Location = new System.Drawing.Point(5, 693);
  2301. this.pictureBox42.Name = "pictureBox42";
  2302. this.pictureBox42.Size = new System.Drawing.Size(24, 24);
  2303. this.pictureBox42.TabIndex = 102;
  2304. this.pictureBox42.TabStop = false;
  2305. //
  2306. // pictureBox34
  2307. //
  2308. this.pictureBox34.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox34.BackgroundImage")));
  2309. this.pictureBox34.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2310. this.pictureBox34.Location = new System.Drawing.Point(5, 543);
  2311. this.pictureBox34.Name = "pictureBox34";
  2312. this.pictureBox34.Size = new System.Drawing.Size(24, 24);
  2313. this.pictureBox34.TabIndex = 101;
  2314. this.pictureBox34.TabStop = false;
  2315. //
  2316. // pictureBox3
  2317. //
  2318. this.pictureBox3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox3.BackgroundImage")));
  2319. this.pictureBox3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2320. this.pictureBox3.Location = new System.Drawing.Point(5, 32);
  2321. this.pictureBox3.Name = "pictureBox3";
  2322. this.pictureBox3.Size = new System.Drawing.Size(24, 24);
  2323. this.pictureBox3.TabIndex = 82;
  2324. this.pictureBox3.TabStop = false;
  2325. //
  2326. // pictureBox32
  2327. //
  2328. this.pictureBox32.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox32.BackgroundImage")));
  2329. this.pictureBox32.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2330. this.pictureBox32.Location = new System.Drawing.Point(5, 573);
  2331. this.pictureBox32.Name = "pictureBox32";
  2332. this.pictureBox32.Size = new System.Drawing.Size(24, 24);
  2333. this.pictureBox32.TabIndex = 103;
  2334. this.pictureBox32.TabStop = false;
  2335. //
  2336. // pictureBox35
  2337. //
  2338. this.pictureBox35.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox35.BackgroundImage")));
  2339. this.pictureBox35.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2340. this.pictureBox35.Location = new System.Drawing.Point(5, 603);
  2341. this.pictureBox35.Name = "pictureBox35";
  2342. this.pictureBox35.Size = new System.Drawing.Size(24, 24);
  2343. this.pictureBox35.TabIndex = 104;
  2344. this.pictureBox35.TabStop = false;
  2345. //
  2346. // pictureBox7
  2347. //
  2348. this.pictureBox7.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox7.BackgroundImage")));
  2349. this.pictureBox7.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2350. this.pictureBox7.Location = new System.Drawing.Point(5, 122);
  2351. this.pictureBox7.Name = "pictureBox7";
  2352. this.pictureBox7.Size = new System.Drawing.Size(24, 24);
  2353. this.pictureBox7.TabIndex = 85;
  2354. this.pictureBox7.TabStop = false;
  2355. //
  2356. // pictureBox31
  2357. //
  2358. this.pictureBox31.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox31.BackgroundImage")));
  2359. this.pictureBox31.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2360. this.pictureBox31.Location = new System.Drawing.Point(5, 453);
  2361. this.pictureBox31.Name = "pictureBox31";
  2362. this.pictureBox31.Size = new System.Drawing.Size(24, 24);
  2363. this.pictureBox31.TabIndex = 99;
  2364. this.pictureBox31.TabStop = false;
  2365. //
  2366. // picturemaxthon
  2367. //
  2368. this.picturemaxthon.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("picturemaxthon.BackgroundImage")));
  2369. this.picturemaxthon.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2370. this.picturemaxthon.Location = new System.Drawing.Point(5, 152);
  2371. this.picturemaxthon.Name = "picturemaxthon";
  2372. this.picturemaxthon.Size = new System.Drawing.Size(24, 24);
  2373. this.picturemaxthon.TabIndex = 121;
  2374. this.picturemaxthon.TabStop = false;
  2375. //
  2376. // pictureBox36
  2377. //
  2378. this.pictureBox36.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox36.BackgroundImage")));
  2379. this.pictureBox36.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2380. this.pictureBox36.Location = new System.Drawing.Point(5, 513);
  2381. this.pictureBox36.Name = "pictureBox36";
  2382. this.pictureBox36.Size = new System.Drawing.Size(24, 24);
  2383. this.pictureBox36.TabIndex = 102;
  2384. this.pictureBox36.TabStop = false;
  2385. //
  2386. // pictureBox2
  2387. //
  2388. this.pictureBox2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox2.BackgroundImage")));
  2389. this.pictureBox2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2390. this.pictureBox2.Location = new System.Drawing.Point(5, 2);
  2391. this.pictureBox2.Name = "pictureBox2";
  2392. this.pictureBox2.Size = new System.Drawing.Size(24, 24);
  2393. this.pictureBox2.TabIndex = 81;
  2394. this.pictureBox2.TabStop = false;
  2395. //
  2396. // pictureBox6
  2397. //
  2398. this.pictureBox6.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox6.BackgroundImage")));
  2399. this.pictureBox6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2400. this.pictureBox6.Location = new System.Drawing.Point(5, 182);
  2401. this.pictureBox6.Name = "pictureBox6";
  2402. this.pictureBox6.Size = new System.Drawing.Size(24, 24);
  2403. this.pictureBox6.TabIndex = 86;
  2404. this.pictureBox6.TabStop = false;
  2405. //
  2406. // pictureBox55
  2407. //
  2408. this.pictureBox55.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox55.BackgroundImage")));
  2409. this.pictureBox55.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2410. this.pictureBox55.Location = new System.Drawing.Point(5, 334);
  2411. this.pictureBox55.Name = "pictureBox55";
  2412. this.pictureBox55.Size = new System.Drawing.Size(24, 24);
  2413. this.pictureBox55.TabIndex = 114;
  2414. this.pictureBox55.TabStop = false;
  2415. //
  2416. // pictureBox56
  2417. //
  2418. this.pictureBox56.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox56.BackgroundImage")));
  2419. this.pictureBox56.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2420. this.pictureBox56.Location = new System.Drawing.Point(5, 394);
  2421. this.pictureBox56.Name = "pictureBox56";
  2422. this.pictureBox56.Size = new System.Drawing.Size(24, 24);
  2423. this.pictureBox56.TabIndex = 112;
  2424. this.pictureBox56.TabStop = false;
  2425. //
  2426. // pictureBox27
  2427. //
  2428. this.pictureBox27.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox27.BackgroundImage")));
  2429. this.pictureBox27.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2430. this.pictureBox27.Location = new System.Drawing.Point(5, 273);
  2431. this.pictureBox27.Name = "pictureBox27";
  2432. this.pictureBox27.Size = new System.Drawing.Size(24, 24);
  2433. this.pictureBox27.TabIndex = 96;
  2434. this.pictureBox27.TabStop = false;
  2435. //
  2436. // pictureBox25
  2437. //
  2438. this.pictureBox25.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox25.BackgroundImage")));
  2439. this.pictureBox25.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2440. this.pictureBox25.Location = new System.Drawing.Point(5, 213);
  2441. this.pictureBox25.Name = "pictureBox25";
  2442. this.pictureBox25.Size = new System.Drawing.Size(24, 24);
  2443. this.pictureBox25.TabIndex = 93;
  2444. this.pictureBox25.TabStop = false;
  2445. //
  2446. // pictureBox30
  2447. //
  2448. this.pictureBox30.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox30.BackgroundImage")));
  2449. this.pictureBox30.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2450. this.pictureBox30.Location = new System.Drawing.Point(5, 364);
  2451. this.pictureBox30.Name = "pictureBox30";
  2452. this.pictureBox30.Size = new System.Drawing.Size(24, 24);
  2453. this.pictureBox30.TabIndex = 97;
  2454. this.pictureBox30.TabStop = false;
  2455. //
  2456. // pictureBox28
  2457. //
  2458. this.pictureBox28.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox28.BackgroundImage")));
  2459. this.pictureBox28.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
  2460. this.pictureBox28.Location = new System.Drawing.Point(5, 424);
  2461. this.pictureBox28.Name = "pictureBox28";
  2462. this.pictureBox28.Size = new System.Drawing.Size(24, 24);
  2463. this.pictureBox28.TabIndex = 98;
  2464. this.pictureBox28.TabStop = false;
  2465. //
  2466. // pictureBox29
  2467. //
  2468. this.pictureBox29.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox29.BackgroundImage")));
  2469. this.pictureBox29.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2470. this.pictureBox29.Location = new System.Drawing.Point(5, 243);
  2471. this.pictureBox29.Name = "pictureBox29";
  2472. this.pictureBox29.Size = new System.Drawing.Size(24, 24);
  2473. this.pictureBox29.TabIndex = 94;
  2474. this.pictureBox29.TabStop = false;
  2475. //
  2476. // pictureBox26
  2477. //
  2478. this.pictureBox26.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox26.BackgroundImage")));
  2479. this.pictureBox26.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2480. this.pictureBox26.Location = new System.Drawing.Point(5, 303);
  2481. this.pictureBox26.Name = "pictureBox26";
  2482. this.pictureBox26.Size = new System.Drawing.Size(24, 24);
  2483. this.pictureBox26.TabIndex = 95;
  2484. this.pictureBox26.TabStop = false;
  2485. //
  2486. // cleanerTab
  2487. //
  2488. this.cleanerTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  2489. this.cleanerTab.Controls.Add(this.cleanerTitle);
  2490. this.cleanerTab.Controls.Add(this.panel1);
  2491. this.cleanerTab.Location = new System.Drawing.Point(4, 24);
  2492. this.cleanerTab.Margin = new System.Windows.Forms.Padding(2);
  2493. this.cleanerTab.Name = "cleanerTab";
  2494. this.cleanerTab.Padding = new System.Windows.Forms.Padding(2);
  2495. this.cleanerTab.Size = new System.Drawing.Size(860, 611);
  2496. this.cleanerTab.TabIndex = 5;
  2497. this.cleanerTab.Text = "Cleaner";
  2498. //
  2499. // cleanerTitle
  2500. //
  2501. this.cleanerTitle.AutoSize = true;
  2502. this.cleanerTitle.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2503. this.cleanerTitle.ForeColor = System.Drawing.Color.DodgerBlue;
  2504. this.cleanerTitle.Location = new System.Drawing.Point(6, 10);
  2505. this.cleanerTitle.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2506. this.cleanerTitle.Name = "cleanerTitle";
  2507. this.cleanerTitle.Size = new System.Drawing.Size(260, 28);
  2508. this.cleanerTitle.TabIndex = 46;
  2509. this.cleanerTitle.Tag = "themeable";
  2510. this.cleanerTitle.Text = "Clean up your system drive";
  2511. //
  2512. // panel1
  2513. //
  2514. this.panel1.Controls.Add(this.lblPretext);
  2515. this.panel1.Controls.Add(this.lblFootprint);
  2516. this.panel1.Controls.Add(this.checkErrorReports);
  2517. this.panel1.Controls.Add(this.cleanDriveB);
  2518. this.panel1.Controls.Add(this.checkSelectAll);
  2519. this.panel1.Controls.Add(this.checkMediaCache);
  2520. this.panel1.Controls.Add(this.checkTemp);
  2521. this.panel1.Controls.Add(this.checkLogs);
  2522. this.panel1.Controls.Add(this.checkBin);
  2523. this.panel1.Controls.Add(this.checkMiniDumps);
  2524. this.panel1.Location = new System.Drawing.Point(11, 40);
  2525. this.panel1.Margin = new System.Windows.Forms.Padding(2);
  2526. this.panel1.Name = "panel1";
  2527. this.panel1.Size = new System.Drawing.Size(805, 333);
  2528. this.panel1.TabIndex = 45;
  2529. //
  2530. // lblPretext
  2531. //
  2532. this.lblPretext.AutoSize = true;
  2533. this.lblPretext.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2534. this.lblPretext.ForeColor = System.Drawing.Color.Silver;
  2535. this.lblPretext.Location = new System.Drawing.Point(29, 229);
  2536. this.lblPretext.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2537. this.lblPretext.Name = "lblPretext";
  2538. this.lblPretext.Size = new System.Drawing.Size(123, 21);
  2539. this.lblPretext.TabIndex = 49;
  2540. this.lblPretext.Tag = "";
  2541. this.lblPretext.Text = "Size to be freed:";
  2542. this.lblPretext.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2543. //
  2544. // lblFootprint
  2545. //
  2546. this.lblFootprint.Font = new System.Drawing.Font("Segoe UI Semibold", 13F, ((System.Drawing.FontStyle)(((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic)
  2547. | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2548. this.lblFootprint.ForeColor = System.Drawing.Color.DodgerBlue;
  2549. this.lblFootprint.Location = new System.Drawing.Point(30, 250);
  2550. this.lblFootprint.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2551. this.lblFootprint.Name = "lblFootprint";
  2552. this.lblFootprint.Size = new System.Drawing.Size(119, 31);
  2553. this.lblFootprint.TabIndex = 48;
  2554. this.lblFootprint.Tag = "themeable";
  2555. this.lblFootprint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2556. //
  2557. // cleanDriveB
  2558. //
  2559. this.cleanDriveB.BackColor = System.Drawing.Color.DodgerBlue;
  2560. this.cleanDriveB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  2561. this.cleanDriveB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2562. this.cleanDriveB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2563. this.cleanDriveB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2564. this.cleanDriveB.ForeColor = System.Drawing.Color.White;
  2565. this.cleanDriveB.Location = new System.Drawing.Point(29, 196);
  2566. this.cleanDriveB.Margin = new System.Windows.Forms.Padding(2);
  2567. this.cleanDriveB.Name = "cleanDriveB";
  2568. this.cleanDriveB.Size = new System.Drawing.Size(120, 31);
  2569. this.cleanDriveB.TabIndex = 34;
  2570. this.cleanDriveB.Text = "Clean";
  2571. this.cleanDriveB.UseVisualStyleBackColor = false;
  2572. this.cleanDriveB.Click += new System.EventHandler(this.button20_Click);
  2573. //
  2574. // pingerTab
  2575. //
  2576. this.pingerTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  2577. this.pingerTab.Controls.Add(this.btnSpeedtest);
  2578. this.pingerTab.Controls.Add(this.flushCacheB);
  2579. this.pingerTab.Controls.Add(this.btnExport);
  2580. this.pingerTab.Controls.Add(this.copyB);
  2581. this.pingerTab.Controls.Add(this.copyIPB);
  2582. this.pingerTab.Controls.Add(this.panel7);
  2583. this.pingerTab.Controls.Add(this.lblResults);
  2584. this.pingerTab.Controls.Add(this.btnShodan);
  2585. this.pingerTab.Controls.Add(this.btnPing);
  2586. this.pingerTab.Controls.Add(this.txtPingInput);
  2587. this.pingerTab.Controls.Add(this.lblPinger);
  2588. this.pingerTab.Controls.Add(this.pingerTitle);
  2589. this.pingerTab.Location = new System.Drawing.Point(4, 24);
  2590. this.pingerTab.Name = "pingerTab";
  2591. this.pingerTab.Padding = new System.Windows.Forms.Padding(3);
  2592. this.pingerTab.Size = new System.Drawing.Size(860, 611);
  2593. this.pingerTab.TabIndex = 13;
  2594. this.pingerTab.Text = "Pinger";
  2595. //
  2596. // btnSpeedtest
  2597. //
  2598. this.btnSpeedtest.BackColor = System.Drawing.Color.DodgerBlue;
  2599. this.btnSpeedtest.Enabled = false;
  2600. this.btnSpeedtest.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  2601. this.btnSpeedtest.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2602. this.btnSpeedtest.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2603. this.btnSpeedtest.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2604. this.btnSpeedtest.ForeColor = System.Drawing.Color.White;
  2605. this.btnSpeedtest.Location = new System.Drawing.Point(732, 14);
  2606. this.btnSpeedtest.Margin = new System.Windows.Forms.Padding(2);
  2607. this.btnSpeedtest.Name = "btnSpeedtest";
  2608. this.btnSpeedtest.Size = new System.Drawing.Size(110, 29);
  2609. this.btnSpeedtest.TabIndex = 85;
  2610. this.btnSpeedtest.Text = "Speed Test";
  2611. this.btnSpeedtest.UseVisualStyleBackColor = false;
  2612. this.btnSpeedtest.Visible = false;
  2613. this.btnSpeedtest.Click += new System.EventHandler(this.btnSpeedtest_Click);
  2614. //
  2615. // flushCacheB
  2616. //
  2617. this.flushCacheB.BackColor = System.Drawing.Color.DodgerBlue;
  2618. this.flushCacheB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  2619. this.flushCacheB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2620. this.flushCacheB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2621. this.flushCacheB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2622. this.flushCacheB.ForeColor = System.Drawing.Color.White;
  2623. this.flushCacheB.Location = new System.Drawing.Point(26, 512);
  2624. this.flushCacheB.Margin = new System.Windows.Forms.Padding(2);
  2625. this.flushCacheB.Name = "flushCacheB";
  2626. this.flushCacheB.Size = new System.Drawing.Size(177, 29);
  2627. this.flushCacheB.TabIndex = 84;
  2628. this.flushCacheB.Text = "Flush DNS cache";
  2629. this.flushCacheB.UseVisualStyleBackColor = false;
  2630. this.flushCacheB.Click += new System.EventHandler(this.button10_Click);
  2631. //
  2632. // btnExport
  2633. //
  2634. this.btnExport.BackColor = System.Drawing.Color.DodgerBlue;
  2635. this.btnExport.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  2636. this.btnExport.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2637. this.btnExport.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2638. this.btnExport.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2639. this.btnExport.ForeColor = System.Drawing.Color.White;
  2640. this.btnExport.Location = new System.Drawing.Point(463, 512);
  2641. this.btnExport.Margin = new System.Windows.Forms.Padding(2);
  2642. this.btnExport.Name = "btnExport";
  2643. this.btnExport.Size = new System.Drawing.Size(107, 29);
  2644. this.btnExport.TabIndex = 83;
  2645. this.btnExport.Text = "Export...";
  2646. this.btnExport.UseVisualStyleBackColor = false;
  2647. this.btnExport.Click += new System.EventHandler(this.btnExport_Click);
  2648. //
  2649. // copyB
  2650. //
  2651. this.copyB.BackColor = System.Drawing.Color.DodgerBlue;
  2652. this.copyB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  2653. this.copyB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2654. this.copyB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2655. this.copyB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2656. this.copyB.ForeColor = System.Drawing.Color.White;
  2657. this.copyB.Location = new System.Drawing.Point(265, 116);
  2658. this.copyB.Margin = new System.Windows.Forms.Padding(2);
  2659. this.copyB.Name = "copyB";
  2660. this.copyB.Size = new System.Drawing.Size(146, 31);
  2661. this.copyB.TabIndex = 82;
  2662. this.copyB.Text = "Copy IP";
  2663. this.copyB.UseVisualStyleBackColor = false;
  2664. this.copyB.Click += new System.EventHandler(this.button9_Click);
  2665. //
  2666. // copyIPB
  2667. //
  2668. this.copyIPB.BackColor = System.Drawing.Color.DodgerBlue;
  2669. this.copyIPB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  2670. this.copyIPB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2671. this.copyIPB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2672. this.copyIPB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2673. this.copyIPB.ForeColor = System.Drawing.Color.White;
  2674. this.copyIPB.Location = new System.Drawing.Point(415, 116);
  2675. this.copyIPB.Margin = new System.Windows.Forms.Padding(2);
  2676. this.copyIPB.Name = "copyIPB";
  2677. this.copyIPB.Size = new System.Drawing.Size(146, 31);
  2678. this.copyIPB.TabIndex = 81;
  2679. this.copyIPB.Text = "Copy";
  2680. this.copyIPB.UseVisualStyleBackColor = false;
  2681. this.copyIPB.Click += new System.EventHandler(this.button7_Click);
  2682. //
  2683. // panel7
  2684. //
  2685. this.panel7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2686. this.panel7.Controls.Add(this.listPingResults);
  2687. this.panel7.Location = new System.Drawing.Point(26, 200);
  2688. this.panel7.Name = "panel7";
  2689. this.panel7.Size = new System.Drawing.Size(544, 307);
  2690. this.panel7.TabIndex = 80;
  2691. //
  2692. // listPingResults
  2693. //
  2694. this.listPingResults.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  2695. this.listPingResults.BorderStyle = System.Windows.Forms.BorderStyle.None;
  2696. this.listPingResults.Dock = System.Windows.Forms.DockStyle.Fill;
  2697. this.listPingResults.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2698. this.listPingResults.ForeColor = System.Drawing.Color.White;
  2699. this.listPingResults.FormattingEnabled = true;
  2700. this.listPingResults.HorizontalScrollbar = true;
  2701. this.listPingResults.ItemHeight = 21;
  2702. this.listPingResults.Location = new System.Drawing.Point(0, 0);
  2703. this.listPingResults.Margin = new System.Windows.Forms.Padding(2);
  2704. this.listPingResults.Name = "listPingResults";
  2705. this.listPingResults.Size = new System.Drawing.Size(542, 305);
  2706. this.listPingResults.TabIndex = 79;
  2707. //
  2708. // lblResults
  2709. //
  2710. this.lblResults.AutoSize = true;
  2711. this.lblResults.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2712. this.lblResults.ForeColor = System.Drawing.Color.Silver;
  2713. this.lblResults.Location = new System.Drawing.Point(21, 176);
  2714. this.lblResults.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2715. this.lblResults.Name = "lblResults";
  2716. this.lblResults.Size = new System.Drawing.Size(62, 21);
  2717. this.lblResults.TabIndex = 60;
  2718. this.lblResults.Tag = "";
  2719. this.lblResults.Text = "Results";
  2720. //
  2721. // btnShodan
  2722. //
  2723. this.btnShodan.BackColor = System.Drawing.Color.DodgerBlue;
  2724. this.btnShodan.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  2725. this.btnShodan.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2726. this.btnShodan.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2727. this.btnShodan.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2728. this.btnShodan.ForeColor = System.Drawing.Color.White;
  2729. this.btnShodan.Location = new System.Drawing.Point(101, 116);
  2730. this.btnShodan.Margin = new System.Windows.Forms.Padding(2);
  2731. this.btnShodan.Name = "btnShodan";
  2732. this.btnShodan.Size = new System.Drawing.Size(160, 31);
  2733. this.btnShodan.TabIndex = 59;
  2734. this.btnShodan.Text = "Check on SHODAN.io";
  2735. this.btnShodan.UseVisualStyleBackColor = false;
  2736. this.btnShodan.Click += new System.EventHandler(this.btnShodan_Click);
  2737. //
  2738. // btnPing
  2739. //
  2740. this.btnPing.BackColor = System.Drawing.Color.DodgerBlue;
  2741. this.btnPing.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  2742. this.btnPing.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2743. this.btnPing.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2744. this.btnPing.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2745. this.btnPing.ForeColor = System.Drawing.Color.White;
  2746. this.btnPing.Location = new System.Drawing.Point(26, 116);
  2747. this.btnPing.Margin = new System.Windows.Forms.Padding(2);
  2748. this.btnPing.Name = "btnPing";
  2749. this.btnPing.Size = new System.Drawing.Size(71, 31);
  2750. this.btnPing.TabIndex = 58;
  2751. this.btnPing.Text = "Ping";
  2752. this.btnPing.UseVisualStyleBackColor = false;
  2753. this.btnPing.Click += new System.EventHandler(this.btnPing_Click);
  2754. //
  2755. // txtPingInput
  2756. //
  2757. this.txtPingInput.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  2758. this.txtPingInput.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2759. this.txtPingInput.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2760. this.txtPingInput.ForeColor = System.Drawing.Color.White;
  2761. this.txtPingInput.Location = new System.Drawing.Point(26, 83);
  2762. this.txtPingInput.Margin = new System.Windows.Forms.Padding(2);
  2763. this.txtPingInput.Name = "txtPingInput";
  2764. this.txtPingInput.Size = new System.Drawing.Size(535, 29);
  2765. this.txtPingInput.TabIndex = 56;
  2766. this.txtPingInput.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  2767. this.txtPingInput.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtPingInput_KeyDown);
  2768. //
  2769. // lblPinger
  2770. //
  2771. this.lblPinger.AutoSize = true;
  2772. this.lblPinger.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2773. this.lblPinger.ForeColor = System.Drawing.Color.Silver;
  2774. this.lblPinger.Location = new System.Drawing.Point(23, 60);
  2775. this.lblPinger.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2776. this.lblPinger.Name = "lblPinger";
  2777. this.lblPinger.Size = new System.Drawing.Size(139, 21);
  2778. this.lblPinger.TabIndex = 57;
  2779. this.lblPinger.Tag = "";
  2780. this.lblPinger.Text = "IP / Domain name";
  2781. //
  2782. // pingerTitle
  2783. //
  2784. this.pingerTitle.AutoSize = true;
  2785. this.pingerTitle.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2786. this.pingerTitle.ForeColor = System.Drawing.Color.DodgerBlue;
  2787. this.pingerTitle.Location = new System.Drawing.Point(6, 10);
  2788. this.pingerTitle.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2789. this.pingerTitle.Name = "pingerTitle";
  2790. this.pingerTitle.Size = new System.Drawing.Size(393, 28);
  2791. this.pingerTitle.TabIndex = 47;
  2792. this.pingerTitle.Tag = "themeable";
  2793. this.pingerTitle.Text = "Ping IP addresses and assess your latency";
  2794. //
  2795. // hostsEditorTab
  2796. //
  2797. this.hostsEditorTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  2798. this.hostsEditorTab.Controls.Add(this.panel4);
  2799. this.hostsEditorTab.Controls.Add(this.hostsTitle);
  2800. this.hostsEditorTab.Controls.Add(this.linkLocate);
  2801. this.hostsEditorTab.Location = new System.Drawing.Point(4, 24);
  2802. this.hostsEditorTab.Margin = new System.Windows.Forms.Padding(2);
  2803. this.hostsEditorTab.Name = "hostsEditorTab";
  2804. this.hostsEditorTab.Padding = new System.Windows.Forms.Padding(2);
  2805. this.hostsEditorTab.Size = new System.Drawing.Size(860, 611);
  2806. this.hostsEditorTab.TabIndex = 9;
  2807. this.hostsEditorTab.Text = "Hosts";
  2808. //
  2809. // panel4
  2810. //
  2811. this.panel4.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  2812. | System.Windows.Forms.AnchorStyles.Left)
  2813. | System.Windows.Forms.AnchorStyles.Right)));
  2814. this.panel4.Controls.Add(this.lblAdblockSub);
  2815. this.panel4.Controls.Add(this.linkAdvancedEdit);
  2816. this.panel4.Controls.Add(this.lblAdblock);
  2817. this.panel4.Controls.Add(this.linkRestoreDefault);
  2818. this.panel4.Controls.Add(this.adblockUlti);
  2819. this.panel4.Controls.Add(this.adblockP);
  2820. this.panel4.Controls.Add(this.adblockS);
  2821. this.panel4.Controls.Add(this.adblockBasic);
  2822. this.panel4.Controls.Add(this.lblLock);
  2823. this.panel4.Controls.Add(this.chkReadOnly);
  2824. this.panel4.Controls.Add(this.panelList);
  2825. this.panel4.Controls.Add(this.chkBlock);
  2826. this.panel4.Controls.Add(this.refreshHostsB);
  2827. this.panel4.Controls.Add(this.removeHostB);
  2828. this.panel4.Controls.Add(this.removeAllHostsB);
  2829. this.panel4.Controls.Add(this.addHostB);
  2830. this.panel4.Controls.Add(this.txtIP);
  2831. this.panel4.Controls.Add(this.txtDomain);
  2832. this.panel4.Controls.Add(this.lblDomain);
  2833. this.panel4.Controls.Add(this.lblIP);
  2834. this.panel4.Location = new System.Drawing.Point(6, 70);
  2835. this.panel4.Margin = new System.Windows.Forms.Padding(2);
  2836. this.panel4.Name = "panel4";
  2837. this.panel4.Size = new System.Drawing.Size(848, 535);
  2838. this.panel4.TabIndex = 53;
  2839. //
  2840. // lblAdblockSub
  2841. //
  2842. this.lblAdblockSub.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2843. this.lblAdblockSub.ForeColor = System.Drawing.Color.Silver;
  2844. this.lblAdblockSub.Location = new System.Drawing.Point(325, 279);
  2845. this.lblAdblockSub.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2846. this.lblAdblockSub.Name = "lblAdblockSub";
  2847. this.lblAdblockSub.Size = new System.Drawing.Size(313, 25);
  2848. this.lblAdblockSub.TabIndex = 68;
  2849. this.lblAdblockSub.Tag = "";
  2850. this.lblAdblockSub.Text = "(will delete your current config)";
  2851. //
  2852. // linkAdvancedEdit
  2853. //
  2854. this.linkAdvancedEdit.ActiveLinkColor = System.Drawing.Color.WhiteSmoke;
  2855. this.linkAdvancedEdit.AutoSize = true;
  2856. this.linkAdvancedEdit.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2857. this.linkAdvancedEdit.ForeColor = System.Drawing.Color.Silver;
  2858. this.linkAdvancedEdit.LinkColor = System.Drawing.Color.Silver;
  2859. this.linkAdvancedEdit.Location = new System.Drawing.Point(1, 428);
  2860. this.linkAdvancedEdit.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2861. this.linkAdvancedEdit.Name = "linkAdvancedEdit";
  2862. this.linkAdvancedEdit.Size = new System.Drawing.Size(132, 21);
  2863. this.linkAdvancedEdit.TabIndex = 49;
  2864. this.linkAdvancedEdit.TabStop = true;
  2865. this.linkAdvancedEdit.Tag = "";
  2866. this.linkAdvancedEdit.Text = "Advanced editor";
  2867. this.linkAdvancedEdit.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  2868. this.linkAdvancedEdit.VisitedLinkColor = System.Drawing.Color.Silver;
  2869. this.linkAdvancedEdit.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel3_LinkClicked);
  2870. //
  2871. // lblAdblock
  2872. //
  2873. this.lblAdblock.Font = new System.Drawing.Font("Segoe UI Semibold", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2874. this.lblAdblock.ForeColor = System.Drawing.Color.DodgerBlue;
  2875. this.lblAdblock.Location = new System.Drawing.Point(322, 254);
  2876. this.lblAdblock.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2877. this.lblAdblock.Name = "lblAdblock";
  2878. this.lblAdblock.Size = new System.Drawing.Size(281, 25);
  2879. this.lblAdblock.TabIndex = 67;
  2880. this.lblAdblock.Tag = "themeable";
  2881. this.lblAdblock.Text = "Pre-made adblocks";
  2882. //
  2883. // linkRestoreDefault
  2884. //
  2885. this.linkRestoreDefault.ActiveLinkColor = System.Drawing.Color.WhiteSmoke;
  2886. this.linkRestoreDefault.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  2887. this.linkRestoreDefault.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2888. this.linkRestoreDefault.ForeColor = System.Drawing.Color.Silver;
  2889. this.linkRestoreDefault.LinkColor = System.Drawing.Color.Silver;
  2890. this.linkRestoreDefault.Location = new System.Drawing.Point(354, 514);
  2891. this.linkRestoreDefault.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2892. this.linkRestoreDefault.Name = "linkRestoreDefault";
  2893. this.linkRestoreDefault.Size = new System.Drawing.Size(494, 21);
  2894. this.linkRestoreDefault.TabIndex = 51;
  2895. this.linkRestoreDefault.TabStop = true;
  2896. this.linkRestoreDefault.Tag = "";
  2897. this.linkRestoreDefault.Text = "Restore default";
  2898. this.linkRestoreDefault.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  2899. this.linkRestoreDefault.VisitedLinkColor = System.Drawing.Color.Silver;
  2900. this.linkRestoreDefault.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel4_LinkClicked);
  2901. //
  2902. // adblockUlti
  2903. //
  2904. this.adblockUlti.BackColor = System.Drawing.Color.DodgerBlue;
  2905. this.adblockUlti.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  2906. this.adblockUlti.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2907. this.adblockUlti.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2908. this.adblockUlti.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2909. this.adblockUlti.ForeColor = System.Drawing.Color.White;
  2910. this.adblockUlti.Location = new System.Drawing.Point(485, 351);
  2911. this.adblockUlti.Margin = new System.Windows.Forms.Padding(2);
  2912. this.adblockUlti.Name = "adblockUlti";
  2913. this.adblockUlti.Size = new System.Drawing.Size(153, 31);
  2914. this.adblockUlti.TabIndex = 66;
  2915. this.adblockUlti.Text = "AdBlock Ultimate\r\n";
  2916. this.adblockUlti.UseVisualStyleBackColor = false;
  2917. this.adblockUlti.Click += new System.EventHandler(this.button4_Click);
  2918. //
  2919. // adblockP
  2920. //
  2921. this.adblockP.BackColor = System.Drawing.Color.DodgerBlue;
  2922. this.adblockP.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  2923. this.adblockP.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2924. this.adblockP.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2925. this.adblockP.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2926. this.adblockP.ForeColor = System.Drawing.Color.White;
  2927. this.adblockP.Location = new System.Drawing.Point(485, 316);
  2928. this.adblockP.Margin = new System.Windows.Forms.Padding(2);
  2929. this.adblockP.Name = "adblockP";
  2930. this.adblockP.Size = new System.Drawing.Size(153, 31);
  2931. this.adblockP.TabIndex = 65;
  2932. this.adblockP.Text = "AdBlock + Porn";
  2933. this.adblockP.UseVisualStyleBackColor = false;
  2934. this.adblockP.Click += new System.EventHandler(this.button3_Click);
  2935. //
  2936. // adblockS
  2937. //
  2938. this.adblockS.BackColor = System.Drawing.Color.DodgerBlue;
  2939. this.adblockS.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  2940. this.adblockS.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2941. this.adblockS.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2942. this.adblockS.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2943. this.adblockS.ForeColor = System.Drawing.Color.White;
  2944. this.adblockS.Location = new System.Drawing.Point(327, 351);
  2945. this.adblockS.Margin = new System.Windows.Forms.Padding(2);
  2946. this.adblockS.Name = "adblockS";
  2947. this.adblockS.Size = new System.Drawing.Size(153, 31);
  2948. this.adblockS.TabIndex = 64;
  2949. this.adblockS.Text = "AdBlock + Social";
  2950. this.adblockS.UseVisualStyleBackColor = false;
  2951. this.adblockS.Click += new System.EventHandler(this.button2_Click);
  2952. //
  2953. // adblockBasic
  2954. //
  2955. this.adblockBasic.BackColor = System.Drawing.Color.DodgerBlue;
  2956. this.adblockBasic.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  2957. this.adblockBasic.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2958. this.adblockBasic.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2959. this.adblockBasic.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2960. this.adblockBasic.ForeColor = System.Drawing.Color.White;
  2961. this.adblockBasic.Location = new System.Drawing.Point(327, 316);
  2962. this.adblockBasic.Margin = new System.Windows.Forms.Padding(2);
  2963. this.adblockBasic.Name = "adblockBasic";
  2964. this.adblockBasic.Size = new System.Drawing.Size(153, 31);
  2965. this.adblockBasic.TabIndex = 63;
  2966. this.adblockBasic.Text = "AdBlock Basic";
  2967. this.adblockBasic.UseVisualStyleBackColor = false;
  2968. this.adblockBasic.Click += new System.EventHandler(this.button1_Click);
  2969. //
  2970. // lblLock
  2971. //
  2972. this.lblLock.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2973. this.lblLock.ForeColor = System.Drawing.Color.Silver;
  2974. this.lblLock.Location = new System.Drawing.Point(325, 182);
  2975. this.lblLock.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2976. this.lblLock.Name = "lblLock";
  2977. this.lblLock.Size = new System.Drawing.Size(315, 55);
  2978. this.lblLock.TabIndex = 62;
  2979. this.lblLock.Tag = "";
  2980. this.lblLock.Text = "Protect your HOSTS file by locking it.";
  2981. //
  2982. // panelList
  2983. //
  2984. this.panelList.Controls.Add(this.listHostEntries);
  2985. this.panelList.Location = new System.Drawing.Point(5, 3);
  2986. this.panelList.Name = "panelList";
  2987. this.panelList.Size = new System.Drawing.Size(312, 388);
  2988. this.panelList.TabIndex = 60;
  2989. //
  2990. // listHostEntries
  2991. //
  2992. this.listHostEntries.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  2993. this.listHostEntries.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2994. this.listHostEntries.Dock = System.Windows.Forms.DockStyle.Fill;
  2995. this.listHostEntries.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2996. this.listHostEntries.ForeColor = System.Drawing.Color.White;
  2997. this.listHostEntries.FormattingEnabled = true;
  2998. this.listHostEntries.HorizontalScrollbar = true;
  2999. this.listHostEntries.ItemHeight = 21;
  3000. this.listHostEntries.Location = new System.Drawing.Point(0, 0);
  3001. this.listHostEntries.Margin = new System.Windows.Forms.Padding(2);
  3002. this.listHostEntries.Name = "listHostEntries";
  3003. this.listHostEntries.Size = new System.Drawing.Size(312, 388);
  3004. this.listHostEntries.TabIndex = 52;
  3005. //
  3006. // refreshHostsB
  3007. //
  3008. this.refreshHostsB.BackColor = System.Drawing.Color.DodgerBlue;
  3009. this.refreshHostsB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  3010. this.refreshHostsB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3011. this.refreshHostsB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3012. this.refreshHostsB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3013. this.refreshHostsB.ForeColor = System.Drawing.Color.White;
  3014. this.refreshHostsB.Location = new System.Drawing.Point(5, 395);
  3015. this.refreshHostsB.Margin = new System.Windows.Forms.Padding(2);
  3016. this.refreshHostsB.Name = "refreshHostsB";
  3017. this.refreshHostsB.Size = new System.Drawing.Size(152, 31);
  3018. this.refreshHostsB.TabIndex = 55;
  3019. this.refreshHostsB.Text = "Refresh";
  3020. this.refreshHostsB.UseVisualStyleBackColor = false;
  3021. this.refreshHostsB.Click += new System.EventHandler(this.button41_Click);
  3022. //
  3023. // removeHostB
  3024. //
  3025. this.removeHostB.BackColor = System.Drawing.Color.DodgerBlue;
  3026. this.removeHostB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  3027. this.removeHostB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3028. this.removeHostB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3029. this.removeHostB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3030. this.removeHostB.ForeColor = System.Drawing.Color.White;
  3031. this.removeHostB.Location = new System.Drawing.Point(161, 395);
  3032. this.removeHostB.Margin = new System.Windows.Forms.Padding(2);
  3033. this.removeHostB.Name = "removeHostB";
  3034. this.removeHostB.Size = new System.Drawing.Size(156, 31);
  3035. this.removeHostB.TabIndex = 54;
  3036. this.removeHostB.Text = "Remove";
  3037. this.removeHostB.UseVisualStyleBackColor = false;
  3038. this.removeHostB.Click += new System.EventHandler(this.button42_Click);
  3039. //
  3040. // removeAllHostsB
  3041. //
  3042. this.removeAllHostsB.BackColor = System.Drawing.Color.DodgerBlue;
  3043. this.removeAllHostsB.Enabled = false;
  3044. this.removeAllHostsB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  3045. this.removeAllHostsB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3046. this.removeAllHostsB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3047. this.removeAllHostsB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3048. this.removeAllHostsB.ForeColor = System.Drawing.Color.White;
  3049. this.removeAllHostsB.Location = new System.Drawing.Point(161, 430);
  3050. this.removeAllHostsB.Margin = new System.Windows.Forms.Padding(2);
  3051. this.removeAllHostsB.Name = "removeAllHostsB";
  3052. this.removeAllHostsB.Size = new System.Drawing.Size(156, 31);
  3053. this.removeAllHostsB.TabIndex = 53;
  3054. this.removeAllHostsB.Text = "Remove all";
  3055. this.removeAllHostsB.UseVisualStyleBackColor = false;
  3056. this.removeAllHostsB.Visible = false;
  3057. this.removeAllHostsB.Click += new System.EventHandler(this.button46_Click);
  3058. //
  3059. // addHostB
  3060. //
  3061. this.addHostB.BackColor = System.Drawing.Color.DodgerBlue;
  3062. this.addHostB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  3063. this.addHostB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3064. this.addHostB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3065. this.addHostB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3066. this.addHostB.ForeColor = System.Drawing.Color.White;
  3067. this.addHostB.Location = new System.Drawing.Point(551, 110);
  3068. this.addHostB.Margin = new System.Windows.Forms.Padding(2);
  3069. this.addHostB.Name = "addHostB";
  3070. this.addHostB.Size = new System.Drawing.Size(87, 31);
  3071. this.addHostB.TabIndex = 57;
  3072. this.addHostB.Text = "Add";
  3073. this.addHostB.UseVisualStyleBackColor = false;
  3074. this.addHostB.Click += new System.EventHandler(this.button47_Click);
  3075. //
  3076. // txtIP
  3077. //
  3078. this.txtIP.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3079. this.txtIP.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  3080. this.txtIP.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3081. this.txtIP.ForeColor = System.Drawing.Color.White;
  3082. this.txtIP.Location = new System.Drawing.Point(328, 23);
  3083. this.txtIP.Margin = new System.Windows.Forms.Padding(2);
  3084. this.txtIP.Name = "txtIP";
  3085. this.txtIP.Size = new System.Drawing.Size(310, 29);
  3086. this.txtIP.TabIndex = 0;
  3087. this.txtIP.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  3088. //
  3089. // txtDomain
  3090. //
  3091. this.txtDomain.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3092. this.txtDomain.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  3093. this.txtDomain.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3094. this.txtDomain.ForeColor = System.Drawing.Color.White;
  3095. this.txtDomain.Location = new System.Drawing.Point(328, 77);
  3096. this.txtDomain.Margin = new System.Windows.Forms.Padding(2);
  3097. this.txtDomain.Name = "txtDomain";
  3098. this.txtDomain.Size = new System.Drawing.Size(310, 29);
  3099. this.txtDomain.TabIndex = 1;
  3100. this.txtDomain.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  3101. //
  3102. // lblDomain
  3103. //
  3104. this.lblDomain.AutoSize = true;
  3105. this.lblDomain.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3106. this.lblDomain.ForeColor = System.Drawing.Color.DodgerBlue;
  3107. this.lblDomain.Location = new System.Drawing.Point(323, 54);
  3108. this.lblDomain.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3109. this.lblDomain.Name = "lblDomain";
  3110. this.lblDomain.Size = new System.Drawing.Size(66, 21);
  3111. this.lblDomain.TabIndex = 55;
  3112. this.lblDomain.Tag = "themeable";
  3113. this.lblDomain.Text = "Domain";
  3114. //
  3115. // lblIP
  3116. //
  3117. this.lblIP.AutoSize = true;
  3118. this.lblIP.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3119. this.lblIP.ForeColor = System.Drawing.Color.DodgerBlue;
  3120. this.lblIP.Location = new System.Drawing.Point(323, 0);
  3121. this.lblIP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3122. this.lblIP.Name = "lblIP";
  3123. this.lblIP.Size = new System.Drawing.Size(85, 21);
  3124. this.lblIP.TabIndex = 53;
  3125. this.lblIP.Tag = "themeable";
  3126. this.lblIP.Text = "IP address";
  3127. //
  3128. // hostsTitle
  3129. //
  3130. this.hostsTitle.AutoSize = true;
  3131. this.hostsTitle.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3132. this.hostsTitle.ForeColor = System.Drawing.Color.DodgerBlue;
  3133. this.hostsTitle.Location = new System.Drawing.Point(6, 10);
  3134. this.hostsTitle.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3135. this.hostsTitle.Name = "hostsTitle";
  3136. this.hostsTitle.Size = new System.Drawing.Size(182, 28);
  3137. this.hostsTitle.TabIndex = 3;
  3138. this.hostsTitle.Tag = "themeable";
  3139. this.hostsTitle.Text = "Edit your hosts file";
  3140. //
  3141. // linkLocate
  3142. //
  3143. this.linkLocate.ActiveLinkColor = System.Drawing.Color.WhiteSmoke;
  3144. this.linkLocate.AutoSize = true;
  3145. this.linkLocate.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3146. this.linkLocate.ForeColor = System.Drawing.Color.Silver;
  3147. this.linkLocate.LinkColor = System.Drawing.Color.Silver;
  3148. this.linkLocate.Location = new System.Drawing.Point(8, 38);
  3149. this.linkLocate.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3150. this.linkLocate.Name = "linkLocate";
  3151. this.linkLocate.Size = new System.Drawing.Size(59, 21);
  3152. this.linkLocate.TabIndex = 47;
  3153. this.linkLocate.TabStop = true;
  3154. this.linkLocate.Tag = "";
  3155. this.linkLocate.Text = "Locate";
  3156. this.linkLocate.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3157. this.linkLocate.VisitedLinkColor = System.Drawing.Color.Silver;
  3158. this.linkLocate.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel2_LinkClicked);
  3159. //
  3160. // registryFixerTab
  3161. //
  3162. this.registryFixerTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3163. this.registryFixerTab.Controls.Add(this.panel2);
  3164. this.registryFixerTab.Controls.Add(this.registryTitle);
  3165. this.registryFixerTab.Location = new System.Drawing.Point(4, 24);
  3166. this.registryFixerTab.Margin = new System.Windows.Forms.Padding(2);
  3167. this.registryFixerTab.Name = "registryFixerTab";
  3168. this.registryFixerTab.Padding = new System.Windows.Forms.Padding(2);
  3169. this.registryFixerTab.Size = new System.Drawing.Size(860, 611);
  3170. this.registryFixerTab.TabIndex = 8;
  3171. this.registryFixerTab.Text = "Registry";
  3172. //
  3173. // panel2
  3174. //
  3175. this.panel2.Controls.Add(this.regFixB);
  3176. this.panel2.Controls.Add(this.regLbl);
  3177. this.panel2.Controls.Add(this.checkRestartExplorer);
  3178. this.panel2.Controls.Add(this.checkRegistryEditor);
  3179. this.panel2.Controls.Add(this.checkEnableAll);
  3180. this.panel2.Controls.Add(this.checkContextMenu);
  3181. this.panel2.Controls.Add(this.checkTaskManager);
  3182. this.panel2.Controls.Add(this.checkCommandPrompt);
  3183. this.panel2.Controls.Add(this.checkFirewall);
  3184. this.panel2.Controls.Add(this.checkRunDialog);
  3185. this.panel2.Controls.Add(this.checkFolderOptions);
  3186. this.panel2.Controls.Add(this.checkControlPanel);
  3187. this.panel2.Location = new System.Drawing.Point(11, 40);
  3188. this.panel2.Margin = new System.Windows.Forms.Padding(2);
  3189. this.panel2.Name = "panel2";
  3190. this.panel2.Size = new System.Drawing.Size(755, 286);
  3191. this.panel2.TabIndex = 48;
  3192. //
  3193. // regFixB
  3194. //
  3195. this.regFixB.BackColor = System.Drawing.Color.DodgerBlue;
  3196. this.regFixB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  3197. this.regFixB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3198. this.regFixB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3199. this.regFixB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3200. this.regFixB.ForeColor = System.Drawing.Color.White;
  3201. this.regFixB.Location = new System.Drawing.Point(29, 252);
  3202. this.regFixB.Margin = new System.Windows.Forms.Padding(2);
  3203. this.regFixB.Name = "regFixB";
  3204. this.regFixB.Size = new System.Drawing.Size(108, 31);
  3205. this.regFixB.TabIndex = 49;
  3206. this.regFixB.Text = "Fix";
  3207. this.regFixB.UseVisualStyleBackColor = false;
  3208. this.regFixB.Click += new System.EventHandler(this.button33_Click);
  3209. //
  3210. // regLbl
  3211. //
  3212. this.regLbl.AutoSize = true;
  3213. this.regLbl.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3214. this.regLbl.ForeColor = System.Drawing.Color.Silver;
  3215. this.regLbl.Location = new System.Drawing.Point(94, 202);
  3216. this.regLbl.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3217. this.regLbl.Name = "regLbl";
  3218. this.regLbl.Size = new System.Drawing.Size(236, 21);
  3219. this.regLbl.TabIndex = 51;
  3220. this.regLbl.Tag = "";
  3221. this.regLbl.Text = "(some changes might need this)";
  3222. this.regLbl.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  3223. //
  3224. // registryTitle
  3225. //
  3226. this.registryTitle.AutoSize = true;
  3227. this.registryTitle.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3228. this.registryTitle.ForeColor = System.Drawing.Color.DodgerBlue;
  3229. this.registryTitle.Location = new System.Drawing.Point(6, 10);
  3230. this.registryTitle.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3231. this.registryTitle.Name = "registryTitle";
  3232. this.registryTitle.Size = new System.Drawing.Size(260, 28);
  3233. this.registryTitle.TabIndex = 47;
  3234. this.registryTitle.Tag = "themeable";
  3235. this.registryTitle.Text = "Fix common registry issues";
  3236. //
  3237. // integratorTab
  3238. //
  3239. this.integratorTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3240. this.integratorTab.Controls.Add(this.synapse);
  3241. this.integratorTab.Location = new System.Drawing.Point(4, 24);
  3242. this.integratorTab.Margin = new System.Windows.Forms.Padding(2);
  3243. this.integratorTab.Name = "integratorTab";
  3244. this.integratorTab.Padding = new System.Windows.Forms.Padding(2);
  3245. this.integratorTab.Size = new System.Drawing.Size(860, 611);
  3246. this.integratorTab.TabIndex = 10;
  3247. this.integratorTab.Text = "Integrator";
  3248. //
  3249. // synapse
  3250. //
  3251. this.synapse.Alignment = System.Windows.Forms.TabAlignment.Bottom;
  3252. this.synapse.Controls.Add(this.integratorInfoTab);
  3253. this.synapse.Controls.Add(this.tabPage8);
  3254. this.synapse.Controls.Add(this.tabPage9);
  3255. this.synapse.Controls.Add(this.tabPage10);
  3256. this.synapse.Controls.Add(this.tabPage11);
  3257. this.synapse.Dock = System.Windows.Forms.DockStyle.Fill;
  3258. this.synapse.Location = new System.Drawing.Point(2, 2);
  3259. this.synapse.Margin = new System.Windows.Forms.Padding(2);
  3260. this.synapse.Multiline = true;
  3261. this.synapse.Name = "synapse";
  3262. this.synapse.SelectedIndex = 0;
  3263. this.synapse.Size = new System.Drawing.Size(856, 609);
  3264. this.synapse.TabIndex = 0;
  3265. //
  3266. // integratorInfoTab
  3267. //
  3268. this.integratorInfoTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3269. this.integratorInfoTab.Controls.Add(this.integrator7);
  3270. this.integratorInfoTab.Controls.Add(this.integrator6);
  3271. this.integratorInfoTab.Controls.Add(this.integrator5);
  3272. this.integratorInfoTab.Controls.Add(this.integrator4);
  3273. this.integratorInfoTab.Controls.Add(this.integrator3);
  3274. this.integratorInfoTab.Controls.Add(this.integrator2);
  3275. this.integratorInfoTab.Controls.Add(this.integrator1);
  3276. this.integratorInfoTab.Location = new System.Drawing.Point(4, 4);
  3277. this.integratorInfoTab.Margin = new System.Windows.Forms.Padding(2);
  3278. this.integratorInfoTab.Name = "integratorInfoTab";
  3279. this.integratorInfoTab.Padding = new System.Windows.Forms.Padding(2);
  3280. this.integratorInfoTab.Size = new System.Drawing.Size(848, 581);
  3281. this.integratorInfoTab.TabIndex = 0;
  3282. this.integratorInfoTab.Text = "Info";
  3283. //
  3284. // integrator7
  3285. //
  3286. this.integrator7.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3287. this.integrator7.ForeColor = System.Drawing.Color.Silver;
  3288. this.integrator7.Location = new System.Drawing.Point(6, 225);
  3289. this.integrator7.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3290. this.integrator7.Name = "integrator7";
  3291. this.integrator7.Size = new System.Drawing.Size(763, 233);
  3292. this.integrator7.TabIndex = 10;
  3293. this.integrator7.Tag = "";
  3294. this.integrator7.Text = resources.GetString("integrator7.Text");
  3295. //
  3296. // integrator6
  3297. //
  3298. this.integrator6.AutoSize = true;
  3299. this.integrator6.Font = new System.Drawing.Font("Segoe UI Semibold", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3300. this.integrator6.ForeColor = System.Drawing.Color.Silver;
  3301. this.integrator6.Location = new System.Drawing.Point(38, 183);
  3302. this.integrator6.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3303. this.integrator6.Name = "integrator6";
  3304. this.integrator6.Size = new System.Drawing.Size(122, 25);
  3305. this.integrator6.TabIndex = 9;
  3306. this.integrator6.Tag = "";
  3307. this.integrator6.Text = "• Commands";
  3308. //
  3309. // integrator5
  3310. //
  3311. this.integrator5.AutoSize = true;
  3312. this.integrator5.Font = new System.Drawing.Font("Segoe UI Semibold", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3313. this.integrator5.ForeColor = System.Drawing.Color.Silver;
  3314. this.integrator5.Location = new System.Drawing.Point(38, 158);
  3315. this.integrator5.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3316. this.integrator5.Name = "integrator5";
  3317. this.integrator5.Size = new System.Drawing.Size(157, 25);
  3318. this.integrator5.TabIndex = 8;
  3319. this.integrator5.Tag = "";
  3320. this.integrator5.Text = "• Any type of file";
  3321. //
  3322. // integrator4
  3323. //
  3324. this.integrator4.AutoSize = true;
  3325. this.integrator4.Font = new System.Drawing.Font("Segoe UI Semibold", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3326. this.integrator4.ForeColor = System.Drawing.Color.Silver;
  3327. this.integrator4.Location = new System.Drawing.Point(38, 132);
  3328. this.integrator4.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3329. this.integrator4.Name = "integrator4";
  3330. this.integrator4.Size = new System.Drawing.Size(181, 25);
  3331. this.integrator4.TabIndex = 7;
  3332. this.integrator4.Tag = "";
  3333. this.integrator4.Text = "• Links to webpages";
  3334. //
  3335. // integrator3
  3336. //
  3337. this.integrator3.AutoSize = true;
  3338. this.integrator3.Font = new System.Drawing.Font("Segoe UI Semibold", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3339. this.integrator3.ForeColor = System.Drawing.Color.Silver;
  3340. this.integrator3.Location = new System.Drawing.Point(38, 106);
  3341. this.integrator3.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3342. this.integrator3.Name = "integrator3";
  3343. this.integrator3.Size = new System.Drawing.Size(194, 25);
  3344. this.integrator3.TabIndex = 6;
  3345. this.integrator3.Tag = "";
  3346. this.integrator3.Text = "• Shortcuts to folders";
  3347. //
  3348. // integrator2
  3349. //
  3350. this.integrator2.AutoSize = true;
  3351. this.integrator2.Font = new System.Drawing.Font("Segoe UI Semibold", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3352. this.integrator2.ForeColor = System.Drawing.Color.Silver;
  3353. this.integrator2.Location = new System.Drawing.Point(38, 81);
  3354. this.integrator2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3355. this.integrator2.Name = "integrator2";
  3356. this.integrator2.Size = new System.Drawing.Size(138, 25);
  3357. this.integrator2.TabIndex = 5;
  3358. this.integrator2.Tag = "";
  3359. this.integrator2.Text = "• Any program";
  3360. //
  3361. // integrator1
  3362. //
  3363. this.integrator1.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3364. this.integrator1.ForeColor = System.Drawing.Color.Silver;
  3365. this.integrator1.Location = new System.Drawing.Point(6, 10);
  3366. this.integrator1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3367. this.integrator1.Name = "integrator1";
  3368. this.integrator1.Size = new System.Drawing.Size(419, 61);
  3369. this.integrator1.TabIndex = 4;
  3370. this.integrator1.Tag = "";
  3371. this.integrator1.Text = "Integrator is able to add fully-customized items in Desktop right-click menu:";
  3372. //
  3373. // tabPage8
  3374. //
  3375. this.tabPage8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3376. this.tabPage8.Controls.Add(this.btnAddItem);
  3377. this.tabPage8.Controls.Add(this.itemnamegroup);
  3378. this.tabPage8.Controls.Add(this.security);
  3379. this.tabPage8.Controls.Add(this.itemposition);
  3380. this.tabPage8.Controls.Add(this.icontoaddgroup);
  3381. this.tabPage8.Controls.Add(this.itemtoaddgroup);
  3382. this.tabPage8.Controls.Add(this.itemtype);
  3383. this.tabPage8.Controls.Add(this.addItemL);
  3384. this.tabPage8.Location = new System.Drawing.Point(4, 4);
  3385. this.tabPage8.Margin = new System.Windows.Forms.Padding(2);
  3386. this.tabPage8.Name = "tabPage8";
  3387. this.tabPage8.Padding = new System.Windows.Forms.Padding(2);
  3388. this.tabPage8.Size = new System.Drawing.Size(848, 581);
  3389. this.tabPage8.TabIndex = 1;
  3390. this.tabPage8.Text = "Add/Modify";
  3391. //
  3392. // btnAddItem
  3393. //
  3394. this.btnAddItem.BackColor = System.Drawing.Color.DodgerBlue;
  3395. this.btnAddItem.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  3396. this.btnAddItem.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3397. this.btnAddItem.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3398. this.btnAddItem.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3399. this.btnAddItem.ForeColor = System.Drawing.Color.White;
  3400. this.btnAddItem.Location = new System.Drawing.Point(465, 473);
  3401. this.btnAddItem.Margin = new System.Windows.Forms.Padding(2);
  3402. this.btnAddItem.Name = "btnAddItem";
  3403. this.btnAddItem.Size = new System.Drawing.Size(173, 31);
  3404. this.btnAddItem.TabIndex = 85;
  3405. this.btnAddItem.Text = "Add/Modify";
  3406. this.btnAddItem.UseVisualStyleBackColor = false;
  3407. this.btnAddItem.Click += new System.EventHandler(this.btnAddItem_Click);
  3408. //
  3409. // itemnamegroup
  3410. //
  3411. this.itemnamegroup.Controls.Add(this.txtItemName);
  3412. this.itemnamegroup.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3413. this.itemnamegroup.ForeColor = System.Drawing.Color.Silver;
  3414. this.itemnamegroup.Location = new System.Drawing.Point(11, 403);
  3415. this.itemnamegroup.Margin = new System.Windows.Forms.Padding(2);
  3416. this.itemnamegroup.Name = "itemnamegroup";
  3417. this.itemnamegroup.Padding = new System.Windows.Forms.Padding(2);
  3418. this.itemnamegroup.Size = new System.Drawing.Size(627, 66);
  3419. this.itemnamegroup.TabIndex = 84;
  3420. this.itemnamegroup.TabStop = false;
  3421. this.itemnamegroup.Text = "Item name in menu:";
  3422. //
  3423. // txtItemName
  3424. //
  3425. this.txtItemName.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3426. this.txtItemName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  3427. this.txtItemName.ForeColor = System.Drawing.Color.White;
  3428. this.txtItemName.Location = new System.Drawing.Point(11, 26);
  3429. this.txtItemName.Margin = new System.Windows.Forms.Padding(2);
  3430. this.txtItemName.Name = "txtItemName";
  3431. this.txtItemName.Size = new System.Drawing.Size(476, 29);
  3432. this.txtItemName.TabIndex = 82;
  3433. //
  3434. // security
  3435. //
  3436. this.security.Controls.Add(this.checkShift);
  3437. this.security.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3438. this.security.ForeColor = System.Drawing.Color.Silver;
  3439. this.security.Location = new System.Drawing.Point(11, 338);
  3440. this.security.Margin = new System.Windows.Forms.Padding(2);
  3441. this.security.Name = "security";
  3442. this.security.Padding = new System.Windows.Forms.Padding(2);
  3443. this.security.Size = new System.Drawing.Size(627, 61);
  3444. this.security.TabIndex = 83;
  3445. this.security.TabStop = false;
  3446. this.security.Text = "Security:";
  3447. //
  3448. // itemposition
  3449. //
  3450. this.itemposition.Controls.Add(this.radioTop);
  3451. this.itemposition.Controls.Add(this.radioMiddle);
  3452. this.itemposition.Controls.Add(this.radioBottom);
  3453. this.itemposition.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3454. this.itemposition.ForeColor = System.Drawing.Color.Silver;
  3455. this.itemposition.Location = new System.Drawing.Point(11, 272);
  3456. this.itemposition.Margin = new System.Windows.Forms.Padding(2);
  3457. this.itemposition.Name = "itemposition";
  3458. this.itemposition.Padding = new System.Windows.Forms.Padding(2);
  3459. this.itemposition.Size = new System.Drawing.Size(627, 62);
  3460. this.itemposition.TabIndex = 82;
  3461. this.itemposition.TabStop = false;
  3462. this.itemposition.Text = "Item position:";
  3463. //
  3464. // icontoaddgroup
  3465. //
  3466. this.icontoaddgroup.Controls.Add(this.checkDefaultIcon);
  3467. this.icontoaddgroup.Controls.Add(this.btnBrowseIcon);
  3468. this.icontoaddgroup.Controls.Add(this.txtIcon);
  3469. this.icontoaddgroup.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3470. this.icontoaddgroup.ForeColor = System.Drawing.Color.Silver;
  3471. this.icontoaddgroup.Location = new System.Drawing.Point(11, 178);
  3472. this.icontoaddgroup.Margin = new System.Windows.Forms.Padding(2);
  3473. this.icontoaddgroup.Name = "icontoaddgroup";
  3474. this.icontoaddgroup.Padding = new System.Windows.Forms.Padding(2);
  3475. this.icontoaddgroup.Size = new System.Drawing.Size(627, 90);
  3476. this.icontoaddgroup.TabIndex = 81;
  3477. this.icontoaddgroup.TabStop = false;
  3478. this.icontoaddgroup.Text = "Icon to add:";
  3479. //
  3480. // btnBrowseIcon
  3481. //
  3482. this.btnBrowseIcon.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  3483. this.btnBrowseIcon.BackColor = System.Drawing.Color.DodgerBlue;
  3484. this.btnBrowseIcon.Enabled = false;
  3485. this.btnBrowseIcon.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  3486. this.btnBrowseIcon.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3487. this.btnBrowseIcon.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3488. this.btnBrowseIcon.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3489. this.btnBrowseIcon.ForeColor = System.Drawing.Color.White;
  3490. this.btnBrowseIcon.Location = new System.Drawing.Point(450, 26);
  3491. this.btnBrowseIcon.Margin = new System.Windows.Forms.Padding(2);
  3492. this.btnBrowseIcon.Name = "btnBrowseIcon";
  3493. this.btnBrowseIcon.Size = new System.Drawing.Size(36, 29);
  3494. this.btnBrowseIcon.TabIndex = 82;
  3495. this.btnBrowseIcon.Text = "...";
  3496. this.btnBrowseIcon.UseVisualStyleBackColor = false;
  3497. this.btnBrowseIcon.Click += new System.EventHandler(this.btnBrowseIcon_Click);
  3498. //
  3499. // txtIcon
  3500. //
  3501. this.txtIcon.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3502. this.txtIcon.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  3503. this.txtIcon.Enabled = false;
  3504. this.txtIcon.ForeColor = System.Drawing.Color.White;
  3505. this.txtIcon.Location = new System.Drawing.Point(11, 26);
  3506. this.txtIcon.Margin = new System.Windows.Forms.Padding(2);
  3507. this.txtIcon.Name = "txtIcon";
  3508. this.txtIcon.ReadOnly = true;
  3509. this.txtIcon.Size = new System.Drawing.Size(434, 29);
  3510. this.txtIcon.TabIndex = 81;
  3511. //
  3512. // itemtoaddgroup
  3513. //
  3514. this.itemtoaddgroup.Controls.Add(this.btnBrowseItem);
  3515. this.itemtoaddgroup.Controls.Add(this.txtItem);
  3516. this.itemtoaddgroup.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3517. this.itemtoaddgroup.ForeColor = System.Drawing.Color.Silver;
  3518. this.itemtoaddgroup.Location = new System.Drawing.Point(11, 107);
  3519. this.itemtoaddgroup.Margin = new System.Windows.Forms.Padding(2);
  3520. this.itemtoaddgroup.Name = "itemtoaddgroup";
  3521. this.itemtoaddgroup.Padding = new System.Windows.Forms.Padding(2);
  3522. this.itemtoaddgroup.Size = new System.Drawing.Size(627, 67);
  3523. this.itemtoaddgroup.TabIndex = 80;
  3524. this.itemtoaddgroup.TabStop = false;
  3525. this.itemtoaddgroup.Text = "Program to add:";
  3526. //
  3527. // btnBrowseItem
  3528. //
  3529. this.btnBrowseItem.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  3530. this.btnBrowseItem.BackColor = System.Drawing.Color.DodgerBlue;
  3531. this.btnBrowseItem.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  3532. this.btnBrowseItem.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3533. this.btnBrowseItem.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3534. this.btnBrowseItem.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3535. this.btnBrowseItem.ForeColor = System.Drawing.Color.White;
  3536. this.btnBrowseItem.Location = new System.Drawing.Point(449, 26);
  3537. this.btnBrowseItem.Margin = new System.Windows.Forms.Padding(2);
  3538. this.btnBrowseItem.Name = "btnBrowseItem";
  3539. this.btnBrowseItem.Size = new System.Drawing.Size(36, 29);
  3540. this.btnBrowseItem.TabIndex = 82;
  3541. this.btnBrowseItem.Text = "...";
  3542. this.btnBrowseItem.UseVisualStyleBackColor = false;
  3543. this.btnBrowseItem.Click += new System.EventHandler(this.btnBrowseItem_Click);
  3544. //
  3545. // txtItem
  3546. //
  3547. this.txtItem.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3548. this.txtItem.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  3549. this.txtItem.ForeColor = System.Drawing.Color.White;
  3550. this.txtItem.Location = new System.Drawing.Point(11, 26);
  3551. this.txtItem.Margin = new System.Windows.Forms.Padding(2);
  3552. this.txtItem.Name = "txtItem";
  3553. this.txtItem.ReadOnly = true;
  3554. this.txtItem.Size = new System.Drawing.Size(434, 29);
  3555. this.txtItem.TabIndex = 81;
  3556. //
  3557. // itemtype
  3558. //
  3559. this.itemtype.Controls.Add(this.radioCommand);
  3560. this.itemtype.Controls.Add(this.radioProgram);
  3561. this.itemtype.Controls.Add(this.radioFolder);
  3562. this.itemtype.Controls.Add(this.radioLink);
  3563. this.itemtype.Controls.Add(this.radioFile);
  3564. this.itemtype.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3565. this.itemtype.ForeColor = System.Drawing.Color.Silver;
  3566. this.itemtype.Location = new System.Drawing.Point(11, 40);
  3567. this.itemtype.Margin = new System.Windows.Forms.Padding(2);
  3568. this.itemtype.Name = "itemtype";
  3569. this.itemtype.Padding = new System.Windows.Forms.Padding(2);
  3570. this.itemtype.Size = new System.Drawing.Size(627, 63);
  3571. this.itemtype.TabIndex = 79;
  3572. this.itemtype.TabStop = false;
  3573. this.itemtype.Text = "Item Type:";
  3574. //
  3575. // addItemL
  3576. //
  3577. this.addItemL.AutoSize = true;
  3578. this.addItemL.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3579. this.addItemL.ForeColor = System.Drawing.Color.DodgerBlue;
  3580. this.addItemL.Location = new System.Drawing.Point(6, 10);
  3581. this.addItemL.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3582. this.addItemL.Name = "addItemL";
  3583. this.addItemL.Size = new System.Drawing.Size(219, 28);
  3584. this.addItemL.TabIndex = 78;
  3585. this.addItemL.Tag = "themeable";
  3586. this.addItemL.Text = "Add or modify an item";
  3587. //
  3588. // tabPage9
  3589. //
  3590. this.tabPage9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3591. this.tabPage9.Controls.Add(this.panel5);
  3592. this.tabPage9.Controls.Add(this.refreshIIB);
  3593. this.tabPage9.Controls.Add(this.removeDIB);
  3594. this.tabPage9.Controls.Add(this.removeAllIIB);
  3595. this.tabPage9.Controls.Add(this.removeIntegratorItemsL);
  3596. this.tabPage9.Location = new System.Drawing.Point(4, 4);
  3597. this.tabPage9.Margin = new System.Windows.Forms.Padding(2);
  3598. this.tabPage9.Name = "tabPage9";
  3599. this.tabPage9.Padding = new System.Windows.Forms.Padding(2);
  3600. this.tabPage9.Size = new System.Drawing.Size(848, 581);
  3601. this.tabPage9.TabIndex = 2;
  3602. this.tabPage9.Text = "Remove";
  3603. //
  3604. // panel5
  3605. //
  3606. this.panel5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  3607. this.panel5.Controls.Add(this.listDesktopItems);
  3608. this.panel5.Location = new System.Drawing.Point(11, 44);
  3609. this.panel5.Margin = new System.Windows.Forms.Padding(2);
  3610. this.panel5.Name = "panel5";
  3611. this.panel5.Size = new System.Drawing.Size(293, 435);
  3612. this.panel5.TabIndex = 82;
  3613. //
  3614. // listDesktopItems
  3615. //
  3616. this.listDesktopItems.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3617. this.listDesktopItems.BorderStyle = System.Windows.Forms.BorderStyle.None;
  3618. this.listDesktopItems.Dock = System.Windows.Forms.DockStyle.Fill;
  3619. this.listDesktopItems.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3620. this.listDesktopItems.ForeColor = System.Drawing.Color.White;
  3621. this.listDesktopItems.FormattingEnabled = true;
  3622. this.listDesktopItems.HorizontalScrollbar = true;
  3623. this.listDesktopItems.ItemHeight = 21;
  3624. this.listDesktopItems.Location = new System.Drawing.Point(0, 0);
  3625. this.listDesktopItems.Margin = new System.Windows.Forms.Padding(2);
  3626. this.listDesktopItems.Name = "listDesktopItems";
  3627. this.listDesktopItems.Size = new System.Drawing.Size(291, 433);
  3628. this.listDesktopItems.TabIndex = 78;
  3629. //
  3630. // refreshIIB
  3631. //
  3632. this.refreshIIB.BackColor = System.Drawing.Color.DodgerBlue;
  3633. this.refreshIIB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  3634. this.refreshIIB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3635. this.refreshIIB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3636. this.refreshIIB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3637. this.refreshIIB.ForeColor = System.Drawing.Color.White;
  3638. this.refreshIIB.Location = new System.Drawing.Point(308, 80);
  3639. this.refreshIIB.Margin = new System.Windows.Forms.Padding(2);
  3640. this.refreshIIB.Name = "refreshIIB";
  3641. this.refreshIIB.Size = new System.Drawing.Size(137, 31);
  3642. this.refreshIIB.TabIndex = 81;
  3643. this.refreshIIB.Text = "Refresh";
  3644. this.refreshIIB.UseVisualStyleBackColor = false;
  3645. this.refreshIIB.Click += new System.EventHandler(this.button60_Click);
  3646. //
  3647. // removeDIB
  3648. //
  3649. this.removeDIB.BackColor = System.Drawing.Color.DodgerBlue;
  3650. this.removeDIB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  3651. this.removeDIB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3652. this.removeDIB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3653. this.removeDIB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3654. this.removeDIB.ForeColor = System.Drawing.Color.White;
  3655. this.removeDIB.Location = new System.Drawing.Point(308, 45);
  3656. this.removeDIB.Margin = new System.Windows.Forms.Padding(2);
  3657. this.removeDIB.Name = "removeDIB";
  3658. this.removeDIB.Size = new System.Drawing.Size(137, 31);
  3659. this.removeDIB.TabIndex = 80;
  3660. this.removeDIB.Text = "Remove";
  3661. this.removeDIB.UseVisualStyleBackColor = false;
  3662. this.removeDIB.Click += new System.EventHandler(this.button61_Click);
  3663. //
  3664. // removeAllIIB
  3665. //
  3666. this.removeAllIIB.BackColor = System.Drawing.Color.DodgerBlue;
  3667. this.removeAllIIB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  3668. this.removeAllIIB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3669. this.removeAllIIB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3670. this.removeAllIIB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3671. this.removeAllIIB.ForeColor = System.Drawing.Color.White;
  3672. this.removeAllIIB.Location = new System.Drawing.Point(308, 115);
  3673. this.removeAllIIB.Margin = new System.Windows.Forms.Padding(2);
  3674. this.removeAllIIB.Name = "removeAllIIB";
  3675. this.removeAllIIB.Size = new System.Drawing.Size(137, 31);
  3676. this.removeAllIIB.TabIndex = 79;
  3677. this.removeAllIIB.Text = "Remove all";
  3678. this.removeAllIIB.UseVisualStyleBackColor = false;
  3679. this.removeAllIIB.Click += new System.EventHandler(this.button62_Click);
  3680. //
  3681. // removeIntegratorItemsL
  3682. //
  3683. this.removeIntegratorItemsL.AutoSize = true;
  3684. this.removeIntegratorItemsL.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3685. this.removeIntegratorItemsL.ForeColor = System.Drawing.Color.DodgerBlue;
  3686. this.removeIntegratorItemsL.Location = new System.Drawing.Point(6, 10);
  3687. this.removeIntegratorItemsL.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3688. this.removeIntegratorItemsL.Name = "removeIntegratorItemsL";
  3689. this.removeIntegratorItemsL.Size = new System.Drawing.Size(300, 28);
  3690. this.removeIntegratorItemsL.TabIndex = 77;
  3691. this.removeIntegratorItemsL.Tag = "themeable";
  3692. this.removeIntegratorItemsL.Text = "Remove existing Desktop items";
  3693. //
  3694. // tabPage10
  3695. //
  3696. this.tabPage10.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3697. this.tabPage10.Controls.Add(this.RemoveOwnerB);
  3698. this.tabPage10.Controls.Add(this.AddOwnerB);
  3699. this.tabPage10.Controls.Add(this.readyMenusL);
  3700. this.tabPage10.Controls.Add(this.PMB);
  3701. this.tabPage10.Controls.Add(this.DSB);
  3702. this.tabPage10.Controls.Add(this.STB);
  3703. this.tabPage10.Controls.Add(this.SSB);
  3704. this.tabPage10.Controls.Add(this.WAB);
  3705. this.tabPage10.Location = new System.Drawing.Point(4, 4);
  3706. this.tabPage10.Margin = new System.Windows.Forms.Padding(2);
  3707. this.tabPage10.Name = "tabPage10";
  3708. this.tabPage10.Padding = new System.Windows.Forms.Padding(2);
  3709. this.tabPage10.Size = new System.Drawing.Size(848, 581);
  3710. this.tabPage10.TabIndex = 3;
  3711. this.tabPage10.Text = "Ready Menus";
  3712. //
  3713. // RemoveOwnerB
  3714. //
  3715. this.RemoveOwnerB.BackColor = System.Drawing.Color.DodgerBlue;
  3716. this.RemoveOwnerB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  3717. this.RemoveOwnerB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3718. this.RemoveOwnerB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3719. this.RemoveOwnerB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3720. this.RemoveOwnerB.ForeColor = System.Drawing.Color.White;
  3721. this.RemoveOwnerB.Location = new System.Drawing.Point(11, 276);
  3722. this.RemoveOwnerB.Margin = new System.Windows.Forms.Padding(2);
  3723. this.RemoveOwnerB.Name = "RemoveOwnerB";
  3724. this.RemoveOwnerB.Size = new System.Drawing.Size(334, 31);
  3725. this.RemoveOwnerB.TabIndex = 78;
  3726. this.RemoveOwnerB.Text = "Remove \"Take Ownership\"";
  3727. this.RemoveOwnerB.UseVisualStyleBackColor = false;
  3728. this.RemoveOwnerB.Click += new System.EventHandler(this.button65_Click);
  3729. //
  3730. // AddOwnerB
  3731. //
  3732. this.AddOwnerB.BackColor = System.Drawing.Color.DodgerBlue;
  3733. this.AddOwnerB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  3734. this.AddOwnerB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3735. this.AddOwnerB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3736. this.AddOwnerB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3737. this.AddOwnerB.ForeColor = System.Drawing.Color.White;
  3738. this.AddOwnerB.Location = new System.Drawing.Point(11, 240);
  3739. this.AddOwnerB.Margin = new System.Windows.Forms.Padding(2);
  3740. this.AddOwnerB.Name = "AddOwnerB";
  3741. this.AddOwnerB.Size = new System.Drawing.Size(334, 31);
  3742. this.AddOwnerB.TabIndex = 77;
  3743. this.AddOwnerB.Text = "Add \"Take Ownership\"";
  3744. this.AddOwnerB.UseVisualStyleBackColor = false;
  3745. this.AddOwnerB.Click += new System.EventHandler(this.button66_Click);
  3746. //
  3747. // readyMenusL
  3748. //
  3749. this.readyMenusL.AutoSize = true;
  3750. this.readyMenusL.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3751. this.readyMenusL.ForeColor = System.Drawing.Color.DodgerBlue;
  3752. this.readyMenusL.Location = new System.Drawing.Point(6, 10);
  3753. this.readyMenusL.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3754. this.readyMenusL.Name = "readyMenusL";
  3755. this.readyMenusL.Size = new System.Drawing.Size(232, 28);
  3756. this.readyMenusL.TabIndex = 76;
  3757. this.readyMenusL.Tag = "themeable";
  3758. this.readyMenusL.Text = "Add ready-made menus";
  3759. //
  3760. // PMB
  3761. //
  3762. this.PMB.BackColor = System.Drawing.Color.DodgerBlue;
  3763. this.PMB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  3764. this.PMB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3765. this.PMB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3766. this.PMB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3767. this.PMB.ForeColor = System.Drawing.Color.White;
  3768. this.PMB.Location = new System.Drawing.Point(11, 48);
  3769. this.PMB.Margin = new System.Windows.Forms.Padding(2);
  3770. this.PMB.Name = "PMB";
  3771. this.PMB.Size = new System.Drawing.Size(334, 31);
  3772. this.PMB.TabIndex = 74;
  3773. this.PMB.Text = "Add \"Power Menu\"";
  3774. this.PMB.UseVisualStyleBackColor = false;
  3775. this.PMB.Click += new System.EventHandler(this.button59_Click);
  3776. //
  3777. // DSB
  3778. //
  3779. this.DSB.BackColor = System.Drawing.Color.DodgerBlue;
  3780. this.DSB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  3781. this.DSB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3782. this.DSB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3783. this.DSB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3784. this.DSB.ForeColor = System.Drawing.Color.White;
  3785. this.DSB.Location = new System.Drawing.Point(11, 192);
  3786. this.DSB.Margin = new System.Windows.Forms.Padding(2);
  3787. this.DSB.Name = "DSB";
  3788. this.DSB.Size = new System.Drawing.Size(334, 31);
  3789. this.DSB.TabIndex = 72;
  3790. this.DSB.Text = "Add \"Desktop Shortcuts\"";
  3791. this.DSB.UseVisualStyleBackColor = false;
  3792. this.DSB.Click += new System.EventHandler(this.button57_Click);
  3793. //
  3794. // STB
  3795. //
  3796. this.STB.BackColor = System.Drawing.Color.DodgerBlue;
  3797. this.STB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  3798. this.STB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3799. this.STB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3800. this.STB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3801. this.STB.ForeColor = System.Drawing.Color.White;
  3802. this.STB.Location = new System.Drawing.Point(11, 84);
  3803. this.STB.Margin = new System.Windows.Forms.Padding(2);
  3804. this.STB.Name = "STB";
  3805. this.STB.Size = new System.Drawing.Size(334, 31);
  3806. this.STB.TabIndex = 70;
  3807. this.STB.Text = "Add \"System Tools\"";
  3808. this.STB.UseVisualStyleBackColor = false;
  3809. this.STB.Click += new System.EventHandler(this.button53_Click);
  3810. //
  3811. // SSB
  3812. //
  3813. this.SSB.BackColor = System.Drawing.Color.DodgerBlue;
  3814. this.SSB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  3815. this.SSB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3816. this.SSB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3817. this.SSB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3818. this.SSB.ForeColor = System.Drawing.Color.White;
  3819. this.SSB.Location = new System.Drawing.Point(11, 156);
  3820. this.SSB.Margin = new System.Windows.Forms.Padding(2);
  3821. this.SSB.Name = "SSB";
  3822. this.SSB.Size = new System.Drawing.Size(334, 31);
  3823. this.SSB.TabIndex = 68;
  3824. this.SSB.Text = "Add \"System Shortcuts\"";
  3825. this.SSB.UseVisualStyleBackColor = false;
  3826. this.SSB.Click += new System.EventHandler(this.button51_Click);
  3827. //
  3828. // WAB
  3829. //
  3830. this.WAB.BackColor = System.Drawing.Color.DodgerBlue;
  3831. this.WAB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  3832. this.WAB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3833. this.WAB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3834. this.WAB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3835. this.WAB.ForeColor = System.Drawing.Color.White;
  3836. this.WAB.Location = new System.Drawing.Point(11, 120);
  3837. this.WAB.Margin = new System.Windows.Forms.Padding(2);
  3838. this.WAB.Name = "WAB";
  3839. this.WAB.Size = new System.Drawing.Size(334, 31);
  3840. this.WAB.TabIndex = 65;
  3841. this.WAB.Text = "Add \"Windows Apps\"";
  3842. this.WAB.UseVisualStyleBackColor = false;
  3843. this.WAB.Click += new System.EventHandler(this.button54_Click);
  3844. //
  3845. // tabPage11
  3846. //
  3847. this.tabPage11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3848. this.tabPage11.Controls.Add(this.panel6);
  3849. this.tabPage11.Controls.Add(this.removeCCB);
  3850. this.tabPage11.Controls.Add(this.refreshCCB);
  3851. this.tabPage11.Controls.Add(this.removeCCL);
  3852. this.tabPage11.Controls.Add(this.btnCreateCustomCommand);
  3853. this.tabPage11.Controls.Add(this.button48);
  3854. this.tabPage11.Controls.Add(this.txtRunKeyword);
  3855. this.tabPage11.Controls.Add(this.ccKeywordL);
  3856. this.tabPage11.Controls.Add(this.txtRunFile);
  3857. this.tabPage11.Controls.Add(this.ccFileL);
  3858. this.tabPage11.Controls.Add(this.ccL);
  3859. this.tabPage11.Location = new System.Drawing.Point(4, 4);
  3860. this.tabPage11.Margin = new System.Windows.Forms.Padding(2);
  3861. this.tabPage11.Name = "tabPage11";
  3862. this.tabPage11.Padding = new System.Windows.Forms.Padding(2);
  3863. this.tabPage11.Size = new System.Drawing.Size(848, 581);
  3864. this.tabPage11.TabIndex = 4;
  3865. this.tabPage11.Text = "Run Dialog";
  3866. //
  3867. // panel6
  3868. //
  3869. this.panel6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  3870. this.panel6.Controls.Add(this.listCustomCommands);
  3871. this.panel6.Location = new System.Drawing.Point(11, 210);
  3872. this.panel6.Margin = new System.Windows.Forms.Padding(2);
  3873. this.panel6.Name = "panel6";
  3874. this.panel6.Size = new System.Drawing.Size(271, 263);
  3875. this.panel6.TabIndex = 84;
  3876. //
  3877. // listCustomCommands
  3878. //
  3879. this.listCustomCommands.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3880. this.listCustomCommands.BorderStyle = System.Windows.Forms.BorderStyle.None;
  3881. this.listCustomCommands.Dock = System.Windows.Forms.DockStyle.Fill;
  3882. this.listCustomCommands.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3883. this.listCustomCommands.ForeColor = System.Drawing.Color.White;
  3884. this.listCustomCommands.FormattingEnabled = true;
  3885. this.listCustomCommands.HorizontalScrollbar = true;
  3886. this.listCustomCommands.ItemHeight = 21;
  3887. this.listCustomCommands.Location = new System.Drawing.Point(0, 0);
  3888. this.listCustomCommands.Margin = new System.Windows.Forms.Padding(2);
  3889. this.listCustomCommands.Name = "listCustomCommands";
  3890. this.listCustomCommands.Size = new System.Drawing.Size(269, 261);
  3891. this.listCustomCommands.TabIndex = 79;
  3892. //
  3893. // removeCCB
  3894. //
  3895. this.removeCCB.BackColor = System.Drawing.Color.DodgerBlue;
  3896. this.removeCCB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  3897. this.removeCCB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3898. this.removeCCB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3899. this.removeCCB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3900. this.removeCCB.ForeColor = System.Drawing.Color.White;
  3901. this.removeCCB.Location = new System.Drawing.Point(286, 210);
  3902. this.removeCCB.Margin = new System.Windows.Forms.Padding(2);
  3903. this.removeCCB.Name = "removeCCB";
  3904. this.removeCCB.Size = new System.Drawing.Size(120, 27);
  3905. this.removeCCB.TabIndex = 82;
  3906. this.removeCCB.Text = "Remove";
  3907. this.removeCCB.UseVisualStyleBackColor = false;
  3908. this.removeCCB.Click += new System.EventHandler(this.button26_Click);
  3909. //
  3910. // refreshCCB
  3911. //
  3912. this.refreshCCB.BackColor = System.Drawing.Color.DodgerBlue;
  3913. this.refreshCCB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  3914. this.refreshCCB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3915. this.refreshCCB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3916. this.refreshCCB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3917. this.refreshCCB.ForeColor = System.Drawing.Color.White;
  3918. this.refreshCCB.Location = new System.Drawing.Point(286, 241);
  3919. this.refreshCCB.Margin = new System.Windows.Forms.Padding(2);
  3920. this.refreshCCB.Name = "refreshCCB";
  3921. this.refreshCCB.Size = new System.Drawing.Size(120, 27);
  3922. this.refreshCCB.TabIndex = 81;
  3923. this.refreshCCB.Text = "Refresh";
  3924. this.refreshCCB.UseVisualStyleBackColor = false;
  3925. this.refreshCCB.Click += new System.EventHandler(this.button8_Click);
  3926. //
  3927. // removeCCL
  3928. //
  3929. this.removeCCL.AutoSize = true;
  3930. this.removeCCL.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3931. this.removeCCL.ForeColor = System.Drawing.Color.DodgerBlue;
  3932. this.removeCCL.Location = new System.Drawing.Point(6, 173);
  3933. this.removeCCL.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3934. this.removeCCL.Name = "removeCCL";
  3935. this.removeCCL.Size = new System.Drawing.Size(268, 28);
  3936. this.removeCCL.TabIndex = 80;
  3937. this.removeCCL.Tag = "themeable";
  3938. this.removeCCL.Text = "Remove existing commands";
  3939. //
  3940. // btnCreateCustomCommand
  3941. //
  3942. this.btnCreateCustomCommand.BackColor = System.Drawing.Color.DodgerBlue;
  3943. this.btnCreateCustomCommand.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  3944. this.btnCreateCustomCommand.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3945. this.btnCreateCustomCommand.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3946. this.btnCreateCustomCommand.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3947. this.btnCreateCustomCommand.ForeColor = System.Drawing.Color.White;
  3948. this.btnCreateCustomCommand.Location = new System.Drawing.Point(299, 130);
  3949. this.btnCreateCustomCommand.Margin = new System.Windows.Forms.Padding(2);
  3950. this.btnCreateCustomCommand.Name = "btnCreateCustomCommand";
  3951. this.btnCreateCustomCommand.Size = new System.Drawing.Size(107, 29);
  3952. this.btnCreateCustomCommand.TabIndex = 60;
  3953. this.btnCreateCustomCommand.Text = "Create";
  3954. this.btnCreateCustomCommand.UseVisualStyleBackColor = false;
  3955. this.btnCreateCustomCommand.Click += new System.EventHandler(this.button50_Click);
  3956. //
  3957. // button48
  3958. //
  3959. this.button48.BackColor = System.Drawing.Color.DodgerBlue;
  3960. this.button48.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  3961. this.button48.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3962. this.button48.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3963. this.button48.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3964. this.button48.ForeColor = System.Drawing.Color.White;
  3965. this.button48.Location = new System.Drawing.Point(354, 75);
  3966. this.button48.Margin = new System.Windows.Forms.Padding(2);
  3967. this.button48.Name = "button48";
  3968. this.button48.Size = new System.Drawing.Size(52, 29);
  3969. this.button48.TabIndex = 58;
  3970. this.button48.Text = "...";
  3971. this.button48.UseVisualStyleBackColor = false;
  3972. this.button48.Click += new System.EventHandler(this.button48_Click);
  3973. //
  3974. // txtRunKeyword
  3975. //
  3976. this.txtRunKeyword.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3977. this.txtRunKeyword.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  3978. this.txtRunKeyword.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3979. this.txtRunKeyword.ForeColor = System.Drawing.Color.White;
  3980. this.txtRunKeyword.Location = new System.Drawing.Point(11, 130);
  3981. this.txtRunKeyword.Margin = new System.Windows.Forms.Padding(2);
  3982. this.txtRunKeyword.Name = "txtRunKeyword";
  3983. this.txtRunKeyword.Size = new System.Drawing.Size(284, 29);
  3984. this.txtRunKeyword.TabIndex = 9;
  3985. //
  3986. // ccKeywordL
  3987. //
  3988. this.ccKeywordL.AutoSize = true;
  3989. this.ccKeywordL.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3990. this.ccKeywordL.ForeColor = System.Drawing.Color.Silver;
  3991. this.ccKeywordL.Location = new System.Drawing.Point(7, 105);
  3992. this.ccKeywordL.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3993. this.ccKeywordL.Name = "ccKeywordL";
  3994. this.ccKeywordL.Size = new System.Drawing.Size(79, 21);
  3995. this.ccKeywordL.TabIndex = 8;
  3996. this.ccKeywordL.Text = "Keyword:";
  3997. //
  3998. // txtRunFile
  3999. //
  4000. this.txtRunFile.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  4001. this.txtRunFile.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4002. this.txtRunFile.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4003. this.txtRunFile.ForeColor = System.Drawing.Color.White;
  4004. this.txtRunFile.Location = new System.Drawing.Point(11, 75);
  4005. this.txtRunFile.Margin = new System.Windows.Forms.Padding(2);
  4006. this.txtRunFile.Name = "txtRunFile";
  4007. this.txtRunFile.ReadOnly = true;
  4008. this.txtRunFile.Size = new System.Drawing.Size(339, 29);
  4009. this.txtRunFile.TabIndex = 7;
  4010. //
  4011. // ccFileL
  4012. //
  4013. this.ccFileL.AutoSize = true;
  4014. this.ccFileL.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4015. this.ccFileL.ForeColor = System.Drawing.Color.Silver;
  4016. this.ccFileL.Location = new System.Drawing.Point(7, 50);
  4017. this.ccFileL.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  4018. this.ccFileL.Name = "ccFileL";
  4019. this.ccFileL.Size = new System.Drawing.Size(102, 21);
  4020. this.ccFileL.TabIndex = 6;
  4021. this.ccFileL.Text = "File location:";
  4022. //
  4023. // ccL
  4024. //
  4025. this.ccL.AutoSize = true;
  4026. this.ccL.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4027. this.ccL.ForeColor = System.Drawing.Color.DodgerBlue;
  4028. this.ccL.Location = new System.Drawing.Point(6, 10);
  4029. this.ccL.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  4030. this.ccL.Name = "ccL";
  4031. this.ccL.Size = new System.Drawing.Size(298, 28);
  4032. this.ccL.TabIndex = 5;
  4033. this.ccL.Tag = "themeable";
  4034. this.ccL.Text = "Define your custom commands";
  4035. //
  4036. // optionsTab
  4037. //
  4038. this.optionsTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  4039. this.optionsTab.Controls.Add(this.pictureBox85);
  4040. this.optionsTab.Controls.Add(this.panel9);
  4041. this.optionsTab.Controls.Add(this.panel8);
  4042. this.optionsTab.Controls.Add(this.languagesL);
  4043. this.optionsTab.Controls.Add(this.lblUpdateDisabled);
  4044. this.optionsTab.Controls.Add(this.linkLabel6);
  4045. this.optionsTab.Controls.Add(this.pictureBox84);
  4046. this.optionsTab.Controls.Add(this.pictureBox83);
  4047. this.optionsTab.Controls.Add(this.linkLabel5);
  4048. this.optionsTab.Controls.Add(this.btnOpenConf);
  4049. this.optionsTab.Controls.Add(this.lblTroubleshoot);
  4050. this.optionsTab.Controls.Add(this.lblUpdating);
  4051. this.optionsTab.Controls.Add(this.btnViewLog);
  4052. this.optionsTab.Controls.Add(this.l2);
  4053. this.optionsTab.Controls.Add(this.btnChangelog);
  4054. this.optionsTab.Controls.Add(this.btnUpdate);
  4055. this.optionsTab.Controls.Add(this.btnResetConfig);
  4056. this.optionsTab.Controls.Add(this.lblTheming);
  4057. this.optionsTab.Controls.Add(this.helpTipsToggle);
  4058. this.optionsTab.Controls.Add(this.quickAccessToggle);
  4059. this.optionsTab.Location = new System.Drawing.Point(4, 24);
  4060. this.optionsTab.Margin = new System.Windows.Forms.Padding(2);
  4061. this.optionsTab.Name = "optionsTab";
  4062. this.optionsTab.Padding = new System.Windows.Forms.Padding(2);
  4063. this.optionsTab.Size = new System.Drawing.Size(860, 611);
  4064. this.optionsTab.TabIndex = 6;
  4065. this.optionsTab.Text = "Options";
  4066. //
  4067. // pictureBox85
  4068. //
  4069. this.pictureBox85.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  4070. this.pictureBox85.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox85.Image")));
  4071. this.pictureBox85.Location = new System.Drawing.Point(818, 8);
  4072. this.pictureBox85.Name = "pictureBox85";
  4073. this.pictureBox85.Size = new System.Drawing.Size(33, 32);
  4074. this.pictureBox85.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  4075. this.pictureBox85.TabIndex = 74;
  4076. this.pictureBox85.TabStop = false;
  4077. //
  4078. // panel9
  4079. //
  4080. this.panel9.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  4081. this.panel9.Controls.Add(this.pictureBox89);
  4082. this.panel9.Controls.Add(this.radioTurkish);
  4083. this.panel9.Controls.Add(this.pictureBox88);
  4084. this.panel9.Controls.Add(this.radioHellenic);
  4085. this.panel9.Controls.Add(this.pictureBox87);
  4086. this.panel9.Controls.Add(this.radioEnglish);
  4087. this.panel9.Controls.Add(this.radioRussian);
  4088. this.panel9.Controls.Add(this.pictureBox86);
  4089. this.panel9.Location = new System.Drawing.Point(571, 43);
  4090. this.panel9.Name = "panel9";
  4091. this.panel9.Size = new System.Drawing.Size(285, 205);
  4092. this.panel9.TabIndex = 73;
  4093. //
  4094. // pictureBox89
  4095. //
  4096. this.pictureBox89.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox89.Image")));
  4097. this.pictureBox89.Location = new System.Drawing.Point(110, 96);
  4098. this.pictureBox89.Name = "pictureBox89";
  4099. this.pictureBox89.Size = new System.Drawing.Size(36, 22);
  4100. this.pictureBox89.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  4101. this.pictureBox89.TabIndex = 79;
  4102. this.pictureBox89.TabStop = false;
  4103. this.pictureBox89.Click += new System.EventHandler(this.pictureBox89_Click);
  4104. //
  4105. // pictureBox88
  4106. //
  4107. this.pictureBox88.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox88.Image")));
  4108. this.pictureBox88.Location = new System.Drawing.Point(110, 67);
  4109. this.pictureBox88.Name = "pictureBox88";
  4110. this.pictureBox88.Size = new System.Drawing.Size(36, 22);
  4111. this.pictureBox88.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  4112. this.pictureBox88.TabIndex = 77;
  4113. this.pictureBox88.TabStop = false;
  4114. this.pictureBox88.Click += new System.EventHandler(this.pictureBox88_Click);
  4115. //
  4116. // pictureBox87
  4117. //
  4118. this.pictureBox87.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox87.Image")));
  4119. this.pictureBox87.Location = new System.Drawing.Point(110, 38);
  4120. this.pictureBox87.Name = "pictureBox87";
  4121. this.pictureBox87.Size = new System.Drawing.Size(36, 22);
  4122. this.pictureBox87.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  4123. this.pictureBox87.TabIndex = 76;
  4124. this.pictureBox87.TabStop = false;
  4125. this.pictureBox87.Click += new System.EventHandler(this.pictureBox87_Click);
  4126. //
  4127. // pictureBox86
  4128. //
  4129. this.pictureBox86.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox86.Image")));
  4130. this.pictureBox86.Location = new System.Drawing.Point(110, 9);
  4131. this.pictureBox86.Name = "pictureBox86";
  4132. this.pictureBox86.Size = new System.Drawing.Size(36, 22);
  4133. this.pictureBox86.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  4134. this.pictureBox86.TabIndex = 75;
  4135. this.pictureBox86.TabStop = false;
  4136. this.pictureBox86.Click += new System.EventHandler(this.pictureBox86_Click);
  4137. //
  4138. // panel8
  4139. //
  4140. this.panel8.Controls.Add(this.radioCaramel);
  4141. this.panel8.Controls.Add(this.radioZerg);
  4142. this.panel8.Controls.Add(this.radioOcean);
  4143. this.panel8.Controls.Add(this.radioMagma);
  4144. this.panel8.Controls.Add(this.radioLime);
  4145. this.panel8.Controls.Add(this.radioMinimal);
  4146. this.panel8.Location = new System.Drawing.Point(16, 130);
  4147. this.panel8.Name = "panel8";
  4148. this.panel8.Size = new System.Drawing.Size(326, 118);
  4149. this.panel8.TabIndex = 72;
  4150. //
  4151. // radioCaramel
  4152. //
  4153. this.radioCaramel.AutoSize = true;
  4154. this.radioCaramel.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4155. this.radioCaramel.ForeColor = System.Drawing.Color.DarkOrange;
  4156. this.radioCaramel.Location = new System.Drawing.Point(163, 11);
  4157. this.radioCaramel.Margin = new System.Windows.Forms.Padding(2);
  4158. this.radioCaramel.Name = "radioCaramel";
  4159. this.radioCaramel.Size = new System.Drawing.Size(87, 25);
  4160. this.radioCaramel.TabIndex = 52;
  4161. this.radioCaramel.Text = "Caramel";
  4162. this.radioCaramel.UseVisualStyleBackColor = true;
  4163. this.radioCaramel.CheckedChanged += new System.EventHandler(this.radioCaramel_CheckedChanged);
  4164. //
  4165. // radioZerg
  4166. //
  4167. this.radioZerg.AutoSize = true;
  4168. this.radioZerg.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4169. this.radioZerg.ForeColor = System.Drawing.Color.MediumOrchid;
  4170. this.radioZerg.Location = new System.Drawing.Point(15, 69);
  4171. this.radioZerg.Margin = new System.Windows.Forms.Padding(2);
  4172. this.radioZerg.Name = "radioZerg";
  4173. this.radioZerg.Size = new System.Drawing.Size(62, 25);
  4174. this.radioZerg.TabIndex = 48;
  4175. this.radioZerg.Text = "Zerg";
  4176. this.radioZerg.UseVisualStyleBackColor = true;
  4177. this.radioZerg.CheckedChanged += new System.EventHandler(this.radioZerg_CheckedChanged);
  4178. //
  4179. // radioOcean
  4180. //
  4181. this.radioOcean.AutoSize = true;
  4182. this.radioOcean.Font = new System.Drawing.Font("Segoe UI Semibold", 12F);
  4183. this.radioOcean.ForeColor = System.Drawing.Color.DodgerBlue;
  4184. this.radioOcean.Location = new System.Drawing.Point(15, 11);
  4185. this.radioOcean.Margin = new System.Windows.Forms.Padding(2);
  4186. this.radioOcean.Name = "radioOcean";
  4187. this.radioOcean.Size = new System.Drawing.Size(74, 25);
  4188. this.radioOcean.TabIndex = 49;
  4189. this.radioOcean.Text = "Ocean";
  4190. this.radioOcean.UseVisualStyleBackColor = true;
  4191. this.radioOcean.CheckedChanged += new System.EventHandler(this.radioOcean_CheckedChanged);
  4192. //
  4193. // radioMagma
  4194. //
  4195. this.radioMagma.AutoSize = true;
  4196. this.radioMagma.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4197. this.radioMagma.ForeColor = System.Drawing.Color.Tomato;
  4198. this.radioMagma.Location = new System.Drawing.Point(15, 40);
  4199. this.radioMagma.Margin = new System.Windows.Forms.Padding(2);
  4200. this.radioMagma.Name = "radioMagma";
  4201. this.radioMagma.Size = new System.Drawing.Size(83, 25);
  4202. this.radioMagma.TabIndex = 50;
  4203. this.radioMagma.Text = "Magma";
  4204. this.radioMagma.UseVisualStyleBackColor = true;
  4205. this.radioMagma.CheckedChanged += new System.EventHandler(this.radioMagma_CheckedChanged);
  4206. //
  4207. // radioLime
  4208. //
  4209. this.radioLime.AutoSize = true;
  4210. this.radioLime.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4211. this.radioLime.ForeColor = System.Drawing.Color.LimeGreen;
  4212. this.radioLime.Location = new System.Drawing.Point(163, 40);
  4213. this.radioLime.Margin = new System.Windows.Forms.Padding(2);
  4214. this.radioLime.Name = "radioLime";
  4215. this.radioLime.Size = new System.Drawing.Size(63, 25);
  4216. this.radioLime.TabIndex = 51;
  4217. this.radioLime.Text = "Lime";
  4218. this.radioLime.UseVisualStyleBackColor = true;
  4219. this.radioLime.CheckedChanged += new System.EventHandler(this.radioLime_CheckedChanged);
  4220. //
  4221. // radioMinimal
  4222. //
  4223. this.radioMinimal.AutoSize = true;
  4224. this.radioMinimal.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4225. this.radioMinimal.ForeColor = System.Drawing.Color.Gray;
  4226. this.radioMinimal.Location = new System.Drawing.Point(163, 69);
  4227. this.radioMinimal.Margin = new System.Windows.Forms.Padding(2);
  4228. this.radioMinimal.Name = "radioMinimal";
  4229. this.radioMinimal.Size = new System.Drawing.Size(86, 25);
  4230. this.radioMinimal.TabIndex = 53;
  4231. this.radioMinimal.Text = "Minimal";
  4232. this.radioMinimal.UseVisualStyleBackColor = true;
  4233. this.radioMinimal.CheckedChanged += new System.EventHandler(this.radioMinimal_CheckedChanged);
  4234. //
  4235. // languagesL
  4236. //
  4237. this.languagesL.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  4238. this.languagesL.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4239. this.languagesL.ForeColor = System.Drawing.Color.DodgerBlue;
  4240. this.languagesL.Location = new System.Drawing.Point(571, 6);
  4241. this.languagesL.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  4242. this.languagesL.Name = "languagesL";
  4243. this.languagesL.Size = new System.Drawing.Size(246, 28);
  4244. this.languagesL.TabIndex = 71;
  4245. this.languagesL.Tag = "themeable";
  4246. this.languagesL.Text = "Choose language";
  4247. this.languagesL.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  4248. //
  4249. // lblUpdateDisabled
  4250. //
  4251. this.lblUpdateDisabled.AutoSize = true;
  4252. this.lblUpdateDisabled.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4253. this.lblUpdateDisabled.ForeColor = System.Drawing.Color.Gold;
  4254. this.lblUpdateDisabled.Location = new System.Drawing.Point(28, 358);
  4255. this.lblUpdateDisabled.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  4256. this.lblUpdateDisabled.Name = "lblUpdateDisabled";
  4257. this.lblUpdateDisabled.Size = new System.Drawing.Size(239, 21);
  4258. this.lblUpdateDisabled.TabIndex = 69;
  4259. this.lblUpdateDisabled.Text = "Disabled in experimental builds";
  4260. this.lblUpdateDisabled.Visible = false;
  4261. //
  4262. // linkLabel6
  4263. //
  4264. this.linkLabel6.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  4265. this.linkLabel6.AutoSize = true;
  4266. this.linkLabel6.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4267. this.linkLabel6.ForeColor = System.Drawing.Color.DodgerBlue;
  4268. this.linkLabel6.LinkColor = System.Drawing.Color.DodgerBlue;
  4269. this.linkLabel6.Location = new System.Drawing.Point(724, 427);
  4270. this.linkLabel6.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  4271. this.linkLabel6.Name = "linkLabel6";
  4272. this.linkLabel6.Size = new System.Drawing.Size(130, 28);
  4273. this.linkLabel6.TabIndex = 68;
  4274. this.linkLabel6.TabStop = true;
  4275. this.linkLabel6.Tag = "themeable";
  4276. this.linkLabel6.Text = "Open Source";
  4277. this.linkLabel6.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel6_LinkClicked);
  4278. //
  4279. // pictureBox84
  4280. //
  4281. this.pictureBox84.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  4282. this.pictureBox84.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox84.BackgroundImage")));
  4283. this.pictureBox84.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4284. this.pictureBox84.Location = new System.Drawing.Point(721, 313);
  4285. this.pictureBox84.Name = "pictureBox84";
  4286. this.pictureBox84.Size = new System.Drawing.Size(128, 114);
  4287. this.pictureBox84.TabIndex = 67;
  4288. this.pictureBox84.TabStop = false;
  4289. //
  4290. // pictureBox83
  4291. //
  4292. this.pictureBox83.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  4293. this.pictureBox83.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox83.BackgroundImage")));
  4294. this.pictureBox83.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4295. this.pictureBox83.Location = new System.Drawing.Point(704, 460);
  4296. this.pictureBox83.Name = "pictureBox83";
  4297. this.pictureBox83.Size = new System.Drawing.Size(145, 114);
  4298. this.pictureBox83.TabIndex = 66;
  4299. this.pictureBox83.TabStop = false;
  4300. //
  4301. // linkLabel5
  4302. //
  4303. this.linkLabel5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  4304. this.linkLabel5.AutoSize = true;
  4305. this.linkLabel5.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4306. this.linkLabel5.ForeColor = System.Drawing.Color.DodgerBlue;
  4307. this.linkLabel5.LinkColor = System.Drawing.Color.DodgerBlue;
  4308. this.linkLabel5.Location = new System.Drawing.Point(653, 576);
  4309. this.linkLabel5.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  4310. this.linkLabel5.Name = "linkLabel5";
  4311. this.linkLabel5.Size = new System.Drawing.Size(203, 28);
  4312. this.linkLabel5.TabIndex = 65;
  4313. this.linkLabel5.TabStop = true;
  4314. this.linkLabel5.Tag = "themeable";
  4315. this.linkLabel5.Text = "GNU GPL 3.0 License";
  4316. this.linkLabel5.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel5_LinkClicked);
  4317. //
  4318. // btnOpenConf
  4319. //
  4320. this.btnOpenConf.BackColor = System.Drawing.Color.DodgerBlue;
  4321. this.btnOpenConf.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  4322. this.btnOpenConf.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  4323. this.btnOpenConf.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  4324. this.btnOpenConf.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  4325. this.btnOpenConf.ForeColor = System.Drawing.Color.White;
  4326. this.btnOpenConf.Location = new System.Drawing.Point(31, 471);
  4327. this.btnOpenConf.Margin = new System.Windows.Forms.Padding(2);
  4328. this.btnOpenConf.Name = "btnOpenConf";
  4329. this.btnOpenConf.Size = new System.Drawing.Size(197, 31);
  4330. this.btnOpenConf.TabIndex = 63;
  4331. this.btnOpenConf.Text = "Show config folder";
  4332. this.btnOpenConf.UseVisualStyleBackColor = false;
  4333. this.btnOpenConf.Click += new System.EventHandler(this.btnOpenConf_Click);
  4334. //
  4335. // lblTroubleshoot
  4336. //
  4337. this.lblTroubleshoot.AutoSize = true;
  4338. this.lblTroubleshoot.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4339. this.lblTroubleshoot.ForeColor = System.Drawing.Color.DodgerBlue;
  4340. this.lblTroubleshoot.Location = new System.Drawing.Point(11, 390);
  4341. this.lblTroubleshoot.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  4342. this.lblTroubleshoot.Name = "lblTroubleshoot";
  4343. this.lblTroubleshoot.Size = new System.Drawing.Size(161, 28);
  4344. this.lblTroubleshoot.TabIndex = 62;
  4345. this.lblTroubleshoot.Tag = "themeable";
  4346. this.lblTroubleshoot.Text = "Troubleshooting";
  4347. //
  4348. // lblUpdating
  4349. //
  4350. this.lblUpdating.AutoSize = true;
  4351. this.lblUpdating.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4352. this.lblUpdating.ForeColor = System.Drawing.Color.DodgerBlue;
  4353. this.lblUpdating.Location = new System.Drawing.Point(11, 243);
  4354. this.lblUpdating.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  4355. this.lblUpdating.Name = "lblUpdating";
  4356. this.lblUpdating.Size = new System.Drawing.Size(157, 28);
  4357. this.lblUpdating.TabIndex = 61;
  4358. this.lblUpdating.Tag = "themeable";
  4359. this.lblUpdating.Text = "Check && update";
  4360. //
  4361. // btnViewLog
  4362. //
  4363. this.btnViewLog.BackColor = System.Drawing.Color.DodgerBlue;
  4364. this.btnViewLog.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  4365. this.btnViewLog.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  4366. this.btnViewLog.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  4367. this.btnViewLog.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  4368. this.btnViewLog.ForeColor = System.Drawing.Color.White;
  4369. this.btnViewLog.Location = new System.Drawing.Point(31, 436);
  4370. this.btnViewLog.Margin = new System.Windows.Forms.Padding(2);
  4371. this.btnViewLog.Name = "btnViewLog";
  4372. this.btnViewLog.Size = new System.Drawing.Size(197, 31);
  4373. this.btnViewLog.TabIndex = 60;
  4374. this.btnViewLog.Text = "View errors";
  4375. this.btnViewLog.UseVisualStyleBackColor = false;
  4376. this.btnViewLog.Click += new System.EventHandler(this.btnViewLog_Click);
  4377. //
  4378. // l2
  4379. //
  4380. this.l2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  4381. this.l2.AutoSize = true;
  4382. this.l2.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4383. this.l2.ForeColor = System.Drawing.Color.DodgerBlue;
  4384. this.l2.LinkColor = System.Drawing.Color.DodgerBlue;
  4385. this.l2.Location = new System.Drawing.Point(6, 576);
  4386. this.l2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  4387. this.l2.Name = "l2";
  4388. this.l2.Size = new System.Drawing.Size(157, 28);
  4389. this.l2.TabIndex = 59;
  4390. this.l2.TabStop = true;
  4391. this.l2.Tag = "themeable";
  4392. this.l2.Text = "deadmoon © ∞";
  4393. this.l2.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.l2_LinkClicked);
  4394. //
  4395. // btnChangelog
  4396. //
  4397. this.btnChangelog.BackColor = System.Drawing.Color.DodgerBlue;
  4398. this.btnChangelog.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  4399. this.btnChangelog.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  4400. this.btnChangelog.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  4401. this.btnChangelog.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  4402. this.btnChangelog.ForeColor = System.Drawing.Color.White;
  4403. this.btnChangelog.Location = new System.Drawing.Point(31, 325);
  4404. this.btnChangelog.Margin = new System.Windows.Forms.Padding(2);
  4405. this.btnChangelog.Name = "btnChangelog";
  4406. this.btnChangelog.Size = new System.Drawing.Size(197, 31);
  4407. this.btnChangelog.TabIndex = 58;
  4408. this.btnChangelog.Text = "View changes";
  4409. this.btnChangelog.UseVisualStyleBackColor = false;
  4410. this.btnChangelog.Click += new System.EventHandler(this.btnChangelog_Click);
  4411. //
  4412. // btnUpdate
  4413. //
  4414. this.btnUpdate.BackColor = System.Drawing.Color.DodgerBlue;
  4415. this.btnUpdate.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  4416. this.btnUpdate.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  4417. this.btnUpdate.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  4418. this.btnUpdate.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  4419. this.btnUpdate.ForeColor = System.Drawing.Color.White;
  4420. this.btnUpdate.Location = new System.Drawing.Point(31, 290);
  4421. this.btnUpdate.Margin = new System.Windows.Forms.Padding(2);
  4422. this.btnUpdate.Name = "btnUpdate";
  4423. this.btnUpdate.Size = new System.Drawing.Size(197, 31);
  4424. this.btnUpdate.TabIndex = 57;
  4425. this.btnUpdate.Text = "Check for update";
  4426. this.btnUpdate.UseVisualStyleBackColor = false;
  4427. this.btnUpdate.Click += new System.EventHandler(this.btnUpdate_Click);
  4428. //
  4429. // btnResetConfig
  4430. //
  4431. this.btnResetConfig.BackColor = System.Drawing.Color.DodgerBlue;
  4432. this.btnResetConfig.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  4433. this.btnResetConfig.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  4434. this.btnResetConfig.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  4435. this.btnResetConfig.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  4436. this.btnResetConfig.ForeColor = System.Drawing.Color.White;
  4437. this.btnResetConfig.Location = new System.Drawing.Point(31, 506);
  4438. this.btnResetConfig.Margin = new System.Windows.Forms.Padding(2);
  4439. this.btnResetConfig.Name = "btnResetConfig";
  4440. this.btnResetConfig.Size = new System.Drawing.Size(197, 31);
  4441. this.btnResetConfig.TabIndex = 56;
  4442. this.btnResetConfig.Text = "Reset configuration";
  4443. this.btnResetConfig.UseVisualStyleBackColor = false;
  4444. this.btnResetConfig.Click += new System.EventHandler(this.btnResetConfig_Click);
  4445. //
  4446. // lblTheming
  4447. //
  4448. this.lblTheming.AutoSize = true;
  4449. this.lblTheming.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4450. this.lblTheming.ForeColor = System.Drawing.Color.DodgerBlue;
  4451. this.lblTheming.Location = new System.Drawing.Point(11, 99);
  4452. this.lblTheming.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  4453. this.lblTheming.Name = "lblTheming";
  4454. this.lblTheming.Size = new System.Drawing.Size(192, 28);
  4455. this.lblTheming.TabIndex = 55;
  4456. this.lblTheming.Tag = "themeable";
  4457. this.lblTheming.Text = "Choose your theme";
  4458. //
  4459. // defineCommandDialog
  4460. //
  4461. this.defineCommandDialog.Filter = "Executables [*.exe]|*.exe";
  4462. this.defineCommandDialog.Title = "Optimizer";
  4463. this.defineCommandDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.DefineCmd_FileOk);
  4464. //
  4465. // defineProgramDialog
  4466. //
  4467. this.defineProgramDialog.Filter = "Executables [*.exe]|*.exe";
  4468. this.defineProgramDialog.Title = "Optimizer";
  4469. this.defineProgramDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.DefineProgramDialog_FileOk);
  4470. //
  4471. // defineFolderDialog
  4472. //
  4473. this.defineFolderDialog.Description = "Optimizer";
  4474. //
  4475. // defineFileDialog
  4476. //
  4477. this.defineFileDialog.Filter = "All files [*.*]|*.*";
  4478. this.defineFileDialog.Title = "Optimizer";
  4479. this.defineFileDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.DefineFileDialog_FileOk);
  4480. //
  4481. // DefineProgramIconDialog
  4482. //
  4483. this.DefineProgramIconDialog.Filter = "Icon [*.ico]|*.ico|Executable [*.exe]|*.exe";
  4484. this.DefineProgramIconDialog.Title = "Optimizer";
  4485. this.DefineProgramIconDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.DefineProgramIconDialog_FileOk);
  4486. //
  4487. // DefineFolderIconDialog
  4488. //
  4489. this.DefineFolderIconDialog.Filter = "Icon [*.ico]|*.ico|Executable [*.exe]|*.exe";
  4490. this.DefineFolderIconDialog.Title = "Optimizer";
  4491. this.DefineFolderIconDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.DefineFolderIconDialog_FileOk);
  4492. //
  4493. // DefineURLIconDialog
  4494. //
  4495. this.DefineURLIconDialog.Filter = "Icon [*.ico]|*.ico|Executable [*.exe]|*.exe";
  4496. this.DefineURLIconDialog.Title = "Optimizer";
  4497. this.DefineURLIconDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.DefineURLIconDialog_FileOk);
  4498. //
  4499. // DefineFileIconDialog
  4500. //
  4501. this.DefineFileIconDialog.Filter = "Icon [*.ico]|*.ico|Executable [*.exe]|*.exe";
  4502. this.DefineFileIconDialog.Title = "Optimizer";
  4503. this.DefineFileIconDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.DefineFileIconDialog_FileOk);
  4504. //
  4505. // DefineCommandIconDialog
  4506. //
  4507. this.DefineCommandIconDialog.Filter = "Icon [*.ico]|*.ico|Executable [*.exe]|*.exe";
  4508. this.DefineCommandIconDialog.Title = "Optimizer";
  4509. this.DefineCommandIconDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.DefineCommandIconDialog_FileOk);
  4510. //
  4511. // ExportDialog
  4512. //
  4513. this.ExportDialog.Filter = "Text [*.txt]|*.txt";
  4514. this.ExportDialog.Title = "Optimizer";
  4515. //
  4516. // launcherMenu
  4517. //
  4518. this.launcherMenu.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  4519. this.launcherMenu.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4520. this.launcherMenu.ImageScalingSize = new System.Drawing.Size(20, 20);
  4521. this.launcherMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  4522. this.trayStartup,
  4523. this.trayCleaner,
  4524. this.trayPinger,
  4525. this.trayHosts,
  4526. this.trayAD,
  4527. this.toolStripSeparator1,
  4528. this.trayRestartExplorer,
  4529. this.trayExit});
  4530. this.launcherMenu.Name = "launcherMenu";
  4531. this.launcherMenu.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
  4532. this.launcherMenu.Size = new System.Drawing.Size(215, 192);
  4533. //
  4534. // trayStartup
  4535. //
  4536. this.trayStartup.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4537. this.trayStartup.ForeColor = System.Drawing.Color.White;
  4538. this.trayStartup.Image = ((System.Drawing.Image)(resources.GetObject("trayStartup.Image")));
  4539. this.trayStartup.Name = "trayStartup";
  4540. this.trayStartup.Size = new System.Drawing.Size(214, 26);
  4541. this.trayStartup.Text = "Startup Manager";
  4542. this.trayStartup.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal;
  4543. this.trayStartup.Click += new System.EventHandler(this.startupItem_Click);
  4544. //
  4545. // trayCleaner
  4546. //
  4547. this.trayCleaner.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4548. this.trayCleaner.ForeColor = System.Drawing.Color.White;
  4549. this.trayCleaner.Image = ((System.Drawing.Image)(resources.GetObject("trayCleaner.Image")));
  4550. this.trayCleaner.Name = "trayCleaner";
  4551. this.trayCleaner.Size = new System.Drawing.Size(214, 26);
  4552. this.trayCleaner.Text = "PC Cleaner";
  4553. this.trayCleaner.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal;
  4554. this.trayCleaner.Click += new System.EventHandler(this.cleanerItem_Click);
  4555. //
  4556. // trayPinger
  4557. //
  4558. this.trayPinger.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4559. this.trayPinger.ForeColor = System.Drawing.Color.White;
  4560. this.trayPinger.Image = ((System.Drawing.Image)(resources.GetObject("trayPinger.Image")));
  4561. this.trayPinger.Name = "trayPinger";
  4562. this.trayPinger.Size = new System.Drawing.Size(214, 26);
  4563. this.trayPinger.Text = "Pinger Tool";
  4564. this.trayPinger.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal;
  4565. this.trayPinger.Click += new System.EventHandler(this.pingerItem_Click);
  4566. //
  4567. // trayHosts
  4568. //
  4569. this.trayHosts.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4570. this.trayHosts.ForeColor = System.Drawing.Color.White;
  4571. this.trayHosts.Image = ((System.Drawing.Image)(resources.GetObject("trayHosts.Image")));
  4572. this.trayHosts.Name = "trayHosts";
  4573. this.trayHosts.Size = new System.Drawing.Size(214, 26);
  4574. this.trayHosts.Text = "HOSTS Editor";
  4575. this.trayHosts.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal;
  4576. this.trayHosts.Click += new System.EventHandler(this.hostsItem_Click);
  4577. //
  4578. // trayAD
  4579. //
  4580. this.trayAD.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4581. this.trayAD.ForeColor = System.Drawing.Color.White;
  4582. this.trayAD.Image = ((System.Drawing.Image)(resources.GetObject("trayAD.Image")));
  4583. this.trayAD.Name = "trayAD";
  4584. this.trayAD.Size = new System.Drawing.Size(214, 26);
  4585. this.trayAD.Text = "Apps Downloader";
  4586. this.trayAD.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal;
  4587. this.trayAD.Click += new System.EventHandler(this.appsItem_Click);
  4588. //
  4589. // toolStripSeparator1
  4590. //
  4591. this.toolStripSeparator1.BackColor = System.Drawing.Color.DodgerBlue;
  4592. this.toolStripSeparator1.ForeColor = System.Drawing.Color.DodgerBlue;
  4593. this.toolStripSeparator1.Name = "toolStripSeparator1";
  4594. this.toolStripSeparator1.Size = new System.Drawing.Size(211, 6);
  4595. this.toolStripSeparator1.Tag = "";
  4596. //
  4597. // trayRestartExplorer
  4598. //
  4599. this.trayRestartExplorer.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4600. this.trayRestartExplorer.ForeColor = System.Drawing.Color.White;
  4601. this.trayRestartExplorer.Image = ((System.Drawing.Image)(resources.GetObject("trayRestartExplorer.Image")));
  4602. this.trayRestartExplorer.Name = "trayRestartExplorer";
  4603. this.trayRestartExplorer.Size = new System.Drawing.Size(214, 26);
  4604. this.trayRestartExplorer.Text = "Restart Explorer";
  4605. this.trayRestartExplorer.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal;
  4606. this.trayRestartExplorer.Click += new System.EventHandler(this.restartExpolorerItem_Click);
  4607. //
  4608. // trayExit
  4609. //
  4610. this.trayExit.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4611. this.trayExit.ForeColor = System.Drawing.Color.White;
  4612. this.trayExit.Image = ((System.Drawing.Image)(resources.GetObject("trayExit.Image")));
  4613. this.trayExit.Name = "trayExit";
  4614. this.trayExit.Size = new System.Drawing.Size(214, 26);
  4615. this.trayExit.Text = "Exit";
  4616. this.trayExit.Click += new System.EventHandler(this.exitItem_Click);
  4617. //
  4618. // launcherIcon
  4619. //
  4620. this.launcherIcon.ContextMenuStrip = this.launcherMenu;
  4621. this.launcherIcon.Icon = ((System.Drawing.Icon)(resources.GetObject("launcherIcon.Icon")));
  4622. this.launcherIcon.Text = "Optimizer";
  4623. this.launcherIcon.Visible = true;
  4624. this.launcherIcon.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.launcherIcon_MouseDoubleClick);
  4625. //
  4626. // helpBox
  4627. //
  4628. this.helpBox.IsBalloon = true;
  4629. this.helpBox.ToolTipIcon = System.Windows.Forms.ToolTipIcon.Info;
  4630. this.helpBox.UseAnimation = false;
  4631. this.helpBox.UseFading = false;
  4632. //
  4633. // txtNetFw
  4634. //
  4635. this.txtNetFw.AutoSize = true;
  4636. this.txtNetFw.ForeColor = System.Drawing.Color.Silver;
  4637. this.txtNetFw.Location = new System.Drawing.Point(188, 42);
  4638. this.txtNetFw.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  4639. this.txtNetFw.Name = "txtNetFw";
  4640. this.txtNetFw.Size = new System.Drawing.Size(37, 15);
  4641. this.txtNetFw.TabIndex = 70;
  4642. this.txtNetFw.Text = "netfw";
  4643. //
  4644. // stickySw
  4645. //
  4646. this.stickySw.Location = new System.Drawing.Point(337, 121);
  4647. this.stickySw.Margin = new System.Windows.Forms.Padding(2);
  4648. this.stickySw.Name = "stickySw";
  4649. this.stickySw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4650. this.stickySw.OffForeColor = System.Drawing.Color.White;
  4651. this.stickySw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4652. this.stickySw.OnForeColor = System.Drawing.Color.White;
  4653. this.stickySw.OnText = "Disable Sticky Keys";
  4654. this.stickySw.Size = new System.Drawing.Size(319, 31);
  4655. this.stickySw.TabIndex = 50;
  4656. this.stickySw.Tag = "themeable";
  4657. //
  4658. // smartScreenSw
  4659. //
  4660. this.smartScreenSw.Location = new System.Drawing.Point(14, 121);
  4661. this.smartScreenSw.Margin = new System.Windows.Forms.Padding(2);
  4662. this.smartScreenSw.Name = "smartScreenSw";
  4663. this.smartScreenSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4664. this.smartScreenSw.OffForeColor = System.Drawing.Color.White;
  4665. this.smartScreenSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4666. this.smartScreenSw.OnForeColor = System.Drawing.Color.White;
  4667. this.smartScreenSw.OnText = "Disable SmartScreen";
  4668. this.smartScreenSw.Size = new System.Drawing.Size(319, 31);
  4669. this.smartScreenSw.TabIndex = 49;
  4670. this.smartScreenSw.Tag = "themeable";
  4671. //
  4672. // faxSw
  4673. //
  4674. this.faxSw.Location = new System.Drawing.Point(337, 51);
  4675. this.faxSw.Margin = new System.Windows.Forms.Padding(2);
  4676. this.faxSw.Name = "faxSw";
  4677. this.faxSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4678. this.faxSw.OffForeColor = System.Drawing.Color.White;
  4679. this.faxSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4680. this.faxSw.OnForeColor = System.Drawing.Color.White;
  4681. this.faxSw.OnText = "Disable Fax Service";
  4682. this.faxSw.Size = new System.Drawing.Size(319, 31);
  4683. this.faxSw.TabIndex = 48;
  4684. this.faxSw.Tag = "themeable";
  4685. //
  4686. // compatSw
  4687. //
  4688. this.compatSw.Location = new System.Drawing.Point(337, 226);
  4689. this.compatSw.Margin = new System.Windows.Forms.Padding(2);
  4690. this.compatSw.Name = "compatSw";
  4691. this.compatSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4692. this.compatSw.OffForeColor = System.Drawing.Color.White;
  4693. this.compatSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4694. this.compatSw.OnForeColor = System.Drawing.Color.White;
  4695. this.compatSw.OnText = "Disable Compatibility Assistant";
  4696. this.compatSw.Size = new System.Drawing.Size(319, 31);
  4697. this.compatSw.TabIndex = 47;
  4698. this.compatSw.Tag = "themeable";
  4699. //
  4700. // officeTelemetrySw
  4701. //
  4702. this.officeTelemetrySw.Location = new System.Drawing.Point(14, 261);
  4703. this.officeTelemetrySw.Margin = new System.Windows.Forms.Padding(2);
  4704. this.officeTelemetrySw.Name = "officeTelemetrySw";
  4705. this.officeTelemetrySw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4706. this.officeTelemetrySw.OffForeColor = System.Drawing.Color.White;
  4707. this.officeTelemetrySw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4708. this.officeTelemetrySw.OnForeColor = System.Drawing.Color.White;
  4709. this.officeTelemetrySw.OnText = "Disable Office 2016 Telemetry";
  4710. this.officeTelemetrySw.Size = new System.Drawing.Size(319, 31);
  4711. this.officeTelemetrySw.TabIndex = 46;
  4712. this.officeTelemetrySw.Tag = "themeable";
  4713. //
  4714. // telemetryTasksSw
  4715. //
  4716. this.telemetryTasksSw.Location = new System.Drawing.Point(14, 226);
  4717. this.telemetryTasksSw.Margin = new System.Windows.Forms.Padding(2);
  4718. this.telemetryTasksSw.Name = "telemetryTasksSw";
  4719. this.telemetryTasksSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4720. this.telemetryTasksSw.OffForeColor = System.Drawing.Color.White;
  4721. this.telemetryTasksSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4722. this.telemetryTasksSw.OnForeColor = System.Drawing.Color.White;
  4723. this.telemetryTasksSw.OnText = "Disable Telemetry Tasks";
  4724. this.telemetryTasksSw.Size = new System.Drawing.Size(319, 31);
  4725. this.telemetryTasksSw.TabIndex = 45;
  4726. this.telemetryTasksSw.Tag = "themeable";
  4727. //
  4728. // superfetchSw
  4729. //
  4730. this.superfetchSw.Location = new System.Drawing.Point(337, 191);
  4731. this.superfetchSw.Margin = new System.Windows.Forms.Padding(2);
  4732. this.superfetchSw.Name = "superfetchSw";
  4733. this.superfetchSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4734. this.superfetchSw.OffForeColor = System.Drawing.Color.White;
  4735. this.superfetchSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4736. this.superfetchSw.OnForeColor = System.Drawing.Color.White;
  4737. this.superfetchSw.OnText = "Disable Superfetch";
  4738. this.superfetchSw.Size = new System.Drawing.Size(319, 31);
  4739. this.superfetchSw.TabIndex = 44;
  4740. this.superfetchSw.Tag = "themeable";
  4741. //
  4742. // homegroupSw
  4743. //
  4744. this.homegroupSw.Location = new System.Drawing.Point(337, 156);
  4745. this.homegroupSw.Margin = new System.Windows.Forms.Padding(2);
  4746. this.homegroupSw.Name = "homegroupSw";
  4747. this.homegroupSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4748. this.homegroupSw.OffForeColor = System.Drawing.Color.White;
  4749. this.homegroupSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4750. this.homegroupSw.OnForeColor = System.Drawing.Color.White;
  4751. this.homegroupSw.OnText = "Disable HomeGroup";
  4752. this.homegroupSw.Size = new System.Drawing.Size(319, 31);
  4753. this.homegroupSw.TabIndex = 43;
  4754. this.homegroupSw.Tag = "themeable";
  4755. //
  4756. // reportingSw
  4757. //
  4758. this.reportingSw.Location = new System.Drawing.Point(14, 191);
  4759. this.reportingSw.Margin = new System.Windows.Forms.Padding(2);
  4760. this.reportingSw.Name = "reportingSw";
  4761. this.reportingSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4762. this.reportingSw.OffForeColor = System.Drawing.Color.White;
  4763. this.reportingSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4764. this.reportingSw.OnForeColor = System.Drawing.Color.White;
  4765. this.reportingSw.OnText = "Disable Error Reporting";
  4766. this.reportingSw.Size = new System.Drawing.Size(319, 31);
  4767. this.reportingSw.TabIndex = 42;
  4768. this.reportingSw.Tag = "themeable";
  4769. //
  4770. // mediaSharingSw
  4771. //
  4772. this.mediaSharingSw.Location = new System.Drawing.Point(337, 86);
  4773. this.mediaSharingSw.Margin = new System.Windows.Forms.Padding(2);
  4774. this.mediaSharingSw.Name = "mediaSharingSw";
  4775. this.mediaSharingSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4776. this.mediaSharingSw.OffForeColor = System.Drawing.Color.White;
  4777. this.mediaSharingSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4778. this.mediaSharingSw.OnForeColor = System.Drawing.Color.White;
  4779. this.mediaSharingSw.OnText = "Disable Media Player Sharing";
  4780. this.mediaSharingSw.Size = new System.Drawing.Size(319, 31);
  4781. this.mediaSharingSw.TabIndex = 40;
  4782. this.mediaSharingSw.Tag = "themeable";
  4783. //
  4784. // printSw
  4785. //
  4786. this.printSw.Location = new System.Drawing.Point(337, 16);
  4787. this.printSw.Margin = new System.Windows.Forms.Padding(2);
  4788. this.printSw.Name = "printSw";
  4789. this.printSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4790. this.printSw.OffForeColor = System.Drawing.Color.White;
  4791. this.printSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4792. this.printSw.OnForeColor = System.Drawing.Color.White;
  4793. this.printSw.OnText = "Disable Print Service";
  4794. this.printSw.Size = new System.Drawing.Size(319, 31);
  4795. this.printSw.TabIndex = 39;
  4796. this.printSw.Tag = "themeable";
  4797. //
  4798. // systemRestoreSw
  4799. //
  4800. this.systemRestoreSw.Location = new System.Drawing.Point(14, 156);
  4801. this.systemRestoreSw.Margin = new System.Windows.Forms.Padding(2);
  4802. this.systemRestoreSw.Name = "systemRestoreSw";
  4803. this.systemRestoreSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4804. this.systemRestoreSw.OffForeColor = System.Drawing.Color.White;
  4805. this.systemRestoreSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4806. this.systemRestoreSw.OnForeColor = System.Drawing.Color.White;
  4807. this.systemRestoreSw.OnText = "Disable System Restore";
  4808. this.systemRestoreSw.Size = new System.Drawing.Size(319, 31);
  4809. this.systemRestoreSw.TabIndex = 38;
  4810. this.systemRestoreSw.Tag = "themeable";
  4811. //
  4812. // performanceSw
  4813. //
  4814. this.performanceSw.Location = new System.Drawing.Point(14, 16);
  4815. this.performanceSw.Margin = new System.Windows.Forms.Padding(2);
  4816. this.performanceSw.Name = "performanceSw";
  4817. this.performanceSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4818. this.performanceSw.OffForeColor = System.Drawing.Color.White;
  4819. this.performanceSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4820. this.performanceSw.OnForeColor = System.Drawing.Color.White;
  4821. this.performanceSw.OnText = "Enable Performance Tweaks";
  4822. this.performanceSw.Size = new System.Drawing.Size(319, 31);
  4823. this.performanceSw.TabIndex = 37;
  4824. this.performanceSw.Tag = "themeable";
  4825. //
  4826. // defenderSw
  4827. //
  4828. this.defenderSw.Location = new System.Drawing.Point(14, 86);
  4829. this.defenderSw.Margin = new System.Windows.Forms.Padding(2);
  4830. this.defenderSw.Name = "defenderSw";
  4831. this.defenderSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4832. this.defenderSw.OffForeColor = System.Drawing.Color.White;
  4833. this.defenderSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4834. this.defenderSw.OnForeColor = System.Drawing.Color.White;
  4835. this.defenderSw.OnText = "Disable Windows Defender";
  4836. this.defenderSw.Size = new System.Drawing.Size(319, 31);
  4837. this.defenderSw.TabIndex = 36;
  4838. this.defenderSw.Tag = "themeable";
  4839. //
  4840. // networkSw
  4841. //
  4842. this.networkSw.Location = new System.Drawing.Point(14, 51);
  4843. this.networkSw.Margin = new System.Windows.Forms.Padding(2);
  4844. this.networkSw.Name = "networkSw";
  4845. this.networkSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4846. this.networkSw.OffForeColor = System.Drawing.Color.White;
  4847. this.networkSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4848. this.networkSw.OnForeColor = System.Drawing.Color.White;
  4849. this.networkSw.OnText = "Disable Network Throttling";
  4850. this.networkSw.Size = new System.Drawing.Size(319, 31);
  4851. this.networkSw.TabIndex = 35;
  4852. this.networkSw.Tag = "themeable";
  4853. //
  4854. // actionSw
  4855. //
  4856. this.actionSw.Location = new System.Drawing.Point(14, 410);
  4857. this.actionSw.Margin = new System.Windows.Forms.Padding(2);
  4858. this.actionSw.Name = "actionSw";
  4859. this.actionSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4860. this.actionSw.OffForeColor = System.Drawing.Color.White;
  4861. this.actionSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4862. this.actionSw.OnForeColor = System.Drawing.Color.White;
  4863. this.actionSw.OnText = "Disable Notification Center";
  4864. this.actionSw.Size = new System.Drawing.Size(319, 31);
  4865. this.actionSw.TabIndex = 71;
  4866. this.actionSw.Tag = "themeable";
  4867. //
  4868. // castSw
  4869. //
  4870. this.castSw.Location = new System.Drawing.Point(337, 267);
  4871. this.castSw.Margin = new System.Windows.Forms.Padding(2);
  4872. this.castSw.Name = "castSw";
  4873. this.castSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4874. this.castSw.OffForeColor = System.Drawing.Color.White;
  4875. this.castSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4876. this.castSw.OnForeColor = System.Drawing.Color.White;
  4877. this.castSw.OnText = "Remove Cast To Device";
  4878. this.castSw.Size = new System.Drawing.Size(319, 31);
  4879. this.castSw.TabIndex = 61;
  4880. this.castSw.Tag = "themeable";
  4881. //
  4882. // longPathsSw
  4883. //
  4884. this.longPathsSw.Location = new System.Drawing.Point(14, 267);
  4885. this.longPathsSw.Margin = new System.Windows.Forms.Padding(2);
  4886. this.longPathsSw.Name = "longPathsSw";
  4887. this.longPathsSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4888. this.longPathsSw.OffForeColor = System.Drawing.Color.White;
  4889. this.longPathsSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4890. this.longPathsSw.OnForeColor = System.Drawing.Color.White;
  4891. this.longPathsSw.OnText = "Enable Long Paths";
  4892. this.longPathsSw.Size = new System.Drawing.Size(319, 31);
  4893. this.longPathsSw.TabIndex = 60;
  4894. this.longPathsSw.Tag = "themeable";
  4895. //
  4896. // ccSw
  4897. //
  4898. this.ccSw.Location = new System.Drawing.Point(337, 161);
  4899. this.ccSw.Margin = new System.Windows.Forms.Padding(2);
  4900. this.ccSw.Name = "ccSw";
  4901. this.ccSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4902. this.ccSw.OffForeColor = System.Drawing.Color.White;
  4903. this.ccSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4904. this.ccSw.OnForeColor = System.Drawing.Color.White;
  4905. this.ccSw.OnText = "Disable Cloud Clipboard";
  4906. this.ccSw.Size = new System.Drawing.Size(319, 31);
  4907. this.ccSw.TabIndex = 59;
  4908. this.ccSw.Tag = "themeable";
  4909. //
  4910. // featuresSw
  4911. //
  4912. this.featuresSw.Location = new System.Drawing.Point(337, 375);
  4913. this.featuresSw.Margin = new System.Windows.Forms.Padding(2);
  4914. this.featuresSw.Name = "featuresSw";
  4915. this.featuresSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4916. this.featuresSw.OffForeColor = System.Drawing.Color.White;
  4917. this.featuresSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4918. this.featuresSw.OnForeColor = System.Drawing.Color.White;
  4919. this.featuresSw.OnText = "Disable Feature Updates";
  4920. this.featuresSw.Size = new System.Drawing.Size(319, 31);
  4921. this.featuresSw.TabIndex = 58;
  4922. this.featuresSw.Tag = "themeable";
  4923. //
  4924. // insiderSw
  4925. //
  4926. this.insiderSw.Location = new System.Drawing.Point(337, 339);
  4927. this.insiderSw.Margin = new System.Windows.Forms.Padding(2);
  4928. this.insiderSw.Name = "insiderSw";
  4929. this.insiderSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4930. this.insiderSw.OffForeColor = System.Drawing.Color.White;
  4931. this.insiderSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4932. this.insiderSw.OnForeColor = System.Drawing.Color.White;
  4933. this.insiderSw.OnText = "Disable Insider Service";
  4934. this.insiderSw.Size = new System.Drawing.Size(319, 31);
  4935. this.insiderSw.TabIndex = 57;
  4936. this.insiderSw.Tag = "themeable";
  4937. //
  4938. // darkSw
  4939. //
  4940. this.darkSw.Location = new System.Drawing.Point(14, 160);
  4941. this.darkSw.Margin = new System.Windows.Forms.Padding(2);
  4942. this.darkSw.Name = "darkSw";
  4943. this.darkSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4944. this.darkSw.OffForeColor = System.Drawing.Color.White;
  4945. this.darkSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4946. this.darkSw.OnForeColor = System.Drawing.Color.White;
  4947. this.darkSw.OnText = "Enable Dark Theme";
  4948. this.darkSw.Size = new System.Drawing.Size(319, 31);
  4949. this.darkSw.TabIndex = 56;
  4950. this.darkSw.Tag = "themeable";
  4951. //
  4952. // spellSw
  4953. //
  4954. this.spellSw.Location = new System.Drawing.Point(14, 339);
  4955. this.spellSw.Margin = new System.Windows.Forms.Padding(2);
  4956. this.spellSw.Name = "spellSw";
  4957. this.spellSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4958. this.spellSw.OffForeColor = System.Drawing.Color.White;
  4959. this.spellSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4960. this.spellSw.OnForeColor = System.Drawing.Color.White;
  4961. this.spellSw.OnText = "Disable Spell Checking";
  4962. this.spellSw.Size = new System.Drawing.Size(319, 31);
  4963. this.spellSw.TabIndex = 55;
  4964. this.spellSw.Tag = "themeable";
  4965. //
  4966. // inkSw
  4967. //
  4968. this.inkSw.Location = new System.Drawing.Point(14, 303);
  4969. this.inkSw.Margin = new System.Windows.Forms.Padding(2);
  4970. this.inkSw.Name = "inkSw";
  4971. this.inkSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4972. this.inkSw.OffForeColor = System.Drawing.Color.White;
  4973. this.inkSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4974. this.inkSw.OnForeColor = System.Drawing.Color.White;
  4975. this.inkSw.OnText = "Disable Windows Ink";
  4976. this.inkSw.Size = new System.Drawing.Size(319, 31);
  4977. this.inkSw.TabIndex = 54;
  4978. this.inkSw.Tag = "themeable";
  4979. //
  4980. // driversSw
  4981. //
  4982. this.driversSw.Location = new System.Drawing.Point(337, 52);
  4983. this.driversSw.Margin = new System.Windows.Forms.Padding(2);
  4984. this.driversSw.Name = "driversSw";
  4985. this.driversSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4986. this.driversSw.OffForeColor = System.Drawing.Color.White;
  4987. this.driversSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4988. this.driversSw.OnForeColor = System.Drawing.Color.White;
  4989. this.driversSw.OnText = "Exclude Drivers from Updates";
  4990. this.driversSw.Size = new System.Drawing.Size(319, 31);
  4991. this.driversSw.TabIndex = 53;
  4992. this.driversSw.Tag = "themeable";
  4993. //
  4994. // sensorSw
  4995. //
  4996. this.sensorSw.Location = new System.Drawing.Point(337, 232);
  4997. this.sensorSw.Margin = new System.Windows.Forms.Padding(2);
  4998. this.sensorSw.Name = "sensorSw";
  4999. this.sensorSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5000. this.sensorSw.OffForeColor = System.Drawing.Color.White;
  5001. this.sensorSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5002. this.sensorSw.OnForeColor = System.Drawing.Color.White;
  5003. this.sensorSw.OnText = "Disable Sensor Services";
  5004. this.sensorSw.Size = new System.Drawing.Size(319, 31);
  5005. this.sensorSw.TabIndex = 51;
  5006. this.sensorSw.Tag = "themeable";
  5007. //
  5008. // privacySw
  5009. //
  5010. this.privacySw.Location = new System.Drawing.Point(337, 124);
  5011. this.privacySw.Margin = new System.Windows.Forms.Padding(2);
  5012. this.privacySw.Name = "privacySw";
  5013. this.privacySw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5014. this.privacySw.OffForeColor = System.Drawing.Color.White;
  5015. this.privacySw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5016. this.privacySw.OnForeColor = System.Drawing.Color.White;
  5017. this.privacySw.OnText = "Enhance Privacy";
  5018. this.privacySw.Size = new System.Drawing.Size(319, 31);
  5019. this.privacySw.TabIndex = 50;
  5020. this.privacySw.Tag = "themeable";
  5021. //
  5022. // telemetryServicesSw
  5023. //
  5024. this.telemetryServicesSw.Location = new System.Drawing.Point(337, 88);
  5025. this.telemetryServicesSw.Margin = new System.Windows.Forms.Padding(2);
  5026. this.telemetryServicesSw.Name = "telemetryServicesSw";
  5027. this.telemetryServicesSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5028. this.telemetryServicesSw.OffForeColor = System.Drawing.Color.White;
  5029. this.telemetryServicesSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5030. this.telemetryServicesSw.OnForeColor = System.Drawing.Color.White;
  5031. this.telemetryServicesSw.OnText = "Disable Telemetry Services";
  5032. this.telemetryServicesSw.Size = new System.Drawing.Size(319, 31);
  5033. this.telemetryServicesSw.TabIndex = 48;
  5034. this.telemetryServicesSw.Tag = "themeable";
  5035. //
  5036. // autoUpdatesSw
  5037. //
  5038. this.autoUpdatesSw.Location = new System.Drawing.Point(337, 16);
  5039. this.autoUpdatesSw.Margin = new System.Windows.Forms.Padding(2);
  5040. this.autoUpdatesSw.Name = "autoUpdatesSw";
  5041. this.autoUpdatesSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5042. this.autoUpdatesSw.OffForeColor = System.Drawing.Color.White;
  5043. this.autoUpdatesSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5044. this.autoUpdatesSw.OnForeColor = System.Drawing.Color.White;
  5045. this.autoUpdatesSw.OnText = "Disable Automatic Updates";
  5046. this.autoUpdatesSw.Size = new System.Drawing.Size(319, 31);
  5047. this.autoUpdatesSw.TabIndex = 47;
  5048. this.autoUpdatesSw.Tag = "themeable";
  5049. //
  5050. // peopleSw
  5051. //
  5052. this.peopleSw.Location = new System.Drawing.Point(14, 232);
  5053. this.peopleSw.Margin = new System.Windows.Forms.Padding(2);
  5054. this.peopleSw.Name = "peopleSw";
  5055. this.peopleSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5056. this.peopleSw.OffForeColor = System.Drawing.Color.White;
  5057. this.peopleSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5058. this.peopleSw.OnForeColor = System.Drawing.Color.White;
  5059. this.peopleSw.OnText = "Disable My People";
  5060. this.peopleSw.Size = new System.Drawing.Size(319, 31);
  5061. this.peopleSw.TabIndex = 46;
  5062. this.peopleSw.Tag = "themeable";
  5063. //
  5064. // adsSw
  5065. //
  5066. this.adsSw.Location = new System.Drawing.Point(14, 124);
  5067. this.adsSw.Margin = new System.Windows.Forms.Padding(2);
  5068. this.adsSw.Name = "adsSw";
  5069. this.adsSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5070. this.adsSw.OffForeColor = System.Drawing.Color.White;
  5071. this.adsSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5072. this.adsSw.OnForeColor = System.Drawing.Color.White;
  5073. this.adsSw.OnText = "Disable Start Menu Ads";
  5074. this.adsSw.Size = new System.Drawing.Size(319, 31);
  5075. this.adsSw.TabIndex = 45;
  5076. this.adsSw.Tag = "themeable";
  5077. //
  5078. // colorBarSw
  5079. //
  5080. this.colorBarSw.Location = new System.Drawing.Point(14, 52);
  5081. this.colorBarSw.Margin = new System.Windows.Forms.Padding(2);
  5082. this.colorBarSw.Name = "colorBarSw";
  5083. this.colorBarSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5084. this.colorBarSw.OffForeColor = System.Drawing.Color.White;
  5085. this.colorBarSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5086. this.colorBarSw.OnForeColor = System.Drawing.Color.White;
  5087. this.colorBarSw.OnText = "Enable Taskbar Color";
  5088. this.colorBarSw.Size = new System.Drawing.Size(319, 31);
  5089. this.colorBarSw.TabIndex = 44;
  5090. this.colorBarSw.Tag = "themeable";
  5091. //
  5092. // oldExplorerSw
  5093. //
  5094. this.oldExplorerSw.Location = new System.Drawing.Point(14, 88);
  5095. this.oldExplorerSw.Margin = new System.Windows.Forms.Padding(2);
  5096. this.oldExplorerSw.Name = "oldExplorerSw";
  5097. this.oldExplorerSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5098. this.oldExplorerSw.OffForeColor = System.Drawing.Color.White;
  5099. this.oldExplorerSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5100. this.oldExplorerSw.OnForeColor = System.Drawing.Color.White;
  5101. this.oldExplorerSw.OnText = "Disable Quick Access History";
  5102. this.oldExplorerSw.Size = new System.Drawing.Size(319, 31);
  5103. this.oldExplorerSw.TabIndex = 43;
  5104. this.oldExplorerSw.Tag = "themeable";
  5105. //
  5106. // xboxSw
  5107. //
  5108. this.xboxSw.Location = new System.Drawing.Point(14, 375);
  5109. this.xboxSw.Margin = new System.Windows.Forms.Padding(2);
  5110. this.xboxSw.Name = "xboxSw";
  5111. this.xboxSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5112. this.xboxSw.OffForeColor = System.Drawing.Color.White;
  5113. this.xboxSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5114. this.xboxSw.OnForeColor = System.Drawing.Color.White;
  5115. this.xboxSw.OnText = "Disable Xbox Live";
  5116. this.xboxSw.Size = new System.Drawing.Size(319, 31);
  5117. this.xboxSw.TabIndex = 42;
  5118. this.xboxSw.Tag = "themeable";
  5119. //
  5120. // cortanaSw
  5121. //
  5122. this.cortanaSw.Location = new System.Drawing.Point(337, 196);
  5123. this.cortanaSw.Margin = new System.Windows.Forms.Padding(2);
  5124. this.cortanaSw.Name = "cortanaSw";
  5125. this.cortanaSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5126. this.cortanaSw.OffForeColor = System.Drawing.Color.White;
  5127. this.cortanaSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5128. this.cortanaSw.OnForeColor = System.Drawing.Color.White;
  5129. this.cortanaSw.OnText = "Disable Cortana";
  5130. this.cortanaSw.Size = new System.Drawing.Size(319, 31);
  5131. this.cortanaSw.TabIndex = 41;
  5132. this.cortanaSw.Tag = "themeable";
  5133. //
  5134. // gameBarSw
  5135. //
  5136. this.gameBarSw.Location = new System.Drawing.Point(337, 303);
  5137. this.gameBarSw.Margin = new System.Windows.Forms.Padding(2);
  5138. this.gameBarSw.Name = "gameBarSw";
  5139. this.gameBarSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5140. this.gameBarSw.OffForeColor = System.Drawing.Color.White;
  5141. this.gameBarSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5142. this.gameBarSw.OnForeColor = System.Drawing.Color.White;
  5143. this.gameBarSw.OnText = "Disable Game Bar";
  5144. this.gameBarSw.Size = new System.Drawing.Size(319, 31);
  5145. this.gameBarSw.TabIndex = 40;
  5146. this.gameBarSw.Tag = "themeable";
  5147. //
  5148. // uODSw
  5149. //
  5150. this.uODSw.Location = new System.Drawing.Point(14, 196);
  5151. this.uODSw.Margin = new System.Windows.Forms.Padding(2);
  5152. this.uODSw.Name = "uODSw";
  5153. this.uODSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5154. this.uODSw.OffForeColor = System.Drawing.Color.White;
  5155. this.uODSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5156. this.uODSw.OnForeColor = System.Drawing.Color.White;
  5157. this.uODSw.OnText = "Uninstall OneDrive";
  5158. this.uODSw.Size = new System.Drawing.Size(319, 31);
  5159. this.uODSw.TabIndex = 39;
  5160. this.uODSw.Tag = "themeable";
  5161. //
  5162. // oldMixerSw
  5163. //
  5164. this.oldMixerSw.Location = new System.Drawing.Point(14, 16);
  5165. this.oldMixerSw.Margin = new System.Windows.Forms.Padding(2);
  5166. this.oldMixerSw.Name = "oldMixerSw";
  5167. this.oldMixerSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5168. this.oldMixerSw.OffForeColor = System.Drawing.Color.White;
  5169. this.oldMixerSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5170. this.oldMixerSw.OnForeColor = System.Drawing.Color.White;
  5171. this.oldMixerSw.OnText = "Enable Classic Volume Mixer";
  5172. this.oldMixerSw.Size = new System.Drawing.Size(319, 31);
  5173. this.oldMixerSw.TabIndex = 38;
  5174. this.oldMixerSw.Tag = "themeable";
  5175. //
  5176. // disableOneDriveSw
  5177. //
  5178. this.disableOneDriveSw.Location = new System.Drawing.Point(14, 16);
  5179. this.disableOneDriveSw.Margin = new System.Windows.Forms.Padding(2);
  5180. this.disableOneDriveSw.Name = "disableOneDriveSw";
  5181. this.disableOneDriveSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5182. this.disableOneDriveSw.OffForeColor = System.Drawing.Color.White;
  5183. this.disableOneDriveSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5184. this.disableOneDriveSw.OnForeColor = System.Drawing.Color.White;
  5185. this.disableOneDriveSw.OnText = "Disable OneDrive";
  5186. this.disableOneDriveSw.Size = new System.Drawing.Size(319, 31);
  5187. this.disableOneDriveSw.TabIndex = 46;
  5188. this.disableOneDriveSw.Tag = "themeable";
  5189. //
  5190. // chkOnlyRemovable
  5191. //
  5192. this.chkOnlyRemovable.AutoSize = true;
  5193. this.chkOnlyRemovable.Font = new System.Drawing.Font("Segoe UI Semibold", 12F);
  5194. this.chkOnlyRemovable.ForeColor = System.Drawing.Color.White;
  5195. this.chkOnlyRemovable.Location = new System.Drawing.Point(503, 140);
  5196. this.chkOnlyRemovable.Margin = new System.Windows.Forms.Padding(2);
  5197. this.chkOnlyRemovable.Name = "chkOnlyRemovable";
  5198. this.chkOnlyRemovable.Size = new System.Drawing.Size(170, 25);
  5199. this.chkOnlyRemovable.TabIndex = 53;
  5200. this.chkOnlyRemovable.Text = "Only uninstall-ables";
  5201. this.chkOnlyRemovable.UseVisualStyleBackColor = true;
  5202. this.chkOnlyRemovable.CheckedChanged += new System.EventHandler(this.chkOnlyRemovable_CheckedChanged);
  5203. //
  5204. // chkSelectAllModernApps
  5205. //
  5206. this.chkSelectAllModernApps.AutoSize = true;
  5207. this.chkSelectAllModernApps.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5208. this.chkSelectAllModernApps.ForeColor = System.Drawing.Color.White;
  5209. this.chkSelectAllModernApps.Location = new System.Drawing.Point(503, 111);
  5210. this.chkSelectAllModernApps.Margin = new System.Windows.Forms.Padding(2);
  5211. this.chkSelectAllModernApps.Name = "chkSelectAllModernApps";
  5212. this.chkSelectAllModernApps.Size = new System.Drawing.Size(94, 25);
  5213. this.chkSelectAllModernApps.TabIndex = 52;
  5214. this.chkSelectAllModernApps.Text = "Select all";
  5215. this.chkSelectAllModernApps.UseVisualStyleBackColor = true;
  5216. this.chkSelectAllModernApps.CheckedChanged += new System.EventHandler(this.chkSelectAllModernApps_CheckedChanged);
  5217. //
  5218. // cAutoInstall
  5219. //
  5220. this.cAutoInstall.AutoSize = true;
  5221. this.cAutoInstall.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
  5222. this.cAutoInstall.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5223. this.cAutoInstall.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
  5224. this.cAutoInstall.Location = new System.Drawing.Point(560, 99);
  5225. this.cAutoInstall.Name = "cAutoInstall";
  5226. this.cAutoInstall.Size = new System.Drawing.Size(198, 24);
  5227. this.cAutoInstall.TabIndex = 107;
  5228. this.cAutoInstall.Text = "Install after downloading";
  5229. this.cAutoInstall.UseVisualStyleBackColor = true;
  5230. //
  5231. // progressDownloader
  5232. //
  5233. this.progressDownloader.Location = new System.Drawing.Point(7, 108);
  5234. this.progressDownloader.MarqueeAnimationSpeed = 15;
  5235. this.progressDownloader.Name = "progressDownloader";
  5236. this.progressDownloader.Size = new System.Drawing.Size(302, 10);
  5237. this.progressDownloader.TabIndex = 160;
  5238. //
  5239. // c64
  5240. //
  5241. this.c64.AutoSize = true;
  5242. this.c64.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5243. this.c64.Location = new System.Drawing.Point(458, 30);
  5244. this.c64.Name = "c64";
  5245. this.c64.Size = new System.Drawing.Size(72, 25);
  5246. this.c64.TabIndex = 75;
  5247. this.c64.TabStop = true;
  5248. this.c64.Text = "64-bit";
  5249. this.c64.UseVisualStyleBackColor = true;
  5250. //
  5251. // c32
  5252. //
  5253. this.c32.AutoSize = true;
  5254. this.c32.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5255. this.c32.Location = new System.Drawing.Point(536, 30);
  5256. this.c32.Name = "c32";
  5257. this.c32.Size = new System.Drawing.Size(72, 25);
  5258. this.c32.TabIndex = 76;
  5259. this.c32.TabStop = true;
  5260. this.c32.Text = "32-bit";
  5261. this.c32.UseVisualStyleBackColor = true;
  5262. //
  5263. // cLightShot
  5264. //
  5265. this.cLightShot.AutoSize = true;
  5266. this.cLightShot.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5267. this.cLightShot.Location = new System.Drawing.Point(34, 788);
  5268. this.cLightShot.Name = "cLightShot";
  5269. this.cLightShot.Size = new System.Drawing.Size(91, 24);
  5270. this.cLightShot.TabIndex = 116;
  5271. this.cLightShot.Text = "Lightshot";
  5272. this.cLightShot.UseVisualStyleBackColor = true;
  5273. //
  5274. // cViper
  5275. //
  5276. this.cViper.AutoSize = true;
  5277. this.cViper.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5278. this.cViper.Location = new System.Drawing.Point(34, 758);
  5279. this.cViper.Name = "cViper";
  5280. this.cViper.Size = new System.Drawing.Size(139, 24);
  5281. this.cViper.TabIndex = 136;
  5282. this.cViper.Text = "ViPER4Windows";
  5283. this.cViper.UseVisualStyleBackColor = true;
  5284. //
  5285. // cVLC
  5286. //
  5287. this.cVLC.AutoSize = true;
  5288. this.cVLC.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5289. this.cVLC.Location = new System.Drawing.Point(33, 368);
  5290. this.cVLC.Name = "cVLC";
  5291. this.cVLC.Size = new System.Drawing.Size(148, 24);
  5292. this.cVLC.TabIndex = 154;
  5293. this.cVLC.Text = "VLC Media Player";
  5294. this.cVLC.UseVisualStyleBackColor = true;
  5295. //
  5296. // cGyazo
  5297. //
  5298. this.cGyazo.AutoSize = true;
  5299. this.cGyazo.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5300. this.cGyazo.Location = new System.Drawing.Point(34, 817);
  5301. this.cGyazo.Name = "cGyazo";
  5302. this.cGyazo.Size = new System.Drawing.Size(70, 24);
  5303. this.cGyazo.TabIndex = 117;
  5304. this.cGyazo.Text = "Gyazo";
  5305. this.cGyazo.UseVisualStyleBackColor = true;
  5306. //
  5307. // cFoobar
  5308. //
  5309. this.cFoobar.AutoSize = true;
  5310. this.cFoobar.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5311. this.cFoobar.Location = new System.Drawing.Point(33, 428);
  5312. this.cFoobar.Name = "cFoobar";
  5313. this.cFoobar.Size = new System.Drawing.Size(109, 24);
  5314. this.cFoobar.TabIndex = 153;
  5315. this.cFoobar.Text = "Foobar2000";
  5316. this.cFoobar.UseVisualStyleBackColor = true;
  5317. //
  5318. // cPot
  5319. //
  5320. this.cPot.AutoSize = true;
  5321. this.cPot.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5322. this.cPot.Location = new System.Drawing.Point(33, 398);
  5323. this.cPot.Name = "cPot";
  5324. this.cPot.Size = new System.Drawing.Size(93, 24);
  5325. this.cPot.TabIndex = 152;
  5326. this.cPot.Text = "PotPlayer";
  5327. this.cPot.UseVisualStyleBackColor = true;
  5328. //
  5329. // cAudacity
  5330. //
  5331. this.cAudacity.AutoSize = true;
  5332. this.cAudacity.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5333. this.cAudacity.Location = new System.Drawing.Point(34, 608);
  5334. this.cAudacity.Name = "cAudacity";
  5335. this.cAudacity.Size = new System.Drawing.Size(88, 24);
  5336. this.cAudacity.TabIndex = 55;
  5337. this.cAudacity.Text = "Audacity";
  5338. this.cAudacity.UseVisualStyleBackColor = true;
  5339. //
  5340. // cPhotoFiltre
  5341. //
  5342. this.cPhotoFiltre.AutoSize = true;
  5343. this.cPhotoFiltre.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5344. this.cPhotoFiltre.Location = new System.Drawing.Point(34, 640);
  5345. this.cPhotoFiltre.Name = "cPhotoFiltre";
  5346. this.cPhotoFiltre.Size = new System.Drawing.Size(104, 24);
  5347. this.cPhotoFiltre.TabIndex = 70;
  5348. this.cPhotoFiltre.Text = "PhotoFiltre";
  5349. this.cPhotoFiltre.UseVisualStyleBackColor = true;
  5350. //
  5351. // cIrfan
  5352. //
  5353. this.cIrfan.AutoSize = true;
  5354. this.cIrfan.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5355. this.cIrfan.Location = new System.Drawing.Point(33, 518);
  5356. this.cIrfan.Name = "cIrfan";
  5357. this.cIrfan.Size = new System.Drawing.Size(93, 24);
  5358. this.cIrfan.TabIndex = 60;
  5359. this.cIrfan.Text = "IrfanView";
  5360. this.cIrfan.UseVisualStyleBackColor = true;
  5361. //
  5362. // ciTunes
  5363. //
  5364. this.ciTunes.AutoSize = true;
  5365. this.ciTunes.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5366. this.ciTunes.Location = new System.Drawing.Point(34, 548);
  5367. this.ciTunes.Name = "ciTunes";
  5368. this.ciTunes.Size = new System.Drawing.Size(115, 24);
  5369. this.ciTunes.TabIndex = 122;
  5370. this.ciTunes.Text = "Apple iTunes";
  5371. this.ciTunes.UseVisualStyleBackColor = true;
  5372. //
  5373. // cGIMP
  5374. //
  5375. this.cGIMP.AutoSize = true;
  5376. this.cGIMP.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5377. this.cGIMP.Location = new System.Drawing.Point(34, 668);
  5378. this.cGIMP.Name = "cGIMP";
  5379. this.cGIMP.Size = new System.Drawing.Size(65, 24);
  5380. this.cGIMP.TabIndex = 58;
  5381. this.cGIMP.Text = "GIMP";
  5382. this.cGIMP.UseVisualStyleBackColor = true;
  5383. //
  5384. // cWinamp
  5385. //
  5386. this.cWinamp.AutoSize = true;
  5387. this.cWinamp.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5388. this.cWinamp.Location = new System.Drawing.Point(34, 578);
  5389. this.cWinamp.Name = "cWinamp";
  5390. this.cWinamp.Size = new System.Drawing.Size(85, 24);
  5391. this.cWinamp.TabIndex = 125;
  5392. this.cWinamp.Text = "Winamp";
  5393. this.cWinamp.UseVisualStyleBackColor = true;
  5394. //
  5395. // cBS
  5396. //
  5397. this.cBS.AutoSize = true;
  5398. this.cBS.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5399. this.cBS.Location = new System.Drawing.Point(33, 488);
  5400. this.cBS.Name = "cBS";
  5401. this.cBS.Size = new System.Drawing.Size(92, 24);
  5402. this.cBS.TabIndex = 155;
  5403. this.cBS.Text = "BS.Player";
  5404. this.cBS.UseVisualStyleBackColor = true;
  5405. //
  5406. // cSpotify
  5407. //
  5408. this.cSpotify.AutoSize = true;
  5409. this.cSpotify.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5410. this.cSpotify.Location = new System.Drawing.Point(33, 458);
  5411. this.cSpotify.Name = "cSpotify";
  5412. this.cSpotify.Size = new System.Drawing.Size(76, 24);
  5413. this.cSpotify.TabIndex = 156;
  5414. this.cSpotify.Text = "Spotify";
  5415. this.cSpotify.UseVisualStyleBackColor = true;
  5416. //
  5417. // cMp3Tag
  5418. //
  5419. this.cMp3Tag.AutoSize = true;
  5420. this.cMp3Tag.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5421. this.cMp3Tag.Location = new System.Drawing.Point(34, 697);
  5422. this.cMp3Tag.Name = "cMp3Tag";
  5423. this.cMp3Tag.Size = new System.Drawing.Size(87, 24);
  5424. this.cMp3Tag.TabIndex = 81;
  5425. this.cMp3Tag.Text = "MP3 Tag";
  5426. this.cMp3Tag.UseVisualStyleBackColor = true;
  5427. //
  5428. // cMega
  5429. //
  5430. this.cMega.AutoSize = true;
  5431. this.cMega.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5432. this.cMega.Location = new System.Drawing.Point(33, 303);
  5433. this.cMega.Name = "cMega";
  5434. this.cMega.Size = new System.Drawing.Size(100, 24);
  5435. this.cMega.TabIndex = 150;
  5436. this.cMega.Text = "MEGAsync";
  5437. this.cMega.UseVisualStyleBackColor = true;
  5438. //
  5439. // cAdobeReader
  5440. //
  5441. this.cAdobeReader.AutoSize = true;
  5442. this.cAdobeReader.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5443. this.cAdobeReader.Location = new System.Drawing.Point(33, 3);
  5444. this.cAdobeReader.Name = "cAdobeReader";
  5445. this.cAdobeReader.Size = new System.Drawing.Size(125, 24);
  5446. this.cAdobeReader.TabIndex = 55;
  5447. this.cAdobeReader.Text = "Adobe Reader";
  5448. this.cAdobeReader.UseVisualStyleBackColor = true;
  5449. //
  5450. // cBlender
  5451. //
  5452. this.cBlender.AutoSize = true;
  5453. this.cBlender.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5454. this.cBlender.Location = new System.Drawing.Point(34, 727);
  5455. this.cBlender.Name = "cBlender";
  5456. this.cBlender.Size = new System.Drawing.Size(81, 24);
  5457. this.cBlender.TabIndex = 135;
  5458. this.cBlender.Text = "Blender";
  5459. this.cBlender.UseVisualStyleBackColor = true;
  5460. //
  5461. // cFoxit
  5462. //
  5463. this.cFoxit.AutoSize = true;
  5464. this.cFoxit.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5465. this.cFoxit.Location = new System.Drawing.Point(33, 63);
  5466. this.cFoxit.Name = "cFoxit";
  5467. this.cFoxit.Size = new System.Drawing.Size(114, 24);
  5468. this.cFoxit.TabIndex = 59;
  5469. this.cFoxit.Text = "Foxit Reader";
  5470. this.cFoxit.UseVisualStyleBackColor = true;
  5471. //
  5472. // cEvernote
  5473. //
  5474. this.cEvernote.AutoSize = true;
  5475. this.cEvernote.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5476. this.cEvernote.Location = new System.Drawing.Point(33, 93);
  5477. this.cEvernote.Name = "cEvernote";
  5478. this.cEvernote.Size = new System.Drawing.Size(89, 24);
  5479. this.cEvernote.TabIndex = 80;
  5480. this.cEvernote.Text = "Evernote";
  5481. this.cEvernote.UseVisualStyleBackColor = true;
  5482. //
  5483. // cSumatra
  5484. //
  5485. this.cSumatra.AutoSize = true;
  5486. this.cSumatra.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5487. this.cSumatra.Location = new System.Drawing.Point(33, 33);
  5488. this.cSumatra.Name = "cSumatra";
  5489. this.cSumatra.Size = new System.Drawing.Size(113, 24);
  5490. this.cSumatra.TabIndex = 58;
  5491. this.cSumatra.Text = "SumatraPDF";
  5492. this.cSumatra.UseVisualStyleBackColor = true;
  5493. //
  5494. // cLibreOffice
  5495. //
  5496. this.cLibreOffice.AutoSize = true;
  5497. this.cLibreOffice.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5498. this.cLibreOffice.Location = new System.Drawing.Point(33, 123);
  5499. this.cLibreOffice.Name = "cLibreOffice";
  5500. this.cLibreOffice.Size = new System.Drawing.Size(102, 24);
  5501. this.cLibreOffice.TabIndex = 99;
  5502. this.cLibreOffice.Text = "LibreOffice";
  5503. this.cLibreOffice.UseVisualStyleBackColor = true;
  5504. //
  5505. // cPeaZip
  5506. //
  5507. this.cPeaZip.AutoSize = true;
  5508. this.cPeaZip.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5509. this.cPeaZip.Location = new System.Drawing.Point(33, 183);
  5510. this.cPeaZip.Name = "cPeaZip";
  5511. this.cPeaZip.Size = new System.Drawing.Size(74, 24);
  5512. this.cPeaZip.TabIndex = 55;
  5513. this.cPeaZip.Text = "PeaZip";
  5514. this.cPeaZip.UseVisualStyleBackColor = true;
  5515. //
  5516. // cFlux
  5517. //
  5518. this.cFlux.AutoSize = true;
  5519. this.cFlux.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5520. this.cFlux.Location = new System.Drawing.Point(34, 338);
  5521. this.cFlux.Name = "cFlux";
  5522. this.cFlux.Size = new System.Drawing.Size(60, 24);
  5523. this.cFlux.TabIndex = 148;
  5524. this.cFlux.Text = "F.lux";
  5525. this.cFlux.UseVisualStyleBackColor = true;
  5526. //
  5527. // c7zip
  5528. //
  5529. this.c7zip.AutoSize = true;
  5530. this.c7zip.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5531. this.c7zip.Location = new System.Drawing.Point(33, 153);
  5532. this.c7zip.Name = "c7zip";
  5533. this.c7zip.Size = new System.Drawing.Size(64, 24);
  5534. this.c7zip.TabIndex = 58;
  5535. this.c7zip.Text = "7-Zip";
  5536. this.c7zip.UseVisualStyleBackColor = true;
  5537. //
  5538. // cWinRar
  5539. //
  5540. this.cWinRar.AutoSize = true;
  5541. this.cWinRar.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5542. this.cWinRar.Location = new System.Drawing.Point(33, 213);
  5543. this.cWinRar.Name = "cWinRar";
  5544. this.cWinRar.Size = new System.Drawing.Size(83, 24);
  5545. this.cWinRar.TabIndex = 57;
  5546. this.cWinRar.Text = "WinRAR";
  5547. this.cWinRar.UseVisualStyleBackColor = true;
  5548. //
  5549. // cDropbox
  5550. //
  5551. this.cDropbox.AutoSize = true;
  5552. this.cDropbox.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5553. this.cDropbox.Location = new System.Drawing.Point(33, 243);
  5554. this.cDropbox.Name = "cDropbox";
  5555. this.cDropbox.Size = new System.Drawing.Size(89, 24);
  5556. this.cDropbox.TabIndex = 124;
  5557. this.cDropbox.Text = "Dropbox";
  5558. this.cDropbox.UseVisualStyleBackColor = true;
  5559. //
  5560. // cOneDrive
  5561. //
  5562. this.cOneDrive.AutoSize = true;
  5563. this.cOneDrive.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5564. this.cOneDrive.Location = new System.Drawing.Point(33, 273);
  5565. this.cOneDrive.Name = "cOneDrive";
  5566. this.cOneDrive.Size = new System.Drawing.Size(93, 24);
  5567. this.cOneDrive.TabIndex = 73;
  5568. this.cOneDrive.Text = "OneDrive";
  5569. this.cOneDrive.UseVisualStyleBackColor = true;
  5570. //
  5571. // cSteam
  5572. //
  5573. this.cSteam.AutoSize = true;
  5574. this.cSteam.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5575. this.cSteam.Location = new System.Drawing.Point(35, 573);
  5576. this.cSteam.Name = "cSteam";
  5577. this.cSteam.Size = new System.Drawing.Size(70, 24);
  5578. this.cSteam.TabIndex = 70;
  5579. this.cSteam.Text = "Steam";
  5580. this.cSteam.UseVisualStyleBackColor = true;
  5581. //
  5582. // cOrigin
  5583. //
  5584. this.cOrigin.AutoSize = true;
  5585. this.cOrigin.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5586. this.cOrigin.Location = new System.Drawing.Point(35, 693);
  5587. this.cOrigin.Name = "cOrigin";
  5588. this.cOrigin.Size = new System.Drawing.Size(93, 24);
  5589. this.cOrigin.TabIndex = 111;
  5590. this.cOrigin.Text = "EA Origin";
  5591. this.cOrigin.UseVisualStyleBackColor = true;
  5592. //
  5593. // cVCPP
  5594. //
  5595. this.cVCPP.AutoSize = true;
  5596. this.cVCPP.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
  5597. this.cVCPP.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5598. this.cVCPP.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
  5599. this.cVCPP.Location = new System.Drawing.Point(35, 125);
  5600. this.cVCPP.Name = "cVCPP";
  5601. this.cVCPP.Size = new System.Drawing.Size(131, 24);
  5602. this.cVCPP.TabIndex = 171;
  5603. this.cVCPP.Text = "Visual C++ AiO";
  5604. this.cVCPP.UseVisualStyleBackColor = true;
  5605. //
  5606. // cQB
  5607. //
  5608. this.cQB.AutoSize = true;
  5609. this.cQB.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5610. this.cQB.Location = new System.Drawing.Point(35, 424);
  5611. this.cQB.Name = "cQB";
  5612. this.cQB.Size = new System.Drawing.Size(105, 24);
  5613. this.cQB.TabIndex = 58;
  5614. this.cQB.Text = "qBitTorrent";
  5615. this.cQB.UseVisualStyleBackColor = true;
  5616. //
  5617. // cEpicStore
  5618. //
  5619. this.cEpicStore.AutoSize = true;
  5620. this.cEpicStore.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5621. this.cEpicStore.Location = new System.Drawing.Point(35, 663);
  5622. this.cEpicStore.Name = "cEpicStore";
  5623. this.cEpicStore.Size = new System.Drawing.Size(105, 24);
  5624. this.cEpicStore.TabIndex = 109;
  5625. this.cEpicStore.Text = "Epic Games";
  5626. this.cEpicStore.UseVisualStyleBackColor = true;
  5627. //
  5628. // cUT2
  5629. //
  5630. this.cUT2.AutoSize = true;
  5631. this.cUT2.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5632. this.cUT2.Location = new System.Drawing.Point(35, 514);
  5633. this.cUT2.Name = "cUT2";
  5634. this.cUT2.Size = new System.Drawing.Size(121, 24);
  5635. this.cUT2.TabIndex = 161;
  5636. this.cUT2.Text = "uTorrent 2.2.1";
  5637. this.cUT2.UseVisualStyleBackColor = true;
  5638. //
  5639. // cBlizzard
  5640. //
  5641. this.cBlizzard.AutoSize = true;
  5642. this.cBlizzard.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5643. this.cBlizzard.Location = new System.Drawing.Point(35, 633);
  5644. this.cBlizzard.Name = "cBlizzard";
  5645. this.cBlizzard.Size = new System.Drawing.Size(93, 24);
  5646. this.cBlizzard.TabIndex = 82;
  5647. this.cBlizzard.Text = "Battle.net";
  5648. this.cBlizzard.UseVisualStyleBackColor = true;
  5649. //
  5650. // cDeluge
  5651. //
  5652. this.cDeluge.AutoSize = true;
  5653. this.cDeluge.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5654. this.cDeluge.Location = new System.Drawing.Point(35, 454);
  5655. this.cDeluge.Name = "cDeluge";
  5656. this.cDeluge.Size = new System.Drawing.Size(77, 24);
  5657. this.cDeluge.TabIndex = 55;
  5658. this.cDeluge.Text = "Deluge";
  5659. this.cDeluge.UseVisualStyleBackColor = true;
  5660. //
  5661. // cNF472
  5662. //
  5663. this.cNF472.AutoSize = true;
  5664. this.cNF472.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
  5665. this.cNF472.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5666. this.cNF472.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
  5667. this.cNF472.Location = new System.Drawing.Point(35, 95);
  5668. this.cNF472.Name = "cNF472";
  5669. this.cNF472.Size = new System.Drawing.Size(178, 24);
  5670. this.cNF472.TabIndex = 169;
  5671. this.cNF472.Text = ".NET Framework 4.7.2";
  5672. this.cNF472.UseVisualStyleBackColor = true;
  5673. //
  5674. // cUbi
  5675. //
  5676. this.cUbi.AutoSize = true;
  5677. this.cUbi.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5678. this.cUbi.Location = new System.Drawing.Point(35, 603);
  5679. this.cUbi.Name = "cUbi";
  5680. this.cUbi.Size = new System.Drawing.Size(68, 24);
  5681. this.cUbi.TabIndex = 81;
  5682. this.cUbi.Text = "Uplay";
  5683. this.cUbi.UseVisualStyleBackColor = true;
  5684. //
  5685. // cNF452
  5686. //
  5687. this.cNF452.AutoSize = true;
  5688. this.cNF452.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
  5689. this.cNF452.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5690. this.cNF452.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
  5691. this.cNF452.Location = new System.Drawing.Point(35, 65);
  5692. this.cNF452.Name = "cNF452";
  5693. this.cNF452.Size = new System.Drawing.Size(178, 24);
  5694. this.cNF452.TabIndex = 167;
  5695. this.cNF452.Text = ".NET Framework 4.5.2";
  5696. this.cNF452.UseVisualStyleBackColor = true;
  5697. //
  5698. // cUT3
  5699. //
  5700. this.cUT3.AutoSize = true;
  5701. this.cUT3.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5702. this.cUT3.Location = new System.Drawing.Point(35, 484);
  5703. this.cUT3.Name = "cUT3";
  5704. this.cUT3.Size = new System.Drawing.Size(111, 24);
  5705. this.cUT3.TabIndex = 59;
  5706. this.cUT3.Text = "uTorrent 3.x";
  5707. this.cUT3.UseVisualStyleBackColor = true;
  5708. //
  5709. // cNF40
  5710. //
  5711. this.cNF40.AutoSize = true;
  5712. this.cNF40.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
  5713. this.cNF40.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5714. this.cNF40.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
  5715. this.cNF40.Location = new System.Drawing.Point(35, 35);
  5716. this.cNF40.Name = "cNF40";
  5717. this.cNF40.Size = new System.Drawing.Size(166, 24);
  5718. this.cNF40.TabIndex = 165;
  5719. this.cNF40.Text = ".NET Framework 4.0";
  5720. this.cNF40.UseVisualStyleBackColor = true;
  5721. //
  5722. // cBT
  5723. //
  5724. this.cBT.AutoSize = true;
  5725. this.cBT.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5726. this.cBT.Location = new System.Drawing.Point(35, 544);
  5727. this.cBT.Name = "cBT";
  5728. this.cBT.Size = new System.Drawing.Size(96, 24);
  5729. this.cBT.TabIndex = 60;
  5730. this.cBT.Text = "BitTorrent";
  5731. this.cBT.UseVisualStyleBackColor = true;
  5732. //
  5733. // cNF35
  5734. //
  5735. this.cNF35.AutoSize = true;
  5736. this.cNF35.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
  5737. this.cNF35.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5738. this.cNF35.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
  5739. this.cNF35.Location = new System.Drawing.Point(35, 5);
  5740. this.cNF35.Name = "cNF35";
  5741. this.cNF35.Size = new System.Drawing.Size(165, 24);
  5742. this.cNF35.TabIndex = 163;
  5743. this.cNF35.Text = ".NET Framework 3.5";
  5744. this.cNF35.UseVisualStyleBackColor = true;
  5745. //
  5746. // cIObitSU
  5747. //
  5748. this.cIObitSU.AutoSize = true;
  5749. this.cIObitSU.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5750. this.cIObitSU.Location = new System.Drawing.Point(35, 244);
  5751. this.cIObitSU.Name = "cIObitSU";
  5752. this.cIObitSU.Size = new System.Drawing.Size(185, 24);
  5753. this.cIObitSU.TabIndex = 162;
  5754. this.cIObitSU.Text = "IObit Software Updater";
  5755. this.cIObitSU.UseVisualStyleBackColor = true;
  5756. //
  5757. // cIObitU
  5758. //
  5759. this.cIObitU.AutoSize = true;
  5760. this.cIObitU.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
  5761. this.cIObitU.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5762. this.cIObitU.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
  5763. this.cIObitU.Location = new System.Drawing.Point(35, 155);
  5764. this.cIObitU.Name = "cIObitU";
  5765. this.cIObitU.Size = new System.Drawing.Size(139, 24);
  5766. this.cIObitU.TabIndex = 138;
  5767. this.cIObitU.Text = "IObit Uninstaller";
  5768. this.cIObitU.UseVisualStyleBackColor = true;
  5769. //
  5770. // cRevo
  5771. //
  5772. this.cRevo.AutoSize = true;
  5773. this.cRevo.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5774. this.cRevo.Location = new System.Drawing.Point(35, 274);
  5775. this.cRevo.Name = "cRevo";
  5776. this.cRevo.Size = new System.Drawing.Size(140, 24);
  5777. this.cRevo.TabIndex = 142;
  5778. this.cRevo.Text = "Revo Uninstaller";
  5779. this.cRevo.UseVisualStyleBackColor = true;
  5780. //
  5781. // cIObitDB
  5782. //
  5783. this.cIObitDB.AutoSize = true;
  5784. this.cIObitDB.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5785. this.cIObitDB.Location = new System.Drawing.Point(35, 185);
  5786. this.cIObitDB.Name = "cIObitDB";
  5787. this.cIObitDB.Size = new System.Drawing.Size(164, 24);
  5788. this.cIObitDB.TabIndex = 137;
  5789. this.cIObitDB.Text = "IObit Driver Booster";
  5790. this.cIObitDB.UseVisualStyleBackColor = true;
  5791. //
  5792. // cIObitSD
  5793. //
  5794. this.cIObitSD.AutoSize = true;
  5795. this.cIObitSD.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5796. this.cIObitSD.Location = new System.Drawing.Point(35, 215);
  5797. this.cIObitSD.Name = "cIObitSD";
  5798. this.cIObitSD.Size = new System.Drawing.Size(156, 24);
  5799. this.cIObitSD.TabIndex = 136;
  5800. this.cIObitSD.Text = "IObit Smart Defrag";
  5801. this.cIObitSD.UseVisualStyleBackColor = true;
  5802. //
  5803. // cUUI
  5804. //
  5805. this.cUUI.AutoSize = true;
  5806. this.cUUI.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5807. this.cUUI.Location = new System.Drawing.Point(35, 394);
  5808. this.cUUI.Name = "cUUI";
  5809. this.cUUI.Size = new System.Drawing.Size(182, 24);
  5810. this.cUUI.TabIndex = 152;
  5811. this.cUUI.Text = "Universal USB Installer";
  5812. this.cUUI.UseVisualStyleBackColor = true;
  5813. //
  5814. // cRufus
  5815. //
  5816. this.cRufus.AutoSize = true;
  5817. this.cRufus.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5818. this.cRufus.Location = new System.Drawing.Point(35, 364);
  5819. this.cRufus.Name = "cRufus";
  5820. this.cRufus.Size = new System.Drawing.Size(66, 24);
  5821. this.cRufus.TabIndex = 150;
  5822. this.cRufus.Text = "Rufus";
  5823. this.cRufus.UseVisualStyleBackColor = true;
  5824. //
  5825. // cMalwarebytes
  5826. //
  5827. this.cMalwarebytes.AutoSize = true;
  5828. this.cMalwarebytes.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5829. this.cMalwarebytes.Location = new System.Drawing.Point(35, 304);
  5830. this.cMalwarebytes.Name = "cMalwarebytes";
  5831. this.cMalwarebytes.Size = new System.Drawing.Size(123, 24);
  5832. this.cMalwarebytes.TabIndex = 144;
  5833. this.cMalwarebytes.Text = "Malwarebytes";
  5834. this.cMalwarebytes.UseVisualStyleBackColor = true;
  5835. //
  5836. // cAntiExploit
  5837. //
  5838. this.cAntiExploit.AutoSize = true;
  5839. this.cAntiExploit.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5840. this.cAntiExploit.Location = new System.Drawing.Point(35, 334);
  5841. this.cAntiExploit.Name = "cAntiExploit";
  5842. this.cAntiExploit.Size = new System.Drawing.Size(109, 24);
  5843. this.cAntiExploit.TabIndex = 146;
  5844. this.cAntiExploit.Text = "Anti-Exploit";
  5845. this.cAntiExploit.UseVisualStyleBackColor = true;
  5846. //
  5847. // cFileZilla
  5848. //
  5849. this.cFileZilla.AutoSize = true;
  5850. this.cFileZilla.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5851. this.cFileZilla.Location = new System.Drawing.Point(35, 843);
  5852. this.cFileZilla.Name = "cFileZilla";
  5853. this.cFileZilla.Size = new System.Drawing.Size(81, 24);
  5854. this.cFileZilla.TabIndex = 55;
  5855. this.cFileZilla.Text = "FileZilla";
  5856. this.cFileZilla.UseVisualStyleBackColor = true;
  5857. //
  5858. // cGitHub
  5859. //
  5860. this.cGitHub.AutoSize = true;
  5861. this.cGitHub.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5862. this.cGitHub.Location = new System.Drawing.Point(35, 693);
  5863. this.cGitHub.Name = "cGitHub";
  5864. this.cGitHub.Size = new System.Drawing.Size(76, 24);
  5865. this.cGitHub.TabIndex = 57;
  5866. this.cGitHub.Text = "GitHub";
  5867. this.cGitHub.UseVisualStyleBackColor = true;
  5868. //
  5869. // cNode
  5870. //
  5871. this.cNode.AutoSize = true;
  5872. this.cNode.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5873. this.cNode.Location = new System.Drawing.Point(35, 724);
  5874. this.cNode.Name = "cNode";
  5875. this.cNode.Size = new System.Drawing.Size(80, 24);
  5876. this.cNode.TabIndex = 70;
  5877. this.cNode.Text = "NodeJS";
  5878. this.cNode.UseVisualStyleBackColor = true;
  5879. //
  5880. // cPutty
  5881. //
  5882. this.cPutty.AutoSize = true;
  5883. this.cPutty.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5884. this.cPutty.Location = new System.Drawing.Point(35, 873);
  5885. this.cPutty.Name = "cPutty";
  5886. this.cPutty.Size = new System.Drawing.Size(64, 24);
  5887. this.cPutty.TabIndex = 58;
  5888. this.cPutty.Text = "Putty";
  5889. this.cPutty.UseVisualStyleBackColor = true;
  5890. //
  5891. // cNPP
  5892. //
  5893. this.cNPP.AutoSize = true;
  5894. this.cNPP.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5895. this.cNPP.Location = new System.Drawing.Point(35, 453);
  5896. this.cNPP.Name = "cNPP";
  5897. this.cNPP.Size = new System.Drawing.Size(108, 24);
  5898. this.cNPP.TabIndex = 58;
  5899. this.cNPP.Text = "Notepad++";
  5900. this.cNPP.UseVisualStyleBackColor = true;
  5901. //
  5902. // cWinScp
  5903. //
  5904. this.cWinScp.AutoSize = true;
  5905. this.cWinScp.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5906. this.cWinScp.Location = new System.Drawing.Point(35, 813);
  5907. this.cWinScp.Name = "cWinScp";
  5908. this.cWinScp.Size = new System.Drawing.Size(81, 24);
  5909. this.cWinScp.TabIndex = 81;
  5910. this.cWinScp.Text = "WinSCP";
  5911. this.cWinScp.UseVisualStyleBackColor = true;
  5912. //
  5913. // cAndroidStudio
  5914. //
  5915. this.cAndroidStudio.AutoSize = true;
  5916. this.cAndroidStudio.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5917. this.cAndroidStudio.Location = new System.Drawing.Point(35, 663);
  5918. this.cAndroidStudio.Name = "cAndroidStudio";
  5919. this.cAndroidStudio.Size = new System.Drawing.Size(132, 24);
  5920. this.cAndroidStudio.TabIndex = 127;
  5921. this.cAndroidStudio.Text = "Android Studio";
  5922. this.cAndroidStudio.UseVisualStyleBackColor = true;
  5923. //
  5924. // cXAMPP
  5925. //
  5926. this.cXAMPP.AutoSize = true;
  5927. this.cXAMPP.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5928. this.cXAMPP.Location = new System.Drawing.Point(35, 754);
  5929. this.cXAMPP.Name = "cXAMPP";
  5930. this.cXAMPP.Size = new System.Drawing.Size(79, 24);
  5931. this.cXAMPP.TabIndex = 71;
  5932. this.cXAMPP.Text = "XAMPP";
  5933. this.cXAMPP.UseVisualStyleBackColor = true;
  5934. //
  5935. // cChromium
  5936. //
  5937. this.cChromium.AutoSize = true;
  5938. this.cChromium.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
  5939. this.cChromium.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5940. this.cChromium.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
  5941. this.cChromium.Location = new System.Drawing.Point(35, 3);
  5942. this.cChromium.Name = "cChromium";
  5943. this.cChromium.Size = new System.Drawing.Size(100, 24);
  5944. this.cChromium.TabIndex = 58;
  5945. this.cChromium.Text = "Chromium";
  5946. this.cChromium.UseVisualStyleBackColor = true;
  5947. //
  5948. // cEclipse
  5949. //
  5950. this.cEclipse.AutoSize = true;
  5951. this.cEclipse.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5952. this.cEclipse.Location = new System.Drawing.Point(35, 633);
  5953. this.cEclipse.Name = "cEclipse";
  5954. this.cEclipse.Size = new System.Drawing.Size(74, 24);
  5955. this.cEclipse.TabIndex = 126;
  5956. this.cEclipse.Text = "Eclipse";
  5957. this.cEclipse.UseVisualStyleBackColor = true;
  5958. //
  5959. // cPostman
  5960. //
  5961. this.cPostman.AutoSize = true;
  5962. this.cPostman.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5963. this.cPostman.Location = new System.Drawing.Point(35, 782);
  5964. this.cPostman.Name = "cPostman";
  5965. this.cPostman.Size = new System.Drawing.Size(86, 24);
  5966. this.cPostman.TabIndex = 72;
  5967. this.cPostman.Text = "Postman";
  5968. this.cPostman.UseVisualStyleBackColor = true;
  5969. //
  5970. // cSublimeText
  5971. //
  5972. this.cSublimeText.AutoSize = true;
  5973. this.cSublimeText.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5974. this.cSublimeText.Location = new System.Drawing.Point(35, 483);
  5975. this.cSublimeText.Name = "cSublimeText";
  5976. this.cSublimeText.Size = new System.Drawing.Size(115, 24);
  5977. this.cSublimeText.TabIndex = 55;
  5978. this.cSublimeText.Text = "Sublime Text";
  5979. this.cSublimeText.UseVisualStyleBackColor = true;
  5980. //
  5981. // cVivaldi
  5982. //
  5983. this.cVivaldi.AutoSize = true;
  5984. this.cVivaldi.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5985. this.cVivaldi.Location = new System.Drawing.Point(35, 93);
  5986. this.cVivaldi.Name = "cVivaldi";
  5987. this.cVivaldi.Size = new System.Drawing.Size(75, 24);
  5988. this.cVivaldi.TabIndex = 57;
  5989. this.cVivaldi.Text = "Vivaldi";
  5990. this.cVivaldi.UseVisualStyleBackColor = true;
  5991. //
  5992. // cAtom
  5993. //
  5994. this.cAtom.AutoSize = true;
  5995. this.cAtom.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5996. this.cAtom.Location = new System.Drawing.Point(35, 603);
  5997. this.cAtom.Name = "cAtom";
  5998. this.cAtom.Size = new System.Drawing.Size(65, 24);
  5999. this.cAtom.TabIndex = 59;
  6000. this.cAtom.Text = "Atom";
  6001. this.cAtom.UseVisualStyleBackColor = true;
  6002. //
  6003. // cMaxthon
  6004. //
  6005. this.cMaxthon.AutoSize = true;
  6006. this.cMaxthon.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  6007. this.cMaxthon.Location = new System.Drawing.Point(35, 153);
  6008. this.cMaxthon.Name = "cMaxthon";
  6009. this.cMaxthon.Size = new System.Drawing.Size(90, 24);
  6010. this.cMaxthon.TabIndex = 120;
  6011. this.cMaxthon.Text = "Maxthon";
  6012. this.cMaxthon.UseVisualStyleBackColor = true;
  6013. //
  6014. // cVS
  6015. //
  6016. this.cVS.AutoSize = true;
  6017. this.cVS.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  6018. this.cVS.Location = new System.Drawing.Point(35, 573);
  6019. this.cVS.Name = "cVS";
  6020. this.cVS.Size = new System.Drawing.Size(117, 24);
  6021. this.cVS.TabIndex = 60;
  6022. this.cVS.Text = "Visual Studio";
  6023. this.cVS.UseVisualStyleBackColor = true;
  6024. //
  6025. // cChrome
  6026. //
  6027. this.cChrome.AutoSize = true;
  6028. this.cChrome.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  6029. this.cChrome.Location = new System.Drawing.Point(35, 63);
  6030. this.cChrome.Name = "cChrome";
  6031. this.cChrome.Size = new System.Drawing.Size(135, 24);
  6032. this.cChrome.TabIndex = 54;
  6033. this.cChrome.Text = "Google Chrome";
  6034. this.cChrome.UseVisualStyleBackColor = true;
  6035. //
  6036. // cVSCode
  6037. //
  6038. this.cVSCode.AutoSize = true;
  6039. this.cVSCode.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  6040. this.cVSCode.Location = new System.Drawing.Point(35, 543);
  6041. this.cVSCode.Name = "cVSCode";
  6042. this.cVSCode.Size = new System.Drawing.Size(156, 24);
  6043. this.cVSCode.TabIndex = 57;
  6044. this.cVSCode.Text = "Visual Studio Code";
  6045. this.cVSCode.UseVisualStyleBackColor = true;
  6046. //
  6047. // cOpera
  6048. //
  6049. this.cOpera.AutoSize = true;
  6050. this.cOpera.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  6051. this.cOpera.Location = new System.Drawing.Point(35, 123);
  6052. this.cOpera.Name = "cOpera";
  6053. this.cOpera.Size = new System.Drawing.Size(70, 24);
  6054. this.cOpera.TabIndex = 56;
  6055. this.cOpera.Text = "Opera";
  6056. this.cOpera.UseVisualStyleBackColor = true;
  6057. //
  6058. // cSublimeMerge
  6059. //
  6060. this.cSublimeMerge.AutoSize = true;
  6061. this.cSublimeMerge.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  6062. this.cSublimeMerge.Location = new System.Drawing.Point(35, 513);
  6063. this.cSublimeMerge.Name = "cSublimeMerge";
  6064. this.cSublimeMerge.Size = new System.Drawing.Size(132, 24);
  6065. this.cSublimeMerge.TabIndex = 59;
  6066. this.cSublimeMerge.Text = "Sublime Merge";
  6067. this.cSublimeMerge.UseVisualStyleBackColor = true;
  6068. //
  6069. // cFirefox
  6070. //
  6071. this.cFirefox.AutoSize = true;
  6072. this.cFirefox.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  6073. this.cFirefox.Location = new System.Drawing.Point(35, 33);
  6074. this.cFirefox.Name = "cFirefox";
  6075. this.cFirefox.Size = new System.Drawing.Size(130, 24);
  6076. this.cFirefox.TabIndex = 55;
  6077. this.cFirefox.Text = "Mozilla Firefox";
  6078. this.cFirefox.UseVisualStyleBackColor = true;
  6079. //
  6080. // cTor
  6081. //
  6082. this.cTor.AutoSize = true;
  6083. this.cTor.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  6084. this.cTor.Location = new System.Drawing.Point(35, 183);
  6085. this.cTor.Name = "cTor";
  6086. this.cTor.Size = new System.Drawing.Size(109, 24);
  6087. this.cTor.TabIndex = 79;
  6088. this.cTor.Text = "Tor Browser";
  6089. this.cTor.UseVisualStyleBackColor = true;
  6090. //
  6091. // cDiscord
  6092. //
  6093. this.cDiscord.AutoSize = true;
  6094. this.cDiscord.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  6095. this.cDiscord.Location = new System.Drawing.Point(35, 213);
  6096. this.cDiscord.Name = "cDiscord";
  6097. this.cDiscord.Size = new System.Drawing.Size(80, 24);
  6098. this.cDiscord.TabIndex = 58;
  6099. this.cDiscord.Text = "Discord";
  6100. this.cDiscord.UseVisualStyleBackColor = true;
  6101. //
  6102. // cAnyDesk
  6103. //
  6104. this.cAnyDesk.AutoSize = true;
  6105. this.cAnyDesk.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  6106. this.cAnyDesk.Location = new System.Drawing.Point(35, 394);
  6107. this.cAnyDesk.Name = "cAnyDesk";
  6108. this.cAnyDesk.Size = new System.Drawing.Size(88, 24);
  6109. this.cAnyDesk.TabIndex = 113;
  6110. this.cAnyDesk.Text = "AnyDesk";
  6111. this.cAnyDesk.UseVisualStyleBackColor = true;
  6112. //
  6113. // cMSTeams
  6114. //
  6115. this.cMSTeams.AutoSize = true;
  6116. this.cMSTeams.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  6117. this.cMSTeams.Location = new System.Drawing.Point(35, 334);
  6118. this.cMSTeams.Name = "cMSTeams";
  6119. this.cMSTeams.Size = new System.Drawing.Size(139, 24);
  6120. this.cMSTeams.TabIndex = 115;
  6121. this.cMSTeams.Text = "Microsoft Teams";
  6122. this.cMSTeams.UseVisualStyleBackColor = true;
  6123. //
  6124. // cViber
  6125. //
  6126. this.cViber.AutoSize = true;
  6127. this.cViber.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  6128. this.cViber.Location = new System.Drawing.Point(35, 273);
  6129. this.cViber.Name = "cViber";
  6130. this.cViber.Size = new System.Drawing.Size(65, 24);
  6131. this.cViber.TabIndex = 57;
  6132. this.cViber.Text = "Viber";
  6133. this.cViber.UseVisualStyleBackColor = true;
  6134. //
  6135. // cSkype
  6136. //
  6137. this.cSkype.AutoSize = true;
  6138. this.cSkype.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  6139. this.cSkype.Location = new System.Drawing.Point(35, 243);
  6140. this.cSkype.Name = "cSkype";
  6141. this.cSkype.Size = new System.Drawing.Size(69, 24);
  6142. this.cSkype.TabIndex = 55;
  6143. this.cSkype.Text = "Skype";
  6144. this.cSkype.UseVisualStyleBackColor = true;
  6145. //
  6146. // cThunderbird
  6147. //
  6148. this.cThunderbird.AutoSize = true;
  6149. this.cThunderbird.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  6150. this.cThunderbird.Location = new System.Drawing.Point(35, 424);
  6151. this.cThunderbird.Name = "cThunderbird";
  6152. this.cThunderbird.Size = new System.Drawing.Size(168, 24);
  6153. this.cThunderbird.TabIndex = 58;
  6154. this.cThunderbird.Text = "Mozilla Thunderbird";
  6155. this.cThunderbird.UseVisualStyleBackColor = true;
  6156. //
  6157. // cZoom
  6158. //
  6159. this.cZoom.AutoSize = true;
  6160. this.cZoom.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  6161. this.cZoom.Location = new System.Drawing.Point(35, 303);
  6162. this.cZoom.Name = "cZoom";
  6163. this.cZoom.Size = new System.Drawing.Size(121, 24);
  6164. this.cZoom.TabIndex = 59;
  6165. this.cZoom.Text = "Google Zoom";
  6166. this.cZoom.UseVisualStyleBackColor = true;
  6167. //
  6168. // cTV
  6169. //
  6170. this.cTV.AutoSize = true;
  6171. this.cTV.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  6172. this.cTV.Location = new System.Drawing.Point(35, 364);
  6173. this.cTV.Name = "cTV";
  6174. this.cTV.Size = new System.Drawing.Size(111, 24);
  6175. this.cTV.TabIndex = 80;
  6176. this.cTV.Text = "TeamViewer";
  6177. this.cTV.UseVisualStyleBackColor = true;
  6178. //
  6179. // checkErrorReports
  6180. //
  6181. this.checkErrorReports.AutoSize = true;
  6182. this.checkErrorReports.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  6183. this.checkErrorReports.ForeColor = System.Drawing.Color.White;
  6184. this.checkErrorReports.Location = new System.Drawing.Point(275, 104);
  6185. this.checkErrorReports.Margin = new System.Windows.Forms.Padding(2);
  6186. this.checkErrorReports.Name = "checkErrorReports";
  6187. this.checkErrorReports.Size = new System.Drawing.Size(123, 25);
  6188. this.checkErrorReports.TabIndex = 44;
  6189. this.checkErrorReports.Text = "Error reports";
  6190. this.checkErrorReports.UseVisualStyleBackColor = true;
  6191. //
  6192. // checkSelectAll
  6193. //
  6194. this.checkSelectAll.AutoSize = true;
  6195. this.checkSelectAll.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  6196. this.checkSelectAll.ForeColor = System.Drawing.Color.White;
  6197. this.checkSelectAll.Location = new System.Drawing.Point(29, 14);
  6198. this.checkSelectAll.Margin = new System.Windows.Forms.Padding(2);
  6199. this.checkSelectAll.Name = "checkSelectAll";
  6200. this.checkSelectAll.Size = new System.Drawing.Size(94, 25);
  6201. this.checkSelectAll.TabIndex = 35;
  6202. this.checkSelectAll.Tag = "";
  6203. this.checkSelectAll.Text = "Select all";
  6204. this.checkSelectAll.UseVisualStyleBackColor = true;
  6205. this.checkSelectAll.CheckedChanged += new System.EventHandler(this.checkSelectAll_CheckedChanged);
  6206. //
  6207. // checkMediaCache
  6208. //
  6209. this.checkMediaCache.AutoSize = true;
  6210. this.checkMediaCache.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  6211. this.checkMediaCache.ForeColor = System.Drawing.Color.White;
  6212. this.checkMediaCache.Location = new System.Drawing.Point(275, 75);
  6213. this.checkMediaCache.Margin = new System.Windows.Forms.Padding(2);
  6214. this.checkMediaCache.Name = "checkMediaCache";
  6215. this.checkMediaCache.Size = new System.Drawing.Size(176, 25);
  6216. this.checkMediaCache.TabIndex = 43;
  6217. this.checkMediaCache.Text = "Media Players cache";
  6218. this.checkMediaCache.UseVisualStyleBackColor = true;
  6219. //
  6220. // checkTemp
  6221. //
  6222. this.checkTemp.AutoSize = true;
  6223. this.checkTemp.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  6224. this.checkTemp.ForeColor = System.Drawing.Color.White;
  6225. this.checkTemp.Location = new System.Drawing.Point(55, 45);
  6226. this.checkTemp.Margin = new System.Windows.Forms.Padding(2);
  6227. this.checkTemp.Name = "checkTemp";
  6228. this.checkTemp.Size = new System.Drawing.Size(142, 25);
  6229. this.checkTemp.TabIndex = 36;
  6230. this.checkTemp.Text = "Temporary files";
  6231. this.checkTemp.UseVisualStyleBackColor = true;
  6232. //
  6233. // checkLogs
  6234. //
  6235. this.checkLogs.AutoSize = true;
  6236. this.checkLogs.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  6237. this.checkLogs.ForeColor = System.Drawing.Color.White;
  6238. this.checkLogs.Location = new System.Drawing.Point(55, 75);
  6239. this.checkLogs.Margin = new System.Windows.Forms.Padding(2);
  6240. this.checkLogs.Name = "checkLogs";
  6241. this.checkLogs.Size = new System.Drawing.Size(131, 25);
  6242. this.checkLogs.TabIndex = 42;
  6243. this.checkLogs.Text = "Windows logs";
  6244. this.checkLogs.UseVisualStyleBackColor = true;
  6245. //
  6246. // checkBin
  6247. //
  6248. this.checkBin.AutoSize = true;
  6249. this.checkBin.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  6250. this.checkBin.ForeColor = System.Drawing.Color.White;
  6251. this.checkBin.Location = new System.Drawing.Point(275, 45);
  6252. this.checkBin.Margin = new System.Windows.Forms.Padding(2);
  6253. this.checkBin.Name = "checkBin";
  6254. this.checkBin.Size = new System.Drawing.Size(162, 25);
  6255. this.checkBin.TabIndex = 41;
  6256. this.checkBin.Text = "Empty Recycle Bin";
  6257. this.checkBin.UseVisualStyleBackColor = true;
  6258. //
  6259. // checkMiniDumps
  6260. //
  6261. this.checkMiniDumps.AutoSize = true;
  6262. this.checkMiniDumps.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  6263. this.checkMiniDumps.ForeColor = System.Drawing.Color.White;
  6264. this.checkMiniDumps.Location = new System.Drawing.Point(55, 104);
  6265. this.checkMiniDumps.Margin = new System.Windows.Forms.Padding(2);
  6266. this.checkMiniDumps.Name = "checkMiniDumps";
  6267. this.checkMiniDumps.Size = new System.Drawing.Size(157, 25);
  6268. this.checkMiniDumps.TabIndex = 39;
  6269. this.checkMiniDumps.Text = "BSOD Minidumps";
  6270. this.checkMiniDumps.UseVisualStyleBackColor = true;
  6271. //
  6272. // chkReadOnly
  6273. //
  6274. this.chkReadOnly.AutoSize = true;
  6275. this.chkReadOnly.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  6276. this.chkReadOnly.ForeColor = System.Drawing.Color.White;
  6277. this.chkReadOnly.Location = new System.Drawing.Point(329, 155);
  6278. this.chkReadOnly.Margin = new System.Windows.Forms.Padding(2);
  6279. this.chkReadOnly.Name = "chkReadOnly";
  6280. this.chkReadOnly.Size = new System.Drawing.Size(103, 25);
  6281. this.chkReadOnly.TabIndex = 61;
  6282. this.chkReadOnly.Text = "Read-only";
  6283. this.chkReadOnly.UseVisualStyleBackColor = true;
  6284. this.chkReadOnly.CheckedChanged += new System.EventHandler(this.chkReadOnly_CheckedChanged);
  6285. //
  6286. // chkBlock
  6287. //
  6288. this.chkBlock.AutoSize = true;
  6289. this.chkBlock.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  6290. this.chkBlock.ForeColor = System.Drawing.Color.White;
  6291. this.chkBlock.Location = new System.Drawing.Point(329, 110);
  6292. this.chkBlock.Margin = new System.Windows.Forms.Padding(2);
  6293. this.chkBlock.Name = "chkBlock";
  6294. this.chkBlock.Size = new System.Drawing.Size(69, 25);
  6295. this.chkBlock.TabIndex = 59;
  6296. this.chkBlock.Text = "Block";
  6297. this.chkBlock.UseVisualStyleBackColor = true;
  6298. this.chkBlock.CheckedChanged += new System.EventHandler(this.chkBlock_CheckedChanged);
  6299. //
  6300. // checkRestartExplorer
  6301. //
  6302. this.checkRestartExplorer.AutoSize = true;
  6303. this.checkRestartExplorer.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  6304. this.checkRestartExplorer.ForeColor = System.Drawing.Color.White;
  6305. this.checkRestartExplorer.Location = new System.Drawing.Point(29, 175);
  6306. this.checkRestartExplorer.Margin = new System.Windows.Forms.Padding(2);
  6307. this.checkRestartExplorer.Name = "checkRestartExplorer";
  6308. this.checkRestartExplorer.Size = new System.Drawing.Size(306, 25);
  6309. this.checkRestartExplorer.TabIndex = 50;
  6310. this.checkRestartExplorer.Tag = "";
  6311. this.checkRestartExplorer.Text = "Also restart Explorer to apply changes";
  6312. this.checkRestartExplorer.UseVisualStyleBackColor = true;
  6313. //
  6314. // checkRegistryEditor
  6315. //
  6316. this.checkRegistryEditor.AutoSize = true;
  6317. this.checkRegistryEditor.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  6318. this.checkRegistryEditor.ForeColor = System.Drawing.Color.White;
  6319. this.checkRegistryEditor.Location = new System.Drawing.Point(256, 136);
  6320. this.checkRegistryEditor.Margin = new System.Windows.Forms.Padding(2);
  6321. this.checkRegistryEditor.Name = "checkRegistryEditor";
  6322. this.checkRegistryEditor.Size = new System.Drawing.Size(138, 25);
  6323. this.checkRegistryEditor.TabIndex = 38;
  6324. this.checkRegistryEditor.Text = "Registry Editor";
  6325. this.checkRegistryEditor.UseVisualStyleBackColor = true;
  6326. //
  6327. // checkEnableAll
  6328. //
  6329. this.checkEnableAll.AutoSize = true;
  6330. this.checkEnableAll.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  6331. this.checkEnableAll.ForeColor = System.Drawing.Color.White;
  6332. this.checkEnableAll.Location = new System.Drawing.Point(29, 14);
  6333. this.checkEnableAll.Margin = new System.Windows.Forms.Padding(2);
  6334. this.checkEnableAll.Name = "checkEnableAll";
  6335. this.checkEnableAll.Size = new System.Drawing.Size(97, 25);
  6336. this.checkEnableAll.TabIndex = 35;
  6337. this.checkEnableAll.Tag = "";
  6338. this.checkEnableAll.Text = "Enable all";
  6339. this.checkEnableAll.UseVisualStyleBackColor = true;
  6340. this.checkEnableAll.CheckedChanged += new System.EventHandler(this.checkEnableAll_CheckedChanged);
  6341. //
  6342. // checkContextMenu
  6343. //
  6344. this.checkContextMenu.AutoSize = true;
  6345. this.checkContextMenu.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  6346. this.checkContextMenu.ForeColor = System.Drawing.Color.White;
  6347. this.checkContextMenu.Location = new System.Drawing.Point(256, 75);
  6348. this.checkContextMenu.Margin = new System.Windows.Forms.Padding(2);
  6349. this.checkContextMenu.Name = "checkContextMenu";
  6350. this.checkContextMenu.Size = new System.Drawing.Size(151, 25);
  6351. this.checkContextMenu.TabIndex = 43;
  6352. this.checkContextMenu.Text = "Right Click menu";
  6353. this.checkContextMenu.UseVisualStyleBackColor = true;
  6354. //
  6355. // checkTaskManager
  6356. //
  6357. this.checkTaskManager.AutoSize = true;
  6358. this.checkTaskManager.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  6359. this.checkTaskManager.ForeColor = System.Drawing.Color.White;
  6360. this.checkTaskManager.Location = new System.Drawing.Point(55, 45);
  6361. this.checkTaskManager.Margin = new System.Windows.Forms.Padding(2);
  6362. this.checkTaskManager.Name = "checkTaskManager";
  6363. this.checkTaskManager.Size = new System.Drawing.Size(128, 25);
  6364. this.checkTaskManager.TabIndex = 36;
  6365. this.checkTaskManager.Text = "Task Manager";
  6366. this.checkTaskManager.UseVisualStyleBackColor = true;
  6367. //
  6368. // checkCommandPrompt
  6369. //
  6370. this.checkCommandPrompt.AutoSize = true;
  6371. this.checkCommandPrompt.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  6372. this.checkCommandPrompt.ForeColor = System.Drawing.Color.White;
  6373. this.checkCommandPrompt.Location = new System.Drawing.Point(55, 75);
  6374. this.checkCommandPrompt.Margin = new System.Windows.Forms.Padding(2);
  6375. this.checkCommandPrompt.Name = "checkCommandPrompt";
  6376. this.checkCommandPrompt.Size = new System.Drawing.Size(163, 25);
  6377. this.checkCommandPrompt.TabIndex = 42;
  6378. this.checkCommandPrompt.Text = "Command Prompt";
  6379. this.checkCommandPrompt.UseVisualStyleBackColor = true;
  6380. //
  6381. // checkFirewall
  6382. //
  6383. this.checkFirewall.AutoSize = true;
  6384. this.checkFirewall.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  6385. this.checkFirewall.ForeColor = System.Drawing.Color.White;
  6386. this.checkFirewall.Location = new System.Drawing.Point(256, 106);
  6387. this.checkFirewall.Margin = new System.Windows.Forms.Padding(2);
  6388. this.checkFirewall.Name = "checkFirewall";
  6389. this.checkFirewall.Size = new System.Drawing.Size(155, 25);
  6390. this.checkFirewall.TabIndex = 37;
  6391. this.checkFirewall.Text = "Windows Firewall";
  6392. this.checkFirewall.UseVisualStyleBackColor = true;
  6393. //
  6394. // checkRunDialog
  6395. //
  6396. this.checkRunDialog.AutoSize = true;
  6397. this.checkRunDialog.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  6398. this.checkRunDialog.ForeColor = System.Drawing.Color.White;
  6399. this.checkRunDialog.Location = new System.Drawing.Point(256, 45);
  6400. this.checkRunDialog.Margin = new System.Windows.Forms.Padding(2);
  6401. this.checkRunDialog.Name = "checkRunDialog";
  6402. this.checkRunDialog.Size = new System.Drawing.Size(108, 25);
  6403. this.checkRunDialog.TabIndex = 41;
  6404. this.checkRunDialog.Text = "Run Dialog";
  6405. this.checkRunDialog.UseVisualStyleBackColor = true;
  6406. //
  6407. // checkFolderOptions
  6408. //
  6409. this.checkFolderOptions.AutoSize = true;
  6410. this.checkFolderOptions.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  6411. this.checkFolderOptions.ForeColor = System.Drawing.Color.White;
  6412. this.checkFolderOptions.Location = new System.Drawing.Point(55, 136);
  6413. this.checkFolderOptions.Margin = new System.Windows.Forms.Padding(2);
  6414. this.checkFolderOptions.Name = "checkFolderOptions";
  6415. this.checkFolderOptions.Size = new System.Drawing.Size(138, 25);
  6416. this.checkFolderOptions.TabIndex = 39;
  6417. this.checkFolderOptions.Text = "Folder Options";
  6418. this.checkFolderOptions.UseVisualStyleBackColor = true;
  6419. //
  6420. // checkControlPanel
  6421. //
  6422. this.checkControlPanel.AutoSize = true;
  6423. this.checkControlPanel.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  6424. this.checkControlPanel.ForeColor = System.Drawing.Color.White;
  6425. this.checkControlPanel.Location = new System.Drawing.Point(55, 106);
  6426. this.checkControlPanel.Margin = new System.Windows.Forms.Padding(2);
  6427. this.checkControlPanel.Name = "checkControlPanel";
  6428. this.checkControlPanel.Size = new System.Drawing.Size(127, 25);
  6429. this.checkControlPanel.TabIndex = 40;
  6430. this.checkControlPanel.Text = "Control Panel";
  6431. this.checkControlPanel.UseVisualStyleBackColor = true;
  6432. //
  6433. // checkShift
  6434. //
  6435. this.checkShift.AutoSize = true;
  6436. this.checkShift.ForeColor = System.Drawing.Color.White;
  6437. this.checkShift.Location = new System.Drawing.Point(11, 26);
  6438. this.checkShift.Margin = new System.Windows.Forms.Padding(2);
  6439. this.checkShift.Name = "checkShift";
  6440. this.checkShift.Size = new System.Drawing.Size(300, 25);
  6441. this.checkShift.TabIndex = 83;
  6442. this.checkShift.Text = "Show only when SHIFT key is pressed";
  6443. this.checkShift.UseVisualStyleBackColor = true;
  6444. //
  6445. // radioTop
  6446. //
  6447. this.radioTop.AutoSize = true;
  6448. this.radioTop.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold);
  6449. this.radioTop.ForeColor = System.Drawing.Color.White;
  6450. this.radioTop.Location = new System.Drawing.Point(11, 26);
  6451. this.radioTop.Margin = new System.Windows.Forms.Padding(2);
  6452. this.radioTop.Name = "radioTop";
  6453. this.radioTop.Size = new System.Drawing.Size(55, 25);
  6454. this.radioTop.TabIndex = 83;
  6455. this.radioTop.Text = "Top";
  6456. this.radioTop.UseVisualStyleBackColor = true;
  6457. this.radioTop.CheckedChanged += new System.EventHandler(this.radioTop_CheckedChanged);
  6458. //
  6459. // radioMiddle
  6460. //
  6461. this.radioMiddle.AutoSize = true;
  6462. this.radioMiddle.ForeColor = System.Drawing.Color.White;
  6463. this.radioMiddle.Location = new System.Drawing.Point(131, 26);
  6464. this.radioMiddle.Margin = new System.Windows.Forms.Padding(2);
  6465. this.radioMiddle.Name = "radioMiddle";
  6466. this.radioMiddle.Size = new System.Drawing.Size(80, 25);
  6467. this.radioMiddle.TabIndex = 84;
  6468. this.radioMiddle.Text = "Middle";
  6469. this.radioMiddle.UseVisualStyleBackColor = true;
  6470. this.radioMiddle.CheckedChanged += new System.EventHandler(this.radioMiddle_CheckedChanged);
  6471. //
  6472. // radioBottom
  6473. //
  6474. this.radioBottom.AutoSize = true;
  6475. this.radioBottom.ForeColor = System.Drawing.Color.White;
  6476. this.radioBottom.Location = new System.Drawing.Point(277, 26);
  6477. this.radioBottom.Margin = new System.Windows.Forms.Padding(2);
  6478. this.radioBottom.Name = "radioBottom";
  6479. this.radioBottom.Size = new System.Drawing.Size(84, 25);
  6480. this.radioBottom.TabIndex = 85;
  6481. this.radioBottom.Text = "Bottom";
  6482. this.radioBottom.UseVisualStyleBackColor = true;
  6483. this.radioBottom.CheckedChanged += new System.EventHandler(this.radioBottom_CheckedChanged);
  6484. //
  6485. // checkDefaultIcon
  6486. //
  6487. this.checkDefaultIcon.AutoSize = true;
  6488. this.checkDefaultIcon.Font = new System.Drawing.Font("Segoe UI Semibold", 12F);
  6489. this.checkDefaultIcon.ForeColor = System.Drawing.Color.White;
  6490. this.checkDefaultIcon.Location = new System.Drawing.Point(11, 58);
  6491. this.checkDefaultIcon.Margin = new System.Windows.Forms.Padding(2);
  6492. this.checkDefaultIcon.Name = "checkDefaultIcon";
  6493. this.checkDefaultIcon.Size = new System.Drawing.Size(169, 25);
  6494. this.checkDefaultIcon.TabIndex = 82;
  6495. this.checkDefaultIcon.Text = "Use program\'s icon";
  6496. this.checkDefaultIcon.UseVisualStyleBackColor = true;
  6497. this.checkDefaultIcon.CheckedChanged += new System.EventHandler(this.checkDefaultIcon_CheckedChanged);
  6498. //
  6499. // radioCommand
  6500. //
  6501. this.radioCommand.AutoSize = true;
  6502. this.radioCommand.ForeColor = System.Drawing.Color.White;
  6503. this.radioCommand.Location = new System.Drawing.Point(481, 26);
  6504. this.radioCommand.Margin = new System.Windows.Forms.Padding(2);
  6505. this.radioCommand.Name = "radioCommand";
  6506. this.radioCommand.Size = new System.Drawing.Size(103, 25);
  6507. this.radioCommand.TabIndex = 84;
  6508. this.radioCommand.Text = "Command";
  6509. this.radioCommand.UseVisualStyleBackColor = true;
  6510. this.radioCommand.CheckedChanged += new System.EventHandler(this.radioCommand_CheckedChanged);
  6511. //
  6512. // radioProgram
  6513. //
  6514. this.radioProgram.AutoSize = true;
  6515. this.radioProgram.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold);
  6516. this.radioProgram.ForeColor = System.Drawing.Color.White;
  6517. this.radioProgram.Location = new System.Drawing.Point(11, 26);
  6518. this.radioProgram.Margin = new System.Windows.Forms.Padding(2);
  6519. this.radioProgram.Name = "radioProgram";
  6520. this.radioProgram.Size = new System.Drawing.Size(91, 25);
  6521. this.radioProgram.TabIndex = 80;
  6522. this.radioProgram.Text = "Program";
  6523. this.radioProgram.UseVisualStyleBackColor = true;
  6524. this.radioProgram.CheckedChanged += new System.EventHandler(this.radioProgram_CheckedChanged);
  6525. //
  6526. // radioFolder
  6527. //
  6528. this.radioFolder.AutoSize = true;
  6529. this.radioFolder.ForeColor = System.Drawing.Color.White;
  6530. this.radioFolder.Location = new System.Drawing.Point(139, 26);
  6531. this.radioFolder.Margin = new System.Windows.Forms.Padding(2);
  6532. this.radioFolder.Name = "radioFolder";
  6533. this.radioFolder.Size = new System.Drawing.Size(75, 25);
  6534. this.radioFolder.TabIndex = 81;
  6535. this.radioFolder.Text = "Folder";
  6536. this.radioFolder.UseVisualStyleBackColor = true;
  6537. this.radioFolder.CheckedChanged += new System.EventHandler(this.radioFolder_CheckedChanged);
  6538. //
  6539. // radioLink
  6540. //
  6541. this.radioLink.AutoSize = true;
  6542. this.radioLink.ForeColor = System.Drawing.Color.White;
  6543. this.radioLink.Location = new System.Drawing.Point(254, 26);
  6544. this.radioLink.Margin = new System.Windows.Forms.Padding(2);
  6545. this.radioLink.Name = "radioLink";
  6546. this.radioLink.Size = new System.Drawing.Size(57, 25);
  6547. this.radioLink.TabIndex = 82;
  6548. this.radioLink.Text = "Link";
  6549. this.radioLink.UseVisualStyleBackColor = true;
  6550. this.radioLink.CheckedChanged += new System.EventHandler(this.radioLink_CheckedChanged);
  6551. //
  6552. // radioFile
  6553. //
  6554. this.radioFile.AutoSize = true;
  6555. this.radioFile.ForeColor = System.Drawing.Color.White;
  6556. this.radioFile.Location = new System.Drawing.Point(371, 26);
  6557. this.radioFile.Margin = new System.Windows.Forms.Padding(2);
  6558. this.radioFile.Name = "radioFile";
  6559. this.radioFile.Size = new System.Drawing.Size(53, 25);
  6560. this.radioFile.TabIndex = 83;
  6561. this.radioFile.Text = "File";
  6562. this.radioFile.UseVisualStyleBackColor = true;
  6563. this.radioFile.CheckedChanged += new System.EventHandler(this.radioFile_CheckedChanged);
  6564. //
  6565. // radioTurkish
  6566. //
  6567. this.radioTurkish.AutoSize = true;
  6568. this.radioTurkish.Font = new System.Drawing.Font("Segoe UI Semibold", 12F);
  6569. this.radioTurkish.ForeColor = System.Drawing.Color.White;
  6570. this.radioTurkish.Location = new System.Drawing.Point(151, 95);
  6571. this.radioTurkish.Margin = new System.Windows.Forms.Padding(2);
  6572. this.radioTurkish.Name = "radioTurkish";
  6573. this.radioTurkish.Size = new System.Drawing.Size(76, 25);
  6574. this.radioTurkish.TabIndex = 80;
  6575. this.radioTurkish.Tag = "";
  6576. this.radioTurkish.Text = "Türkçe";
  6577. this.radioTurkish.UseVisualStyleBackColor = true;
  6578. this.radioTurkish.Click += new System.EventHandler(this.radioTurkish_Click);
  6579. //
  6580. // radioHellenic
  6581. //
  6582. this.radioHellenic.AutoSize = true;
  6583. this.radioHellenic.Font = new System.Drawing.Font("Segoe UI Semibold", 12F);
  6584. this.radioHellenic.ForeColor = System.Drawing.Color.White;
  6585. this.radioHellenic.Location = new System.Drawing.Point(151, 66);
  6586. this.radioHellenic.Margin = new System.Windows.Forms.Padding(2);
  6587. this.radioHellenic.Name = "radioHellenic";
  6588. this.radioHellenic.Size = new System.Drawing.Size(94, 25);
  6589. this.radioHellenic.TabIndex = 78;
  6590. this.radioHellenic.Tag = "";
  6591. this.radioHellenic.Text = "Ελληνικά";
  6592. this.radioHellenic.UseVisualStyleBackColor = true;
  6593. this.radioHellenic.Click += new System.EventHandler(this.radioHellenic_Click);
  6594. //
  6595. // radioEnglish
  6596. //
  6597. this.radioEnglish.AutoSize = true;
  6598. this.radioEnglish.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  6599. this.radioEnglish.ForeColor = System.Drawing.Color.White;
  6600. this.radioEnglish.Location = new System.Drawing.Point(151, 8);
  6601. this.radioEnglish.Margin = new System.Windows.Forms.Padding(2);
  6602. this.radioEnglish.Name = "radioEnglish";
  6603. this.radioEnglish.Size = new System.Drawing.Size(79, 25);
  6604. this.radioEnglish.TabIndex = 75;
  6605. this.radioEnglish.Tag = "";
  6606. this.radioEnglish.Text = "English";
  6607. this.radioEnglish.UseVisualStyleBackColor = true;
  6608. this.radioEnglish.Click += new System.EventHandler(this.radioEnglish_Click);
  6609. //
  6610. // radioRussian
  6611. //
  6612. this.radioRussian.AutoSize = true;
  6613. this.radioRussian.Font = new System.Drawing.Font("Segoe UI Semibold", 12F);
  6614. this.radioRussian.ForeColor = System.Drawing.Color.White;
  6615. this.radioRussian.Location = new System.Drawing.Point(151, 37);
  6616. this.radioRussian.Margin = new System.Windows.Forms.Padding(2);
  6617. this.radioRussian.Name = "radioRussian";
  6618. this.radioRussian.Size = new System.Drawing.Size(90, 25);
  6619. this.radioRussian.TabIndex = 74;
  6620. this.radioRussian.Tag = "";
  6621. this.radioRussian.Text = "русский";
  6622. this.radioRussian.UseVisualStyleBackColor = true;
  6623. this.radioRussian.Click += new System.EventHandler(this.radioRussian_Click);
  6624. //
  6625. // helpTipsToggle
  6626. //
  6627. this.helpTipsToggle.Location = new System.Drawing.Point(14, 51);
  6628. this.helpTipsToggle.Margin = new System.Windows.Forms.Padding(2);
  6629. this.helpTipsToggle.Name = "helpTipsToggle";
  6630. this.helpTipsToggle.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  6631. this.helpTipsToggle.OffForeColor = System.Drawing.Color.White;
  6632. this.helpTipsToggle.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  6633. this.helpTipsToggle.OnForeColor = System.Drawing.Color.White;
  6634. this.helpTipsToggle.OnText = "Show Help Messages";
  6635. this.helpTipsToggle.Size = new System.Drawing.Size(319, 31);
  6636. this.helpTipsToggle.TabIndex = 70;
  6637. this.helpTipsToggle.Tag = "themeable";
  6638. this.helpTipsToggle.CheckedChanged += new Optimizer.ToggleSwitch.CheckedChangedDelegate(this.helpTipsToggle_CheckedChanged);
  6639. //
  6640. // quickAccessToggle
  6641. //
  6642. this.quickAccessToggle.Location = new System.Drawing.Point(14, 16);
  6643. this.quickAccessToggle.Margin = new System.Windows.Forms.Padding(2);
  6644. this.quickAccessToggle.Name = "quickAccessToggle";
  6645. this.quickAccessToggle.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  6646. this.quickAccessToggle.OffForeColor = System.Drawing.Color.White;
  6647. this.quickAccessToggle.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  6648. this.quickAccessToggle.OnForeColor = System.Drawing.Color.White;
  6649. this.quickAccessToggle.OnText = "Show Quick Access Menu";
  6650. this.quickAccessToggle.Size = new System.Drawing.Size(319, 31);
  6651. this.quickAccessToggle.TabIndex = 64;
  6652. this.quickAccessToggle.Tag = "themeable";
  6653. this.quickAccessToggle.CheckedChanged += new Optimizer.ToggleSwitch.CheckedChangedDelegate(this.quickAccessToggle_CheckedChanged);
  6654. //
  6655. // MainForm
  6656. //
  6657. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  6658. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  6659. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  6660. this.ClientSize = new System.Drawing.Size(870, 705);
  6661. this.Controls.Add(this.bpanel);
  6662. this.Controls.Add(this.tpanel);
  6663. this.DoubleBuffered = true;
  6664. this.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  6665. this.ForeColor = System.Drawing.Color.White;
  6666. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  6667. this.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  6668. this.MinimumSize = new System.Drawing.Size(784, 744);
  6669. this.Name = "MainForm";
  6670. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  6671. this.Text = "Optimizer";
  6672. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Main_FormClosing);
  6673. this.Load += new System.EventHandler(this.Main_Load);
  6674. this.tpanel.ResumeLayout(false);
  6675. this.tpanel.PerformLayout();
  6676. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  6677. this.bpanel.ResumeLayout(false);
  6678. this.tabCollection.ResumeLayout(false);
  6679. this.universalTab.ResumeLayout(false);
  6680. this.universalTab.PerformLayout();
  6681. this.windowsXTab.ResumeLayout(false);
  6682. this.windowsXTab.PerformLayout();
  6683. this.windowsVIIITab.ResumeLayout(false);
  6684. this.windowsVIIITab.PerformLayout();
  6685. this.modernAppsTab.ResumeLayout(false);
  6686. this.modernAppsTab.PerformLayout();
  6687. this.panelModernAppsList.ResumeLayout(false);
  6688. this.startupTab.ResumeLayout(false);
  6689. this.startupTab.PerformLayout();
  6690. this.panel3.ResumeLayout(false);
  6691. this.appsTab.ResumeLayout(false);
  6692. this.panel10.ResumeLayout(false);
  6693. this.panel10.PerformLayout();
  6694. this.panelCommonApps.ResumeLayout(false);
  6695. this.panelCommonApps.PerformLayout();
  6696. this.panelApps5.ResumeLayout(false);
  6697. this.panelApps5.PerformLayout();
  6698. ((System.ComponentModel.ISupportInitialize)(this.pictureBox58)).EndInit();
  6699. ((System.ComponentModel.ISupportInitialize)(this.pictureBox57)).EndInit();
  6700. ((System.ComponentModel.ISupportInitialize)(this.pictureBox81)).EndInit();
  6701. ((System.ComponentModel.ISupportInitialize)(this.pictureBox8)).EndInit();
  6702. ((System.ComponentModel.ISupportInitialize)(this.pictureBox59)).EndInit();
  6703. ((System.ComponentModel.ISupportInitialize)(this.pictureBox46)).EndInit();
  6704. ((System.ComponentModel.ISupportInitialize)(this.pictureBox10)).EndInit();
  6705. ((System.ComponentModel.ISupportInitialize)(this.pictureBox11)).EndInit();
  6706. ((System.ComponentModel.ISupportInitialize)(this.pictureBox47)).EndInit();
  6707. ((System.ComponentModel.ISupportInitialize)(this.pictureBox12)).EndInit();
  6708. ((System.ComponentModel.ISupportInitialize)(this.pictureBox65)).EndInit();
  6709. ((System.ComponentModel.ISupportInitialize)(this.pictureBox45)).EndInit();
  6710. ((System.ComponentModel.ISupportInitialize)(this.pictureBox13)).EndInit();
  6711. ((System.ComponentModel.ISupportInitialize)(this.pictureBox48)).EndInit();
  6712. ((System.ComponentModel.ISupportInitialize)(this.pictureBox9)).EndInit();
  6713. ((System.ComponentModel.ISupportInitialize)(this.pictureBox82)).EndInit();
  6714. ((System.ComponentModel.ISupportInitialize)(this.pictureBox60)).EndInit();
  6715. ((System.ComponentModel.ISupportInitialize)(this.pictureBox22)).EndInit();
  6716. ((System.ComponentModel.ISupportInitialize)(this.pictureBox23)).EndInit();
  6717. ((System.ComponentModel.ISupportInitialize)(this.pictureBox21)).EndInit();
  6718. ((System.ComponentModel.ISupportInitialize)(this.pictureBox24)).EndInit();
  6719. ((System.ComponentModel.ISupportInitialize)(this.pictureBox52)).EndInit();
  6720. ((System.ComponentModel.ISupportInitialize)(this.pictureBox14)).EndInit();
  6721. ((System.ComponentModel.ISupportInitialize)(this.pictureBox71)).EndInit();
  6722. ((System.ComponentModel.ISupportInitialize)(this.pictureBox15)).EndInit();
  6723. ((System.ComponentModel.ISupportInitialize)(this.pictureBox16)).EndInit();
  6724. ((System.ComponentModel.ISupportInitialize)(this.pictureBox43)).EndInit();
  6725. ((System.ComponentModel.ISupportInitialize)(this.pictureBox63)).EndInit();
  6726. this.panelApps6.ResumeLayout(false);
  6727. this.panelApps6.PerformLayout();
  6728. ((System.ComponentModel.ISupportInitialize)(this.pictureBox75)).EndInit();
  6729. ((System.ComponentModel.ISupportInitialize)(this.pictureBox54)).EndInit();
  6730. ((System.ComponentModel.ISupportInitialize)(this.pictureBox53)).EndInit();
  6731. ((System.ComponentModel.ISupportInitialize)(this.pictureBox80)).EndInit();
  6732. ((System.ComponentModel.ISupportInitialize)(this.pictureBox49)).EndInit();
  6733. ((System.ComponentModel.ISupportInitialize)(this.pictureBox51)).EndInit();
  6734. ((System.ComponentModel.ISupportInitialize)(this.pictureBox18)).EndInit();
  6735. ((System.ComponentModel.ISupportInitialize)(this.pictureBox50)).EndInit();
  6736. ((System.ComponentModel.ISupportInitialize)(this.pictureBox78)).EndInit();
  6737. ((System.ComponentModel.ISupportInitialize)(this.pictureBox19)).EndInit();
  6738. ((System.ComponentModel.ISupportInitialize)(this.pictureBox79)).EndInit();
  6739. ((System.ComponentModel.ISupportInitialize)(this.pictureBox20)).EndInit();
  6740. ((System.ComponentModel.ISupportInitialize)(this.pictureBox17)).EndInit();
  6741. ((System.ComponentModel.ISupportInitialize)(this.pictureBox77)).EndInit();
  6742. ((System.ComponentModel.ISupportInitialize)(this.pictureBox76)).EndInit();
  6743. ((System.ComponentModel.ISupportInitialize)(this.pictureBox74)).EndInit();
  6744. ((System.ComponentModel.ISupportInitialize)(this.pictureBox68)).EndInit();
  6745. ((System.ComponentModel.ISupportInitialize)(this.pictureBox61)).EndInit();
  6746. ((System.ComponentModel.ISupportInitialize)(this.pictureBox66)).EndInit();
  6747. ((System.ComponentModel.ISupportInitialize)(this.pictureBox72)).EndInit();
  6748. ((System.ComponentModel.ISupportInitialize)(this.pictureBox67)).EndInit();
  6749. ((System.ComponentModel.ISupportInitialize)(this.pictureBox73)).EndInit();
  6750. ((System.ComponentModel.ISupportInitialize)(this.pictureBox70)).EndInit();
  6751. ((System.ComponentModel.ISupportInitialize)(this.pictureBox69)).EndInit();
  6752. this.panelApps1.ResumeLayout(false);
  6753. this.panelApps1.PerformLayout();
  6754. ((System.ComponentModel.ISupportInitialize)(this.pictureBox39)).EndInit();
  6755. ((System.ComponentModel.ISupportInitialize)(this.pictureBox37)).EndInit();
  6756. ((System.ComponentModel.ISupportInitialize)(this.pictureBox64)).EndInit();
  6757. ((System.ComponentModel.ISupportInitialize)(this.pictureBox44)).EndInit();
  6758. ((System.ComponentModel.ISupportInitialize)(this.pictureBox38)).EndInit();
  6759. ((System.ComponentModel.ISupportInitialize)(this.pictureBox62)).EndInit();
  6760. ((System.ComponentModel.ISupportInitialize)(this.pictureBox40)).EndInit();
  6761. ((System.ComponentModel.ISupportInitialize)(this.pictureBox33)).EndInit();
  6762. ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).EndInit();
  6763. ((System.ComponentModel.ISupportInitialize)(this.pictureBox41)).EndInit();
  6764. ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit();
  6765. ((System.ComponentModel.ISupportInitialize)(this.pictureBox42)).EndInit();
  6766. ((System.ComponentModel.ISupportInitialize)(this.pictureBox34)).EndInit();
  6767. ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
  6768. ((System.ComponentModel.ISupportInitialize)(this.pictureBox32)).EndInit();
  6769. ((System.ComponentModel.ISupportInitialize)(this.pictureBox35)).EndInit();
  6770. ((System.ComponentModel.ISupportInitialize)(this.pictureBox7)).EndInit();
  6771. ((System.ComponentModel.ISupportInitialize)(this.pictureBox31)).EndInit();
  6772. ((System.ComponentModel.ISupportInitialize)(this.picturemaxthon)).EndInit();
  6773. ((System.ComponentModel.ISupportInitialize)(this.pictureBox36)).EndInit();
  6774. ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
  6775. ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).EndInit();
  6776. ((System.ComponentModel.ISupportInitialize)(this.pictureBox55)).EndInit();
  6777. ((System.ComponentModel.ISupportInitialize)(this.pictureBox56)).EndInit();
  6778. ((System.ComponentModel.ISupportInitialize)(this.pictureBox27)).EndInit();
  6779. ((System.ComponentModel.ISupportInitialize)(this.pictureBox25)).EndInit();
  6780. ((System.ComponentModel.ISupportInitialize)(this.pictureBox30)).EndInit();
  6781. ((System.ComponentModel.ISupportInitialize)(this.pictureBox28)).EndInit();
  6782. ((System.ComponentModel.ISupportInitialize)(this.pictureBox29)).EndInit();
  6783. ((System.ComponentModel.ISupportInitialize)(this.pictureBox26)).EndInit();
  6784. this.cleanerTab.ResumeLayout(false);
  6785. this.cleanerTab.PerformLayout();
  6786. this.panel1.ResumeLayout(false);
  6787. this.panel1.PerformLayout();
  6788. this.pingerTab.ResumeLayout(false);
  6789. this.pingerTab.PerformLayout();
  6790. this.panel7.ResumeLayout(false);
  6791. this.hostsEditorTab.ResumeLayout(false);
  6792. this.hostsEditorTab.PerformLayout();
  6793. this.panel4.ResumeLayout(false);
  6794. this.panel4.PerformLayout();
  6795. this.panelList.ResumeLayout(false);
  6796. this.registryFixerTab.ResumeLayout(false);
  6797. this.registryFixerTab.PerformLayout();
  6798. this.panel2.ResumeLayout(false);
  6799. this.panel2.PerformLayout();
  6800. this.integratorTab.ResumeLayout(false);
  6801. this.synapse.ResumeLayout(false);
  6802. this.integratorInfoTab.ResumeLayout(false);
  6803. this.integratorInfoTab.PerformLayout();
  6804. this.tabPage8.ResumeLayout(false);
  6805. this.tabPage8.PerformLayout();
  6806. this.itemnamegroup.ResumeLayout(false);
  6807. this.itemnamegroup.PerformLayout();
  6808. this.security.ResumeLayout(false);
  6809. this.security.PerformLayout();
  6810. this.itemposition.ResumeLayout(false);
  6811. this.itemposition.PerformLayout();
  6812. this.icontoaddgroup.ResumeLayout(false);
  6813. this.icontoaddgroup.PerformLayout();
  6814. this.itemtoaddgroup.ResumeLayout(false);
  6815. this.itemtoaddgroup.PerformLayout();
  6816. this.itemtype.ResumeLayout(false);
  6817. this.itemtype.PerformLayout();
  6818. this.tabPage9.ResumeLayout(false);
  6819. this.tabPage9.PerformLayout();
  6820. this.panel5.ResumeLayout(false);
  6821. this.tabPage10.ResumeLayout(false);
  6822. this.tabPage10.PerformLayout();
  6823. this.tabPage11.ResumeLayout(false);
  6824. this.tabPage11.PerformLayout();
  6825. this.panel6.ResumeLayout(false);
  6826. this.optionsTab.ResumeLayout(false);
  6827. this.optionsTab.PerformLayout();
  6828. ((System.ComponentModel.ISupportInitialize)(this.pictureBox85)).EndInit();
  6829. this.panel9.ResumeLayout(false);
  6830. this.panel9.PerformLayout();
  6831. ((System.ComponentModel.ISupportInitialize)(this.pictureBox89)).EndInit();
  6832. ((System.ComponentModel.ISupportInitialize)(this.pictureBox88)).EndInit();
  6833. ((System.ComponentModel.ISupportInitialize)(this.pictureBox87)).EndInit();
  6834. ((System.ComponentModel.ISupportInitialize)(this.pictureBox86)).EndInit();
  6835. this.panel8.ResumeLayout(false);
  6836. this.panel8.PerformLayout();
  6837. ((System.ComponentModel.ISupportInitialize)(this.pictureBox84)).EndInit();
  6838. ((System.ComponentModel.ISupportInitialize)(this.pictureBox83)).EndInit();
  6839. this.launcherMenu.ResumeLayout(false);
  6840. this.ResumeLayout(false);
  6841. }
  6842. #endregion
  6843. private System.Windows.Forms.Panel tpanel;
  6844. private System.Windows.Forms.Label txtBitness;
  6845. private System.Windows.Forms.Label txtOS;
  6846. private System.Windows.Forms.Label txtVersion;
  6847. private System.Windows.Forms.PictureBox pictureBox1;
  6848. private System.Windows.Forms.Label label2;
  6849. private System.Windows.Forms.Panel bpanel;
  6850. private System.Windows.Forms.TabControl tabCollection;
  6851. private System.Windows.Forms.TabPage universalTab;
  6852. private System.Windows.Forms.Button restartButton;
  6853. private System.Windows.Forms.TabPage windowsXTab;
  6854. private System.Windows.Forms.Button restartButton10;
  6855. private System.Windows.Forms.TabPage windowsVIIITab;
  6856. private System.Windows.Forms.Button restartButton8;
  6857. private System.Windows.Forms.TabPage cleanerTab;
  6858. private ColoredCheckBox checkTemp;
  6859. private ColoredCheckBox checkSelectAll;
  6860. private System.Windows.Forms.Button cleanDriveB;
  6861. private ColoredCheckBox checkMediaCache;
  6862. private ColoredCheckBox checkLogs;
  6863. private ColoredCheckBox checkBin;
  6864. private ColoredCheckBox checkMiniDumps;
  6865. private System.Windows.Forms.Panel panel1;
  6866. private System.Windows.Forms.TabPage startupTab;
  6867. private System.Windows.Forms.Label startupTitle;
  6868. private System.Windows.Forms.Button removeStartupItemB;
  6869. private System.Windows.Forms.Label cleanerTitle;
  6870. private System.Windows.Forms.TabPage registryFixerTab;
  6871. private System.Windows.Forms.Label registryTitle;
  6872. private System.Windows.Forms.Button regFixB;
  6873. private System.Windows.Forms.Panel panel2;
  6874. private ColoredCheckBox checkRegistryEditor;
  6875. private ColoredCheckBox checkEnableAll;
  6876. private ColoredCheckBox checkContextMenu;
  6877. private ColoredCheckBox checkTaskManager;
  6878. private ColoredCheckBox checkCommandPrompt;
  6879. private ColoredCheckBox checkFirewall;
  6880. private ColoredCheckBox checkRunDialog;
  6881. private ColoredCheckBox checkFolderOptions;
  6882. private ColoredCheckBox checkControlPanel;
  6883. private ColoredCheckBox checkRestartExplorer;
  6884. private System.Windows.Forms.Panel panel3;
  6885. private System.Windows.Forms.Label regLbl;
  6886. private System.Windows.Forms.ListView listStartupItems;
  6887. private System.Windows.Forms.ColumnHeader columnHeader1;
  6888. private System.Windows.Forms.ColumnHeader columnHeader2;
  6889. private System.Windows.Forms.Button refreshStartupB;
  6890. private System.Windows.Forms.Button locateFileB;
  6891. private System.Windows.Forms.ColumnHeader columnHeader3;
  6892. private System.Windows.Forms.TabPage hostsEditorTab;
  6893. private System.Windows.Forms.Label hostsTitle;
  6894. private System.Windows.Forms.LinkLabel linkLocate;
  6895. private System.Windows.Forms.LinkLabel linkAdvancedEdit;
  6896. private System.Windows.Forms.LinkLabel linkRestoreDefault;
  6897. private System.Windows.Forms.ListBox listHostEntries;
  6898. private System.Windows.Forms.Panel panel4;
  6899. private System.Windows.Forms.Button removeAllHostsB;
  6900. private System.Windows.Forms.Button refreshHostsB;
  6901. private System.Windows.Forms.Button removeHostB;
  6902. private System.Windows.Forms.TextBox txtDomain;
  6903. private System.Windows.Forms.Label lblDomain;
  6904. private System.Windows.Forms.Label lblIP;
  6905. private System.Windows.Forms.Button addHostB;
  6906. private System.Windows.Forms.TextBox txtIP;
  6907. private ColoredCheckBox checkErrorReports;
  6908. private System.Windows.Forms.TabPage integratorTab;
  6909. private System.Windows.Forms.TabControl synapse;
  6910. private System.Windows.Forms.TabPage integratorInfoTab;
  6911. private System.Windows.Forms.TabPage tabPage8;
  6912. private System.Windows.Forms.TabPage tabPage9;
  6913. private System.Windows.Forms.TabPage tabPage10;
  6914. private System.Windows.Forms.TabPage tabPage11;
  6915. private System.Windows.Forms.Label integrator7;
  6916. private System.Windows.Forms.Label integrator6;
  6917. private System.Windows.Forms.Label integrator5;
  6918. private System.Windows.Forms.Label integrator4;
  6919. private System.Windows.Forms.Label integrator3;
  6920. private System.Windows.Forms.Label integrator2;
  6921. private System.Windows.Forms.Label integrator1;
  6922. private System.Windows.Forms.Button button48;
  6923. private System.Windows.Forms.TextBox txtRunKeyword;
  6924. private System.Windows.Forms.Label ccKeywordL;
  6925. private System.Windows.Forms.TextBox txtRunFile;
  6926. private System.Windows.Forms.Label ccFileL;
  6927. private System.Windows.Forms.Label ccL;
  6928. private System.Windows.Forms.Button btnCreateCustomCommand;
  6929. internal System.Windows.Forms.OpenFileDialog defineCommandDialog;
  6930. private System.Windows.Forms.Button PMB;
  6931. private System.Windows.Forms.Button DSB;
  6932. private System.Windows.Forms.Button STB;
  6933. private System.Windows.Forms.Button SSB;
  6934. private System.Windows.Forms.Button WAB;
  6935. private System.Windows.Forms.Label readyMenusL;
  6936. private System.Windows.Forms.ListBox listDesktopItems;
  6937. private System.Windows.Forms.Label removeIntegratorItemsL;
  6938. private System.Windows.Forms.Button refreshIIB;
  6939. private System.Windows.Forms.Button removeDIB;
  6940. private System.Windows.Forms.Button removeAllIIB;
  6941. private System.Windows.Forms.GroupBox itemtype;
  6942. private ColoredRadioButton radioCommand;
  6943. private ColoredRadioButton radioProgram;
  6944. private ColoredRadioButton radioFile;
  6945. private ColoredRadioButton radioFolder;
  6946. private ColoredRadioButton radioLink;
  6947. private System.Windows.Forms.Label addItemL;
  6948. private System.Windows.Forms.GroupBox icontoaddgroup;
  6949. private ColoredCheckBox checkDefaultIcon;
  6950. private System.Windows.Forms.Button btnBrowseIcon;
  6951. private System.Windows.Forms.TextBox txtIcon;
  6952. private System.Windows.Forms.GroupBox itemtoaddgroup;
  6953. private System.Windows.Forms.Button btnBrowseItem;
  6954. private System.Windows.Forms.TextBox txtItem;
  6955. private System.Windows.Forms.GroupBox security;
  6956. private ColoredCheckBox checkShift;
  6957. private System.Windows.Forms.GroupBox itemposition;
  6958. private ColoredRadioButton radioTop;
  6959. private ColoredRadioButton radioMiddle;
  6960. private ColoredRadioButton radioBottom;
  6961. private System.Windows.Forms.GroupBox itemnamegroup;
  6962. private System.Windows.Forms.TextBox txtItemName;
  6963. private System.Windows.Forms.Button btnAddItem;
  6964. internal System.Windows.Forms.OpenFileDialog defineProgramDialog;
  6965. internal System.Windows.Forms.FolderBrowserDialog defineFolderDialog;
  6966. internal System.Windows.Forms.OpenFileDialog defineFileDialog;
  6967. internal System.Windows.Forms.OpenFileDialog DefineProgramIconDialog;
  6968. internal System.Windows.Forms.OpenFileDialog DefineFolderIconDialog;
  6969. internal System.Windows.Forms.OpenFileDialog DefineURLIconDialog;
  6970. internal System.Windows.Forms.OpenFileDialog DefineFileIconDialog;
  6971. internal System.Windows.Forms.OpenFileDialog DefineCommandIconDialog;
  6972. private System.Windows.Forms.Button findInRegB;
  6973. private System.Windows.Forms.Button RemoveOwnerB;
  6974. private System.Windows.Forms.Button AddOwnerB;
  6975. private System.Windows.Forms.TabPage optionsTab;
  6976. private System.Windows.Forms.RadioButton radioMinimal;
  6977. private System.Windows.Forms.RadioButton radioCaramel;
  6978. private System.Windows.Forms.RadioButton radioLime;
  6979. private System.Windows.Forms.RadioButton radioMagma;
  6980. private System.Windows.Forms.RadioButton radioOcean;
  6981. private System.Windows.Forms.RadioButton radioZerg;
  6982. private System.Windows.Forms.Label lblTheming;
  6983. private System.Windows.Forms.ListBox listCustomCommands;
  6984. private System.Windows.Forms.Label removeCCL;
  6985. private System.Windows.Forms.Button removeCCB;
  6986. private System.Windows.Forms.Button refreshCCB;
  6987. private System.Windows.Forms.Panel panel5;
  6988. private System.Windows.Forms.Panel panel6;
  6989. private System.Windows.Forms.Panel panelList;
  6990. private System.Windows.Forms.TabPage modernAppsTab;
  6991. private System.Windows.Forms.Label txtModernAppsTitle;
  6992. private System.Windows.Forms.Panel panelModernAppsList;
  6993. private System.Windows.Forms.CheckedListBox listModernApps;
  6994. private System.Windows.Forms.Button uninstallModernAppsButton;
  6995. private System.Windows.Forms.Button refreshModernAppsButton;
  6996. private System.Windows.Forms.Label txtUWP;
  6997. private ColoredCheckBox chkSelectAllModernApps;
  6998. private ToggleSwitch performanceSw;
  6999. private ToggleSwitch defenderSw;
  7000. private ToggleSwitch networkSw;
  7001. private ToggleSwitch mediaSharingSw;
  7002. private ToggleSwitch printSw;
  7003. private ToggleSwitch systemRestoreSw;
  7004. private ToggleSwitch officeTelemetrySw;
  7005. private ToggleSwitch telemetryTasksSw;
  7006. private ToggleSwitch superfetchSw;
  7007. private ToggleSwitch homegroupSw;
  7008. private ToggleSwitch reportingSw;
  7009. private ToggleSwitch oldMixerSw;
  7010. private ToggleSwitch gameBarSw;
  7011. private ToggleSwitch uODSw;
  7012. private ToggleSwitch sensorSw;
  7013. private ToggleSwitch privacySw;
  7014. private ToggleSwitch telemetryServicesSw;
  7015. private ToggleSwitch autoUpdatesSw;
  7016. private ToggleSwitch peopleSw;
  7017. private ToggleSwitch adsSw;
  7018. private ToggleSwitch colorBarSw;
  7019. private ToggleSwitch oldExplorerSw;
  7020. private ToggleSwitch xboxSw;
  7021. private ToggleSwitch cortanaSw;
  7022. private ToggleSwitch darkSw;
  7023. private ToggleSwitch spellSw;
  7024. private ToggleSwitch inkSw;
  7025. private ToggleSwitch driversSw;
  7026. private System.Windows.Forms.Button btnResetConfig;
  7027. private ToggleSwitch disableOneDriveSw;
  7028. private ToggleSwitch compatSw;
  7029. private System.Windows.Forms.Button btnUpdate;
  7030. private System.Windows.Forms.Button btnChangelog;
  7031. private ToggleSwitch faxSw;
  7032. private ToggleSwitch insiderSw;
  7033. private ToggleSwitch featuresSw;
  7034. private ToggleSwitch smartScreenSw;
  7035. private ColoredCheckBox chkReadOnly;
  7036. private System.Windows.Forms.Label lblLock;
  7037. private ToggleSwitch ccSw;
  7038. private ToggleSwitch stickySw;
  7039. private ToggleSwitch longPathsSw;
  7040. private ColoredCheckBox chkBlock;
  7041. private ToggleSwitch castSw;
  7042. private System.Windows.Forms.Button adblockBasic;
  7043. private System.Windows.Forms.Label lblAdblockSub;
  7044. private System.Windows.Forms.Label lblAdblock;
  7045. private System.Windows.Forms.Button adblockUlti;
  7046. private System.Windows.Forms.Button adblockP;
  7047. private System.Windows.Forms.Button adblockS;
  7048. private System.Windows.Forms.TabPage appsTab;
  7049. private System.Windows.Forms.Button btnDownloadApps;
  7050. private System.Windows.Forms.Label appsTitle;
  7051. private ColoredCheckBox c7zip;
  7052. private ColoredCheckBox cPeaZip;
  7053. private ColoredCheckBox cWinRar;
  7054. private ColoredCheckBox cChromium;
  7055. private ColoredCheckBox cChrome;
  7056. private ColoredCheckBox cFirefox;
  7057. private ColoredCheckBox cVivaldi;
  7058. private ColoredCheckBox cOpera;
  7059. private ColoredCheckBox cThunderbird;
  7060. private ColoredCheckBox cDiscord;
  7061. private ColoredCheckBox cSkype;
  7062. private ColoredCheckBox cViber;
  7063. private ColoredCheckBox cSumatra;
  7064. private ColoredCheckBox cAdobeReader;
  7065. private ColoredCheckBox cQB;
  7066. private ColoredCheckBox cDeluge;
  7067. private System.Windows.Forms.Label setDownDirLbl;
  7068. private System.Windows.Forms.TextBox txtDownloadFolder;
  7069. private System.Windows.Forms.Button changeDownDirB;
  7070. private System.Windows.Forms.Label txtDownloadStatus;
  7071. private System.Windows.Forms.Label bitPref;
  7072. private ColoredRadioButton c32;
  7073. private ColoredCheckBox cFoxit;
  7074. private ColoredCheckBox cUT3;
  7075. private ColoredCheckBox cBT;
  7076. private System.Windows.Forms.Button goToDownloadsB;
  7077. private System.Windows.Forms.LinkLabel linkWarnings;
  7078. private ColoredCheckBox cTor;
  7079. private ColoredCheckBox cTV;
  7080. private ColoredCheckBox cZoom;
  7081. private ColoredCheckBox cEvernote;
  7082. private ColoredCheckBox cOneDrive;
  7083. private ColoredCheckBox cSteam;
  7084. private ColoredCheckBox cUbi;
  7085. private ColoredCheckBox cBlizzard;
  7086. private System.Windows.Forms.PictureBox pictureBox2;
  7087. private System.Windows.Forms.PictureBox pictureBox6;
  7088. private System.Windows.Forms.PictureBox pictureBox7;
  7089. private System.Windows.Forms.PictureBox pictureBox3;
  7090. private System.Windows.Forms.PictureBox pictureBox4;
  7091. private System.Windows.Forms.PictureBox pictureBox5;
  7092. private System.Windows.Forms.PictureBox pictureBox14;
  7093. private System.Windows.Forms.PictureBox pictureBox15;
  7094. private System.Windows.Forms.PictureBox pictureBox16;
  7095. private System.Windows.Forms.PictureBox pictureBox17;
  7096. private System.Windows.Forms.PictureBox pictureBox20;
  7097. private System.Windows.Forms.PictureBox pictureBox19;
  7098. private System.Windows.Forms.PictureBox pictureBox18;
  7099. private System.Windows.Forms.PictureBox pictureBox25;
  7100. private System.Windows.Forms.PictureBox pictureBox26;
  7101. private System.Windows.Forms.PictureBox pictureBox27;
  7102. private System.Windows.Forms.PictureBox pictureBox28;
  7103. private System.Windows.Forms.PictureBox pictureBox29;
  7104. private System.Windows.Forms.PictureBox pictureBox30;
  7105. private System.Windows.Forms.PictureBox pictureBox24;
  7106. private System.Windows.Forms.PictureBox pictureBox21;
  7107. private System.Windows.Forms.PictureBox pictureBox23;
  7108. private System.Windows.Forms.PictureBox pictureBox22;
  7109. private System.Windows.Forms.PictureBox pictureBox43;
  7110. private System.Windows.Forms.PictureBox pictureBox49;
  7111. private System.Windows.Forms.PictureBox pictureBox51;
  7112. private System.Windows.Forms.PictureBox pictureBox50;
  7113. private ColoredCheckBox cLibreOffice;
  7114. private System.Windows.Forms.PictureBox pictureBox52;
  7115. private ColoredCheckBox cAutoInstall;
  7116. private ColoredCheckBox cEpicStore;
  7117. private System.Windows.Forms.PictureBox pictureBox53;
  7118. private ColoredCheckBox cOrigin;
  7119. private System.Windows.Forms.PictureBox pictureBox54;
  7120. private ColoredCheckBox cMSTeams;
  7121. private System.Windows.Forms.PictureBox pictureBox55;
  7122. private ColoredCheckBox cAnyDesk;
  7123. private System.Windows.Forms.PictureBox pictureBox56;
  7124. private ColoredCheckBox cMaxthon;
  7125. private System.Windows.Forms.PictureBox picturemaxthon;
  7126. private System.Windows.Forms.PictureBox pictureBox63;
  7127. private ColoredCheckBox cDropbox;
  7128. private ColoredCheckBox cFlux;
  7129. private System.Windows.Forms.PictureBox pictureBox71;
  7130. private System.Windows.Forms.Panel panelApps1;
  7131. private System.Windows.Forms.Panel panelApps5;
  7132. private ColoredCheckBox chkOnlyRemovable;
  7133. private ColoredProgress progressDownloader;
  7134. private System.Windows.Forms.PictureBox pictureBox75;
  7135. private ColoredCheckBox cUT2;
  7136. private System.Windows.Forms.Button btnGetFeed;
  7137. private System.Windows.Forms.Panel panelCommonApps;
  7138. private ToggleSwitch actionSw;
  7139. private System.Windows.Forms.LinkLabel l2;
  7140. private System.Windows.Forms.Panel panelApps6;
  7141. private ColoredCheckBox cVCPP;
  7142. private System.Windows.Forms.PictureBox pictureBox80;
  7143. private ColoredCheckBox cNF472;
  7144. private System.Windows.Forms.PictureBox pictureBox78;
  7145. private ColoredCheckBox cNF452;
  7146. private System.Windows.Forms.PictureBox pictureBox79;
  7147. private ColoredCheckBox cNF40;
  7148. private System.Windows.Forms.PictureBox pictureBox77;
  7149. private ColoredCheckBox cNF35;
  7150. private System.Windows.Forms.PictureBox pictureBox76;
  7151. private ColoredCheckBox cIObitSU;
  7152. private ColoredCheckBox cIObitU;
  7153. private System.Windows.Forms.PictureBox pictureBox74;
  7154. private ColoredCheckBox cRevo;
  7155. private System.Windows.Forms.PictureBox pictureBox68;
  7156. private ColoredCheckBox cIObitDB;
  7157. private ColoredCheckBox cIObitSD;
  7158. private System.Windows.Forms.PictureBox pictureBox61;
  7159. private ColoredCheckBox cUUI;
  7160. private System.Windows.Forms.PictureBox pictureBox66;
  7161. private System.Windows.Forms.PictureBox pictureBox72;
  7162. private System.Windows.Forms.PictureBox pictureBox67;
  7163. private ColoredCheckBox cRufus;
  7164. private System.Windows.Forms.PictureBox pictureBox73;
  7165. private ColoredCheckBox cMalwarebytes;
  7166. private System.Windows.Forms.PictureBox pictureBox70;
  7167. private ColoredCheckBox cAntiExploit;
  7168. private System.Windows.Forms.PictureBox pictureBox69;
  7169. private System.Windows.Forms.Label txtFeedError;
  7170. private ColoredCheckBox cViper;
  7171. private System.Windows.Forms.PictureBox pictureBox81;
  7172. private System.Windows.Forms.PictureBox pictureBox8;
  7173. private ColoredCheckBox cIrfan;
  7174. private System.Windows.Forms.PictureBox pictureBox59;
  7175. private ColoredCheckBox ciTunes;
  7176. private ColoredCheckBox cWinamp;
  7177. private System.Windows.Forms.PictureBox pictureBox65;
  7178. private ColoredCheckBox cAudacity;
  7179. private ColoredCheckBox cPhotoFiltre;
  7180. private System.Windows.Forms.PictureBox pictureBox46;
  7181. private ColoredCheckBox cGIMP;
  7182. private System.Windows.Forms.PictureBox pictureBox47;
  7183. private System.Windows.Forms.PictureBox pictureBox45;
  7184. private System.Windows.Forms.PictureBox pictureBox48;
  7185. private ColoredCheckBox cMp3Tag;
  7186. private System.Windows.Forms.PictureBox pictureBox60;
  7187. private ColoredCheckBox cBlender;
  7188. private ColoredCheckBox cLightShot;
  7189. private System.Windows.Forms.PictureBox pictureBox58;
  7190. private System.Windows.Forms.PictureBox pictureBox57;
  7191. private ColoredCheckBox cGyazo;
  7192. private ColoredCheckBox cNPP;
  7193. private ColoredCheckBox cSublimeText;
  7194. private System.Windows.Forms.PictureBox pictureBox33;
  7195. private ColoredCheckBox cAtom;
  7196. private System.Windows.Forms.PictureBox pictureBox34;
  7197. private System.Windows.Forms.PictureBox pictureBox32;
  7198. private System.Windows.Forms.PictureBox pictureBox35;
  7199. private System.Windows.Forms.PictureBox pictureBox31;
  7200. private System.Windows.Forms.PictureBox pictureBox36;
  7201. private ColoredCheckBox cVS;
  7202. private ColoredCheckBox cVSCode;
  7203. private ColoredCheckBox cSublimeMerge;
  7204. private System.Windows.Forms.PictureBox pictureBox64;
  7205. private ColoredCheckBox cAndroidStudio;
  7206. private System.Windows.Forms.PictureBox pictureBox62;
  7207. private ColoredCheckBox cEclipse;
  7208. private ColoredCheckBox cGitHub;
  7209. private ColoredCheckBox cNode;
  7210. private System.Windows.Forms.PictureBox pictureBox38;
  7211. private ColoredCheckBox cXAMPP;
  7212. private ColoredCheckBox cPostman;
  7213. private System.Windows.Forms.PictureBox pictureBox40;
  7214. private System.Windows.Forms.PictureBox pictureBox41;
  7215. private System.Windows.Forms.PictureBox pictureBox42;
  7216. private ColoredCheckBox cFileZilla;
  7217. private System.Windows.Forms.PictureBox pictureBox39;
  7218. private System.Windows.Forms.PictureBox pictureBox37;
  7219. private ColoredCheckBox cPutty;
  7220. private System.Windows.Forms.PictureBox pictureBox44;
  7221. private ColoredCheckBox cWinScp;
  7222. private System.Windows.Forms.Button btnViewLog;
  7223. private System.Windows.Forms.Label lblTroubleshoot;
  7224. private System.Windows.Forms.Label lblUpdating;
  7225. private System.Windows.Forms.Button btnOpenConf;
  7226. private System.Windows.Forms.PictureBox pictureBox82;
  7227. private ColoredCheckBox cMega;
  7228. private System.Windows.Forms.TabPage pingerTab;
  7229. private System.Windows.Forms.Label pingerTitle;
  7230. private System.Windows.Forms.TextBox txtPingInput;
  7231. private System.Windows.Forms.Label lblPinger;
  7232. private System.Windows.Forms.Button btnPing;
  7233. private System.Windows.Forms.Label lblFootprint;
  7234. private System.Windows.Forms.Label lblPretext;
  7235. private System.Windows.Forms.Button btnShodan;
  7236. private System.Windows.Forms.Label lblResults;
  7237. private System.Windows.Forms.ListBox listPingResults;
  7238. private System.Windows.Forms.Panel panel7;
  7239. private System.Windows.Forms.Button copyIPB;
  7240. private System.Windows.Forms.Button copyB;
  7241. private System.Windows.Forms.Button btnExport;
  7242. internal System.Windows.Forms.SaveFileDialog ExportDialog;
  7243. private System.Windows.Forms.ContextMenuStrip launcherMenu;
  7244. private System.Windows.Forms.NotifyIcon launcherIcon;
  7245. private System.Windows.Forms.ToolStripMenuItem trayStartup;
  7246. private System.Windows.Forms.ToolStripMenuItem trayCleaner;
  7247. private System.Windows.Forms.ToolStripMenuItem trayPinger;
  7248. private System.Windows.Forms.ToolStripMenuItem trayHosts;
  7249. private System.Windows.Forms.ToolStripMenuItem trayAD;
  7250. private System.Windows.Forms.ToolStripMenuItem trayExit;
  7251. private ToggleSwitch quickAccessToggle;
  7252. private System.Windows.Forms.PictureBox pictureBox83;
  7253. private System.Windows.Forms.LinkLabel linkLabel5;
  7254. private System.Windows.Forms.LinkLabel linkLabel6;
  7255. private System.Windows.Forms.PictureBox pictureBox84;
  7256. private System.Windows.Forms.Label lblLab;
  7257. private System.Windows.Forms.LinkLabel linkUpdate;
  7258. private System.Windows.Forms.Label lblUpdateDisabled;
  7259. private System.Windows.Forms.ToolStripMenuItem trayRestartExplorer;
  7260. private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
  7261. private System.Windows.Forms.Button flushCacheB;
  7262. private ColoredCheckBox cVLC;
  7263. private ColoredCheckBox cFoobar;
  7264. private ColoredCheckBox cPot;
  7265. private System.Windows.Forms.PictureBox pictureBox10;
  7266. private System.Windows.Forms.PictureBox pictureBox11;
  7267. private System.Windows.Forms.PictureBox pictureBox12;
  7268. private ColoredCheckBox cBS;
  7269. private System.Windows.Forms.PictureBox pictureBox13;
  7270. private ColoredCheckBox cSpotify;
  7271. private System.Windows.Forms.PictureBox pictureBox9;
  7272. private ColoredRadioButton c64;
  7273. private System.Windows.Forms.Panel panel10;
  7274. private ToggleSwitch helpTipsToggle;
  7275. private Button backupStartupB;
  7276. private Button restoreStartupB;
  7277. private TextBox txtBackupTitle;
  7278. private Label lblBackupTitle;
  7279. private Button doBackup;
  7280. private Button cancelBackup;
  7281. private Label languagesL;
  7282. private Panel panel8;
  7283. private PictureBox pictureBox85;
  7284. private Panel panel9;
  7285. private PictureBox pictureBox87;
  7286. private PictureBox pictureBox86;
  7287. private ToolTip helpBox;
  7288. private PictureBox pictureBox88;
  7289. private ColoredRadioButton radioHellenic;
  7290. private ColoredRadioButton radioEnglish;
  7291. private ColoredRadioButton radioRussian;
  7292. private Button btnSpeedtest;
  7293. private PictureBox pictureBox89;
  7294. private ColoredRadioButton radioTurkish;
  7295. private Label txtNetFw;
  7296. }
  7297. }