2
0

MainForm.Designer.cs 380 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392
  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. System.Windows.Forms.TreeNode treeNode1 = new System.Windows.Forms.TreeNode("Processors", 0, 0);
  32. System.Windows.Forms.TreeNode treeNode2 = new System.Windows.Forms.TreeNode("Memory", 1, 1);
  33. System.Windows.Forms.TreeNode treeNode3 = new System.Windows.Forms.TreeNode("Graphics", 2, 2);
  34. System.Windows.Forms.TreeNode treeNode4 = new System.Windows.Forms.TreeNode("Motherboard", 3, 3);
  35. System.Windows.Forms.TreeNode treeNode5 = new System.Windows.Forms.TreeNode("Storage", 4, 4);
  36. System.Windows.Forms.TreeNode treeNode6 = new System.Windows.Forms.TreeNode("Network Adapters", 5, 5);
  37. System.Windows.Forms.TreeNode treeNode7 = new System.Windows.Forms.TreeNode("Audio", 6, 6);
  38. System.Windows.Forms.TreeNode treeNode8 = new System.Windows.Forms.TreeNode("Peripherals", 7, 7);
  39. this.tpanel = new System.Windows.Forms.Panel();
  40. this.restartAndApply = new System.Windows.Forms.Label();
  41. this.picRestartNeeded = new System.Windows.Forms.PictureBox();
  42. this.picLab = new System.Windows.Forms.PictureBox();
  43. this.picUpdate = new System.Windows.Forms.PictureBox();
  44. this.txtNetFw = new System.Windows.Forms.Label();
  45. this.txtBitness = new System.Windows.Forms.Label();
  46. this.txtOS = new System.Windows.Forms.Label();
  47. this.txtVersion = new System.Windows.Forms.Label();
  48. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  49. this.label2 = new System.Windows.Forms.Label();
  50. this.bpanel = new System.Windows.Forms.Panel();
  51. this.tabCollection = new Optimizer.MoonTabs();
  52. this.universalTab = new System.Windows.Forms.TabPage();
  53. this.winSearchSw = new Optimizer.ToggleCard();
  54. this.label13 = new System.Windows.Forms.Label();
  55. this.label4a = new System.Windows.Forms.Label();
  56. this.drives = new System.Windows.Forms.Label();
  57. this.label14s = new System.Windows.Forms.Label();
  58. this.nvidiaTelemetrySw = new Optimizer.ToggleCard();
  59. this.ntfsStampSw = new Optimizer.ToggleCard();
  60. this.smb2Sw = new Optimizer.ToggleCard();
  61. this.smb1Sw = new Optimizer.ToggleCard();
  62. this.hibernateSw = new Optimizer.ToggleCard();
  63. this.chromeTelemetrySw = new Optimizer.ToggleCard();
  64. this.ffTelemetrySw = new Optimizer.ToggleCard();
  65. this.vsSw = new Optimizer.ToggleCard();
  66. this.reportingSw = new Optimizer.ToggleCard();
  67. this.systemRestoreSw = new Optimizer.ToggleCard();
  68. this.officeTelemetrySw = new Optimizer.ToggleCard();
  69. this.smartScreenSw = new Optimizer.ToggleCard();
  70. this.networkSw = new Optimizer.ToggleCard();
  71. this.telemetryTasksSw = new Optimizer.ToggleCard();
  72. this.defenderSw = new Optimizer.ToggleCard();
  73. this.homegroupSw = new Optimizer.ToggleCard();
  74. this.stickySw = new Optimizer.ToggleCard();
  75. this.compatSw = new Optimizer.ToggleCard();
  76. this.mediaSharingSw = new Optimizer.ToggleCard();
  77. this.printSw = new Optimizer.ToggleCard();
  78. this.superfetchSw = new Optimizer.ToggleCard();
  79. this.faxSw = new Optimizer.ToggleCard();
  80. this.performanceSw = new Optimizer.ToggleCard();
  81. this.windows10Tab = new System.Windows.Forms.TabPage();
  82. this.label18 = new System.Windows.Forms.Label();
  83. this.label17 = new System.Windows.Forms.Label();
  84. this.label16 = new System.Windows.Forms.Label();
  85. this.label15 = new System.Windows.Forms.Label();
  86. this.label14 = new System.Windows.Forms.Label();
  87. this.panelWin11Tweaks = new System.Windows.Forms.Panel();
  88. this.label20 = new System.Windows.Forms.Label();
  89. this.label19 = new System.Windows.Forms.Label();
  90. this.stickersSw = new Optimizer.ToggleCard();
  91. this.compactModeSw = new Optimizer.ToggleCard();
  92. this.classicRibbonSw = new Optimizer.ToggleCard();
  93. this.snapAssistSw = new Optimizer.ToggleCard();
  94. this.widgetsSw = new Optimizer.ToggleCard();
  95. this.leftTaskbarSw = new Optimizer.ToggleCard();
  96. this.classicContextSw = new Optimizer.ToggleCard();
  97. this.chatSw = new Optimizer.ToggleCard();
  98. this.smallerTaskbarSw = new Optimizer.ToggleCard();
  99. this.vbsSw = new Optimizer.ToggleCard();
  100. this.gameModeSw = new Optimizer.ToggleCard();
  101. this.storeUpdatesSw = new Optimizer.ToggleCard();
  102. this.oldMixerSw = new Optimizer.ToggleCard();
  103. this.insiderSw = new Optimizer.ToggleCard();
  104. this.castSw = new Optimizer.ToggleCard();
  105. this.gameBarSw = new Optimizer.ToggleCard();
  106. this.sensorSw = new Optimizer.ToggleCard();
  107. this.ccSw = new Optimizer.ToggleCard();
  108. this.cortanaSw = new Optimizer.ToggleCard();
  109. this.privacySw = new Optimizer.ToggleCard();
  110. this.driversSw = new Optimizer.ToggleCard();
  111. this.telemetryServicesSw = new Optimizer.ToggleCard();
  112. this.autoUpdatesSw = new Optimizer.ToggleCard();
  113. this.tpmSw = new Optimizer.ToggleCard();
  114. this.xboxSw = new Optimizer.ToggleCard();
  115. this.inkSw = new Optimizer.ToggleCard();
  116. this.spellSw = new Optimizer.ToggleCard();
  117. this.longPathsSw = new Optimizer.ToggleCard();
  118. this.uODSw = new Optimizer.ToggleCard();
  119. this.peopleSw = new Optimizer.ToggleCard();
  120. this.oldExplorerSw = new Optimizer.ToggleCard();
  121. this.adsSw = new Optimizer.ToggleCard();
  122. this.windows8Tab = new System.Windows.Forms.TabPage();
  123. this.label21 = new System.Windows.Forms.Label();
  124. this.disableOneDriveSw = new Optimizer.ToggleCard();
  125. this.modernAppsTab = new System.Windows.Forms.TabPage();
  126. this.btnRestoreUwp = new System.Windows.Forms.Button();
  127. this.panelUwp = new System.Windows.Forms.Panel();
  128. this.uninstallModernAppsButton = new System.Windows.Forms.Button();
  129. this.refreshModernAppsButton = new System.Windows.Forms.Button();
  130. this.txtModernAppsTitle = new System.Windows.Forms.Label();
  131. this.chkOnlyRemovable = new Optimizer.MoonCheck();
  132. this.chkSelectAllModernApps = new Optimizer.MoonCheck();
  133. this.startupTab = new System.Windows.Forms.TabPage();
  134. this.cancelBackup = new System.Windows.Forms.Button();
  135. this.doBackup = new System.Windows.Forms.Button();
  136. this.txtBackupTitle = new System.Windows.Forms.TextBox();
  137. this.lblBackupTitle = new System.Windows.Forms.Label();
  138. this.restoreStartupB = new System.Windows.Forms.Button();
  139. this.backupStartupB = new System.Windows.Forms.Button();
  140. this.findInRegB = new System.Windows.Forms.Button();
  141. this.locateFileB = new System.Windows.Forms.Button();
  142. this.refreshStartupB = new System.Windows.Forms.Button();
  143. this.panel3 = new System.Windows.Forms.Panel();
  144. this.listStartupItems = new System.Windows.Forms.ListView();
  145. this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  146. this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  147. this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  148. this.removeStartupItemB = new System.Windows.Forms.Button();
  149. this.startupTitle = new System.Windows.Forms.Label();
  150. this.appsTab = new System.Windows.Forms.TabPage();
  151. this.txtFeedError = new System.Windows.Forms.Label();
  152. this.lblVideoSound = new System.Windows.Forms.Label();
  153. this.lblCoding = new System.Windows.Forms.Label();
  154. this.lblSystemTools = new System.Windows.Forms.Label();
  155. this.groupSoundVideo = new System.Windows.Forms.Panel();
  156. this.lblInternet = new System.Windows.Forms.Label();
  157. this.groupCoding = new System.Windows.Forms.Panel();
  158. this.groupInternet = new System.Windows.Forms.Panel();
  159. this.panel10 = new System.Windows.Forms.Panel();
  160. this.appsTitle = new System.Windows.Forms.Label();
  161. this.btnGetFeed = new System.Windows.Forms.Button();
  162. this.panelCommonApps = new System.Windows.Forms.Panel();
  163. this.cAutoInstall = new Optimizer.MoonCheck();
  164. this.progressDownloader = new Optimizer.MoonProgress();
  165. this.c64 = new Optimizer.MoonRadio();
  166. this.c32 = new Optimizer.MoonRadio();
  167. this.btnDownloadApps = new System.Windows.Forms.Button();
  168. this.setDownDirLbl = new System.Windows.Forms.Label();
  169. this.txtDownloadFolder = new System.Windows.Forms.TextBox();
  170. this.changeDownDirB = new System.Windows.Forms.Button();
  171. this.txtDownloadStatus = new System.Windows.Forms.Label();
  172. this.linkWarnings = new System.Windows.Forms.LinkLabel();
  173. this.bitPref = new System.Windows.Forms.Label();
  174. this.goToDownloadsB = new System.Windows.Forms.Button();
  175. this.groupSystemTools = new System.Windows.Forms.Panel();
  176. this.cleanerTab = new System.Windows.Forms.TabPage();
  177. this.panel14 = new System.Windows.Forms.Panel();
  178. this.listCleanPreview = new Optimizer.MoonCheckList();
  179. this.panel13 = new System.Windows.Forms.Panel();
  180. this.btnWinClean = new System.Windows.Forms.Button();
  181. this.analyzeDriveB = new System.Windows.Forms.Button();
  182. this.checkSelectAll = new System.Windows.Forms.LinkLabel();
  183. this.lblPretext = new System.Windows.Forms.Label();
  184. this.cleanDriveB = new System.Windows.Forms.Button();
  185. this.lblFootprint = new System.Windows.Forms.Label();
  186. this.panel1 = new System.Windows.Forms.Panel();
  187. this.bravePasswords = new Optimizer.MoonCheck();
  188. this.braveSession = new Optimizer.MoonCheck();
  189. this.braveHistory = new Optimizer.MoonCheck();
  190. this.braveCookies = new Optimizer.MoonCheck();
  191. this.braveCache = new Optimizer.MoonCheck();
  192. this.label9 = new System.Windows.Forms.Label();
  193. this.pictureBox4 = new System.Windows.Forms.PictureBox();
  194. this.label8 = new System.Windows.Forms.Label();
  195. this.pictureBox2 = new System.Windows.Forms.PictureBox();
  196. this.edgeSession = new Optimizer.MoonCheck();
  197. this.edgeHistory = new Optimizer.MoonCheck();
  198. this.edgeCookies = new Optimizer.MoonCheck();
  199. this.edgeCache = new Optimizer.MoonCheck();
  200. this.IECache = new Optimizer.MoonCheck();
  201. this.firefoxHistory = new Optimizer.MoonCheck();
  202. this.firefoxCookies = new Optimizer.MoonCheck();
  203. this.firefoxCache = new Optimizer.MoonCheck();
  204. this.chromePws = new Optimizer.MoonCheck();
  205. this.chromeSession = new Optimizer.MoonCheck();
  206. this.chromeHistory = new Optimizer.MoonCheck();
  207. this.chromeCookies = new Optimizer.MoonCheck();
  208. this.chromeCache = new Optimizer.MoonCheck();
  209. this.label7 = new System.Windows.Forms.Label();
  210. this.label6 = new System.Windows.Forms.Label();
  211. this.label5 = new System.Windows.Forms.Label();
  212. this.label4 = new System.Windows.Forms.Label();
  213. this.pictureBox11 = new System.Windows.Forms.PictureBox();
  214. this.pictureBox10 = new System.Windows.Forms.PictureBox();
  215. this.pictureBox9 = new System.Windows.Forms.PictureBox();
  216. this.pictureBox8 = new System.Windows.Forms.PictureBox();
  217. this.checkErrorReports = new Optimizer.MoonCheck();
  218. this.checkTemp = new Optimizer.MoonCheck();
  219. this.checkBin = new Optimizer.MoonCheck();
  220. this.checkMiniDumps = new Optimizer.MoonCheck();
  221. this.pingerTab = new System.Windows.Forms.TabPage();
  222. this.netTools = new Optimizer.MoonTabs();
  223. this.tabPage1 = new System.Windows.Forms.TabPage();
  224. this.btnExport = new System.Windows.Forms.Button();
  225. this.copyB = new System.Windows.Forms.Button();
  226. this.copyIPB = new System.Windows.Forms.Button();
  227. this.panel7 = new System.Windows.Forms.Panel();
  228. this.listPingResults = new Optimizer.MoonList();
  229. this.lblResults = new System.Windows.Forms.Label();
  230. this.btnShodan = new System.Windows.Forms.Button();
  231. this.btnPing = new System.Windows.Forms.Button();
  232. this.txtPingInput = new System.Windows.Forms.TextBox();
  233. this.lblPinger = new System.Windows.Forms.Label();
  234. this.pingerTitle = new System.Windows.Forms.Label();
  235. this.tabPage2 = new System.Windows.Forms.TabPage();
  236. this.dnsTitle = new System.Windows.Forms.Label();
  237. this.linkDNSv6A = new System.Windows.Forms.LinkLabel();
  238. this.linkDNSv4A = new System.Windows.Forms.LinkLabel();
  239. this.linkDNSv6 = new System.Windows.Forms.LinkLabel();
  240. this.linkDNSv4 = new System.Windows.Forms.LinkLabel();
  241. this.label3 = new System.Windows.Forms.Label();
  242. this.label1 = new System.Windows.Forms.Label();
  243. this.btnOpenNetwork = new System.Windows.Forms.Button();
  244. this.flushCacheB = new System.Windows.Forms.Button();
  245. this.boxAdapter = new Optimizer.MoonSelect();
  246. this.boxDNS = new Optimizer.MoonSelect();
  247. this.hostsEditorTab = new System.Windows.Forms.TabPage();
  248. this.panel4 = new System.Windows.Forms.Panel();
  249. this.linkAdvancedEdit = new System.Windows.Forms.LinkLabel();
  250. this.linkRestoreDefault = new System.Windows.Forms.LinkLabel();
  251. this.lblLock = new System.Windows.Forms.Label();
  252. this.chkReadOnly = new Optimizer.MoonCheck();
  253. this.panelList = new System.Windows.Forms.Panel();
  254. this.listHostEntries = new Optimizer.MoonList();
  255. this.chkBlock = new Optimizer.MoonCheck();
  256. this.refreshHostsB = new System.Windows.Forms.Button();
  257. this.removeHostB = new System.Windows.Forms.Button();
  258. this.removeAllHostsB = new System.Windows.Forms.Button();
  259. this.addHostB = new System.Windows.Forms.Button();
  260. this.txtIP = new System.Windows.Forms.TextBox();
  261. this.txtDomain = new System.Windows.Forms.TextBox();
  262. this.lblDomain = new System.Windows.Forms.Label();
  263. this.lblIP = new System.Windows.Forms.Label();
  264. this.hostsTitle = new System.Windows.Forms.Label();
  265. this.linkLocate = new System.Windows.Forms.LinkLabel();
  266. this.registryFixerTab = new System.Windows.Forms.TabPage();
  267. this.panel2 = new System.Windows.Forms.Panel();
  268. this.regFixB = new System.Windows.Forms.Button();
  269. this.regLbl = new System.Windows.Forms.Label();
  270. this.checkRestartExplorer = new Optimizer.MoonCheck();
  271. this.checkRegistryEditor = new Optimizer.MoonCheck();
  272. this.checkEnableAll = new Optimizer.MoonCheck();
  273. this.checkContextMenu = new Optimizer.MoonCheck();
  274. this.checkTaskManager = new Optimizer.MoonCheck();
  275. this.checkCommandPrompt = new Optimizer.MoonCheck();
  276. this.checkFirewall = new Optimizer.MoonCheck();
  277. this.checkRunDialog = new Optimizer.MoonCheck();
  278. this.checkFolderOptions = new Optimizer.MoonCheck();
  279. this.checkControlPanel = new Optimizer.MoonCheck();
  280. this.registryTitle = new System.Windows.Forms.Label();
  281. this.indiciumTab = new System.Windows.Forms.TabPage();
  282. this.panel12 = new System.Windows.Forms.Panel();
  283. this.specsTree = new Optimizer.MoonTree();
  284. this.indiciumMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
  285. this.toolHWCopy = new System.Windows.Forms.ToolStripMenuItem();
  286. this.toolHWGoogle = new System.Windows.Forms.ToolStripMenuItem();
  287. this.toolHWDuck = new System.Windows.Forms.ToolStripMenuItem();
  288. this.panel11 = new System.Windows.Forms.Panel();
  289. this.btnCopyHW = new System.Windows.Forms.Button();
  290. this.btnSaveHW = new System.Windows.Forms.Button();
  291. this.hwDetailed = new Optimizer.ToggleCard();
  292. this.integratorTab = new System.Windows.Forms.TabPage();
  293. this.synapse = new Optimizer.MoonTabs();
  294. this.integratorInfoTab = new System.Windows.Forms.TabPage();
  295. this.integrator7 = new System.Windows.Forms.Label();
  296. this.integrator6 = new System.Windows.Forms.Label();
  297. this.integrator5 = new System.Windows.Forms.Label();
  298. this.integrator4 = new System.Windows.Forms.Label();
  299. this.integrator3 = new System.Windows.Forms.Label();
  300. this.integrator2 = new System.Windows.Forms.Label();
  301. this.integrator1 = new System.Windows.Forms.Label();
  302. this.tabPage8 = new System.Windows.Forms.TabPage();
  303. this.btnAddItem = new System.Windows.Forms.Button();
  304. this.itemnamegroup = new System.Windows.Forms.GroupBox();
  305. this.txtItemName = new System.Windows.Forms.TextBox();
  306. this.security = new System.Windows.Forms.GroupBox();
  307. this.checkShift = new Optimizer.MoonCheck();
  308. this.itemposition = new System.Windows.Forms.GroupBox();
  309. this.radioTop = new Optimizer.MoonRadio();
  310. this.radioMiddle = new Optimizer.MoonRadio();
  311. this.radioBottom = new Optimizer.MoonRadio();
  312. this.icontoaddgroup = new System.Windows.Forms.GroupBox();
  313. this.checkDefaultIcon = new Optimizer.MoonCheck();
  314. this.btnBrowseIcon = new System.Windows.Forms.Button();
  315. this.txtIcon = new System.Windows.Forms.TextBox();
  316. this.itemtoaddgroup = new System.Windows.Forms.GroupBox();
  317. this.btnBrowseItem = new System.Windows.Forms.Button();
  318. this.txtItem = new System.Windows.Forms.TextBox();
  319. this.itemtype = new System.Windows.Forms.GroupBox();
  320. this.radioCommand = new Optimizer.MoonRadio();
  321. this.radioProgram = new Optimizer.MoonRadio();
  322. this.radioFolder = new Optimizer.MoonRadio();
  323. this.radioLink = new Optimizer.MoonRadio();
  324. this.radioFile = new Optimizer.MoonRadio();
  325. this.addItemL = new System.Windows.Forms.Label();
  326. this.tabPage9 = new System.Windows.Forms.TabPage();
  327. this.panel5 = new System.Windows.Forms.Panel();
  328. this.listDesktopItems = new Optimizer.MoonList();
  329. this.refreshIIB = new System.Windows.Forms.Button();
  330. this.removeDIB = new System.Windows.Forms.Button();
  331. this.removeAllIIB = new System.Windows.Forms.Button();
  332. this.removeIntegratorItemsL = new System.Windows.Forms.Label();
  333. this.tabPage10 = new System.Windows.Forms.TabPage();
  334. this.WAB = new Optimizer.ToggleCard();
  335. this.AddCMDB = new Optimizer.ToggleCard();
  336. this.AddOwnerB = new Optimizer.ToggleCard();
  337. this.DSB = new Optimizer.ToggleCard();
  338. this.SSB = new Optimizer.ToggleCard();
  339. this.STB = new Optimizer.ToggleCard();
  340. this.PMB = new Optimizer.ToggleCard();
  341. this.readyMenusL = new System.Windows.Forms.Label();
  342. this.tabPage11 = new System.Windows.Forms.TabPage();
  343. this.panel6 = new System.Windows.Forms.Panel();
  344. this.listCustomCommands = new Optimizer.MoonList();
  345. this.removeCCB = new System.Windows.Forms.Button();
  346. this.refreshCCB = new System.Windows.Forms.Button();
  347. this.removeCCL = new System.Windows.Forms.Label();
  348. this.btnCreateCustomCommand = new System.Windows.Forms.Button();
  349. this.button48 = new System.Windows.Forms.Button();
  350. this.txtRunKeyword = new System.Windows.Forms.TextBox();
  351. this.ccKeywordL = new System.Windows.Forms.Label();
  352. this.txtRunFile = new System.Windows.Forms.TextBox();
  353. this.ccFileL = new System.Windows.Forms.Label();
  354. this.ccL = new System.Windows.Forms.Label();
  355. this.optionsTab = new System.Windows.Forms.TabPage();
  356. this.telemetrySvcToggle = new Optimizer.ToggleCard();
  357. this.autoStartToggle = new Optimizer.ToggleCard();
  358. this.colorPicker1 = new Optimizer.Controls.ColorPicker();
  359. this.pictureBox3 = new System.Windows.Forms.PictureBox();
  360. this.linkLabel3 = new System.Windows.Forms.LinkLabel();
  361. this.pictureBox17 = new System.Windows.Forms.PictureBox();
  362. this.linkLabel2 = new System.Windows.Forms.LinkLabel();
  363. this.pictureBox14 = new System.Windows.Forms.PictureBox();
  364. this.pictureBox13 = new System.Windows.Forms.PictureBox();
  365. this.pictureBox12 = new System.Windows.Forms.PictureBox();
  366. this.linkLabel1 = new System.Windows.Forms.LinkLabel();
  367. this.pictureBox85 = new System.Windows.Forms.PictureBox();
  368. this.panel9 = new System.Windows.Forms.Panel();
  369. this.boxLang = new Optimizer.MoonSelect();
  370. this.picFlag = new System.Windows.Forms.PictureBox();
  371. this.languagesL = new System.Windows.Forms.Label();
  372. this.linkLabel5 = new System.Windows.Forms.LinkLabel();
  373. this.btnOpenConf = new System.Windows.Forms.Button();
  374. this.lblTroubleshoot = new System.Windows.Forms.Label();
  375. this.lblUpdating = new System.Windows.Forms.Label();
  376. this.btnViewLog = new System.Windows.Forms.Button();
  377. this.l2 = new System.Windows.Forms.LinkLabel();
  378. this.btnUpdate = new System.Windows.Forms.Button();
  379. this.btnResetConfig = new System.Windows.Forms.Button();
  380. this.lblTheming = new System.Windows.Forms.Label();
  381. this.quickAccessToggle = new Optimizer.ToggleCard();
  382. this.imagesHw = new System.Windows.Forms.ImageList(this.components);
  383. this.defineCommandDialog = new System.Windows.Forms.OpenFileDialog();
  384. this.defineProgramDialog = new System.Windows.Forms.OpenFileDialog();
  385. this.defineFolderDialog = new System.Windows.Forms.FolderBrowserDialog();
  386. this.defineFileDialog = new System.Windows.Forms.OpenFileDialog();
  387. this.DefineProgramIconDialog = new System.Windows.Forms.OpenFileDialog();
  388. this.DefineFolderIconDialog = new System.Windows.Forms.OpenFileDialog();
  389. this.DefineURLIconDialog = new System.Windows.Forms.OpenFileDialog();
  390. this.DefineFileIconDialog = new System.Windows.Forms.OpenFileDialog();
  391. this.DefineCommandIconDialog = new System.Windows.Forms.OpenFileDialog();
  392. this.ExportDialog = new System.Windows.Forms.SaveFileDialog();
  393. this.launcherMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
  394. this.trayStartup = new System.Windows.Forms.ToolStripMenuItem();
  395. this.trayCleaner = new System.Windows.Forms.ToolStripMenuItem();
  396. this.trayPinger = new System.Windows.Forms.ToolStripMenuItem();
  397. this.trayHosts = new System.Windows.Forms.ToolStripMenuItem();
  398. this.trayAD = new System.Windows.Forms.ToolStripMenuItem();
  399. this.trayHW = new System.Windows.Forms.ToolStripMenuItem();
  400. this.trayRegistry = new System.Windows.Forms.ToolStripMenuItem();
  401. this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
  402. this.trayOptions = new System.Windows.Forms.ToolStripMenuItem();
  403. this.trayRestartExplorer = new System.Windows.Forms.ToolStripMenuItem();
  404. this.trayUnlocker = new System.Windows.Forms.ToolStripMenuItem();
  405. this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
  406. this.trayExit = new System.Windows.Forms.ToolStripMenuItem();
  407. this.launcherIcon = new System.Windows.Forms.NotifyIcon(this.components);
  408. this.tpanel.SuspendLayout();
  409. ((System.ComponentModel.ISupportInitialize)(this.picRestartNeeded)).BeginInit();
  410. ((System.ComponentModel.ISupportInitialize)(this.picLab)).BeginInit();
  411. ((System.ComponentModel.ISupportInitialize)(this.picUpdate)).BeginInit();
  412. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  413. this.bpanel.SuspendLayout();
  414. this.tabCollection.SuspendLayout();
  415. this.universalTab.SuspendLayout();
  416. this.windows10Tab.SuspendLayout();
  417. this.panelWin11Tweaks.SuspendLayout();
  418. this.windows8Tab.SuspendLayout();
  419. this.modernAppsTab.SuspendLayout();
  420. this.startupTab.SuspendLayout();
  421. this.panel3.SuspendLayout();
  422. this.appsTab.SuspendLayout();
  423. this.panel10.SuspendLayout();
  424. this.panelCommonApps.SuspendLayout();
  425. this.cleanerTab.SuspendLayout();
  426. this.panel14.SuspendLayout();
  427. this.panel13.SuspendLayout();
  428. this.panel1.SuspendLayout();
  429. ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit();
  430. ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
  431. ((System.ComponentModel.ISupportInitialize)(this.pictureBox11)).BeginInit();
  432. ((System.ComponentModel.ISupportInitialize)(this.pictureBox10)).BeginInit();
  433. ((System.ComponentModel.ISupportInitialize)(this.pictureBox9)).BeginInit();
  434. ((System.ComponentModel.ISupportInitialize)(this.pictureBox8)).BeginInit();
  435. this.pingerTab.SuspendLayout();
  436. this.netTools.SuspendLayout();
  437. this.tabPage1.SuspendLayout();
  438. this.panel7.SuspendLayout();
  439. this.tabPage2.SuspendLayout();
  440. this.hostsEditorTab.SuspendLayout();
  441. this.panel4.SuspendLayout();
  442. this.panelList.SuspendLayout();
  443. this.registryFixerTab.SuspendLayout();
  444. this.panel2.SuspendLayout();
  445. this.indiciumTab.SuspendLayout();
  446. this.panel12.SuspendLayout();
  447. this.indiciumMenu.SuspendLayout();
  448. this.panel11.SuspendLayout();
  449. this.integratorTab.SuspendLayout();
  450. this.synapse.SuspendLayout();
  451. this.integratorInfoTab.SuspendLayout();
  452. this.tabPage8.SuspendLayout();
  453. this.itemnamegroup.SuspendLayout();
  454. this.security.SuspendLayout();
  455. this.itemposition.SuspendLayout();
  456. this.icontoaddgroup.SuspendLayout();
  457. this.itemtoaddgroup.SuspendLayout();
  458. this.itemtype.SuspendLayout();
  459. this.tabPage9.SuspendLayout();
  460. this.panel5.SuspendLayout();
  461. this.tabPage10.SuspendLayout();
  462. this.tabPage11.SuspendLayout();
  463. this.panel6.SuspendLayout();
  464. this.optionsTab.SuspendLayout();
  465. ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
  466. ((System.ComponentModel.ISupportInitialize)(this.pictureBox17)).BeginInit();
  467. ((System.ComponentModel.ISupportInitialize)(this.pictureBox14)).BeginInit();
  468. ((System.ComponentModel.ISupportInitialize)(this.pictureBox13)).BeginInit();
  469. ((System.ComponentModel.ISupportInitialize)(this.pictureBox12)).BeginInit();
  470. ((System.ComponentModel.ISupportInitialize)(this.pictureBox85)).BeginInit();
  471. this.panel9.SuspendLayout();
  472. ((System.ComponentModel.ISupportInitialize)(this.picFlag)).BeginInit();
  473. this.launcherMenu.SuspendLayout();
  474. this.SuspendLayout();
  475. //
  476. // tpanel
  477. //
  478. this.tpanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  479. this.tpanel.Controls.Add(this.restartAndApply);
  480. this.tpanel.Controls.Add(this.picRestartNeeded);
  481. this.tpanel.Controls.Add(this.picLab);
  482. this.tpanel.Controls.Add(this.picUpdate);
  483. this.tpanel.Controls.Add(this.txtNetFw);
  484. this.tpanel.Controls.Add(this.txtBitness);
  485. this.tpanel.Controls.Add(this.txtOS);
  486. this.tpanel.Controls.Add(this.txtVersion);
  487. this.tpanel.Controls.Add(this.pictureBox1);
  488. this.tpanel.Controls.Add(this.label2);
  489. this.tpanel.Dock = System.Windows.Forms.DockStyle.Top;
  490. this.tpanel.Location = new System.Drawing.Point(0, 0);
  491. this.tpanel.Margin = new System.Windows.Forms.Padding(2);
  492. this.tpanel.Name = "tpanel";
  493. this.tpanel.Size = new System.Drawing.Size(984, 64);
  494. this.tpanel.TabIndex = 1;
  495. //
  496. // restartAndApply
  497. //
  498. this.restartAndApply.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  499. this.restartAndApply.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  500. this.restartAndApply.ForeColor = System.Drawing.Color.White;
  501. this.restartAndApply.Location = new System.Drawing.Point(542, 12);
  502. this.restartAndApply.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  503. this.restartAndApply.Name = "restartAndApply";
  504. this.restartAndApply.Size = new System.Drawing.Size(394, 25);
  505. this.restartAndApply.TabIndex = 74;
  506. this.restartAndApply.Tag = "themeable";
  507. this.restartAndApply.Text = "Restart needed";
  508. this.restartAndApply.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  509. this.restartAndApply.Visible = false;
  510. this.restartAndApply.Click += new System.EventHandler(this.restartAndApply_Click);
  511. this.restartAndApply.MouseEnter += new System.EventHandler(this.restartAndApply_MouseEnter);
  512. this.restartAndApply.MouseLeave += new System.EventHandler(this.restartAndApply_MouseLeave);
  513. this.restartAndApply.MouseHover += new System.EventHandler(this.restartAndApply_MouseHover);
  514. //
  515. // picRestartNeeded
  516. //
  517. this.picRestartNeeded.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  518. this.picRestartNeeded.Image = ((System.Drawing.Image)(resources.GetObject("picRestartNeeded.Image")));
  519. this.picRestartNeeded.Location = new System.Drawing.Point(941, 11);
  520. this.picRestartNeeded.Name = "picRestartNeeded";
  521. this.picRestartNeeded.Size = new System.Drawing.Size(30, 30);
  522. this.picRestartNeeded.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  523. this.picRestartNeeded.TabIndex = 73;
  524. this.picRestartNeeded.TabStop = false;
  525. this.picRestartNeeded.Visible = false;
  526. this.picRestartNeeded.Click += new System.EventHandler(this.picRestartNeeded_Click);
  527. //
  528. // picLab
  529. //
  530. this.picLab.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  531. this.picLab.Image = ((System.Drawing.Image)(resources.GetObject("picLab.Image")));
  532. this.picLab.Location = new System.Drawing.Point(941, 11);
  533. this.picLab.Name = "picLab";
  534. this.picLab.Size = new System.Drawing.Size(30, 30);
  535. this.picLab.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  536. this.picLab.TabIndex = 72;
  537. this.picLab.TabStop = false;
  538. this.picLab.Visible = false;
  539. this.picLab.Click += new System.EventHandler(this.picLab_Click);
  540. //
  541. // picUpdate
  542. //
  543. this.picUpdate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  544. this.picUpdate.Cursor = System.Windows.Forms.Cursors.Hand;
  545. this.picUpdate.Image = ((System.Drawing.Image)(resources.GetObject("picUpdate.Image")));
  546. this.picUpdate.Location = new System.Drawing.Point(941, 11);
  547. this.picUpdate.Name = "picUpdate";
  548. this.picUpdate.Size = new System.Drawing.Size(30, 30);
  549. this.picUpdate.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  550. this.picUpdate.TabIndex = 71;
  551. this.picUpdate.TabStop = false;
  552. this.picUpdate.Visible = false;
  553. this.picUpdate.Click += new System.EventHandler(this.picUpdate_Click);
  554. //
  555. // txtNetFw
  556. //
  557. this.txtNetFw.AutoSize = true;
  558. this.txtNetFw.Font = new System.Drawing.Font("Segoe UI Semibold", 9.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  559. this.txtNetFw.ForeColor = System.Drawing.Color.Silver;
  560. this.txtNetFw.Location = new System.Drawing.Point(188, 42);
  561. this.txtNetFw.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  562. this.txtNetFw.Name = "txtNetFw";
  563. this.txtNetFw.Size = new System.Drawing.Size(42, 17);
  564. this.txtNetFw.TabIndex = 70;
  565. this.txtNetFw.Text = "netfw";
  566. //
  567. // txtBitness
  568. //
  569. this.txtBitness.AutoSize = true;
  570. this.txtBitness.Font = new System.Drawing.Font("Segoe UI Semibold", 9.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  571. this.txtBitness.ForeColor = System.Drawing.Color.Silver;
  572. this.txtBitness.Location = new System.Drawing.Point(188, 23);
  573. this.txtBitness.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  574. this.txtBitness.Name = "txtBitness";
  575. this.txtBitness.Size = new System.Drawing.Size(51, 17);
  576. this.txtBitness.TabIndex = 4;
  577. this.txtBitness.Text = "bitness";
  578. //
  579. // txtOS
  580. //
  581. this.txtOS.AutoSize = true;
  582. this.txtOS.Font = new System.Drawing.Font("Segoe UI Semibold", 9.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  583. this.txtOS.ForeColor = System.Drawing.Color.Silver;
  584. this.txtOS.Location = new System.Drawing.Point(188, 3);
  585. this.txtOS.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  586. this.txtOS.Name = "txtOS";
  587. this.txtOS.Size = new System.Drawing.Size(22, 17);
  588. this.txtOS.TabIndex = 3;
  589. this.txtOS.Text = "os";
  590. //
  591. // txtVersion
  592. //
  593. this.txtVersion.AutoSize = true;
  594. this.txtVersion.Font = new System.Drawing.Font("Segoe UI Semibold", 9.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  595. this.txtVersion.ForeColor = System.Drawing.Color.Silver;
  596. this.txtVersion.Location = new System.Drawing.Point(70, 36);
  597. this.txtVersion.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  598. this.txtVersion.Name = "txtVersion";
  599. this.txtVersion.Size = new System.Drawing.Size(85, 17);
  600. this.txtVersion.TabIndex = 1;
  601. this.txtVersion.Text = "Version: {VN}";
  602. //
  603. // pictureBox1
  604. //
  605. this.pictureBox1.Cursor = System.Windows.Forms.Cursors.Default;
  606. this.pictureBox1.Image = global::Optimizer.Properties.Resources.logo;
  607. this.pictureBox1.Location = new System.Drawing.Point(10, 10);
  608. this.pictureBox1.Margin = new System.Windows.Forms.Padding(2);
  609. this.pictureBox1.Name = "pictureBox1";
  610. this.pictureBox1.Size = new System.Drawing.Size(44, 44);
  611. this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  612. this.pictureBox1.TabIndex = 1;
  613. this.pictureBox1.TabStop = false;
  614. this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click);
  615. //
  616. // label2
  617. //
  618. this.label2.AutoSize = true;
  619. this.label2.Font = new System.Drawing.Font("Segoe UI Semibold", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  620. this.label2.ForeColor = System.Drawing.Color.White;
  621. this.label2.Location = new System.Drawing.Point(67, 7);
  622. this.label2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  623. this.label2.Name = "label2";
  624. this.label2.Size = new System.Drawing.Size(97, 25);
  625. this.label2.TabIndex = 2;
  626. this.label2.Text = "Optimizer";
  627. //
  628. // bpanel
  629. //
  630. this.bpanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  631. this.bpanel.Controls.Add(this.tabCollection);
  632. this.bpanel.Dock = System.Windows.Forms.DockStyle.Fill;
  633. this.bpanel.Location = new System.Drawing.Point(0, 64);
  634. this.bpanel.Margin = new System.Windows.Forms.Padding(2);
  635. this.bpanel.Name = "bpanel";
  636. this.bpanel.Size = new System.Drawing.Size(984, 684);
  637. this.bpanel.TabIndex = 2;
  638. //
  639. // tabCollection
  640. //
  641. this.tabCollection.Controls.Add(this.universalTab);
  642. this.tabCollection.Controls.Add(this.windows10Tab);
  643. this.tabCollection.Controls.Add(this.windows8Tab);
  644. this.tabCollection.Controls.Add(this.modernAppsTab);
  645. this.tabCollection.Controls.Add(this.startupTab);
  646. this.tabCollection.Controls.Add(this.appsTab);
  647. this.tabCollection.Controls.Add(this.cleanerTab);
  648. this.tabCollection.Controls.Add(this.pingerTab);
  649. this.tabCollection.Controls.Add(this.hostsEditorTab);
  650. this.tabCollection.Controls.Add(this.registryFixerTab);
  651. this.tabCollection.Controls.Add(this.indiciumTab);
  652. this.tabCollection.Controls.Add(this.integratorTab);
  653. this.tabCollection.Controls.Add(this.optionsTab);
  654. this.tabCollection.Dock = System.Windows.Forms.DockStyle.Fill;
  655. this.tabCollection.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  656. this.tabCollection.Location = new System.Drawing.Point(0, 0);
  657. this.tabCollection.Margin = new System.Windows.Forms.Padding(2);
  658. this.tabCollection.Name = "tabCollection";
  659. this.tabCollection.Padding = new System.Drawing.Point(0, 0);
  660. this.tabCollection.SelectedIndex = 0;
  661. this.tabCollection.Size = new System.Drawing.Size(982, 682);
  662. this.tabCollection.TabIndex = 0;
  663. this.tabCollection.SelectedIndexChanged += new System.EventHandler(this.aio_SelectedIndexChanged);
  664. //
  665. // universalTab
  666. //
  667. this.universalTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  668. this.universalTab.Controls.Add(this.winSearchSw);
  669. this.universalTab.Controls.Add(this.label13);
  670. this.universalTab.Controls.Add(this.label4a);
  671. this.universalTab.Controls.Add(this.drives);
  672. this.universalTab.Controls.Add(this.label14s);
  673. this.universalTab.Controls.Add(this.nvidiaTelemetrySw);
  674. this.universalTab.Controls.Add(this.ntfsStampSw);
  675. this.universalTab.Controls.Add(this.smb2Sw);
  676. this.universalTab.Controls.Add(this.smb1Sw);
  677. this.universalTab.Controls.Add(this.hibernateSw);
  678. this.universalTab.Controls.Add(this.chromeTelemetrySw);
  679. this.universalTab.Controls.Add(this.ffTelemetrySw);
  680. this.universalTab.Controls.Add(this.vsSw);
  681. this.universalTab.Controls.Add(this.reportingSw);
  682. this.universalTab.Controls.Add(this.systemRestoreSw);
  683. this.universalTab.Controls.Add(this.officeTelemetrySw);
  684. this.universalTab.Controls.Add(this.smartScreenSw);
  685. this.universalTab.Controls.Add(this.networkSw);
  686. this.universalTab.Controls.Add(this.telemetryTasksSw);
  687. this.universalTab.Controls.Add(this.defenderSw);
  688. this.universalTab.Controls.Add(this.homegroupSw);
  689. this.universalTab.Controls.Add(this.stickySw);
  690. this.universalTab.Controls.Add(this.compatSw);
  691. this.universalTab.Controls.Add(this.mediaSharingSw);
  692. this.universalTab.Controls.Add(this.printSw);
  693. this.universalTab.Controls.Add(this.superfetchSw);
  694. this.universalTab.Controls.Add(this.faxSw);
  695. this.universalTab.Controls.Add(this.performanceSw);
  696. this.universalTab.Location = new System.Drawing.Point(4, 25);
  697. this.universalTab.Margin = new System.Windows.Forms.Padding(2);
  698. this.universalTab.Name = "universalTab";
  699. this.universalTab.Padding = new System.Windows.Forms.Padding(2);
  700. this.universalTab.Size = new System.Drawing.Size(974, 653);
  701. this.universalTab.TabIndex = 0;
  702. this.universalTab.Text = "General";
  703. //
  704. // winSearchSw
  705. //
  706. this.winSearchSw.AccessibleName = "Disable Search";
  707. this.winSearchSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  708. this.winSearchSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  709. this.winSearchSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  710. this.winSearchSw.ForeColor = System.Drawing.Color.White;
  711. this.winSearchSw.LabelText = "Disable Search";
  712. this.winSearchSw.Location = new System.Drawing.Point(21, 466);
  713. this.winSearchSw.Margin = new System.Windows.Forms.Padding(6);
  714. this.winSearchSw.Name = "winSearchSw";
  715. this.winSearchSw.Size = new System.Drawing.Size(414, 24);
  716. this.winSearchSw.TabIndex = 173;
  717. this.winSearchSw.Tag = "themeable";
  718. this.winSearchSw.ToggleChecked = false;
  719. //
  720. // label13
  721. //
  722. this.label13.AutoSize = true;
  723. this.label13.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  724. this.label13.ForeColor = System.Drawing.Color.Silver;
  725. this.label13.Location = new System.Drawing.Point(460, 194);
  726. this.label13.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  727. this.label13.Name = "label13";
  728. this.label13.Size = new System.Drawing.Size(54, 19);
  729. this.label13.TabIndex = 172;
  730. this.label13.Tag = "";
  731. this.label13.Text = "Privacy";
  732. //
  733. // label4a
  734. //
  735. this.label4a.AutoSize = true;
  736. this.label4a.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  737. this.label4a.ForeColor = System.Drawing.Color.Silver;
  738. this.label4a.Location = new System.Drawing.Point(460, 11);
  739. this.label4a.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  740. this.label4a.Name = "label4a";
  741. this.label4a.Size = new System.Drawing.Size(40, 19);
  742. this.label4a.TabIndex = 171;
  743. this.label4a.Tag = "";
  744. this.label4a.Text = "Apps";
  745. //
  746. // drives
  747. //
  748. this.drives.AutoSize = true;
  749. this.drives.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  750. this.drives.ForeColor = System.Drawing.Color.Silver;
  751. this.drives.Location = new System.Drawing.Point(17, 315);
  752. this.drives.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  753. this.drives.Name = "drives";
  754. this.drives.Size = new System.Drawing.Size(42, 19);
  755. this.drives.TabIndex = 170;
  756. this.drives.Tag = "";
  757. this.drives.Text = "Disks";
  758. //
  759. // label14s
  760. //
  761. this.label14s.AutoSize = true;
  762. this.label14s.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  763. this.label14s.ForeColor = System.Drawing.Color.Silver;
  764. this.label14s.Location = new System.Drawing.Point(17, 11);
  765. this.label14s.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  766. this.label14s.Name = "label14s";
  767. this.label14s.Size = new System.Drawing.Size(54, 19);
  768. this.label14s.TabIndex = 169;
  769. this.label14s.Tag = "";
  770. this.label14s.Text = "System";
  771. //
  772. // nvidiaTelemetrySw
  773. //
  774. this.nvidiaTelemetrySw.AccessibleName = "Disable NVIDIA Telemetry";
  775. this.nvidiaTelemetrySw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  776. this.nvidiaTelemetrySw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  777. this.nvidiaTelemetrySw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  778. this.nvidiaTelemetrySw.ForeColor = System.Drawing.Color.White;
  779. this.nvidiaTelemetrySw.LabelText = "Disable NVIDIA Telemetry";
  780. this.nvidiaTelemetrySw.Location = new System.Drawing.Point(464, 130);
  781. this.nvidiaTelemetrySw.Margin = new System.Windows.Forms.Padding(6);
  782. this.nvidiaTelemetrySw.Name = "nvidiaTelemetrySw";
  783. this.nvidiaTelemetrySw.Size = new System.Drawing.Size(490, 24);
  784. this.nvidiaTelemetrySw.TabIndex = 73;
  785. this.nvidiaTelemetrySw.Tag = "themeable";
  786. this.nvidiaTelemetrySw.ToggleChecked = false;
  787. //
  788. // ntfsStampSw
  789. //
  790. this.ntfsStampSw.AccessibleName = "Disable NTFS Timestamp";
  791. this.ntfsStampSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  792. this.ntfsStampSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  793. this.ntfsStampSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  794. this.ntfsStampSw.ForeColor = System.Drawing.Color.White;
  795. this.ntfsStampSw.LabelText = "Disable NTFS Timestamp";
  796. this.ntfsStampSw.Location = new System.Drawing.Point(20, 436);
  797. this.ntfsStampSw.Margin = new System.Windows.Forms.Padding(6);
  798. this.ntfsStampSw.Name = "ntfsStampSw";
  799. this.ntfsStampSw.Size = new System.Drawing.Size(414, 24);
  800. this.ntfsStampSw.TabIndex = 72;
  801. this.ntfsStampSw.Tag = "themeable";
  802. this.ntfsStampSw.ToggleChecked = false;
  803. //
  804. // smb2Sw
  805. //
  806. this.smb2Sw.AccessibleName = "Disable SMBv2 Protocol";
  807. this.smb2Sw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  808. this.smb2Sw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  809. this.smb2Sw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  810. this.smb2Sw.ForeColor = System.Drawing.Color.White;
  811. this.smb2Sw.LabelText = "Disable SMBv2 Protocol";
  812. this.smb2Sw.Location = new System.Drawing.Point(464, 344);
  813. this.smb2Sw.Margin = new System.Windows.Forms.Padding(6);
  814. this.smb2Sw.Name = "smb2Sw";
  815. this.smb2Sw.Size = new System.Drawing.Size(414, 24);
  816. this.smb2Sw.TabIndex = 71;
  817. this.smb2Sw.Tag = "themeable";
  818. this.smb2Sw.ToggleChecked = false;
  819. //
  820. // smb1Sw
  821. //
  822. this.smb1Sw.AccessibleName = "Disable SMBv1 Protocol";
  823. this.smb1Sw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  824. this.smb1Sw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  825. this.smb1Sw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  826. this.smb1Sw.ForeColor = System.Drawing.Color.White;
  827. this.smb1Sw.LabelText = "Disable SMBv1 Protocol";
  828. this.smb1Sw.Location = new System.Drawing.Point(464, 314);
  829. this.smb1Sw.Margin = new System.Windows.Forms.Padding(6);
  830. this.smb1Sw.Name = "smb1Sw";
  831. this.smb1Sw.Size = new System.Drawing.Size(414, 24);
  832. this.smb1Sw.TabIndex = 70;
  833. this.smb1Sw.Tag = "themeable";
  834. this.smb1Sw.ToggleChecked = false;
  835. //
  836. // hibernateSw
  837. //
  838. this.hibernateSw.AccessibleName = "Disable Hibernation";
  839. this.hibernateSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  840. this.hibernateSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  841. this.hibernateSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  842. this.hibernateSw.ForeColor = System.Drawing.Color.White;
  843. this.hibernateSw.LabelText = "Disable Hibernation";
  844. this.hibernateSw.Location = new System.Drawing.Point(20, 406);
  845. this.hibernateSw.Margin = new System.Windows.Forms.Padding(6);
  846. this.hibernateSw.Name = "hibernateSw";
  847. this.hibernateSw.Size = new System.Drawing.Size(414, 24);
  848. this.hibernateSw.TabIndex = 69;
  849. this.hibernateSw.Tag = "themeable";
  850. this.hibernateSw.ToggleChecked = false;
  851. //
  852. // chromeTelemetrySw
  853. //
  854. this.chromeTelemetrySw.AccessibleName = "Disable Google Chrome Telemetry";
  855. this.chromeTelemetrySw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  856. this.chromeTelemetrySw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  857. this.chromeTelemetrySw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  858. this.chromeTelemetrySw.ForeColor = System.Drawing.Color.White;
  859. this.chromeTelemetrySw.LabelText = "Disable Google Chrome Telemetry";
  860. this.chromeTelemetrySw.Location = new System.Drawing.Point(464, 100);
  861. this.chromeTelemetrySw.Margin = new System.Windows.Forms.Padding(6);
  862. this.chromeTelemetrySw.Name = "chromeTelemetrySw";
  863. this.chromeTelemetrySw.Size = new System.Drawing.Size(490, 24);
  864. this.chromeTelemetrySw.TabIndex = 68;
  865. this.chromeTelemetrySw.Tag = "themeable";
  866. this.chromeTelemetrySw.ToggleChecked = false;
  867. //
  868. // ffTelemetrySw
  869. //
  870. this.ffTelemetrySw.AccessibleName = "Disable Mozilla Firefox Telemetry";
  871. this.ffTelemetrySw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  872. this.ffTelemetrySw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  873. this.ffTelemetrySw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  874. this.ffTelemetrySw.ForeColor = System.Drawing.Color.White;
  875. this.ffTelemetrySw.LabelText = "Disable Mozilla Firefox Telemetry";
  876. this.ffTelemetrySw.Location = new System.Drawing.Point(464, 70);
  877. this.ffTelemetrySw.Margin = new System.Windows.Forms.Padding(6);
  878. this.ffTelemetrySw.Name = "ffTelemetrySw";
  879. this.ffTelemetrySw.Size = new System.Drawing.Size(490, 24);
  880. this.ffTelemetrySw.TabIndex = 67;
  881. this.ffTelemetrySw.Tag = "themeable";
  882. this.ffTelemetrySw.ToggleChecked = false;
  883. //
  884. // vsSw
  885. //
  886. this.vsSw.AccessibleName = "Disable Visual Studio Telemetry";
  887. this.vsSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  888. this.vsSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  889. this.vsSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  890. this.vsSw.ForeColor = System.Drawing.Color.White;
  891. this.vsSw.LabelText = "Disable Visual Studio Telemetry";
  892. this.vsSw.Location = new System.Drawing.Point(464, 160);
  893. this.vsSw.Margin = new System.Windows.Forms.Padding(6);
  894. this.vsSw.Name = "vsSw";
  895. this.vsSw.Size = new System.Drawing.Size(490, 24);
  896. this.vsSw.TabIndex = 66;
  897. this.vsSw.Tag = "themeable";
  898. this.vsSw.ToggleChecked = false;
  899. //
  900. // reportingSw
  901. //
  902. this.reportingSw.AccessibleName = "Disable Error Reporting";
  903. this.reportingSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  904. this.reportingSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  905. this.reportingSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  906. this.reportingSw.ForeColor = System.Drawing.Color.White;
  907. this.reportingSw.LabelText = "Disable Error Reporting";
  908. this.reportingSw.Location = new System.Drawing.Point(20, 100);
  909. this.reportingSw.Margin = new System.Windows.Forms.Padding(6);
  910. this.reportingSw.Name = "reportingSw";
  911. this.reportingSw.Size = new System.Drawing.Size(414, 24);
  912. this.reportingSw.TabIndex = 65;
  913. this.reportingSw.Tag = "themeable";
  914. this.reportingSw.ToggleChecked = false;
  915. //
  916. // systemRestoreSw
  917. //
  918. this.systemRestoreSw.AccessibleName = "Disable System Restore";
  919. this.systemRestoreSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  920. this.systemRestoreSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  921. this.systemRestoreSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  922. this.systemRestoreSw.ForeColor = System.Drawing.Color.White;
  923. this.systemRestoreSw.LabelText = "Disable System Restore";
  924. this.systemRestoreSw.Location = new System.Drawing.Point(20, 346);
  925. this.systemRestoreSw.Margin = new System.Windows.Forms.Padding(6);
  926. this.systemRestoreSw.Name = "systemRestoreSw";
  927. this.systemRestoreSw.Size = new System.Drawing.Size(414, 24);
  928. this.systemRestoreSw.TabIndex = 64;
  929. this.systemRestoreSw.Tag = "themeable";
  930. this.systemRestoreSw.ToggleChecked = false;
  931. //
  932. // officeTelemetrySw
  933. //
  934. this.officeTelemetrySw.AccessibleName = "Disable Office 2016 Telemetry";
  935. this.officeTelemetrySw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  936. this.officeTelemetrySw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  937. this.officeTelemetrySw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  938. this.officeTelemetrySw.ForeColor = System.Drawing.Color.White;
  939. this.officeTelemetrySw.LabelText = "Disable Office 2016 Telemetry";
  940. this.officeTelemetrySw.Location = new System.Drawing.Point(463, 40);
  941. this.officeTelemetrySw.Margin = new System.Windows.Forms.Padding(6);
  942. this.officeTelemetrySw.Name = "officeTelemetrySw";
  943. this.officeTelemetrySw.Size = new System.Drawing.Size(490, 24);
  944. this.officeTelemetrySw.TabIndex = 63;
  945. this.officeTelemetrySw.Tag = "themeable";
  946. this.officeTelemetrySw.ToggleChecked = false;
  947. //
  948. // smartScreenSw
  949. //
  950. this.smartScreenSw.AccessibleName = "Disable SmartScreen";
  951. this.smartScreenSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  952. this.smartScreenSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  953. this.smartScreenSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  954. this.smartScreenSw.ForeColor = System.Drawing.Color.White;
  955. this.smartScreenSw.LabelText = "Disable SmartScreen";
  956. this.smartScreenSw.Location = new System.Drawing.Point(20, 250);
  957. this.smartScreenSw.Margin = new System.Windows.Forms.Padding(6);
  958. this.smartScreenSw.Name = "smartScreenSw";
  959. this.smartScreenSw.Size = new System.Drawing.Size(414, 24);
  960. this.smartScreenSw.TabIndex = 62;
  961. this.smartScreenSw.Tag = "themeable";
  962. this.smartScreenSw.ToggleChecked = false;
  963. //
  964. // networkSw
  965. //
  966. this.networkSw.AccessibleName = "Disable Network Throttling";
  967. this.networkSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  968. this.networkSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  969. this.networkSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  970. this.networkSw.ForeColor = System.Drawing.Color.White;
  971. this.networkSw.LabelText = "Disable Network Throttling";
  972. this.networkSw.Location = new System.Drawing.Point(20, 70);
  973. this.networkSw.Margin = new System.Windows.Forms.Padding(6);
  974. this.networkSw.Name = "networkSw";
  975. this.networkSw.Size = new System.Drawing.Size(414, 24);
  976. this.networkSw.TabIndex = 61;
  977. this.networkSw.Tag = "themeable";
  978. this.networkSw.ToggleChecked = false;
  979. //
  980. // telemetryTasksSw
  981. //
  982. this.telemetryTasksSw.AccessibleName = "Disable Telemetry Tasks";
  983. this.telemetryTasksSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  984. this.telemetryTasksSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  985. this.telemetryTasksSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  986. this.telemetryTasksSw.ForeColor = System.Drawing.Color.White;
  987. this.telemetryTasksSw.LabelText = "Disable Telemetry Tasks";
  988. this.telemetryTasksSw.Location = new System.Drawing.Point(464, 224);
  989. this.telemetryTasksSw.Margin = new System.Windows.Forms.Padding(6);
  990. this.telemetryTasksSw.Name = "telemetryTasksSw";
  991. this.telemetryTasksSw.Size = new System.Drawing.Size(414, 24);
  992. this.telemetryTasksSw.TabIndex = 60;
  993. this.telemetryTasksSw.Tag = "themeable";
  994. this.telemetryTasksSw.ToggleChecked = false;
  995. //
  996. // defenderSw
  997. //
  998. this.defenderSw.AccessibleName = "Disable Windows Defender";
  999. this.defenderSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1000. this.defenderSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1001. this.defenderSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1002. this.defenderSw.ForeColor = System.Drawing.Color.White;
  1003. this.defenderSw.LabelText = "Disable Windows Defender";
  1004. this.defenderSw.Location = new System.Drawing.Point(20, 280);
  1005. this.defenderSw.Margin = new System.Windows.Forms.Padding(6);
  1006. this.defenderSw.Name = "defenderSw";
  1007. this.defenderSw.Size = new System.Drawing.Size(414, 24);
  1008. this.defenderSw.TabIndex = 59;
  1009. this.defenderSw.Tag = "themeable";
  1010. this.defenderSw.ToggleChecked = false;
  1011. //
  1012. // homegroupSw
  1013. //
  1014. this.homegroupSw.AccessibleName = "Disable HomeGroup";
  1015. this.homegroupSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1016. this.homegroupSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1017. this.homegroupSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1018. this.homegroupSw.ForeColor = System.Drawing.Color.White;
  1019. this.homegroupSw.LabelText = "Disable HomeGroup";
  1020. this.homegroupSw.Location = new System.Drawing.Point(464, 284);
  1021. this.homegroupSw.Margin = new System.Windows.Forms.Padding(6);
  1022. this.homegroupSw.Name = "homegroupSw";
  1023. this.homegroupSw.Size = new System.Drawing.Size(414, 24);
  1024. this.homegroupSw.TabIndex = 58;
  1025. this.homegroupSw.Tag = "themeable";
  1026. this.homegroupSw.ToggleChecked = false;
  1027. //
  1028. // stickySw
  1029. //
  1030. this.stickySw.AccessibleName = "Disable Sticky Keys";
  1031. this.stickySw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1032. this.stickySw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1033. this.stickySw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1034. this.stickySw.ForeColor = System.Drawing.Color.White;
  1035. this.stickySw.LabelText = "Disable Sticky Keys";
  1036. this.stickySw.Location = new System.Drawing.Point(20, 220);
  1037. this.stickySw.Margin = new System.Windows.Forms.Padding(6);
  1038. this.stickySw.Name = "stickySw";
  1039. this.stickySw.Size = new System.Drawing.Size(414, 24);
  1040. this.stickySw.TabIndex = 57;
  1041. this.stickySw.Tag = "themeable";
  1042. this.stickySw.ToggleChecked = false;
  1043. //
  1044. // compatSw
  1045. //
  1046. this.compatSw.AccessibleName = "Disable Compatibility Assistant";
  1047. this.compatSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1048. this.compatSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1049. this.compatSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1050. this.compatSw.ForeColor = System.Drawing.Color.White;
  1051. this.compatSw.LabelText = "Disable Compatibility Assistant";
  1052. this.compatSw.Location = new System.Drawing.Point(20, 130);
  1053. this.compatSw.Margin = new System.Windows.Forms.Padding(6);
  1054. this.compatSw.Name = "compatSw";
  1055. this.compatSw.Size = new System.Drawing.Size(414, 24);
  1056. this.compatSw.TabIndex = 56;
  1057. this.compatSw.Tag = "themeable";
  1058. this.compatSw.ToggleChecked = false;
  1059. //
  1060. // mediaSharingSw
  1061. //
  1062. this.mediaSharingSw.AccessibleName = "Disable Media Player Sharing";
  1063. this.mediaSharingSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1064. this.mediaSharingSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1065. this.mediaSharingSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1066. this.mediaSharingSw.ForeColor = System.Drawing.Color.White;
  1067. this.mediaSharingSw.LabelText = "Disable Media Player Sharing";
  1068. this.mediaSharingSw.Location = new System.Drawing.Point(464, 254);
  1069. this.mediaSharingSw.Margin = new System.Windows.Forms.Padding(6);
  1070. this.mediaSharingSw.Name = "mediaSharingSw";
  1071. this.mediaSharingSw.Size = new System.Drawing.Size(414, 24);
  1072. this.mediaSharingSw.TabIndex = 55;
  1073. this.mediaSharingSw.Tag = "themeable";
  1074. this.mediaSharingSw.ToggleChecked = false;
  1075. //
  1076. // printSw
  1077. //
  1078. this.printSw.AccessibleName = "Disable Print Service";
  1079. this.printSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1080. this.printSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1081. this.printSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1082. this.printSw.ForeColor = System.Drawing.Color.White;
  1083. this.printSw.LabelText = "Disable Print Service";
  1084. this.printSw.Location = new System.Drawing.Point(20, 160);
  1085. this.printSw.Margin = new System.Windows.Forms.Padding(6);
  1086. this.printSw.Name = "printSw";
  1087. this.printSw.Size = new System.Drawing.Size(414, 24);
  1088. this.printSw.TabIndex = 54;
  1089. this.printSw.Tag = "themeable";
  1090. this.printSw.ToggleChecked = false;
  1091. //
  1092. // superfetchSw
  1093. //
  1094. this.superfetchSw.AccessibleName = "Disable Superfetch";
  1095. this.superfetchSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1096. this.superfetchSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1097. this.superfetchSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1098. this.superfetchSw.ForeColor = System.Drawing.Color.White;
  1099. this.superfetchSw.LabelText = "Disable Superfetch";
  1100. this.superfetchSw.Location = new System.Drawing.Point(20, 376);
  1101. this.superfetchSw.Margin = new System.Windows.Forms.Padding(6);
  1102. this.superfetchSw.Name = "superfetchSw";
  1103. this.superfetchSw.Size = new System.Drawing.Size(414, 24);
  1104. this.superfetchSw.TabIndex = 53;
  1105. this.superfetchSw.Tag = "themeable";
  1106. this.superfetchSw.ToggleChecked = false;
  1107. //
  1108. // faxSw
  1109. //
  1110. this.faxSw.AccessibleName = "Disable Fax Service";
  1111. this.faxSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1112. this.faxSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1113. this.faxSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1114. this.faxSw.ForeColor = System.Drawing.Color.White;
  1115. this.faxSw.LabelText = "Disable Fax Service";
  1116. this.faxSw.Location = new System.Drawing.Point(20, 190);
  1117. this.faxSw.Margin = new System.Windows.Forms.Padding(6);
  1118. this.faxSw.Name = "faxSw";
  1119. this.faxSw.Size = new System.Drawing.Size(414, 24);
  1120. this.faxSw.TabIndex = 52;
  1121. this.faxSw.Tag = "themeable";
  1122. this.faxSw.ToggleChecked = false;
  1123. //
  1124. // performanceSw
  1125. //
  1126. this.performanceSw.AccessibleName = "Enable Performance Tweaks";
  1127. this.performanceSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1128. this.performanceSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1129. this.performanceSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1130. this.performanceSw.ForeColor = System.Drawing.Color.White;
  1131. this.performanceSw.LabelText = "Enable Performance Tweaks";
  1132. this.performanceSw.Location = new System.Drawing.Point(20, 40);
  1133. this.performanceSw.Margin = new System.Windows.Forms.Padding(6);
  1134. this.performanceSw.Name = "performanceSw";
  1135. this.performanceSw.Size = new System.Drawing.Size(414, 24);
  1136. this.performanceSw.TabIndex = 51;
  1137. this.performanceSw.Tag = "themeable";
  1138. this.performanceSw.ToggleChecked = false;
  1139. //
  1140. // windows10Tab
  1141. //
  1142. this.windows10Tab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1143. this.windows10Tab.Controls.Add(this.label18);
  1144. this.windows10Tab.Controls.Add(this.label17);
  1145. this.windows10Tab.Controls.Add(this.label16);
  1146. this.windows10Tab.Controls.Add(this.label15);
  1147. this.windows10Tab.Controls.Add(this.label14);
  1148. this.windows10Tab.Controls.Add(this.panelWin11Tweaks);
  1149. this.windows10Tab.Controls.Add(this.vbsSw);
  1150. this.windows10Tab.Controls.Add(this.gameModeSw);
  1151. this.windows10Tab.Controls.Add(this.storeUpdatesSw);
  1152. this.windows10Tab.Controls.Add(this.oldMixerSw);
  1153. this.windows10Tab.Controls.Add(this.insiderSw);
  1154. this.windows10Tab.Controls.Add(this.castSw);
  1155. this.windows10Tab.Controls.Add(this.gameBarSw);
  1156. this.windows10Tab.Controls.Add(this.sensorSw);
  1157. this.windows10Tab.Controls.Add(this.ccSw);
  1158. this.windows10Tab.Controls.Add(this.cortanaSw);
  1159. this.windows10Tab.Controls.Add(this.privacySw);
  1160. this.windows10Tab.Controls.Add(this.driversSw);
  1161. this.windows10Tab.Controls.Add(this.telemetryServicesSw);
  1162. this.windows10Tab.Controls.Add(this.autoUpdatesSw);
  1163. this.windows10Tab.Controls.Add(this.tpmSw);
  1164. this.windows10Tab.Controls.Add(this.xboxSw);
  1165. this.windows10Tab.Controls.Add(this.inkSw);
  1166. this.windows10Tab.Controls.Add(this.spellSw);
  1167. this.windows10Tab.Controls.Add(this.longPathsSw);
  1168. this.windows10Tab.Controls.Add(this.uODSw);
  1169. this.windows10Tab.Controls.Add(this.peopleSw);
  1170. this.windows10Tab.Controls.Add(this.oldExplorerSw);
  1171. this.windows10Tab.Controls.Add(this.adsSw);
  1172. this.windows10Tab.Location = new System.Drawing.Point(4, 25);
  1173. this.windows10Tab.Margin = new System.Windows.Forms.Padding(2);
  1174. this.windows10Tab.Name = "windows10Tab";
  1175. this.windows10Tab.Padding = new System.Windows.Forms.Padding(2);
  1176. this.windows10Tab.Size = new System.Drawing.Size(974, 653);
  1177. this.windows10Tab.TabIndex = 1;
  1178. this.windows10Tab.Text = "Windows 10";
  1179. //
  1180. // label18
  1181. //
  1182. this.label18.AutoSize = true;
  1183. this.label18.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1184. this.label18.ForeColor = System.Drawing.Color.Silver;
  1185. this.label18.Location = new System.Drawing.Point(460, 296);
  1186. this.label18.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1187. this.label18.Name = "label18";
  1188. this.label18.Size = new System.Drawing.Size(47, 19);
  1189. this.label18.TabIndex = 176;
  1190. this.label18.Tag = "";
  1191. this.label18.Text = "Touch";
  1192. //
  1193. // label17
  1194. //
  1195. this.label17.AutoSize = true;
  1196. this.label17.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1197. this.label17.ForeColor = System.Drawing.Color.Silver;
  1198. this.label17.Location = new System.Drawing.Point(460, 163);
  1199. this.label17.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1200. this.label17.Name = "label17";
  1201. this.label17.Size = new System.Drawing.Size(58, 19);
  1202. this.label17.TabIndex = 175;
  1203. this.label17.Tag = "";
  1204. this.label17.Text = "Gaming";
  1205. //
  1206. // label16
  1207. //
  1208. this.label16.AutoSize = true;
  1209. this.label16.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1210. this.label16.ForeColor = System.Drawing.Color.Silver;
  1211. this.label16.Location = new System.Drawing.Point(460, 11);
  1212. this.label16.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1213. this.label16.Name = "label16";
  1214. this.label16.Size = new System.Drawing.Size(54, 19);
  1215. this.label16.TabIndex = 174;
  1216. this.label16.Tag = "";
  1217. this.label16.Text = "Privacy";
  1218. //
  1219. // label15
  1220. //
  1221. this.label15.AutoSize = true;
  1222. this.label15.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1223. this.label15.ForeColor = System.Drawing.Color.Silver;
  1224. this.label15.Location = new System.Drawing.Point(18, 296);
  1225. this.label15.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1226. this.label15.Name = "label15";
  1227. this.label15.Size = new System.Drawing.Size(117, 19);
  1228. this.label15.TabIndex = 173;
  1229. this.label15.Tag = "";
  1230. this.label15.Text = "Windows Update";
  1231. //
  1232. // label14
  1233. //
  1234. this.label14.AutoSize = true;
  1235. this.label14.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1236. this.label14.ForeColor = System.Drawing.Color.Silver;
  1237. this.label14.Location = new System.Drawing.Point(17, 11);
  1238. this.label14.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1239. this.label14.Name = "label14";
  1240. this.label14.Size = new System.Drawing.Size(54, 19);
  1241. this.label14.TabIndex = 170;
  1242. this.label14.Tag = "";
  1243. this.label14.Text = "System";
  1244. //
  1245. // panelWin11Tweaks
  1246. //
  1247. this.panelWin11Tweaks.Controls.Add(this.label20);
  1248. this.panelWin11Tweaks.Controls.Add(this.label19);
  1249. this.panelWin11Tweaks.Controls.Add(this.stickersSw);
  1250. this.panelWin11Tweaks.Controls.Add(this.compactModeSw);
  1251. this.panelWin11Tweaks.Controls.Add(this.classicRibbonSw);
  1252. this.panelWin11Tweaks.Controls.Add(this.snapAssistSw);
  1253. this.panelWin11Tweaks.Controls.Add(this.widgetsSw);
  1254. this.panelWin11Tweaks.Controls.Add(this.leftTaskbarSw);
  1255. this.panelWin11Tweaks.Controls.Add(this.classicContextSw);
  1256. this.panelWin11Tweaks.Controls.Add(this.chatSw);
  1257. this.panelWin11Tweaks.Controls.Add(this.smallerTaskbarSw);
  1258. this.panelWin11Tweaks.Location = new System.Drawing.Point(0, 450);
  1259. this.panelWin11Tweaks.Name = "panelWin11Tweaks";
  1260. this.panelWin11Tweaks.Size = new System.Drawing.Size(971, 203);
  1261. this.panelWin11Tweaks.TabIndex = 80;
  1262. this.panelWin11Tweaks.Visible = false;
  1263. //
  1264. // label20
  1265. //
  1266. this.label20.AutoSize = true;
  1267. this.label20.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1268. this.label20.ForeColor = System.Drawing.Color.Silver;
  1269. this.label20.Location = new System.Drawing.Point(460, 5);
  1270. this.label20.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1271. this.label20.Name = "label20";
  1272. this.label20.Size = new System.Drawing.Size(46, 19);
  1273. this.label20.TabIndex = 178;
  1274. this.label20.Tag = "";
  1275. this.label20.Text = "Extras";
  1276. //
  1277. // label19
  1278. //
  1279. this.label19.AutoSize = true;
  1280. this.label19.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1281. this.label19.ForeColor = System.Drawing.Color.Silver;
  1282. this.label19.Location = new System.Drawing.Point(16, 5);
  1283. this.label19.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1284. this.label19.Name = "label19";
  1285. this.label19.Size = new System.Drawing.Size(56, 19);
  1286. this.label19.TabIndex = 177;
  1287. this.label19.Tag = "";
  1288. this.label19.Text = "Taskbar";
  1289. //
  1290. // stickersSw
  1291. //
  1292. this.stickersSw.AccessibleName = "Disable Stickers";
  1293. this.stickersSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1294. this.stickersSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1295. this.stickersSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1296. this.stickersSw.ForeColor = System.Drawing.Color.White;
  1297. this.stickersSw.LabelText = "Disable Stickers";
  1298. this.stickersSw.Location = new System.Drawing.Point(21, 126);
  1299. this.stickersSw.Margin = new System.Windows.Forms.Padding(6);
  1300. this.stickersSw.Name = "stickersSw";
  1301. this.stickersSw.Size = new System.Drawing.Size(414, 24);
  1302. this.stickersSw.TabIndex = 113;
  1303. this.stickersSw.Tag = "themeable";
  1304. this.stickersSw.ToggleChecked = false;
  1305. //
  1306. // compactModeSw
  1307. //
  1308. this.compactModeSw.AccessibleName = "Enable Compact Mode in Explorer";
  1309. this.compactModeSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1310. this.compactModeSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1311. this.compactModeSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1312. this.compactModeSw.ForeColor = System.Drawing.Color.White;
  1313. this.compactModeSw.LabelText = "Enable Compact Mode in Explorer";
  1314. this.compactModeSw.Location = new System.Drawing.Point(464, 126);
  1315. this.compactModeSw.Margin = new System.Windows.Forms.Padding(6);
  1316. this.compactModeSw.Name = "compactModeSw";
  1317. this.compactModeSw.Size = new System.Drawing.Size(414, 24);
  1318. this.compactModeSw.TabIndex = 112;
  1319. this.compactModeSw.Tag = "themeable";
  1320. this.compactModeSw.ToggleChecked = false;
  1321. //
  1322. // classicRibbonSw
  1323. //
  1324. this.classicRibbonSw.AccessibleName = "Enable Classic Ribbon in Explorer";
  1325. this.classicRibbonSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1326. this.classicRibbonSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1327. this.classicRibbonSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1328. this.classicRibbonSw.ForeColor = System.Drawing.Color.White;
  1329. this.classicRibbonSw.LabelText = "Enable Classic Ribbon in Explorer";
  1330. this.classicRibbonSw.Location = new System.Drawing.Point(464, 66);
  1331. this.classicRibbonSw.Margin = new System.Windows.Forms.Padding(6);
  1332. this.classicRibbonSw.Name = "classicRibbonSw";
  1333. this.classicRibbonSw.Size = new System.Drawing.Size(414, 24);
  1334. this.classicRibbonSw.TabIndex = 111;
  1335. this.classicRibbonSw.Tag = "themeable";
  1336. this.classicRibbonSw.ToggleChecked = false;
  1337. //
  1338. // snapAssistSw
  1339. //
  1340. this.snapAssistSw.AccessibleName = "Disable Snap Assist";
  1341. this.snapAssistSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1342. this.snapAssistSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1343. this.snapAssistSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1344. this.snapAssistSw.ForeColor = System.Drawing.Color.White;
  1345. this.snapAssistSw.LabelText = "Disable Snap Assist";
  1346. this.snapAssistSw.Location = new System.Drawing.Point(464, 36);
  1347. this.snapAssistSw.Margin = new System.Windows.Forms.Padding(6);
  1348. this.snapAssistSw.Name = "snapAssistSw";
  1349. this.snapAssistSw.Size = new System.Drawing.Size(414, 24);
  1350. this.snapAssistSw.TabIndex = 106;
  1351. this.snapAssistSw.Tag = "themeable";
  1352. this.snapAssistSw.ToggleChecked = false;
  1353. //
  1354. // widgetsSw
  1355. //
  1356. this.widgetsSw.AccessibleName = "Disable Widgets";
  1357. this.widgetsSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1358. this.widgetsSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1359. this.widgetsSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1360. this.widgetsSw.ForeColor = System.Drawing.Color.White;
  1361. this.widgetsSw.LabelText = "Disable Widgets";
  1362. this.widgetsSw.Location = new System.Drawing.Point(21, 66);
  1363. this.widgetsSw.Margin = new System.Windows.Forms.Padding(6);
  1364. this.widgetsSw.Name = "widgetsSw";
  1365. this.widgetsSw.Size = new System.Drawing.Size(414, 24);
  1366. this.widgetsSw.TabIndex = 108;
  1367. this.widgetsSw.Tag = "themeable";
  1368. this.widgetsSw.ToggleChecked = false;
  1369. //
  1370. // leftTaskbarSw
  1371. //
  1372. this.leftTaskbarSw.AccessibleName = "Align Taskbar to Left";
  1373. this.leftTaskbarSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1374. this.leftTaskbarSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1375. this.leftTaskbarSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1376. this.leftTaskbarSw.ForeColor = System.Drawing.Color.White;
  1377. this.leftTaskbarSw.LabelText = "Align Taskbar to Left";
  1378. this.leftTaskbarSw.Location = new System.Drawing.Point(20, 36);
  1379. this.leftTaskbarSw.Margin = new System.Windows.Forms.Padding(6);
  1380. this.leftTaskbarSw.Name = "leftTaskbarSw";
  1381. this.leftTaskbarSw.Size = new System.Drawing.Size(414, 24);
  1382. this.leftTaskbarSw.TabIndex = 105;
  1383. this.leftTaskbarSw.Tag = "themeable";
  1384. this.leftTaskbarSw.ToggleChecked = false;
  1385. //
  1386. // classicContextSw
  1387. //
  1388. this.classicContextSw.AccessibleName = "Enable Classic Right-Click Menu";
  1389. this.classicContextSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1390. this.classicContextSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1391. this.classicContextSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1392. this.classicContextSw.ForeColor = System.Drawing.Color.White;
  1393. this.classicContextSw.LabelText = "Enable Classic Right-Click Menu";
  1394. this.classicContextSw.Location = new System.Drawing.Point(464, 96);
  1395. this.classicContextSw.Margin = new System.Windows.Forms.Padding(6);
  1396. this.classicContextSw.Name = "classicContextSw";
  1397. this.classicContextSw.Size = new System.Drawing.Size(414, 24);
  1398. this.classicContextSw.TabIndex = 110;
  1399. this.classicContextSw.Tag = "themeable";
  1400. this.classicContextSw.ToggleChecked = false;
  1401. //
  1402. // chatSw
  1403. //
  1404. this.chatSw.AccessibleName = "Disable Chat";
  1405. this.chatSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1406. this.chatSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1407. this.chatSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1408. this.chatSw.ForeColor = System.Drawing.Color.White;
  1409. this.chatSw.LabelText = "Disable Chat";
  1410. this.chatSw.Location = new System.Drawing.Point(21, 96);
  1411. this.chatSw.Margin = new System.Windows.Forms.Padding(6);
  1412. this.chatSw.Name = "chatSw";
  1413. this.chatSw.Size = new System.Drawing.Size(414, 24);
  1414. this.chatSw.TabIndex = 107;
  1415. this.chatSw.Tag = "themeable";
  1416. this.chatSw.ToggleChecked = false;
  1417. //
  1418. // smallerTaskbarSw
  1419. //
  1420. this.smallerTaskbarSw.AccessibleName = "Make Taskbar Smaller";
  1421. this.smallerTaskbarSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1422. this.smallerTaskbarSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1423. this.smallerTaskbarSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1424. this.smallerTaskbarSw.ForeColor = System.Drawing.Color.White;
  1425. this.smallerTaskbarSw.LabelText = "Make Taskbar Smaller";
  1426. this.smallerTaskbarSw.Location = new System.Drawing.Point(21, 156);
  1427. this.smallerTaskbarSw.Margin = new System.Windows.Forms.Padding(6);
  1428. this.smallerTaskbarSw.Name = "smallerTaskbarSw";
  1429. this.smallerTaskbarSw.Size = new System.Drawing.Size(414, 24);
  1430. this.smallerTaskbarSw.TabIndex = 109;
  1431. this.smallerTaskbarSw.Tag = "themeable";
  1432. this.smallerTaskbarSw.ToggleChecked = false;
  1433. //
  1434. // vbsSw
  1435. //
  1436. this.vbsSw.AccessibleName = "Disable Virtualization Based Security";
  1437. this.vbsSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1438. this.vbsSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1439. this.vbsSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1440. this.vbsSw.ForeColor = System.Drawing.Color.White;
  1441. this.vbsSw.LabelText = "Disable Virtualization Based Security";
  1442. this.vbsSw.Location = new System.Drawing.Point(21, 220);
  1443. this.vbsSw.Margin = new System.Windows.Forms.Padding(6);
  1444. this.vbsSw.Name = "vbsSw";
  1445. this.vbsSw.Size = new System.Drawing.Size(414, 24);
  1446. this.vbsSw.TabIndex = 114;
  1447. this.vbsSw.Tag = "themeable";
  1448. this.vbsSw.ToggleChecked = false;
  1449. this.vbsSw.Visible = false;
  1450. //
  1451. // gameModeSw
  1452. //
  1453. this.gameModeSw.AccessibleName = "Enable Gaming Mode";
  1454. this.gameModeSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1455. this.gameModeSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1456. this.gameModeSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1457. this.gameModeSw.ForeColor = System.Drawing.Color.White;
  1458. this.gameModeSw.LabelText = "Enable Gaming Mode";
  1459. this.gameModeSw.Location = new System.Drawing.Point(464, 190);
  1460. this.gameModeSw.Margin = new System.Windows.Forms.Padding(6);
  1461. this.gameModeSw.Name = "gameModeSw";
  1462. this.gameModeSw.Size = new System.Drawing.Size(414, 24);
  1463. this.gameModeSw.TabIndex = 105;
  1464. this.gameModeSw.Tag = "themeable";
  1465. this.gameModeSw.ToggleChecked = false;
  1466. //
  1467. // storeUpdatesSw
  1468. //
  1469. this.storeUpdatesSw.AccessibleName = "Disable Microsoft Store Updates";
  1470. this.storeUpdatesSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1471. this.storeUpdatesSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1472. this.storeUpdatesSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1473. this.storeUpdatesSw.ForeColor = System.Drawing.Color.White;
  1474. this.storeUpdatesSw.LabelText = "Disable Microsoft Store Updates";
  1475. this.storeUpdatesSw.Location = new System.Drawing.Point(21, 357);
  1476. this.storeUpdatesSw.Margin = new System.Windows.Forms.Padding(6);
  1477. this.storeUpdatesSw.Name = "storeUpdatesSw";
  1478. this.storeUpdatesSw.Size = new System.Drawing.Size(414, 24);
  1479. this.storeUpdatesSw.TabIndex = 104;
  1480. this.storeUpdatesSw.Tag = "themeable";
  1481. this.storeUpdatesSw.ToggleChecked = false;
  1482. //
  1483. // oldMixerSw
  1484. //
  1485. this.oldMixerSw.AccessibleName = "Enable Classic Volume Mixer";
  1486. this.oldMixerSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1487. this.oldMixerSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1488. this.oldMixerSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1489. this.oldMixerSw.ForeColor = System.Drawing.Color.White;
  1490. this.oldMixerSw.LabelText = "Enable Classic Volume Mixer";
  1491. this.oldMixerSw.Location = new System.Drawing.Point(21, 220);
  1492. this.oldMixerSw.Margin = new System.Windows.Forms.Padding(6);
  1493. this.oldMixerSw.Name = "oldMixerSw";
  1494. this.oldMixerSw.Size = new System.Drawing.Size(414, 24);
  1495. this.oldMixerSw.TabIndex = 103;
  1496. this.oldMixerSw.Tag = "themeable";
  1497. this.oldMixerSw.ToggleChecked = false;
  1498. //
  1499. // insiderSw
  1500. //
  1501. this.insiderSw.AccessibleName = "Disable Insider Service";
  1502. this.insiderSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1503. this.insiderSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1504. this.insiderSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1505. this.insiderSw.ForeColor = System.Drawing.Color.White;
  1506. this.insiderSw.LabelText = "Disable Insider Service";
  1507. this.insiderSw.Location = new System.Drawing.Point(21, 387);
  1508. this.insiderSw.Margin = new System.Windows.Forms.Padding(6);
  1509. this.insiderSw.Name = "insiderSw";
  1510. this.insiderSw.Size = new System.Drawing.Size(414, 24);
  1511. this.insiderSw.TabIndex = 102;
  1512. this.insiderSw.Tag = "themeable";
  1513. this.insiderSw.ToggleChecked = false;
  1514. //
  1515. // castSw
  1516. //
  1517. this.castSw.AccessibleName = "Remove Cast to Device";
  1518. this.castSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1519. this.castSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1520. this.castSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1521. this.castSw.ForeColor = System.Drawing.Color.White;
  1522. this.castSw.LabelText = "Remove Cast to Device";
  1523. this.castSw.Location = new System.Drawing.Point(21, 190);
  1524. this.castSw.Margin = new System.Windows.Forms.Padding(6);
  1525. this.castSw.Name = "castSw";
  1526. this.castSw.Size = new System.Drawing.Size(414, 24);
  1527. this.castSw.TabIndex = 101;
  1528. this.castSw.Tag = "themeable";
  1529. this.castSw.ToggleChecked = false;
  1530. //
  1531. // gameBarSw
  1532. //
  1533. this.gameBarSw.AccessibleName = "Disable Game Bar";
  1534. this.gameBarSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1535. this.gameBarSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1536. this.gameBarSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1537. this.gameBarSw.ForeColor = System.Drawing.Color.White;
  1538. this.gameBarSw.LabelText = "Disable Game Bar";
  1539. this.gameBarSw.Location = new System.Drawing.Point(464, 250);
  1540. this.gameBarSw.Margin = new System.Windows.Forms.Padding(6);
  1541. this.gameBarSw.Name = "gameBarSw";
  1542. this.gameBarSw.Size = new System.Drawing.Size(414, 24);
  1543. this.gameBarSw.TabIndex = 100;
  1544. this.gameBarSw.Tag = "themeable";
  1545. this.gameBarSw.ToggleChecked = false;
  1546. //
  1547. // sensorSw
  1548. //
  1549. this.sensorSw.AccessibleName = "Disable Sensor Services";
  1550. this.sensorSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1551. this.sensorSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1552. this.sensorSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1553. this.sensorSw.ForeColor = System.Drawing.Color.White;
  1554. this.sensorSw.LabelText = "Disable Sensor Services";
  1555. this.sensorSw.Location = new System.Drawing.Point(21, 160);
  1556. this.sensorSw.Margin = new System.Windows.Forms.Padding(6);
  1557. this.sensorSw.Name = "sensorSw";
  1558. this.sensorSw.Size = new System.Drawing.Size(414, 24);
  1559. this.sensorSw.TabIndex = 99;
  1560. this.sensorSw.Tag = "themeable";
  1561. this.sensorSw.ToggleChecked = false;
  1562. //
  1563. // ccSw
  1564. //
  1565. this.ccSw.AccessibleName = "Disable Cloud Clipboard";
  1566. this.ccSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1567. this.ccSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1568. this.ccSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1569. this.ccSw.ForeColor = System.Drawing.Color.White;
  1570. this.ccSw.LabelText = "Disable Cloud Clipboard";
  1571. this.ccSw.Location = new System.Drawing.Point(464, 387);
  1572. this.ccSw.Margin = new System.Windows.Forms.Padding(6);
  1573. this.ccSw.Name = "ccSw";
  1574. this.ccSw.Size = new System.Drawing.Size(414, 24);
  1575. this.ccSw.TabIndex = 98;
  1576. this.ccSw.Tag = "themeable";
  1577. this.ccSw.ToggleChecked = false;
  1578. //
  1579. // cortanaSw
  1580. //
  1581. this.cortanaSw.AccessibleName = "Disable Cortana";
  1582. this.cortanaSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1583. this.cortanaSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1584. this.cortanaSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1585. this.cortanaSw.ForeColor = System.Drawing.Color.White;
  1586. this.cortanaSw.LabelText = "Disable Cortana";
  1587. this.cortanaSw.Location = new System.Drawing.Point(464, 70);
  1588. this.cortanaSw.Margin = new System.Windows.Forms.Padding(6);
  1589. this.cortanaSw.Name = "cortanaSw";
  1590. this.cortanaSw.Size = new System.Drawing.Size(414, 24);
  1591. this.cortanaSw.TabIndex = 97;
  1592. this.cortanaSw.Tag = "themeable";
  1593. this.cortanaSw.ToggleChecked = false;
  1594. //
  1595. // privacySw
  1596. //
  1597. this.privacySw.AccessibleName = "Enhance Privacy";
  1598. this.privacySw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1599. this.privacySw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1600. this.privacySw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1601. this.privacySw.ForeColor = System.Drawing.Color.White;
  1602. this.privacySw.LabelText = "Enhance Privacy";
  1603. this.privacySw.Location = new System.Drawing.Point(464, 100);
  1604. this.privacySw.Margin = new System.Windows.Forms.Padding(6);
  1605. this.privacySw.Name = "privacySw";
  1606. this.privacySw.Size = new System.Drawing.Size(414, 24);
  1607. this.privacySw.TabIndex = 96;
  1608. this.privacySw.Tag = "themeable";
  1609. this.privacySw.ToggleChecked = false;
  1610. //
  1611. // driversSw
  1612. //
  1613. this.driversSw.AccessibleName = "Exclude Drivers from Update";
  1614. this.driversSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1615. this.driversSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1616. this.driversSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1617. this.driversSw.ForeColor = System.Drawing.Color.White;
  1618. this.driversSw.LabelText = "Exclude Drivers from Update";
  1619. this.driversSw.Location = new System.Drawing.Point(21, 417);
  1620. this.driversSw.Margin = new System.Windows.Forms.Padding(6);
  1621. this.driversSw.Name = "driversSw";
  1622. this.driversSw.Size = new System.Drawing.Size(414, 24);
  1623. this.driversSw.TabIndex = 95;
  1624. this.driversSw.Tag = "themeable";
  1625. this.driversSw.ToggleChecked = false;
  1626. //
  1627. // telemetryServicesSw
  1628. //
  1629. this.telemetryServicesSw.AccessibleName = "Disable Telemetry Services";
  1630. this.telemetryServicesSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1631. this.telemetryServicesSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1632. this.telemetryServicesSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1633. this.telemetryServicesSw.ForeColor = System.Drawing.Color.White;
  1634. this.telemetryServicesSw.LabelText = "Disable Telemetry Services";
  1635. this.telemetryServicesSw.Location = new System.Drawing.Point(464, 40);
  1636. this.telemetryServicesSw.Margin = new System.Windows.Forms.Padding(6);
  1637. this.telemetryServicesSw.Name = "telemetryServicesSw";
  1638. this.telemetryServicesSw.Size = new System.Drawing.Size(414, 24);
  1639. this.telemetryServicesSw.TabIndex = 94;
  1640. this.telemetryServicesSw.Tag = "themeable";
  1641. this.telemetryServicesSw.ToggleChecked = false;
  1642. //
  1643. // autoUpdatesSw
  1644. //
  1645. this.autoUpdatesSw.AccessibleName = "Disable Automatic Updates";
  1646. this.autoUpdatesSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1647. this.autoUpdatesSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1648. this.autoUpdatesSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1649. this.autoUpdatesSw.ForeColor = System.Drawing.Color.White;
  1650. this.autoUpdatesSw.LabelText = "Disable Automatic Updates";
  1651. this.autoUpdatesSw.Location = new System.Drawing.Point(20, 327);
  1652. this.autoUpdatesSw.Margin = new System.Windows.Forms.Padding(6);
  1653. this.autoUpdatesSw.Name = "autoUpdatesSw";
  1654. this.autoUpdatesSw.Size = new System.Drawing.Size(414, 24);
  1655. this.autoUpdatesSw.TabIndex = 93;
  1656. this.autoUpdatesSw.Tag = "themeable";
  1657. this.autoUpdatesSw.ToggleChecked = false;
  1658. //
  1659. // tpmSw
  1660. //
  1661. this.tpmSw.AccessibleName = "Disable TPM 2.0 Check";
  1662. this.tpmSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1663. this.tpmSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1664. this.tpmSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1665. this.tpmSw.ForeColor = System.Drawing.Color.White;
  1666. this.tpmSw.LabelText = "Disable TPM 2.0 Check";
  1667. this.tpmSw.Location = new System.Drawing.Point(21, 130);
  1668. this.tpmSw.Margin = new System.Windows.Forms.Padding(6);
  1669. this.tpmSw.Name = "tpmSw";
  1670. this.tpmSw.Size = new System.Drawing.Size(414, 24);
  1671. this.tpmSw.TabIndex = 92;
  1672. this.tpmSw.Tag = "themeable";
  1673. this.tpmSw.ToggleChecked = false;
  1674. //
  1675. // xboxSw
  1676. //
  1677. this.xboxSw.AccessibleName = "Disable Xbox Live";
  1678. this.xboxSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1679. this.xboxSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1680. this.xboxSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1681. this.xboxSw.ForeColor = System.Drawing.Color.White;
  1682. this.xboxSw.LabelText = "Disable Xbox Live";
  1683. this.xboxSw.Location = new System.Drawing.Point(464, 220);
  1684. this.xboxSw.Margin = new System.Windows.Forms.Padding(6);
  1685. this.xboxSw.Name = "xboxSw";
  1686. this.xboxSw.Size = new System.Drawing.Size(414, 24);
  1687. this.xboxSw.TabIndex = 90;
  1688. this.xboxSw.Tag = "themeable";
  1689. this.xboxSw.ToggleChecked = false;
  1690. //
  1691. // inkSw
  1692. //
  1693. this.inkSw.AccessibleName = "Disable Windows Ink";
  1694. this.inkSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1695. this.inkSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1696. this.inkSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1697. this.inkSw.ForeColor = System.Drawing.Color.White;
  1698. this.inkSw.LabelText = "Disable Windows Ink";
  1699. this.inkSw.Location = new System.Drawing.Point(464, 327);
  1700. this.inkSw.Margin = new System.Windows.Forms.Padding(6);
  1701. this.inkSw.Name = "inkSw";
  1702. this.inkSw.Size = new System.Drawing.Size(414, 24);
  1703. this.inkSw.TabIndex = 89;
  1704. this.inkSw.Tag = "themeable";
  1705. this.inkSw.ToggleChecked = false;
  1706. //
  1707. // spellSw
  1708. //
  1709. this.spellSw.AccessibleName = "Disable Spell Checking";
  1710. this.spellSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1711. this.spellSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1712. this.spellSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1713. this.spellSw.ForeColor = System.Drawing.Color.White;
  1714. this.spellSw.LabelText = "Disable Spell Checking";
  1715. this.spellSw.Location = new System.Drawing.Point(464, 357);
  1716. this.spellSw.Margin = new System.Windows.Forms.Padding(6);
  1717. this.spellSw.Name = "spellSw";
  1718. this.spellSw.Size = new System.Drawing.Size(414, 24);
  1719. this.spellSw.TabIndex = 88;
  1720. this.spellSw.Tag = "themeable";
  1721. this.spellSw.ToggleChecked = false;
  1722. //
  1723. // longPathsSw
  1724. //
  1725. this.longPathsSw.AccessibleName = "Enable Long Paths";
  1726. this.longPathsSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1727. this.longPathsSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1728. this.longPathsSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1729. this.longPathsSw.ForeColor = System.Drawing.Color.White;
  1730. this.longPathsSw.LabelText = "Enable Long Paths";
  1731. this.longPathsSw.Location = new System.Drawing.Point(21, 100);
  1732. this.longPathsSw.Margin = new System.Windows.Forms.Padding(6);
  1733. this.longPathsSw.Name = "longPathsSw";
  1734. this.longPathsSw.Size = new System.Drawing.Size(414, 24);
  1735. this.longPathsSw.TabIndex = 87;
  1736. this.longPathsSw.Tag = "themeable";
  1737. this.longPathsSw.ToggleChecked = false;
  1738. //
  1739. // uODSw
  1740. //
  1741. this.uODSw.AccessibleName = "Uninstall OneDrive";
  1742. this.uODSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1743. this.uODSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1744. this.uODSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1745. this.uODSw.ForeColor = System.Drawing.Color.White;
  1746. this.uODSw.LabelText = "Uninstall OneDrive";
  1747. this.uODSw.Location = new System.Drawing.Point(22, 250);
  1748. this.uODSw.Margin = new System.Windows.Forms.Padding(6);
  1749. this.uODSw.Name = "uODSw";
  1750. this.uODSw.Size = new System.Drawing.Size(414, 24);
  1751. this.uODSw.TabIndex = 86;
  1752. this.uODSw.Tag = "themeable";
  1753. this.uODSw.ToggleChecked = false;
  1754. //
  1755. // peopleSw
  1756. //
  1757. this.peopleSw.AccessibleName = "Disable My People";
  1758. this.peopleSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1759. this.peopleSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1760. this.peopleSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1761. this.peopleSw.ForeColor = System.Drawing.Color.White;
  1762. this.peopleSw.LabelText = "Disable My People";
  1763. this.peopleSw.Location = new System.Drawing.Point(21, 70);
  1764. this.peopleSw.Margin = new System.Windows.Forms.Padding(6);
  1765. this.peopleSw.Name = "peopleSw";
  1766. this.peopleSw.Size = new System.Drawing.Size(414, 24);
  1767. this.peopleSw.TabIndex = 85;
  1768. this.peopleSw.Tag = "themeable";
  1769. this.peopleSw.ToggleChecked = false;
  1770. //
  1771. // oldExplorerSw
  1772. //
  1773. this.oldExplorerSw.AccessibleName = "Restore Classic Windows Explorer";
  1774. this.oldExplorerSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1775. this.oldExplorerSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1776. this.oldExplorerSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1777. this.oldExplorerSw.ForeColor = System.Drawing.Color.White;
  1778. this.oldExplorerSw.LabelText = "Restore Classic Windows Explorer";
  1779. this.oldExplorerSw.Location = new System.Drawing.Point(20, 40);
  1780. this.oldExplorerSw.Margin = new System.Windows.Forms.Padding(6);
  1781. this.oldExplorerSw.Name = "oldExplorerSw";
  1782. this.oldExplorerSw.Size = new System.Drawing.Size(414, 24);
  1783. this.oldExplorerSw.TabIndex = 83;
  1784. this.oldExplorerSw.Tag = "themeable";
  1785. this.oldExplorerSw.ToggleChecked = false;
  1786. //
  1787. // adsSw
  1788. //
  1789. this.adsSw.AccessibleName = "Disable Start Menu Ads";
  1790. this.adsSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1791. this.adsSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1792. this.adsSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1793. this.adsSw.ForeColor = System.Drawing.Color.White;
  1794. this.adsSw.LabelText = "Disable Start Menu Ads";
  1795. this.adsSw.Location = new System.Drawing.Point(464, 130);
  1796. this.adsSw.Margin = new System.Windows.Forms.Padding(6);
  1797. this.adsSw.Name = "adsSw";
  1798. this.adsSw.Size = new System.Drawing.Size(414, 24);
  1799. this.adsSw.TabIndex = 82;
  1800. this.adsSw.Tag = "themeable";
  1801. this.adsSw.ToggleChecked = false;
  1802. //
  1803. // windows8Tab
  1804. //
  1805. this.windows8Tab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1806. this.windows8Tab.Controls.Add(this.label21);
  1807. this.windows8Tab.Controls.Add(this.disableOneDriveSw);
  1808. this.windows8Tab.Location = new System.Drawing.Point(4, 25);
  1809. this.windows8Tab.Margin = new System.Windows.Forms.Padding(2);
  1810. this.windows8Tab.Name = "windows8Tab";
  1811. this.windows8Tab.Padding = new System.Windows.Forms.Padding(2);
  1812. this.windows8Tab.Size = new System.Drawing.Size(974, 653);
  1813. this.windows8Tab.TabIndex = 2;
  1814. this.windows8Tab.Text = "Windows 8.1";
  1815. //
  1816. // label21
  1817. //
  1818. this.label21.AutoSize = true;
  1819. this.label21.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1820. this.label21.ForeColor = System.Drawing.Color.Silver;
  1821. this.label21.Location = new System.Drawing.Point(17, 11);
  1822. this.label21.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1823. this.label21.Name = "label21";
  1824. this.label21.Size = new System.Drawing.Size(54, 19);
  1825. this.label21.TabIndex = 170;
  1826. this.label21.Tag = "";
  1827. this.label21.Text = "System";
  1828. //
  1829. // disableOneDriveSw
  1830. //
  1831. this.disableOneDriveSw.AccessibleName = "Disable OneDrive";
  1832. this.disableOneDriveSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1833. this.disableOneDriveSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1834. this.disableOneDriveSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1835. this.disableOneDriveSw.ForeColor = System.Drawing.Color.White;
  1836. this.disableOneDriveSw.LabelText = "Disable OneDrive";
  1837. this.disableOneDriveSw.Location = new System.Drawing.Point(20, 40);
  1838. this.disableOneDriveSw.Margin = new System.Windows.Forms.Padding(6);
  1839. this.disableOneDriveSw.Name = "disableOneDriveSw";
  1840. this.disableOneDriveSw.Size = new System.Drawing.Size(500, 24);
  1841. this.disableOneDriveSw.TabIndex = 84;
  1842. this.disableOneDriveSw.Tag = "themeable";
  1843. this.disableOneDriveSw.ToggleChecked = false;
  1844. //
  1845. // modernAppsTab
  1846. //
  1847. this.modernAppsTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1848. this.modernAppsTab.Controls.Add(this.btnRestoreUwp);
  1849. this.modernAppsTab.Controls.Add(this.panelUwp);
  1850. this.modernAppsTab.Controls.Add(this.uninstallModernAppsButton);
  1851. this.modernAppsTab.Controls.Add(this.refreshModernAppsButton);
  1852. this.modernAppsTab.Controls.Add(this.txtModernAppsTitle);
  1853. this.modernAppsTab.Controls.Add(this.chkOnlyRemovable);
  1854. this.modernAppsTab.Controls.Add(this.chkSelectAllModernApps);
  1855. this.modernAppsTab.Location = new System.Drawing.Point(4, 25);
  1856. this.modernAppsTab.Name = "modernAppsTab";
  1857. this.modernAppsTab.Padding = new System.Windows.Forms.Padding(3);
  1858. this.modernAppsTab.Size = new System.Drawing.Size(974, 653);
  1859. this.modernAppsTab.TabIndex = 11;
  1860. this.modernAppsTab.Text = "UWP Apps";
  1861. //
  1862. // btnRestoreUwp
  1863. //
  1864. this.btnRestoreUwp.BackColor = System.Drawing.Color.DodgerBlue;
  1865. this.btnRestoreUwp.FlatAppearance.BorderSize = 0;
  1866. this.btnRestoreUwp.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  1867. this.btnRestoreUwp.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  1868. this.btnRestoreUwp.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1869. this.btnRestoreUwp.ForeColor = System.Drawing.Color.White;
  1870. this.btnRestoreUwp.Location = new System.Drawing.Point(11, 544);
  1871. this.btnRestoreUwp.Margin = new System.Windows.Forms.Padding(2);
  1872. this.btnRestoreUwp.Name = "btnRestoreUwp";
  1873. this.btnRestoreUwp.Size = new System.Drawing.Size(299, 31);
  1874. this.btnRestoreUwp.TabIndex = 55;
  1875. this.btnRestoreUwp.Text = "Restore all UWP";
  1876. this.btnRestoreUwp.UseVisualStyleBackColor = false;
  1877. this.btnRestoreUwp.Click += new System.EventHandler(this.btnRestoreUwp_Click);
  1878. //
  1879. // panelUwp
  1880. //
  1881. this.panelUwp.AutoScroll = true;
  1882. this.panelUwp.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1883. this.panelUwp.Location = new System.Drawing.Point(11, 41);
  1884. this.panelUwp.Name = "panelUwp";
  1885. this.panelUwp.Size = new System.Drawing.Size(569, 498);
  1886. this.panelUwp.TabIndex = 54;
  1887. //
  1888. // uninstallModernAppsButton
  1889. //
  1890. this.uninstallModernAppsButton.BackColor = System.Drawing.Color.DodgerBlue;
  1891. this.uninstallModernAppsButton.FlatAppearance.BorderSize = 0;
  1892. this.uninstallModernAppsButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  1893. this.uninstallModernAppsButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  1894. this.uninstallModernAppsButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1895. this.uninstallModernAppsButton.ForeColor = System.Drawing.Color.White;
  1896. this.uninstallModernAppsButton.Location = new System.Drawing.Point(585, 76);
  1897. this.uninstallModernAppsButton.Margin = new System.Windows.Forms.Padding(2);
  1898. this.uninstallModernAppsButton.Name = "uninstallModernAppsButton";
  1899. this.uninstallModernAppsButton.Size = new System.Drawing.Size(208, 31);
  1900. this.uninstallModernAppsButton.TabIndex = 50;
  1901. this.uninstallModernAppsButton.Text = "Uninstall";
  1902. this.uninstallModernAppsButton.UseVisualStyleBackColor = false;
  1903. this.uninstallModernAppsButton.Click += new System.EventHandler(this.button74_Click);
  1904. //
  1905. // refreshModernAppsButton
  1906. //
  1907. this.refreshModernAppsButton.BackColor = System.Drawing.Color.DodgerBlue;
  1908. this.refreshModernAppsButton.FlatAppearance.BorderSize = 0;
  1909. this.refreshModernAppsButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  1910. this.refreshModernAppsButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  1911. this.refreshModernAppsButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1912. this.refreshModernAppsButton.ForeColor = System.Drawing.Color.White;
  1913. this.refreshModernAppsButton.Location = new System.Drawing.Point(585, 41);
  1914. this.refreshModernAppsButton.Margin = new System.Windows.Forms.Padding(2);
  1915. this.refreshModernAppsButton.Name = "refreshModernAppsButton";
  1916. this.refreshModernAppsButton.Size = new System.Drawing.Size(208, 31);
  1917. this.refreshModernAppsButton.TabIndex = 49;
  1918. this.refreshModernAppsButton.Text = "Refresh";
  1919. this.refreshModernAppsButton.UseVisualStyleBackColor = false;
  1920. this.refreshModernAppsButton.Click += new System.EventHandler(this.button75_Click);
  1921. //
  1922. // txtModernAppsTitle
  1923. //
  1924. this.txtModernAppsTitle.AutoSize = true;
  1925. this.txtModernAppsTitle.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1926. this.txtModernAppsTitle.ForeColor = System.Drawing.Color.DodgerBlue;
  1927. this.txtModernAppsTitle.Location = new System.Drawing.Point(6, 10);
  1928. this.txtModernAppsTitle.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1929. this.txtModernAppsTitle.Name = "txtModernAppsTitle";
  1930. this.txtModernAppsTitle.Size = new System.Drawing.Size(291, 28);
  1931. this.txtModernAppsTitle.TabIndex = 47;
  1932. this.txtModernAppsTitle.Tag = "themeable";
  1933. this.txtModernAppsTitle.Text = "Uninstall unwanted UWP Apps";
  1934. //
  1935. // chkOnlyRemovable
  1936. //
  1937. this.chkOnlyRemovable.AutoSize = true;
  1938. this.chkOnlyRemovable.Font = new System.Drawing.Font("Segoe UI Semibold", 12F);
  1939. this.chkOnlyRemovable.ForeColor = System.Drawing.Color.White;
  1940. this.chkOnlyRemovable.Location = new System.Drawing.Point(585, 111);
  1941. this.chkOnlyRemovable.Margin = new System.Windows.Forms.Padding(2);
  1942. this.chkOnlyRemovable.Name = "chkOnlyRemovable";
  1943. this.chkOnlyRemovable.Size = new System.Drawing.Size(170, 25);
  1944. this.chkOnlyRemovable.TabIndex = 53;
  1945. this.chkOnlyRemovable.Text = "Only uninstall-ables";
  1946. this.chkOnlyRemovable.UseVisualStyleBackColor = true;
  1947. this.chkOnlyRemovable.CheckedChanged += new System.EventHandler(this.chkOnlyRemovable_CheckedChanged);
  1948. //
  1949. // chkSelectAllModernApps
  1950. //
  1951. this.chkSelectAllModernApps.AutoSize = true;
  1952. this.chkSelectAllModernApps.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1953. this.chkSelectAllModernApps.ForeColor = System.Drawing.Color.White;
  1954. this.chkSelectAllModernApps.Location = new System.Drawing.Point(585, 140);
  1955. this.chkSelectAllModernApps.Margin = new System.Windows.Forms.Padding(2);
  1956. this.chkSelectAllModernApps.Name = "chkSelectAllModernApps";
  1957. this.chkSelectAllModernApps.Size = new System.Drawing.Size(94, 25);
  1958. this.chkSelectAllModernApps.TabIndex = 52;
  1959. this.chkSelectAllModernApps.Text = "Select all";
  1960. this.chkSelectAllModernApps.UseVisualStyleBackColor = true;
  1961. this.chkSelectAllModernApps.CheckedChanged += new System.EventHandler(this.chkSelectAllModernApps_CheckedChanged);
  1962. //
  1963. // startupTab
  1964. //
  1965. this.startupTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1966. this.startupTab.Controls.Add(this.cancelBackup);
  1967. this.startupTab.Controls.Add(this.doBackup);
  1968. this.startupTab.Controls.Add(this.txtBackupTitle);
  1969. this.startupTab.Controls.Add(this.lblBackupTitle);
  1970. this.startupTab.Controls.Add(this.restoreStartupB);
  1971. this.startupTab.Controls.Add(this.backupStartupB);
  1972. this.startupTab.Controls.Add(this.findInRegB);
  1973. this.startupTab.Controls.Add(this.locateFileB);
  1974. this.startupTab.Controls.Add(this.refreshStartupB);
  1975. this.startupTab.Controls.Add(this.panel3);
  1976. this.startupTab.Controls.Add(this.removeStartupItemB);
  1977. this.startupTab.Controls.Add(this.startupTitle);
  1978. this.startupTab.Location = new System.Drawing.Point(4, 25);
  1979. this.startupTab.Margin = new System.Windows.Forms.Padding(2);
  1980. this.startupTab.Name = "startupTab";
  1981. this.startupTab.Size = new System.Drawing.Size(974, 653);
  1982. this.startupTab.TabIndex = 7;
  1983. this.startupTab.Text = "Startup";
  1984. //
  1985. // cancelBackup
  1986. //
  1987. this.cancelBackup.BackColor = System.Drawing.Color.DodgerBlue;
  1988. this.cancelBackup.FlatAppearance.BorderSize = 0;
  1989. this.cancelBackup.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  1990. this.cancelBackup.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  1991. this.cancelBackup.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1992. this.cancelBackup.ForeColor = System.Drawing.Color.White;
  1993. this.cancelBackup.Location = new System.Drawing.Point(126, 551);
  1994. this.cancelBackup.Margin = new System.Windows.Forms.Padding(2);
  1995. this.cancelBackup.Name = "cancelBackup";
  1996. this.cancelBackup.Size = new System.Drawing.Size(110, 30);
  1997. this.cancelBackup.TabIndex = 61;
  1998. this.cancelBackup.Text = "Cancel";
  1999. this.cancelBackup.UseVisualStyleBackColor = false;
  2000. this.cancelBackup.Visible = false;
  2001. this.cancelBackup.Click += new System.EventHandler(this.button14_Click);
  2002. //
  2003. // doBackup
  2004. //
  2005. this.doBackup.BackColor = System.Drawing.Color.DodgerBlue;
  2006. this.doBackup.FlatAppearance.BorderSize = 0;
  2007. this.doBackup.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2008. this.doBackup.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2009. this.doBackup.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2010. this.doBackup.ForeColor = System.Drawing.Color.White;
  2011. this.doBackup.Location = new System.Drawing.Point(12, 551);
  2012. this.doBackup.Margin = new System.Windows.Forms.Padding(2);
  2013. this.doBackup.Name = "doBackup";
  2014. this.doBackup.Size = new System.Drawing.Size(110, 30);
  2015. this.doBackup.TabIndex = 60;
  2016. this.doBackup.Text = "OK";
  2017. this.doBackup.UseVisualStyleBackColor = false;
  2018. this.doBackup.Visible = false;
  2019. this.doBackup.Click += new System.EventHandler(this.button13_Click);
  2020. //
  2021. // txtBackupTitle
  2022. //
  2023. this.txtBackupTitle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  2024. this.txtBackupTitle.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2025. this.txtBackupTitle.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2026. this.txtBackupTitle.ForeColor = System.Drawing.Color.White;
  2027. this.txtBackupTitle.Location = new System.Drawing.Point(12, 522);
  2028. this.txtBackupTitle.Margin = new System.Windows.Forms.Padding(2);
  2029. this.txtBackupTitle.Name = "txtBackupTitle";
  2030. this.txtBackupTitle.Size = new System.Drawing.Size(323, 25);
  2031. this.txtBackupTitle.TabIndex = 58;
  2032. this.txtBackupTitle.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  2033. this.txtBackupTitle.Visible = false;
  2034. //
  2035. // lblBackupTitle
  2036. //
  2037. this.lblBackupTitle.AutoSize = true;
  2038. this.lblBackupTitle.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2039. this.lblBackupTitle.ForeColor = System.Drawing.Color.Silver;
  2040. this.lblBackupTitle.Location = new System.Drawing.Point(8, 501);
  2041. this.lblBackupTitle.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2042. this.lblBackupTitle.Name = "lblBackupTitle";
  2043. this.lblBackupTitle.Size = new System.Drawing.Size(86, 19);
  2044. this.lblBackupTitle.TabIndex = 59;
  2045. this.lblBackupTitle.Tag = "";
  2046. this.lblBackupTitle.Text = "Backup title:";
  2047. this.lblBackupTitle.Visible = false;
  2048. //
  2049. // restoreStartupB
  2050. //
  2051. this.restoreStartupB.BackColor = System.Drawing.Color.DodgerBlue;
  2052. this.restoreStartupB.FlatAppearance.BorderSize = 0;
  2053. this.restoreStartupB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2054. this.restoreStartupB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2055. this.restoreStartupB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2056. this.restoreStartupB.ForeColor = System.Drawing.Color.White;
  2057. this.restoreStartupB.Location = new System.Drawing.Point(206, 502);
  2058. this.restoreStartupB.Margin = new System.Windows.Forms.Padding(2);
  2059. this.restoreStartupB.Name = "restoreStartupB";
  2060. this.restoreStartupB.Size = new System.Drawing.Size(190, 31);
  2061. this.restoreStartupB.TabIndex = 42;
  2062. this.restoreStartupB.Text = "Restore";
  2063. this.restoreStartupB.UseVisualStyleBackColor = false;
  2064. this.restoreStartupB.Click += new System.EventHandler(this.button12_Click);
  2065. //
  2066. // backupStartupB
  2067. //
  2068. this.backupStartupB.BackColor = System.Drawing.Color.DodgerBlue;
  2069. this.backupStartupB.FlatAppearance.BorderSize = 0;
  2070. this.backupStartupB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2071. this.backupStartupB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2072. this.backupStartupB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2073. this.backupStartupB.ForeColor = System.Drawing.Color.White;
  2074. this.backupStartupB.Location = new System.Drawing.Point(12, 502);
  2075. this.backupStartupB.Margin = new System.Windows.Forms.Padding(2);
  2076. this.backupStartupB.Name = "backupStartupB";
  2077. this.backupStartupB.Size = new System.Drawing.Size(190, 31);
  2078. this.backupStartupB.TabIndex = 41;
  2079. this.backupStartupB.Text = "Backup";
  2080. this.backupStartupB.UseVisualStyleBackColor = false;
  2081. this.backupStartupB.Click += new System.EventHandler(this.button11_Click);
  2082. //
  2083. // findInRegB
  2084. //
  2085. this.findInRegB.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  2086. this.findInRegB.BackColor = System.Drawing.Color.DodgerBlue;
  2087. this.findInRegB.FlatAppearance.BorderSize = 0;
  2088. this.findInRegB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2089. this.findInRegB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2090. this.findInRegB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2091. this.findInRegB.ForeColor = System.Drawing.Color.White;
  2092. this.findInRegB.Location = new System.Drawing.Point(575, 538);
  2093. this.findInRegB.Margin = new System.Windows.Forms.Padding(2);
  2094. this.findInRegB.Name = "findInRegB";
  2095. this.findInRegB.Size = new System.Drawing.Size(190, 31);
  2096. this.findInRegB.TabIndex = 40;
  2097. this.findInRegB.Text = "Find in Registry";
  2098. this.findInRegB.UseVisualStyleBackColor = false;
  2099. this.findInRegB.Click += new System.EventHandler(this.button64_Click);
  2100. //
  2101. // locateFileB
  2102. //
  2103. this.locateFileB.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  2104. this.locateFileB.BackColor = System.Drawing.Color.DodgerBlue;
  2105. this.locateFileB.FlatAppearance.BorderSize = 0;
  2106. this.locateFileB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2107. this.locateFileB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2108. this.locateFileB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2109. this.locateFileB.ForeColor = System.Drawing.Color.White;
  2110. this.locateFileB.Location = new System.Drawing.Point(769, 503);
  2111. this.locateFileB.Margin = new System.Windows.Forms.Padding(2);
  2112. this.locateFileB.Name = "locateFileB";
  2113. this.locateFileB.Size = new System.Drawing.Size(190, 31);
  2114. this.locateFileB.TabIndex = 39;
  2115. this.locateFileB.Text = "Locate file";
  2116. this.locateFileB.UseVisualStyleBackColor = false;
  2117. this.locateFileB.Click += new System.EventHandler(this.button31_Click);
  2118. //
  2119. // refreshStartupB
  2120. //
  2121. this.refreshStartupB.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  2122. this.refreshStartupB.BackColor = System.Drawing.Color.DodgerBlue;
  2123. this.refreshStartupB.FlatAppearance.BorderSize = 0;
  2124. this.refreshStartupB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2125. this.refreshStartupB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2126. this.refreshStartupB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2127. this.refreshStartupB.ForeColor = System.Drawing.Color.White;
  2128. this.refreshStartupB.Location = new System.Drawing.Point(769, 538);
  2129. this.refreshStartupB.Margin = new System.Windows.Forms.Padding(2);
  2130. this.refreshStartupB.Name = "refreshStartupB";
  2131. this.refreshStartupB.Size = new System.Drawing.Size(190, 31);
  2132. this.refreshStartupB.TabIndex = 38;
  2133. this.refreshStartupB.Text = "Refresh";
  2134. this.refreshStartupB.UseVisualStyleBackColor = false;
  2135. this.refreshStartupB.Click += new System.EventHandler(this.button37_Click);
  2136. //
  2137. // panel3
  2138. //
  2139. this.panel3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  2140. | System.Windows.Forms.AnchorStyles.Right)));
  2141. this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2142. this.panel3.Controls.Add(this.listStartupItems);
  2143. this.panel3.Location = new System.Drawing.Point(11, 40);
  2144. this.panel3.Margin = new System.Windows.Forms.Padding(2);
  2145. this.panel3.Name = "panel3";
  2146. this.panel3.Size = new System.Drawing.Size(948, 459);
  2147. this.panel3.TabIndex = 37;
  2148. //
  2149. // listStartupItems
  2150. //
  2151. this.listStartupItems.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  2152. this.listStartupItems.BorderStyle = System.Windows.Forms.BorderStyle.None;
  2153. this.listStartupItems.CheckBoxes = true;
  2154. this.listStartupItems.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
  2155. this.columnHeader1,
  2156. this.columnHeader2,
  2157. this.columnHeader3});
  2158. this.listStartupItems.Dock = System.Windows.Forms.DockStyle.Fill;
  2159. this.listStartupItems.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2160. this.listStartupItems.ForeColor = System.Drawing.Color.MediumOrchid;
  2161. this.listStartupItems.FullRowSelect = true;
  2162. this.listStartupItems.HideSelection = false;
  2163. this.listStartupItems.Location = new System.Drawing.Point(0, 0);
  2164. this.listStartupItems.Margin = new System.Windows.Forms.Padding(2);
  2165. this.listStartupItems.MultiSelect = false;
  2166. this.listStartupItems.Name = "listStartupItems";
  2167. this.listStartupItems.ShowGroups = false;
  2168. this.listStartupItems.Size = new System.Drawing.Size(946, 457);
  2169. this.listStartupItems.TabIndex = 0;
  2170. this.listStartupItems.UseCompatibleStateImageBehavior = false;
  2171. this.listStartupItems.View = System.Windows.Forms.View.Details;
  2172. this.listStartupItems.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.listStartupItems_ColumnClick);
  2173. this.listStartupItems.ItemChecked += new System.Windows.Forms.ItemCheckedEventHandler(this.listStartupItems_ItemChecked);
  2174. //
  2175. // columnHeader1
  2176. //
  2177. this.columnHeader1.Text = "Name";
  2178. this.columnHeader1.Width = 194;
  2179. //
  2180. // columnHeader2
  2181. //
  2182. this.columnHeader2.Text = "Location";
  2183. this.columnHeader2.Width = 507;
  2184. //
  2185. // columnHeader3
  2186. //
  2187. this.columnHeader3.Text = "Type";
  2188. this.columnHeader3.Width = 134;
  2189. //
  2190. // removeStartupItemB
  2191. //
  2192. this.removeStartupItemB.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  2193. this.removeStartupItemB.BackColor = System.Drawing.Color.DodgerBlue;
  2194. this.removeStartupItemB.FlatAppearance.BorderSize = 0;
  2195. this.removeStartupItemB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2196. this.removeStartupItemB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2197. this.removeStartupItemB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2198. this.removeStartupItemB.ForeColor = System.Drawing.Color.White;
  2199. this.removeStartupItemB.Location = new System.Drawing.Point(575, 503);
  2200. this.removeStartupItemB.Margin = new System.Windows.Forms.Padding(2);
  2201. this.removeStartupItemB.Name = "removeStartupItemB";
  2202. this.removeStartupItemB.Size = new System.Drawing.Size(190, 31);
  2203. this.removeStartupItemB.TabIndex = 36;
  2204. this.removeStartupItemB.Text = "Delete";
  2205. this.removeStartupItemB.UseVisualStyleBackColor = false;
  2206. this.removeStartupItemB.Click += new System.EventHandler(this.button32_Click);
  2207. //
  2208. // startupTitle
  2209. //
  2210. this.startupTitle.AutoSize = true;
  2211. this.startupTitle.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2212. this.startupTitle.ForeColor = System.Drawing.Color.DodgerBlue;
  2213. this.startupTitle.Location = new System.Drawing.Point(6, 10);
  2214. this.startupTitle.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2215. this.startupTitle.Name = "startupTitle";
  2216. this.startupTitle.Size = new System.Drawing.Size(254, 28);
  2217. this.startupTitle.TabIndex = 3;
  2218. this.startupTitle.Tag = "themeable";
  2219. this.startupTitle.Text = "Choose your startup items";
  2220. //
  2221. // appsTab
  2222. //
  2223. this.appsTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  2224. this.appsTab.Controls.Add(this.txtFeedError);
  2225. this.appsTab.Controls.Add(this.lblVideoSound);
  2226. this.appsTab.Controls.Add(this.lblCoding);
  2227. this.appsTab.Controls.Add(this.lblSystemTools);
  2228. this.appsTab.Controls.Add(this.groupSoundVideo);
  2229. this.appsTab.Controls.Add(this.lblInternet);
  2230. this.appsTab.Controls.Add(this.groupCoding);
  2231. this.appsTab.Controls.Add(this.groupInternet);
  2232. this.appsTab.Controls.Add(this.panel10);
  2233. this.appsTab.Controls.Add(this.panelCommonApps);
  2234. this.appsTab.Controls.Add(this.groupSystemTools);
  2235. this.appsTab.Location = new System.Drawing.Point(4, 25);
  2236. this.appsTab.Name = "appsTab";
  2237. this.appsTab.Padding = new System.Windows.Forms.Padding(3);
  2238. this.appsTab.Size = new System.Drawing.Size(974, 653);
  2239. this.appsTab.TabIndex = 12;
  2240. this.appsTab.Text = "Apps";
  2241. //
  2242. // txtFeedError
  2243. //
  2244. this.txtFeedError.BackColor = System.Drawing.Color.Transparent;
  2245. this.txtFeedError.Dock = System.Windows.Forms.DockStyle.Fill;
  2246. 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)));
  2247. this.txtFeedError.ForeColor = System.Drawing.Color.Gold;
  2248. this.txtFeedError.Location = new System.Drawing.Point(3, 47);
  2249. this.txtFeedError.Name = "txtFeedError";
  2250. this.txtFeedError.Size = new System.Drawing.Size(968, 483);
  2251. this.txtFeedError.TabIndex = 171;
  2252. this.txtFeedError.Text = "No internet connection, try refreshing links again";
  2253. this.txtFeedError.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  2254. this.txtFeedError.Visible = false;
  2255. //
  2256. // lblVideoSound
  2257. //
  2258. this.lblVideoSound.AutoSize = true;
  2259. this.lblVideoSound.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2260. this.lblVideoSound.ForeColor = System.Drawing.Color.Silver;
  2261. this.lblVideoSound.Location = new System.Drawing.Point(746, 46);
  2262. this.lblVideoSound.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2263. this.lblVideoSound.Name = "lblVideoSound";
  2264. this.lblVideoSound.Size = new System.Drawing.Size(88, 15);
  2265. this.lblVideoSound.TabIndex = 169;
  2266. this.lblVideoSound.Tag = "";
  2267. this.lblVideoSound.Text = "Video && Sound";
  2268. //
  2269. // lblCoding
  2270. //
  2271. this.lblCoding.AutoSize = true;
  2272. this.lblCoding.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2273. this.lblCoding.ForeColor = System.Drawing.Color.Silver;
  2274. this.lblCoding.Location = new System.Drawing.Point(514, 46);
  2275. this.lblCoding.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2276. this.lblCoding.Name = "lblCoding";
  2277. this.lblCoding.Size = new System.Drawing.Size(45, 15);
  2278. this.lblCoding.TabIndex = 168;
  2279. this.lblCoding.Tag = "";
  2280. this.lblCoding.Text = "Coding";
  2281. //
  2282. // lblSystemTools
  2283. //
  2284. this.lblSystemTools.AutoSize = true;
  2285. this.lblSystemTools.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2286. this.lblSystemTools.ForeColor = System.Drawing.Color.Silver;
  2287. this.lblSystemTools.Location = new System.Drawing.Point(11, 46);
  2288. this.lblSystemTools.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2289. this.lblSystemTools.Name = "lblSystemTools";
  2290. this.lblSystemTools.Size = new System.Drawing.Size(89, 15);
  2291. this.lblSystemTools.TabIndex = 162;
  2292. this.lblSystemTools.Tag = "";
  2293. this.lblSystemTools.Text = "System && Tools";
  2294. //
  2295. // groupSoundVideo
  2296. //
  2297. this.groupSoundVideo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  2298. | System.Windows.Forms.AnchorStyles.Left)));
  2299. this.groupSoundVideo.AutoScroll = true;
  2300. this.groupSoundVideo.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2301. this.groupSoundVideo.Location = new System.Drawing.Point(749, 64);
  2302. this.groupSoundVideo.Name = "groupSoundVideo";
  2303. this.groupSoundVideo.Size = new System.Drawing.Size(227, 465);
  2304. this.groupSoundVideo.TabIndex = 166;
  2305. //
  2306. // lblInternet
  2307. //
  2308. this.lblInternet.AutoSize = true;
  2309. this.lblInternet.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2310. this.lblInternet.ForeColor = System.Drawing.Color.Silver;
  2311. this.lblInternet.Location = new System.Drawing.Point(262, 46);
  2312. this.lblInternet.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2313. this.lblInternet.Name = "lblInternet";
  2314. this.lblInternet.Size = new System.Drawing.Size(49, 15);
  2315. this.lblInternet.TabIndex = 167;
  2316. this.lblInternet.Tag = "";
  2317. this.lblInternet.Text = "Internet";
  2318. //
  2319. // groupCoding
  2320. //
  2321. this.groupCoding.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  2322. | System.Windows.Forms.AnchorStyles.Left)));
  2323. this.groupCoding.AutoScroll = true;
  2324. this.groupCoding.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2325. this.groupCoding.Location = new System.Drawing.Point(517, 64);
  2326. this.groupCoding.Name = "groupCoding";
  2327. this.groupCoding.Size = new System.Drawing.Size(226, 465);
  2328. this.groupCoding.TabIndex = 165;
  2329. //
  2330. // groupInternet
  2331. //
  2332. this.groupInternet.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  2333. | System.Windows.Forms.AnchorStyles.Left)));
  2334. this.groupInternet.AutoScroll = true;
  2335. this.groupInternet.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2336. this.groupInternet.Location = new System.Drawing.Point(265, 64);
  2337. this.groupInternet.Name = "groupInternet";
  2338. this.groupInternet.Size = new System.Drawing.Size(246, 465);
  2339. this.groupInternet.TabIndex = 164;
  2340. //
  2341. // panel10
  2342. //
  2343. this.panel10.Controls.Add(this.appsTitle);
  2344. this.panel10.Controls.Add(this.btnGetFeed);
  2345. this.panel10.Dock = System.Windows.Forms.DockStyle.Top;
  2346. this.panel10.Location = new System.Drawing.Point(3, 3);
  2347. this.panel10.Name = "panel10";
  2348. this.panel10.Size = new System.Drawing.Size(968, 44);
  2349. this.panel10.TabIndex = 163;
  2350. //
  2351. // appsTitle
  2352. //
  2353. this.appsTitle.AutoSize = true;
  2354. this.appsTitle.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2355. this.appsTitle.ForeColor = System.Drawing.Color.DodgerBlue;
  2356. this.appsTitle.Location = new System.Drawing.Point(5, 7);
  2357. this.appsTitle.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2358. this.appsTitle.Name = "appsTitle";
  2359. this.appsTitle.Size = new System.Drawing.Size(365, 28);
  2360. this.appsTitle.TabIndex = 53;
  2361. this.appsTitle.Tag = "themeable";
  2362. this.appsTitle.Text = "Quickly download && install useful apps";
  2363. //
  2364. // btnGetFeed
  2365. //
  2366. this.btnGetFeed.BackColor = System.Drawing.Color.DodgerBlue;
  2367. this.btnGetFeed.FlatAppearance.BorderSize = 0;
  2368. this.btnGetFeed.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2369. this.btnGetFeed.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2370. this.btnGetFeed.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2371. this.btnGetFeed.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2372. this.btnGetFeed.ForeColor = System.Drawing.Color.White;
  2373. this.btnGetFeed.Location = new System.Drawing.Point(763, 7);
  2374. this.btnGetFeed.Margin = new System.Windows.Forms.Padding(2);
  2375. this.btnGetFeed.Name = "btnGetFeed";
  2376. this.btnGetFeed.Size = new System.Drawing.Size(201, 32);
  2377. this.btnGetFeed.TabIndex = 161;
  2378. this.btnGetFeed.Text = "Refresh links";
  2379. this.btnGetFeed.UseVisualStyleBackColor = false;
  2380. this.btnGetFeed.Click += new System.EventHandler(this.btnGetFeed_Click);
  2381. //
  2382. // panelCommonApps
  2383. //
  2384. this.panelCommonApps.Controls.Add(this.cAutoInstall);
  2385. this.panelCommonApps.Controls.Add(this.progressDownloader);
  2386. this.panelCommonApps.Controls.Add(this.c64);
  2387. this.panelCommonApps.Controls.Add(this.c32);
  2388. this.panelCommonApps.Controls.Add(this.btnDownloadApps);
  2389. this.panelCommonApps.Controls.Add(this.setDownDirLbl);
  2390. this.panelCommonApps.Controls.Add(this.txtDownloadFolder);
  2391. this.panelCommonApps.Controls.Add(this.changeDownDirB);
  2392. this.panelCommonApps.Controls.Add(this.txtDownloadStatus);
  2393. this.panelCommonApps.Controls.Add(this.linkWarnings);
  2394. this.panelCommonApps.Controls.Add(this.bitPref);
  2395. this.panelCommonApps.Controls.Add(this.goToDownloadsB);
  2396. this.panelCommonApps.Dock = System.Windows.Forms.DockStyle.Bottom;
  2397. this.panelCommonApps.Location = new System.Drawing.Point(3, 530);
  2398. this.panelCommonApps.Name = "panelCommonApps";
  2399. this.panelCommonApps.Size = new System.Drawing.Size(968, 120);
  2400. this.panelCommonApps.TabIndex = 162;
  2401. //
  2402. // cAutoInstall
  2403. //
  2404. this.cAutoInstall.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
  2405. this.cAutoInstall.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2406. this.cAutoInstall.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2407. this.cAutoInstall.Location = new System.Drawing.Point(558, 53);
  2408. this.cAutoInstall.Name = "cAutoInstall";
  2409. this.cAutoInstall.Size = new System.Drawing.Size(369, 24);
  2410. this.cAutoInstall.TabIndex = 107;
  2411. this.cAutoInstall.Text = "Install after downloading";
  2412. this.cAutoInstall.UseVisualStyleBackColor = true;
  2413. //
  2414. // progressDownloader
  2415. //
  2416. this.progressDownloader.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  2417. this.progressDownloader.Location = new System.Drawing.Point(8, 83);
  2418. this.progressDownloader.MarqueeAnimationSpeed = 15;
  2419. this.progressDownloader.Name = "progressDownloader";
  2420. this.progressDownloader.Size = new System.Drawing.Size(302, 10);
  2421. this.progressDownloader.TabIndex = 160;
  2422. //
  2423. // c64
  2424. //
  2425. this.c64.AutoSize = true;
  2426. this.c64.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2427. this.c64.Location = new System.Drawing.Point(373, 28);
  2428. this.c64.Name = "c64";
  2429. this.c64.Size = new System.Drawing.Size(72, 25);
  2430. this.c64.TabIndex = 75;
  2431. this.c64.TabStop = true;
  2432. this.c64.Text = "64-bit";
  2433. this.c64.UseVisualStyleBackColor = true;
  2434. //
  2435. // c32
  2436. //
  2437. this.c32.AutoSize = true;
  2438. this.c32.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2439. this.c32.Location = new System.Drawing.Point(448, 28);
  2440. this.c32.Name = "c32";
  2441. this.c32.Size = new System.Drawing.Size(72, 25);
  2442. this.c32.TabIndex = 76;
  2443. this.c32.TabStop = true;
  2444. this.c32.Text = "32-bit";
  2445. this.c32.UseVisualStyleBackColor = true;
  2446. //
  2447. // btnDownloadApps
  2448. //
  2449. this.btnDownloadApps.BackColor = System.Drawing.Color.DodgerBlue;
  2450. this.btnDownloadApps.FlatAppearance.BorderSize = 0;
  2451. this.btnDownloadApps.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2452. this.btnDownloadApps.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2453. this.btnDownloadApps.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2454. this.btnDownloadApps.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2455. this.btnDownloadApps.ForeColor = System.Drawing.Color.White;
  2456. this.btnDownloadApps.Location = new System.Drawing.Point(765, 82);
  2457. this.btnDownloadApps.Margin = new System.Windows.Forms.Padding(2);
  2458. this.btnDownloadApps.Name = "btnDownloadApps";
  2459. this.btnDownloadApps.Size = new System.Drawing.Size(203, 35);
  2460. this.btnDownloadApps.TabIndex = 50;
  2461. this.btnDownloadApps.Text = "Download";
  2462. this.btnDownloadApps.UseVisualStyleBackColor = false;
  2463. this.btnDownloadApps.Click += new System.EventHandler(this.btnDownloadApps_Click);
  2464. //
  2465. // setDownDirLbl
  2466. //
  2467. this.setDownDirLbl.AutoSize = true;
  2468. this.setDownDirLbl.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2469. this.setDownDirLbl.ForeColor = System.Drawing.Color.DodgerBlue;
  2470. this.setDownDirLbl.Location = new System.Drawing.Point(3, 4);
  2471. this.setDownDirLbl.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2472. this.setDownDirLbl.Name = "setDownDirLbl";
  2473. this.setDownDirLbl.Size = new System.Drawing.Size(160, 21);
  2474. this.setDownDirLbl.TabIndex = 69;
  2475. this.setDownDirLbl.Tag = "themeable";
  2476. this.setDownDirLbl.Text = "Set download folder";
  2477. //
  2478. // txtDownloadFolder
  2479. //
  2480. this.txtDownloadFolder.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(30)))), ((int)(((byte)(30)))));
  2481. this.txtDownloadFolder.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2482. this.txtDownloadFolder.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2483. this.txtDownloadFolder.ForeColor = System.Drawing.Color.Silver;
  2484. this.txtDownloadFolder.Location = new System.Drawing.Point(8, 30);
  2485. this.txtDownloadFolder.Name = "txtDownloadFolder";
  2486. this.txtDownloadFolder.Size = new System.Drawing.Size(302, 23);
  2487. this.txtDownloadFolder.TabIndex = 70;
  2488. this.txtDownloadFolder.TextChanged += new System.EventHandler(this.txtDownloadFolder_TextChanged);
  2489. //
  2490. // changeDownDirB
  2491. //
  2492. this.changeDownDirB.BackColor = System.Drawing.Color.DodgerBlue;
  2493. this.changeDownDirB.FlatAppearance.BorderSize = 0;
  2494. this.changeDownDirB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2495. this.changeDownDirB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2496. this.changeDownDirB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2497. this.changeDownDirB.ForeColor = System.Drawing.Color.White;
  2498. this.changeDownDirB.Location = new System.Drawing.Point(313, 30);
  2499. this.changeDownDirB.Margin = new System.Windows.Forms.Padding(2);
  2500. this.changeDownDirB.Name = "changeDownDirB";
  2501. this.changeDownDirB.Size = new System.Drawing.Size(30, 23);
  2502. this.changeDownDirB.TabIndex = 71;
  2503. this.changeDownDirB.Text = "...";
  2504. this.changeDownDirB.UseVisualStyleBackColor = false;
  2505. this.changeDownDirB.Click += new System.EventHandler(this.button5_Click);
  2506. //
  2507. // txtDownloadStatus
  2508. //
  2509. this.txtDownloadStatus.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  2510. this.txtDownloadStatus.AutoSize = true;
  2511. this.txtDownloadStatus.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2512. this.txtDownloadStatus.ForeColor = System.Drawing.Color.LightGray;
  2513. this.txtDownloadStatus.Location = new System.Drawing.Point(4, 58);
  2514. this.txtDownloadStatus.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2515. this.txtDownloadStatus.Name = "txtDownloadStatus";
  2516. this.txtDownloadStatus.Size = new System.Drawing.Size(32, 19);
  2517. this.txtDownloadStatus.TabIndex = 72;
  2518. this.txtDownloadStatus.Tag = "";
  2519. this.txtDownloadStatus.Text = "Idle";
  2520. //
  2521. // linkWarnings
  2522. //
  2523. this.linkWarnings.ActiveLinkColor = System.Drawing.Color.Gold;
  2524. this.linkWarnings.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  2525. this.linkWarnings.AutoSize = true;
  2526. this.linkWarnings.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2527. this.linkWarnings.ForeColor = System.Drawing.Color.Gold;
  2528. this.linkWarnings.LinkColor = System.Drawing.Color.Gold;
  2529. this.linkWarnings.Location = new System.Drawing.Point(4, 98);
  2530. this.linkWarnings.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2531. this.linkWarnings.Name = "linkWarnings";
  2532. this.linkWarnings.Size = new System.Drawing.Size(92, 19);
  2533. this.linkWarnings.TabIndex = 78;
  2534. this.linkWarnings.TabStop = true;
  2535. this.linkWarnings.Tag = "";
  2536. this.linkWarnings.Text = "See warnings";
  2537. this.linkWarnings.Visible = false;
  2538. this.linkWarnings.VisitedLinkColor = System.Drawing.Color.Gold;
  2539. this.linkWarnings.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
  2540. //
  2541. // bitPref
  2542. //
  2543. this.bitPref.AutoSize = true;
  2544. this.bitPref.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2545. this.bitPref.ForeColor = System.Drawing.Color.DodgerBlue;
  2546. this.bitPref.Location = new System.Drawing.Point(368, 5);
  2547. this.bitPref.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2548. this.bitPref.Name = "bitPref";
  2549. this.bitPref.Size = new System.Drawing.Size(143, 21);
  2550. this.bitPref.TabIndex = 74;
  2551. this.bitPref.Tag = "themeable";
  2552. this.bitPref.Text = "Set bit preference";
  2553. //
  2554. // goToDownloadsB
  2555. //
  2556. this.goToDownloadsB.BackColor = System.Drawing.Color.DodgerBlue;
  2557. this.goToDownloadsB.FlatAppearance.BorderSize = 0;
  2558. this.goToDownloadsB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2559. this.goToDownloadsB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2560. this.goToDownloadsB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2561. this.goToDownloadsB.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2562. this.goToDownloadsB.ForeColor = System.Drawing.Color.White;
  2563. this.goToDownloadsB.Location = new System.Drawing.Point(558, 82);
  2564. this.goToDownloadsB.Margin = new System.Windows.Forms.Padding(2);
  2565. this.goToDownloadsB.Name = "goToDownloadsB";
  2566. this.goToDownloadsB.Size = new System.Drawing.Size(203, 35);
  2567. this.goToDownloadsB.TabIndex = 77;
  2568. this.goToDownloadsB.Text = "Go to Downloads";
  2569. this.goToDownloadsB.UseVisualStyleBackColor = false;
  2570. this.goToDownloadsB.Click += new System.EventHandler(this.button6_Click);
  2571. //
  2572. // groupSystemTools
  2573. //
  2574. this.groupSystemTools.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  2575. | System.Windows.Forms.AnchorStyles.Left)));
  2576. this.groupSystemTools.AutoScroll = true;
  2577. this.groupSystemTools.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2578. this.groupSystemTools.Location = new System.Drawing.Point(13, 64);
  2579. this.groupSystemTools.Name = "groupSystemTools";
  2580. this.groupSystemTools.Size = new System.Drawing.Size(246, 524);
  2581. this.groupSystemTools.TabIndex = 162;
  2582. //
  2583. // cleanerTab
  2584. //
  2585. this.cleanerTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  2586. this.cleanerTab.Controls.Add(this.panel14);
  2587. this.cleanerTab.Controls.Add(this.panel13);
  2588. this.cleanerTab.Controls.Add(this.panel1);
  2589. this.cleanerTab.Location = new System.Drawing.Point(4, 25);
  2590. this.cleanerTab.Margin = new System.Windows.Forms.Padding(2);
  2591. this.cleanerTab.Name = "cleanerTab";
  2592. this.cleanerTab.Padding = new System.Windows.Forms.Padding(2);
  2593. this.cleanerTab.Size = new System.Drawing.Size(974, 653);
  2594. this.cleanerTab.TabIndex = 5;
  2595. this.cleanerTab.Text = "Cleaner";
  2596. //
  2597. // panel14
  2598. //
  2599. this.panel14.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2600. this.panel14.Controls.Add(this.listCleanPreview);
  2601. this.panel14.Dock = System.Windows.Forms.DockStyle.Fill;
  2602. this.panel14.Location = new System.Drawing.Point(221, 2);
  2603. this.panel14.Name = "panel14";
  2604. this.panel14.Size = new System.Drawing.Size(751, 588);
  2605. this.panel14.TabIndex = 51;
  2606. //
  2607. // listCleanPreview
  2608. //
  2609. this.listCleanPreview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  2610. this.listCleanPreview.BorderStyle = System.Windows.Forms.BorderStyle.None;
  2611. this.listCleanPreview.Dock = System.Windows.Forms.DockStyle.Fill;
  2612. this.listCleanPreview.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2613. this.listCleanPreview.ForeColor = System.Drawing.Color.Silver;
  2614. this.listCleanPreview.FormattingEnabled = true;
  2615. this.listCleanPreview.HorizontalScrollbar = true;
  2616. this.listCleanPreview.Location = new System.Drawing.Point(0, 0);
  2617. this.listCleanPreview.Name = "listCleanPreview";
  2618. this.listCleanPreview.Size = new System.Drawing.Size(749, 586);
  2619. this.listCleanPreview.TabIndex = 1;
  2620. //
  2621. // panel13
  2622. //
  2623. this.panel13.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2624. this.panel13.Controls.Add(this.btnWinClean);
  2625. this.panel13.Controls.Add(this.analyzeDriveB);
  2626. this.panel13.Controls.Add(this.checkSelectAll);
  2627. this.panel13.Controls.Add(this.lblPretext);
  2628. this.panel13.Controls.Add(this.cleanDriveB);
  2629. this.panel13.Controls.Add(this.lblFootprint);
  2630. this.panel13.Dock = System.Windows.Forms.DockStyle.Bottom;
  2631. this.panel13.Location = new System.Drawing.Point(221, 590);
  2632. this.panel13.Name = "panel13";
  2633. this.panel13.Size = new System.Drawing.Size(751, 61);
  2634. this.panel13.TabIndex = 50;
  2635. //
  2636. // btnWinClean
  2637. //
  2638. this.btnWinClean.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  2639. this.btnWinClean.BackColor = System.Drawing.Color.DodgerBlue;
  2640. this.btnWinClean.FlatAppearance.BorderSize = 0;
  2641. this.btnWinClean.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2642. this.btnWinClean.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2643. this.btnWinClean.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2644. this.btnWinClean.ForeColor = System.Drawing.Color.White;
  2645. this.btnWinClean.Location = new System.Drawing.Point(317, 23);
  2646. this.btnWinClean.Margin = new System.Windows.Forms.Padding(2);
  2647. this.btnWinClean.Name = "btnWinClean";
  2648. this.btnWinClean.Size = new System.Drawing.Size(140, 31);
  2649. this.btnWinClean.TabIndex = 90;
  2650. this.btnWinClean.Text = "Cleanmgr ...";
  2651. this.btnWinClean.UseVisualStyleBackColor = false;
  2652. this.btnWinClean.Click += new System.EventHandler(this.btnWinClean_Click);
  2653. //
  2654. // analyzeDriveB
  2655. //
  2656. this.analyzeDriveB.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  2657. this.analyzeDriveB.BackColor = System.Drawing.Color.DodgerBlue;
  2658. this.analyzeDriveB.FlatAppearance.BorderSize = 0;
  2659. this.analyzeDriveB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2660. this.analyzeDriveB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2661. this.analyzeDriveB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2662. this.analyzeDriveB.ForeColor = System.Drawing.Color.White;
  2663. this.analyzeDriveB.Location = new System.Drawing.Point(461, 23);
  2664. this.analyzeDriveB.Margin = new System.Windows.Forms.Padding(2);
  2665. this.analyzeDriveB.Name = "analyzeDriveB";
  2666. this.analyzeDriveB.Size = new System.Drawing.Size(140, 31);
  2667. this.analyzeDriveB.TabIndex = 89;
  2668. this.analyzeDriveB.Text = "Analyze";
  2669. this.analyzeDriveB.UseVisualStyleBackColor = false;
  2670. this.analyzeDriveB.Click += new System.EventHandler(this.analyzeDriveB_Click);
  2671. //
  2672. // checkSelectAll
  2673. //
  2674. this.checkSelectAll.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  2675. this.checkSelectAll.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2676. this.checkSelectAll.ForeColor = System.Drawing.Color.DodgerBlue;
  2677. this.checkSelectAll.LinkColor = System.Drawing.Color.DodgerBlue;
  2678. this.checkSelectAll.Location = new System.Drawing.Point(498, 1);
  2679. this.checkSelectAll.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2680. this.checkSelectAll.Name = "checkSelectAll";
  2681. this.checkSelectAll.Size = new System.Drawing.Size(247, 20);
  2682. this.checkSelectAll.TabIndex = 88;
  2683. this.checkSelectAll.TabStop = true;
  2684. this.checkSelectAll.Tag = "themeable";
  2685. this.checkSelectAll.Text = "Select all";
  2686. this.checkSelectAll.TextAlign = System.Drawing.ContentAlignment.TopRight;
  2687. this.checkSelectAll.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.checkSelectAll_LinkClicked);
  2688. //
  2689. // lblPretext
  2690. //
  2691. this.lblPretext.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  2692. this.lblPretext.AutoSize = true;
  2693. 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)));
  2694. this.lblPretext.ForeColor = System.Drawing.Color.Silver;
  2695. this.lblPretext.Location = new System.Drawing.Point(2, 4);
  2696. this.lblPretext.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2697. this.lblPretext.Name = "lblPretext";
  2698. this.lblPretext.Size = new System.Drawing.Size(199, 21);
  2699. this.lblPretext.TabIndex = 49;
  2700. this.lblPretext.Tag = "";
  2701. this.lblPretext.Text = "Maximum size to be freed:";
  2702. this.lblPretext.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2703. //
  2704. // cleanDriveB
  2705. //
  2706. this.cleanDriveB.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  2707. this.cleanDriveB.BackColor = System.Drawing.Color.DodgerBlue;
  2708. this.cleanDriveB.FlatAppearance.BorderSize = 0;
  2709. this.cleanDriveB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2710. this.cleanDriveB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2711. this.cleanDriveB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2712. this.cleanDriveB.ForeColor = System.Drawing.Color.White;
  2713. this.cleanDriveB.Location = new System.Drawing.Point(605, 23);
  2714. this.cleanDriveB.Margin = new System.Windows.Forms.Padding(2);
  2715. this.cleanDriveB.Name = "cleanDriveB";
  2716. this.cleanDriveB.Size = new System.Drawing.Size(140, 31);
  2717. this.cleanDriveB.TabIndex = 34;
  2718. this.cleanDriveB.Text = "Clean";
  2719. this.cleanDriveB.UseVisualStyleBackColor = false;
  2720. this.cleanDriveB.Click += new System.EventHandler(this.cleanDriveB_Click);
  2721. //
  2722. // lblFootprint
  2723. //
  2724. this.lblFootprint.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  2725. this.lblFootprint.Font = new System.Drawing.Font("Segoe UI Semibold", 13F, ((System.Drawing.FontStyle)(((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic)
  2726. | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2727. this.lblFootprint.ForeColor = System.Drawing.Color.DodgerBlue;
  2728. this.lblFootprint.Location = new System.Drawing.Point(1, 26);
  2729. this.lblFootprint.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2730. this.lblFootprint.Name = "lblFootprint";
  2731. this.lblFootprint.Size = new System.Drawing.Size(197, 31);
  2732. this.lblFootprint.TabIndex = 48;
  2733. this.lblFootprint.Tag = "themeable";
  2734. this.lblFootprint.Text = "-";
  2735. this.lblFootprint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2736. //
  2737. // panel1
  2738. //
  2739. this.panel1.AutoScroll = true;
  2740. this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2741. this.panel1.Controls.Add(this.bravePasswords);
  2742. this.panel1.Controls.Add(this.braveSession);
  2743. this.panel1.Controls.Add(this.braveHistory);
  2744. this.panel1.Controls.Add(this.braveCookies);
  2745. this.panel1.Controls.Add(this.braveCache);
  2746. this.panel1.Controls.Add(this.label9);
  2747. this.panel1.Controls.Add(this.pictureBox4);
  2748. this.panel1.Controls.Add(this.label8);
  2749. this.panel1.Controls.Add(this.pictureBox2);
  2750. this.panel1.Controls.Add(this.edgeSession);
  2751. this.panel1.Controls.Add(this.edgeHistory);
  2752. this.panel1.Controls.Add(this.edgeCookies);
  2753. this.panel1.Controls.Add(this.edgeCache);
  2754. this.panel1.Controls.Add(this.IECache);
  2755. this.panel1.Controls.Add(this.firefoxHistory);
  2756. this.panel1.Controls.Add(this.firefoxCookies);
  2757. this.panel1.Controls.Add(this.firefoxCache);
  2758. this.panel1.Controls.Add(this.chromePws);
  2759. this.panel1.Controls.Add(this.chromeSession);
  2760. this.panel1.Controls.Add(this.chromeHistory);
  2761. this.panel1.Controls.Add(this.chromeCookies);
  2762. this.panel1.Controls.Add(this.chromeCache);
  2763. this.panel1.Controls.Add(this.label7);
  2764. this.panel1.Controls.Add(this.label6);
  2765. this.panel1.Controls.Add(this.label5);
  2766. this.panel1.Controls.Add(this.label4);
  2767. this.panel1.Controls.Add(this.pictureBox11);
  2768. this.panel1.Controls.Add(this.pictureBox10);
  2769. this.panel1.Controls.Add(this.pictureBox9);
  2770. this.panel1.Controls.Add(this.pictureBox8);
  2771. this.panel1.Controls.Add(this.checkErrorReports);
  2772. this.panel1.Controls.Add(this.checkTemp);
  2773. this.panel1.Controls.Add(this.checkBin);
  2774. this.panel1.Controls.Add(this.checkMiniDumps);
  2775. this.panel1.Dock = System.Windows.Forms.DockStyle.Left;
  2776. this.panel1.Location = new System.Drawing.Point(2, 2);
  2777. this.panel1.Margin = new System.Windows.Forms.Padding(2);
  2778. this.panel1.Name = "panel1";
  2779. this.panel1.Size = new System.Drawing.Size(219, 649);
  2780. this.panel1.TabIndex = 47;
  2781. //
  2782. // bravePasswords
  2783. //
  2784. this.bravePasswords.AutoSize = true;
  2785. this.bravePasswords.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2786. this.bravePasswords.ForeColor = System.Drawing.Color.White;
  2787. this.bravePasswords.Location = new System.Drawing.Point(9, 676);
  2788. this.bravePasswords.Margin = new System.Windows.Forms.Padding(2);
  2789. this.bravePasswords.Name = "bravePasswords";
  2790. this.bravePasswords.Size = new System.Drawing.Size(93, 23);
  2791. this.bravePasswords.TabIndex = 78;
  2792. this.bravePasswords.Text = "Passwords";
  2793. this.bravePasswords.UseVisualStyleBackColor = true;
  2794. //
  2795. // braveSession
  2796. //
  2797. this.braveSession.AutoSize = true;
  2798. this.braveSession.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2799. this.braveSession.ForeColor = System.Drawing.Color.White;
  2800. this.braveSession.Location = new System.Drawing.Point(9, 649);
  2801. this.braveSession.Margin = new System.Windows.Forms.Padding(2);
  2802. this.braveSession.Name = "braveSession";
  2803. this.braveSession.Size = new System.Drawing.Size(75, 23);
  2804. this.braveSession.TabIndex = 77;
  2805. this.braveSession.Text = "Session";
  2806. this.braveSession.UseVisualStyleBackColor = true;
  2807. //
  2808. // braveHistory
  2809. //
  2810. this.braveHistory.AutoSize = true;
  2811. this.braveHistory.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2812. this.braveHistory.ForeColor = System.Drawing.Color.White;
  2813. this.braveHistory.Location = new System.Drawing.Point(9, 622);
  2814. this.braveHistory.Margin = new System.Windows.Forms.Padding(2);
  2815. this.braveHistory.Name = "braveHistory";
  2816. this.braveHistory.Size = new System.Drawing.Size(74, 23);
  2817. this.braveHistory.TabIndex = 76;
  2818. this.braveHistory.Text = "History";
  2819. this.braveHistory.UseVisualStyleBackColor = true;
  2820. //
  2821. // braveCookies
  2822. //
  2823. this.braveCookies.AutoSize = true;
  2824. this.braveCookies.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2825. this.braveCookies.ForeColor = System.Drawing.Color.White;
  2826. this.braveCookies.Location = new System.Drawing.Point(9, 595);
  2827. this.braveCookies.Margin = new System.Windows.Forms.Padding(2);
  2828. this.braveCookies.Name = "braveCookies";
  2829. this.braveCookies.Size = new System.Drawing.Size(77, 23);
  2830. this.braveCookies.TabIndex = 75;
  2831. this.braveCookies.Text = "Cookies";
  2832. this.braveCookies.UseVisualStyleBackColor = true;
  2833. //
  2834. // braveCache
  2835. //
  2836. this.braveCache.AutoSize = true;
  2837. this.braveCache.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2838. this.braveCache.ForeColor = System.Drawing.Color.White;
  2839. this.braveCache.Location = new System.Drawing.Point(9, 568);
  2840. this.braveCache.Margin = new System.Windows.Forms.Padding(2);
  2841. this.braveCache.Name = "braveCache";
  2842. this.braveCache.Size = new System.Drawing.Size(66, 23);
  2843. this.braveCache.TabIndex = 74;
  2844. this.braveCache.Text = "Cache";
  2845. this.braveCache.UseVisualStyleBackColor = true;
  2846. //
  2847. // label9
  2848. //
  2849. this.label9.AutoSize = true;
  2850. this.label9.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2851. this.label9.ForeColor = System.Drawing.Color.DarkGray;
  2852. this.label9.Location = new System.Drawing.Point(30, 543);
  2853. this.label9.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2854. this.label9.Name = "label9";
  2855. this.label9.Size = new System.Drawing.Size(107, 20);
  2856. this.label9.TabIndex = 73;
  2857. this.label9.Tag = "";
  2858. this.label9.Text = "Brave Browser";
  2859. //
  2860. // pictureBox4
  2861. //
  2862. this.pictureBox4.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox4.Image")));
  2863. this.pictureBox4.Location = new System.Drawing.Point(7, 542);
  2864. this.pictureBox4.Name = "pictureBox4";
  2865. this.pictureBox4.Size = new System.Drawing.Size(20, 20);
  2866. this.pictureBox4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  2867. this.pictureBox4.TabIndex = 72;
  2868. this.pictureBox4.TabStop = false;
  2869. //
  2870. // label8
  2871. //
  2872. this.label8.AutoSize = true;
  2873. this.label8.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2874. this.label8.ForeColor = System.Drawing.Color.DarkGray;
  2875. this.label8.Location = new System.Drawing.Point(32, 12);
  2876. this.label8.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2877. this.label8.Name = "label8";
  2878. this.label8.Size = new System.Drawing.Size(71, 20);
  2879. this.label8.TabIndex = 71;
  2880. this.label8.Tag = "";
  2881. this.label8.Text = "Windows";
  2882. //
  2883. // pictureBox2
  2884. //
  2885. this.pictureBox2.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox2.Image")));
  2886. this.pictureBox2.Location = new System.Drawing.Point(7, 12);
  2887. this.pictureBox2.Name = "pictureBox2";
  2888. this.pictureBox2.Size = new System.Drawing.Size(20, 20);
  2889. this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  2890. this.pictureBox2.TabIndex = 70;
  2891. this.pictureBox2.TabStop = false;
  2892. //
  2893. // edgeSession
  2894. //
  2895. this.edgeSession.AutoSize = true;
  2896. this.edgeSession.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2897. this.edgeSession.ForeColor = System.Drawing.Color.White;
  2898. this.edgeSession.Location = new System.Drawing.Point(9, 516);
  2899. this.edgeSession.Margin = new System.Windows.Forms.Padding(2);
  2900. this.edgeSession.Name = "edgeSession";
  2901. this.edgeSession.Size = new System.Drawing.Size(75, 23);
  2902. this.edgeSession.TabIndex = 69;
  2903. this.edgeSession.Text = "Session";
  2904. this.edgeSession.UseVisualStyleBackColor = true;
  2905. //
  2906. // edgeHistory
  2907. //
  2908. this.edgeHistory.AutoSize = true;
  2909. this.edgeHistory.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2910. this.edgeHistory.ForeColor = System.Drawing.Color.White;
  2911. this.edgeHistory.Location = new System.Drawing.Point(9, 489);
  2912. this.edgeHistory.Margin = new System.Windows.Forms.Padding(2);
  2913. this.edgeHistory.Name = "edgeHistory";
  2914. this.edgeHistory.Size = new System.Drawing.Size(74, 23);
  2915. this.edgeHistory.TabIndex = 68;
  2916. this.edgeHistory.Text = "History";
  2917. this.edgeHistory.UseVisualStyleBackColor = true;
  2918. //
  2919. // edgeCookies
  2920. //
  2921. this.edgeCookies.AutoSize = true;
  2922. this.edgeCookies.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2923. this.edgeCookies.ForeColor = System.Drawing.Color.White;
  2924. this.edgeCookies.Location = new System.Drawing.Point(9, 462);
  2925. this.edgeCookies.Margin = new System.Windows.Forms.Padding(2);
  2926. this.edgeCookies.Name = "edgeCookies";
  2927. this.edgeCookies.Size = new System.Drawing.Size(77, 23);
  2928. this.edgeCookies.TabIndex = 67;
  2929. this.edgeCookies.Text = "Cookies";
  2930. this.edgeCookies.UseVisualStyleBackColor = true;
  2931. //
  2932. // edgeCache
  2933. //
  2934. this.edgeCache.AutoSize = true;
  2935. this.edgeCache.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2936. this.edgeCache.ForeColor = System.Drawing.Color.White;
  2937. this.edgeCache.Location = new System.Drawing.Point(9, 435);
  2938. this.edgeCache.Margin = new System.Windows.Forms.Padding(2);
  2939. this.edgeCache.Name = "edgeCache";
  2940. this.edgeCache.Size = new System.Drawing.Size(66, 23);
  2941. this.edgeCache.TabIndex = 66;
  2942. this.edgeCache.Text = "Cache";
  2943. this.edgeCache.UseVisualStyleBackColor = true;
  2944. //
  2945. // IECache
  2946. //
  2947. this.IECache.AutoSize = true;
  2948. this.IECache.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2949. this.IECache.ForeColor = System.Drawing.Color.White;
  2950. this.IECache.Location = new System.Drawing.Point(10, 725);
  2951. this.IECache.Margin = new System.Windows.Forms.Padding(2);
  2952. this.IECache.Name = "IECache";
  2953. this.IECache.Size = new System.Drawing.Size(66, 23);
  2954. this.IECache.TabIndex = 65;
  2955. this.IECache.Text = "Cache";
  2956. this.IECache.UseVisualStyleBackColor = true;
  2957. //
  2958. // firefoxHistory
  2959. //
  2960. this.firefoxHistory.AutoSize = true;
  2961. this.firefoxHistory.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2962. this.firefoxHistory.ForeColor = System.Drawing.Color.White;
  2963. this.firefoxHistory.Location = new System.Drawing.Point(9, 384);
  2964. this.firefoxHistory.Margin = new System.Windows.Forms.Padding(2);
  2965. this.firefoxHistory.Name = "firefoxHistory";
  2966. this.firefoxHistory.Size = new System.Drawing.Size(74, 23);
  2967. this.firefoxHistory.TabIndex = 64;
  2968. this.firefoxHistory.Text = "History";
  2969. this.firefoxHistory.UseVisualStyleBackColor = true;
  2970. //
  2971. // firefoxCookies
  2972. //
  2973. this.firefoxCookies.AutoSize = true;
  2974. this.firefoxCookies.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2975. this.firefoxCookies.ForeColor = System.Drawing.Color.White;
  2976. this.firefoxCookies.Location = new System.Drawing.Point(9, 357);
  2977. this.firefoxCookies.Margin = new System.Windows.Forms.Padding(2);
  2978. this.firefoxCookies.Name = "firefoxCookies";
  2979. this.firefoxCookies.Size = new System.Drawing.Size(77, 23);
  2980. this.firefoxCookies.TabIndex = 63;
  2981. this.firefoxCookies.Text = "Cookies";
  2982. this.firefoxCookies.UseVisualStyleBackColor = true;
  2983. //
  2984. // firefoxCache
  2985. //
  2986. this.firefoxCache.AutoSize = true;
  2987. this.firefoxCache.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2988. this.firefoxCache.ForeColor = System.Drawing.Color.White;
  2989. this.firefoxCache.Location = new System.Drawing.Point(9, 330);
  2990. this.firefoxCache.Margin = new System.Windows.Forms.Padding(2);
  2991. this.firefoxCache.Name = "firefoxCache";
  2992. this.firefoxCache.Size = new System.Drawing.Size(66, 23);
  2993. this.firefoxCache.TabIndex = 62;
  2994. this.firefoxCache.Text = "Cache";
  2995. this.firefoxCache.UseVisualStyleBackColor = true;
  2996. //
  2997. // chromePws
  2998. //
  2999. this.chromePws.AutoSize = true;
  3000. this.chromePws.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3001. this.chromePws.ForeColor = System.Drawing.Color.White;
  3002. this.chromePws.Location = new System.Drawing.Point(8, 278);
  3003. this.chromePws.Margin = new System.Windows.Forms.Padding(2);
  3004. this.chromePws.Name = "chromePws";
  3005. this.chromePws.Size = new System.Drawing.Size(93, 23);
  3006. this.chromePws.TabIndex = 61;
  3007. this.chromePws.Text = "Passwords";
  3008. this.chromePws.UseVisualStyleBackColor = true;
  3009. //
  3010. // chromeSession
  3011. //
  3012. this.chromeSession.AutoSize = true;
  3013. this.chromeSession.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3014. this.chromeSession.ForeColor = System.Drawing.Color.White;
  3015. this.chromeSession.Location = new System.Drawing.Point(8, 251);
  3016. this.chromeSession.Margin = new System.Windows.Forms.Padding(2);
  3017. this.chromeSession.Name = "chromeSession";
  3018. this.chromeSession.Size = new System.Drawing.Size(75, 23);
  3019. this.chromeSession.TabIndex = 60;
  3020. this.chromeSession.Text = "Session";
  3021. this.chromeSession.UseVisualStyleBackColor = true;
  3022. //
  3023. // chromeHistory
  3024. //
  3025. this.chromeHistory.AutoSize = true;
  3026. this.chromeHistory.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3027. this.chromeHistory.ForeColor = System.Drawing.Color.White;
  3028. this.chromeHistory.Location = new System.Drawing.Point(8, 224);
  3029. this.chromeHistory.Margin = new System.Windows.Forms.Padding(2);
  3030. this.chromeHistory.Name = "chromeHistory";
  3031. this.chromeHistory.Size = new System.Drawing.Size(74, 23);
  3032. this.chromeHistory.TabIndex = 59;
  3033. this.chromeHistory.Text = "History";
  3034. this.chromeHistory.UseVisualStyleBackColor = true;
  3035. //
  3036. // chromeCookies
  3037. //
  3038. this.chromeCookies.AutoSize = true;
  3039. this.chromeCookies.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3040. this.chromeCookies.ForeColor = System.Drawing.Color.White;
  3041. this.chromeCookies.Location = new System.Drawing.Point(8, 197);
  3042. this.chromeCookies.Margin = new System.Windows.Forms.Padding(2);
  3043. this.chromeCookies.Name = "chromeCookies";
  3044. this.chromeCookies.Size = new System.Drawing.Size(77, 23);
  3045. this.chromeCookies.TabIndex = 58;
  3046. this.chromeCookies.Text = "Cookies";
  3047. this.chromeCookies.UseVisualStyleBackColor = true;
  3048. //
  3049. // chromeCache
  3050. //
  3051. this.chromeCache.AutoSize = true;
  3052. this.chromeCache.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3053. this.chromeCache.ForeColor = System.Drawing.Color.White;
  3054. this.chromeCache.Location = new System.Drawing.Point(8, 170);
  3055. this.chromeCache.Margin = new System.Windows.Forms.Padding(2);
  3056. this.chromeCache.Name = "chromeCache";
  3057. this.chromeCache.Size = new System.Drawing.Size(66, 23);
  3058. this.chromeCache.TabIndex = 57;
  3059. this.chromeCache.Text = "Cache";
  3060. this.chromeCache.UseVisualStyleBackColor = true;
  3061. //
  3062. // label7
  3063. //
  3064. this.label7.AutoSize = true;
  3065. this.label7.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3066. this.label7.ForeColor = System.Drawing.Color.DarkGray;
  3067. this.label7.Location = new System.Drawing.Point(31, 410);
  3068. this.label7.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3069. this.label7.Name = "label7";
  3070. this.label7.Size = new System.Drawing.Size(112, 20);
  3071. this.label7.TabIndex = 56;
  3072. this.label7.Tag = "";
  3073. this.label7.Text = "Microsoft Edge";
  3074. //
  3075. // label6
  3076. //
  3077. this.label6.AutoSize = true;
  3078. this.label6.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3079. this.label6.ForeColor = System.Drawing.Color.DarkGray;
  3080. this.label6.Location = new System.Drawing.Point(33, 701);
  3081. this.label6.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3082. this.label6.Name = "label6";
  3083. this.label6.Size = new System.Drawing.Size(125, 20);
  3084. this.label6.TabIndex = 55;
  3085. this.label6.Tag = "";
  3086. this.label6.Text = "Internet Explorer";
  3087. //
  3088. // label5
  3089. //
  3090. this.label5.AutoSize = true;
  3091. this.label5.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3092. this.label5.ForeColor = System.Drawing.Color.DarkGray;
  3093. this.label5.Location = new System.Drawing.Point(30, 306);
  3094. this.label5.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3095. this.label5.Name = "label5";
  3096. this.label5.Size = new System.Drawing.Size(111, 20);
  3097. this.label5.TabIndex = 54;
  3098. this.label5.Tag = "";
  3099. this.label5.Text = "Mozilla Firefox";
  3100. //
  3101. // label4
  3102. //
  3103. this.label4.AutoSize = true;
  3104. this.label4.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3105. this.label4.ForeColor = System.Drawing.Color.DarkGray;
  3106. this.label4.Location = new System.Drawing.Point(31, 146);
  3107. this.label4.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3108. this.label4.Name = "label4";
  3109. this.label4.Size = new System.Drawing.Size(116, 20);
  3110. this.label4.TabIndex = 47;
  3111. this.label4.Tag = "";
  3112. this.label4.Text = "Google Chrome";
  3113. //
  3114. // pictureBox11
  3115. //
  3116. this.pictureBox11.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox11.Image")));
  3117. this.pictureBox11.Location = new System.Drawing.Point(9, 410);
  3118. this.pictureBox11.Name = "pictureBox11";
  3119. this.pictureBox11.Size = new System.Drawing.Size(20, 20);
  3120. this.pictureBox11.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  3121. this.pictureBox11.TabIndex = 53;
  3122. this.pictureBox11.TabStop = false;
  3123. //
  3124. // pictureBox10
  3125. //
  3126. this.pictureBox10.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox10.Image")));
  3127. this.pictureBox10.Location = new System.Drawing.Point(9, 700);
  3128. this.pictureBox10.Name = "pictureBox10";
  3129. this.pictureBox10.Size = new System.Drawing.Size(20, 20);
  3130. this.pictureBox10.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  3131. this.pictureBox10.TabIndex = 52;
  3132. this.pictureBox10.TabStop = false;
  3133. //
  3134. // pictureBox9
  3135. //
  3136. this.pictureBox9.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox9.Image")));
  3137. this.pictureBox9.Location = new System.Drawing.Point(7, 146);
  3138. this.pictureBox9.Name = "pictureBox9";
  3139. this.pictureBox9.Size = new System.Drawing.Size(20, 20);
  3140. this.pictureBox9.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  3141. this.pictureBox9.TabIndex = 51;
  3142. this.pictureBox9.TabStop = false;
  3143. //
  3144. // pictureBox8
  3145. //
  3146. this.pictureBox8.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox8.Image")));
  3147. this.pictureBox8.Location = new System.Drawing.Point(9, 306);
  3148. this.pictureBox8.Name = "pictureBox8";
  3149. this.pictureBox8.Size = new System.Drawing.Size(20, 20);
  3150. this.pictureBox8.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  3151. this.pictureBox8.TabIndex = 50;
  3152. this.pictureBox8.TabStop = false;
  3153. //
  3154. // checkErrorReports
  3155. //
  3156. this.checkErrorReports.AutoSize = true;
  3157. this.checkErrorReports.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3158. this.checkErrorReports.ForeColor = System.Drawing.Color.White;
  3159. this.checkErrorReports.Location = new System.Drawing.Point(8, 91);
  3160. this.checkErrorReports.Margin = new System.Windows.Forms.Padding(2);
  3161. this.checkErrorReports.Name = "checkErrorReports";
  3162. this.checkErrorReports.Size = new System.Drawing.Size(106, 23);
  3163. this.checkErrorReports.TabIndex = 44;
  3164. this.checkErrorReports.Text = "Error reports";
  3165. this.checkErrorReports.UseVisualStyleBackColor = true;
  3166. //
  3167. // checkTemp
  3168. //
  3169. this.checkTemp.AutoSize = true;
  3170. this.checkTemp.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3171. this.checkTemp.ForeColor = System.Drawing.Color.White;
  3172. this.checkTemp.Location = new System.Drawing.Point(8, 37);
  3173. this.checkTemp.Margin = new System.Windows.Forms.Padding(2);
  3174. this.checkTemp.Name = "checkTemp";
  3175. this.checkTemp.Size = new System.Drawing.Size(125, 23);
  3176. this.checkTemp.TabIndex = 36;
  3177. this.checkTemp.Text = "Temporary files";
  3178. this.checkTemp.UseVisualStyleBackColor = true;
  3179. //
  3180. // checkBin
  3181. //
  3182. this.checkBin.AutoSize = true;
  3183. this.checkBin.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3184. this.checkBin.ForeColor = System.Drawing.Color.White;
  3185. this.checkBin.Location = new System.Drawing.Point(8, 118);
  3186. this.checkBin.Margin = new System.Windows.Forms.Padding(2);
  3187. this.checkBin.Name = "checkBin";
  3188. this.checkBin.Size = new System.Drawing.Size(100, 23);
  3189. this.checkBin.TabIndex = 41;
  3190. this.checkBin.Text = "Recycle Bin";
  3191. this.checkBin.UseVisualStyleBackColor = true;
  3192. //
  3193. // checkMiniDumps
  3194. //
  3195. this.checkMiniDumps.AutoSize = true;
  3196. this.checkMiniDumps.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3197. this.checkMiniDumps.ForeColor = System.Drawing.Color.White;
  3198. this.checkMiniDumps.Location = new System.Drawing.Point(8, 64);
  3199. this.checkMiniDumps.Margin = new System.Windows.Forms.Padding(2);
  3200. this.checkMiniDumps.Name = "checkMiniDumps";
  3201. this.checkMiniDumps.Size = new System.Drawing.Size(140, 23);
  3202. this.checkMiniDumps.TabIndex = 39;
  3203. this.checkMiniDumps.Text = "BSOD Minidumps";
  3204. this.checkMiniDumps.UseVisualStyleBackColor = true;
  3205. //
  3206. // pingerTab
  3207. //
  3208. this.pingerTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3209. this.pingerTab.Controls.Add(this.netTools);
  3210. this.pingerTab.Location = new System.Drawing.Point(4, 25);
  3211. this.pingerTab.Name = "pingerTab";
  3212. this.pingerTab.Padding = new System.Windows.Forms.Padding(3);
  3213. this.pingerTab.Size = new System.Drawing.Size(974, 653);
  3214. this.pingerTab.TabIndex = 13;
  3215. this.pingerTab.Text = "Pinger";
  3216. //
  3217. // netTools
  3218. //
  3219. this.netTools.Alignment = System.Windows.Forms.TabAlignment.Bottom;
  3220. this.netTools.Controls.Add(this.tabPage1);
  3221. this.netTools.Controls.Add(this.tabPage2);
  3222. this.netTools.Dock = System.Windows.Forms.DockStyle.Fill;
  3223. this.netTools.Location = new System.Drawing.Point(3, 3);
  3224. this.netTools.Margin = new System.Windows.Forms.Padding(0);
  3225. this.netTools.Multiline = true;
  3226. this.netTools.Name = "netTools";
  3227. this.netTools.Padding = new System.Drawing.Point(0, 0);
  3228. this.netTools.SelectedIndex = 0;
  3229. this.netTools.Size = new System.Drawing.Size(968, 647);
  3230. this.netTools.TabIndex = 104;
  3231. //
  3232. // tabPage1
  3233. //
  3234. this.tabPage1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3235. this.tabPage1.Controls.Add(this.btnExport);
  3236. this.tabPage1.Controls.Add(this.copyB);
  3237. this.tabPage1.Controls.Add(this.copyIPB);
  3238. this.tabPage1.Controls.Add(this.panel7);
  3239. this.tabPage1.Controls.Add(this.lblResults);
  3240. this.tabPage1.Controls.Add(this.btnShodan);
  3241. this.tabPage1.Controls.Add(this.btnPing);
  3242. this.tabPage1.Controls.Add(this.txtPingInput);
  3243. this.tabPage1.Controls.Add(this.lblPinger);
  3244. this.tabPage1.Controls.Add(this.pingerTitle);
  3245. this.tabPage1.Location = new System.Drawing.Point(4, 4);
  3246. this.tabPage1.Name = "tabPage1";
  3247. this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
  3248. this.tabPage1.Size = new System.Drawing.Size(960, 618);
  3249. this.tabPage1.TabIndex = 0;
  3250. this.tabPage1.Text = "Pinger";
  3251. //
  3252. // btnExport
  3253. //
  3254. this.btnExport.BackColor = System.Drawing.Color.DodgerBlue;
  3255. this.btnExport.FlatAppearance.BorderSize = 0;
  3256. this.btnExport.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3257. this.btnExport.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3258. this.btnExport.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3259. this.btnExport.ForeColor = System.Drawing.Color.White;
  3260. this.btnExport.Location = new System.Drawing.Point(27, 487);
  3261. this.btnExport.Margin = new System.Windows.Forms.Padding(2);
  3262. this.btnExport.Name = "btnExport";
  3263. this.btnExport.Size = new System.Drawing.Size(136, 29);
  3264. this.btnExport.TabIndex = 93;
  3265. this.btnExport.Text = "Export...";
  3266. this.btnExport.UseVisualStyleBackColor = false;
  3267. this.btnExport.Click += new System.EventHandler(this.btnExport_Click);
  3268. //
  3269. // copyB
  3270. //
  3271. this.copyB.BackColor = System.Drawing.Color.DodgerBlue;
  3272. this.copyB.FlatAppearance.BorderSize = 0;
  3273. this.copyB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3274. this.copyB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3275. this.copyB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3276. this.copyB.ForeColor = System.Drawing.Color.White;
  3277. this.copyB.Location = new System.Drawing.Point(25, 144);
  3278. this.copyB.Margin = new System.Windows.Forms.Padding(2);
  3279. this.copyB.Name = "copyB";
  3280. this.copyB.Size = new System.Drawing.Size(185, 31);
  3281. this.copyB.TabIndex = 92;
  3282. this.copyB.Text = "Copy IP";
  3283. this.copyB.UseVisualStyleBackColor = false;
  3284. this.copyB.Click += new System.EventHandler(this.copyB_Click);
  3285. //
  3286. // copyIPB
  3287. //
  3288. this.copyIPB.BackColor = System.Drawing.Color.DodgerBlue;
  3289. this.copyIPB.FlatAppearance.BorderSize = 0;
  3290. this.copyIPB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3291. this.copyIPB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3292. this.copyIPB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3293. this.copyIPB.ForeColor = System.Drawing.Color.White;
  3294. this.copyIPB.Location = new System.Drawing.Point(214, 144);
  3295. this.copyIPB.Margin = new System.Windows.Forms.Padding(2);
  3296. this.copyIPB.Name = "copyIPB";
  3297. this.copyIPB.Size = new System.Drawing.Size(185, 31);
  3298. this.copyIPB.TabIndex = 91;
  3299. this.copyIPB.Text = "Copy";
  3300. this.copyIPB.UseVisualStyleBackColor = false;
  3301. this.copyIPB.Click += new System.EventHandler(this.copyIPB_Click);
  3302. //
  3303. // panel7
  3304. //
  3305. this.panel7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  3306. this.panel7.Controls.Add(this.listPingResults);
  3307. this.panel7.Location = new System.Drawing.Point(27, 212);
  3308. this.panel7.Name = "panel7";
  3309. this.panel7.Size = new System.Drawing.Size(371, 270);
  3310. this.panel7.TabIndex = 90;
  3311. //
  3312. // listPingResults
  3313. //
  3314. this.listPingResults.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3315. this.listPingResults.BorderStyle = System.Windows.Forms.BorderStyle.None;
  3316. this.listPingResults.Dock = System.Windows.Forms.DockStyle.Fill;
  3317. this.listPingResults.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawVariable;
  3318. this.listPingResults.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3319. this.listPingResults.ForeColor = System.Drawing.Color.White;
  3320. this.listPingResults.FormattingEnabled = true;
  3321. this.listPingResults.HorizontalScrollbar = true;
  3322. this.listPingResults.ItemHeight = 21;
  3323. this.listPingResults.Location = new System.Drawing.Point(0, 0);
  3324. this.listPingResults.Margin = new System.Windows.Forms.Padding(2);
  3325. this.listPingResults.Name = "listPingResults";
  3326. this.listPingResults.Size = new System.Drawing.Size(369, 268);
  3327. this.listPingResults.TabIndex = 79;
  3328. //
  3329. // lblResults
  3330. //
  3331. this.lblResults.AutoSize = true;
  3332. this.lblResults.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3333. this.lblResults.ForeColor = System.Drawing.Color.Silver;
  3334. this.lblResults.Location = new System.Drawing.Point(23, 192);
  3335. this.lblResults.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3336. this.lblResults.Name = "lblResults";
  3337. this.lblResults.Size = new System.Drawing.Size(54, 19);
  3338. this.lblResults.TabIndex = 89;
  3339. this.lblResults.Tag = "";
  3340. this.lblResults.Text = "Results";
  3341. //
  3342. // btnShodan
  3343. //
  3344. this.btnShodan.BackColor = System.Drawing.Color.DodgerBlue;
  3345. this.btnShodan.FlatAppearance.BorderSize = 0;
  3346. this.btnShodan.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3347. this.btnShodan.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3348. this.btnShodan.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3349. this.btnShodan.ForeColor = System.Drawing.Color.White;
  3350. this.btnShodan.Location = new System.Drawing.Point(25, 109);
  3351. this.btnShodan.Margin = new System.Windows.Forms.Padding(2);
  3352. this.btnShodan.Name = "btnShodan";
  3353. this.btnShodan.Size = new System.Drawing.Size(185, 31);
  3354. this.btnShodan.TabIndex = 88;
  3355. this.btnShodan.Text = "Check on SHODAN.io";
  3356. this.btnShodan.UseVisualStyleBackColor = false;
  3357. this.btnShodan.Click += new System.EventHandler(this.btnShodan_Click);
  3358. //
  3359. // btnPing
  3360. //
  3361. this.btnPing.BackColor = System.Drawing.Color.DodgerBlue;
  3362. this.btnPing.FlatAppearance.BorderSize = 0;
  3363. this.btnPing.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3364. this.btnPing.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3365. this.btnPing.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3366. this.btnPing.ForeColor = System.Drawing.Color.White;
  3367. this.btnPing.Location = new System.Drawing.Point(214, 109);
  3368. this.btnPing.Margin = new System.Windows.Forms.Padding(2);
  3369. this.btnPing.Name = "btnPing";
  3370. this.btnPing.Size = new System.Drawing.Size(185, 31);
  3371. this.btnPing.TabIndex = 87;
  3372. this.btnPing.Text = "Ping";
  3373. this.btnPing.UseVisualStyleBackColor = false;
  3374. this.btnPing.Click += new System.EventHandler(this.btnPing_Click);
  3375. //
  3376. // txtPingInput
  3377. //
  3378. this.txtPingInput.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3379. this.txtPingInput.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  3380. this.txtPingInput.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3381. this.txtPingInput.ForeColor = System.Drawing.Color.White;
  3382. this.txtPingInput.Location = new System.Drawing.Point(25, 76);
  3383. this.txtPingInput.Margin = new System.Windows.Forms.Padding(2);
  3384. this.txtPingInput.Name = "txtPingInput";
  3385. this.txtPingInput.Size = new System.Drawing.Size(374, 29);
  3386. this.txtPingInput.TabIndex = 85;
  3387. this.txtPingInput.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  3388. this.txtPingInput.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtPingInput_KeyDown);
  3389. //
  3390. // lblPinger
  3391. //
  3392. this.lblPinger.AutoSize = true;
  3393. this.lblPinger.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3394. this.lblPinger.ForeColor = System.Drawing.Color.Silver;
  3395. this.lblPinger.Location = new System.Drawing.Point(22, 53);
  3396. this.lblPinger.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3397. this.lblPinger.Name = "lblPinger";
  3398. this.lblPinger.Size = new System.Drawing.Size(122, 19);
  3399. this.lblPinger.TabIndex = 86;
  3400. this.lblPinger.Tag = "";
  3401. this.lblPinger.Text = "IP / Domain name";
  3402. //
  3403. // pingerTitle
  3404. //
  3405. this.pingerTitle.AutoSize = true;
  3406. this.pingerTitle.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3407. this.pingerTitle.ForeColor = System.Drawing.Color.DodgerBlue;
  3408. this.pingerTitle.Location = new System.Drawing.Point(5, 3);
  3409. this.pingerTitle.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3410. this.pingerTitle.Name = "pingerTitle";
  3411. this.pingerTitle.Size = new System.Drawing.Size(393, 28);
  3412. this.pingerTitle.TabIndex = 84;
  3413. this.pingerTitle.Tag = "themeable";
  3414. this.pingerTitle.Text = "Ping IP addresses and assess your latency";
  3415. //
  3416. // tabPage2
  3417. //
  3418. this.tabPage2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3419. this.tabPage2.Controls.Add(this.dnsTitle);
  3420. this.tabPage2.Controls.Add(this.linkDNSv6A);
  3421. this.tabPage2.Controls.Add(this.linkDNSv4A);
  3422. this.tabPage2.Controls.Add(this.linkDNSv6);
  3423. this.tabPage2.Controls.Add(this.linkDNSv4);
  3424. this.tabPage2.Controls.Add(this.label3);
  3425. this.tabPage2.Controls.Add(this.label1);
  3426. this.tabPage2.Controls.Add(this.btnOpenNetwork);
  3427. this.tabPage2.Controls.Add(this.flushCacheB);
  3428. this.tabPage2.Controls.Add(this.boxAdapter);
  3429. this.tabPage2.Controls.Add(this.boxDNS);
  3430. this.tabPage2.Location = new System.Drawing.Point(4, 4);
  3431. this.tabPage2.Name = "tabPage2";
  3432. this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
  3433. this.tabPage2.Size = new System.Drawing.Size(960, 618);
  3434. this.tabPage2.TabIndex = 1;
  3435. this.tabPage2.Text = "DNS";
  3436. //
  3437. // dnsTitle
  3438. //
  3439. this.dnsTitle.AutoSize = true;
  3440. this.dnsTitle.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3441. this.dnsTitle.ForeColor = System.Drawing.Color.DodgerBlue;
  3442. this.dnsTitle.Location = new System.Drawing.Point(5, 3);
  3443. this.dnsTitle.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3444. this.dnsTitle.Name = "dnsTitle";
  3445. this.dnsTitle.Size = new System.Drawing.Size(258, 28);
  3446. this.dnsTitle.TabIndex = 114;
  3447. this.dnsTitle.Tag = "themeable";
  3448. this.dnsTitle.Text = "Rapidly change DNS server";
  3449. //
  3450. // linkDNSv6A
  3451. //
  3452. this.linkDNSv6A.AutoSize = true;
  3453. this.linkDNSv6A.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3454. this.linkDNSv6A.ForeColor = System.Drawing.Color.DodgerBlue;
  3455. this.linkDNSv6A.LinkColor = System.Drawing.Color.DodgerBlue;
  3456. this.linkDNSv6A.Location = new System.Drawing.Point(109, 218);
  3457. this.linkDNSv6A.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3458. this.linkDNSv6A.Name = "linkDNSv6A";
  3459. this.linkDNSv6A.Size = new System.Drawing.Size(15, 20);
  3460. this.linkDNSv6A.TabIndex = 113;
  3461. this.linkDNSv6A.TabStop = true;
  3462. this.linkDNSv6A.Tag = "themeable";
  3463. this.linkDNSv6A.Text = "-";
  3464. //
  3465. // linkDNSv4A
  3466. //
  3467. this.linkDNSv4A.AutoSize = true;
  3468. this.linkDNSv4A.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3469. this.linkDNSv4A.ForeColor = System.Drawing.Color.DodgerBlue;
  3470. this.linkDNSv4A.LinkColor = System.Drawing.Color.DodgerBlue;
  3471. this.linkDNSv4A.Location = new System.Drawing.Point(108, 161);
  3472. this.linkDNSv4A.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3473. this.linkDNSv4A.Name = "linkDNSv4A";
  3474. this.linkDNSv4A.Size = new System.Drawing.Size(15, 20);
  3475. this.linkDNSv4A.TabIndex = 112;
  3476. this.linkDNSv4A.TabStop = true;
  3477. this.linkDNSv4A.Tag = "themeable";
  3478. this.linkDNSv4A.Text = "-";
  3479. //
  3480. // linkDNSv6
  3481. //
  3482. this.linkDNSv6.AutoSize = true;
  3483. this.linkDNSv6.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3484. this.linkDNSv6.ForeColor = System.Drawing.Color.DodgerBlue;
  3485. this.linkDNSv6.LinkColor = System.Drawing.Color.DodgerBlue;
  3486. this.linkDNSv6.Location = new System.Drawing.Point(109, 195);
  3487. this.linkDNSv6.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3488. this.linkDNSv6.Name = "linkDNSv6";
  3489. this.linkDNSv6.Size = new System.Drawing.Size(15, 20);
  3490. this.linkDNSv6.TabIndex = 111;
  3491. this.linkDNSv6.TabStop = true;
  3492. this.linkDNSv6.Tag = "themeable";
  3493. this.linkDNSv6.Text = "-";
  3494. //
  3495. // linkDNSv4
  3496. //
  3497. this.linkDNSv4.AutoSize = true;
  3498. this.linkDNSv4.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3499. this.linkDNSv4.ForeColor = System.Drawing.Color.DodgerBlue;
  3500. this.linkDNSv4.LinkColor = System.Drawing.Color.DodgerBlue;
  3501. this.linkDNSv4.Location = new System.Drawing.Point(109, 138);
  3502. this.linkDNSv4.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3503. this.linkDNSv4.Name = "linkDNSv4";
  3504. this.linkDNSv4.Size = new System.Drawing.Size(15, 20);
  3505. this.linkDNSv4.TabIndex = 110;
  3506. this.linkDNSv4.TabStop = true;
  3507. this.linkDNSv4.Tag = "themeable";
  3508. this.linkDNSv4.Text = "-";
  3509. //
  3510. // label3
  3511. //
  3512. this.label3.AutoSize = true;
  3513. this.label3.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3514. this.label3.ForeColor = System.Drawing.Color.Silver;
  3515. this.label3.Location = new System.Drawing.Point(27, 196);
  3516. this.label3.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3517. this.label3.Name = "label3";
  3518. this.label3.Size = new System.Drawing.Size(77, 20);
  3519. this.label3.TabIndex = 109;
  3520. this.label3.Tag = "";
  3521. this.label3.Text = "DNS IPv6:";
  3522. //
  3523. // label1
  3524. //
  3525. this.label1.AutoSize = true;
  3526. this.label1.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3527. this.label1.ForeColor = System.Drawing.Color.Silver;
  3528. this.label1.Location = new System.Drawing.Point(27, 139);
  3529. this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3530. this.label1.Name = "label1";
  3531. this.label1.Size = new System.Drawing.Size(78, 20);
  3532. this.label1.TabIndex = 108;
  3533. this.label1.Tag = "";
  3534. this.label1.Text = "DNS IPv4:";
  3535. //
  3536. // btnOpenNetwork
  3537. //
  3538. this.btnOpenNetwork.BackColor = System.Drawing.Color.DodgerBlue;
  3539. this.btnOpenNetwork.FlatAppearance.BorderSize = 0;
  3540. this.btnOpenNetwork.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3541. this.btnOpenNetwork.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3542. this.btnOpenNetwork.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3543. this.btnOpenNetwork.ForeColor = System.Drawing.Color.White;
  3544. this.btnOpenNetwork.Location = new System.Drawing.Point(31, 299);
  3545. this.btnOpenNetwork.Margin = new System.Windows.Forms.Padding(2);
  3546. this.btnOpenNetwork.Name = "btnOpenNetwork";
  3547. this.btnOpenNetwork.Size = new System.Drawing.Size(260, 29);
  3548. this.btnOpenNetwork.TabIndex = 105;
  3549. this.btnOpenNetwork.Text = "Open Network Connections";
  3550. this.btnOpenNetwork.UseVisualStyleBackColor = false;
  3551. this.btnOpenNetwork.Click += new System.EventHandler(this.btnOpenNetwork_Click);
  3552. //
  3553. // flushCacheB
  3554. //
  3555. this.flushCacheB.BackColor = System.Drawing.Color.DodgerBlue;
  3556. this.flushCacheB.FlatAppearance.BorderSize = 0;
  3557. this.flushCacheB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3558. this.flushCacheB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3559. this.flushCacheB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3560. this.flushCacheB.ForeColor = System.Drawing.Color.White;
  3561. this.flushCacheB.Location = new System.Drawing.Point(31, 266);
  3562. this.flushCacheB.Margin = new System.Windows.Forms.Padding(2);
  3563. this.flushCacheB.Name = "flushCacheB";
  3564. this.flushCacheB.Size = new System.Drawing.Size(260, 29);
  3565. this.flushCacheB.TabIndex = 104;
  3566. this.flushCacheB.Text = "Flush DNS cache";
  3567. this.flushCacheB.UseVisualStyleBackColor = false;
  3568. this.flushCacheB.Click += new System.EventHandler(this.flushCacheB_Click);
  3569. //
  3570. // boxAdapter
  3571. //
  3572. this.boxAdapter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
  3573. this.boxAdapter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3574. this.boxAdapter.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  3575. this.boxAdapter.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3576. this.boxAdapter.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3577. this.boxAdapter.ForeColor = System.Drawing.Color.White;
  3578. this.boxAdapter.FormattingEnabled = true;
  3579. this.boxAdapter.Location = new System.Drawing.Point(28, 50);
  3580. this.boxAdapter.Name = "boxAdapter";
  3581. this.boxAdapter.Size = new System.Drawing.Size(414, 29);
  3582. this.boxAdapter.TabIndex = 107;
  3583. //
  3584. // boxDNS
  3585. //
  3586. this.boxDNS.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
  3587. this.boxDNS.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3588. this.boxDNS.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  3589. this.boxDNS.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3590. this.boxDNS.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3591. this.boxDNS.ForeColor = System.Drawing.Color.White;
  3592. this.boxDNS.FormattingEnabled = true;
  3593. this.boxDNS.Items.AddRange(new object[] {
  3594. "Automatic",
  3595. "Cloudflare DNS",
  3596. "Open DNS",
  3597. "Quad9 DNS",
  3598. "Google DNS",
  3599. "Alternate DNS",
  3600. "Adguard DNS",
  3601. "CleanBrowsing",
  3602. "CleanBrowsing (adult filter)"});
  3603. this.boxDNS.Location = new System.Drawing.Point(28, 85);
  3604. this.boxDNS.Name = "boxDNS";
  3605. this.boxDNS.Size = new System.Drawing.Size(414, 29);
  3606. this.boxDNS.TabIndex = 106;
  3607. //
  3608. // hostsEditorTab
  3609. //
  3610. this.hostsEditorTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3611. this.hostsEditorTab.Controls.Add(this.panel4);
  3612. this.hostsEditorTab.Controls.Add(this.hostsTitle);
  3613. this.hostsEditorTab.Controls.Add(this.linkLocate);
  3614. this.hostsEditorTab.Location = new System.Drawing.Point(4, 25);
  3615. this.hostsEditorTab.Margin = new System.Windows.Forms.Padding(2);
  3616. this.hostsEditorTab.Name = "hostsEditorTab";
  3617. this.hostsEditorTab.Padding = new System.Windows.Forms.Padding(2);
  3618. this.hostsEditorTab.Size = new System.Drawing.Size(974, 653);
  3619. this.hostsEditorTab.TabIndex = 9;
  3620. this.hostsEditorTab.Text = "Hosts";
  3621. //
  3622. // panel4
  3623. //
  3624. this.panel4.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  3625. | System.Windows.Forms.AnchorStyles.Left)
  3626. | System.Windows.Forms.AnchorStyles.Right)));
  3627. this.panel4.Controls.Add(this.linkAdvancedEdit);
  3628. this.panel4.Controls.Add(this.linkRestoreDefault);
  3629. this.panel4.Controls.Add(this.lblLock);
  3630. this.panel4.Controls.Add(this.chkReadOnly);
  3631. this.panel4.Controls.Add(this.panelList);
  3632. this.panel4.Controls.Add(this.chkBlock);
  3633. this.panel4.Controls.Add(this.refreshHostsB);
  3634. this.panel4.Controls.Add(this.removeHostB);
  3635. this.panel4.Controls.Add(this.removeAllHostsB);
  3636. this.panel4.Controls.Add(this.addHostB);
  3637. this.panel4.Controls.Add(this.txtIP);
  3638. this.panel4.Controls.Add(this.txtDomain);
  3639. this.panel4.Controls.Add(this.lblDomain);
  3640. this.panel4.Controls.Add(this.lblIP);
  3641. this.panel4.Location = new System.Drawing.Point(6, 70);
  3642. this.panel4.Margin = new System.Windows.Forms.Padding(2);
  3643. this.panel4.Name = "panel4";
  3644. this.panel4.Size = new System.Drawing.Size(1057, 643);
  3645. this.panel4.TabIndex = 53;
  3646. //
  3647. // linkAdvancedEdit
  3648. //
  3649. this.linkAdvancedEdit.ActiveLinkColor = System.Drawing.Color.WhiteSmoke;
  3650. this.linkAdvancedEdit.AutoSize = true;
  3651. this.linkAdvancedEdit.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3652. this.linkAdvancedEdit.ForeColor = System.Drawing.Color.Silver;
  3653. this.linkAdvancedEdit.LinkColor = System.Drawing.Color.Silver;
  3654. this.linkAdvancedEdit.Location = new System.Drawing.Point(323, 338);
  3655. this.linkAdvancedEdit.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3656. this.linkAdvancedEdit.Name = "linkAdvancedEdit";
  3657. this.linkAdvancedEdit.Size = new System.Drawing.Size(132, 21);
  3658. this.linkAdvancedEdit.TabIndex = 49;
  3659. this.linkAdvancedEdit.TabStop = true;
  3660. this.linkAdvancedEdit.Tag = "";
  3661. this.linkAdvancedEdit.Text = "Advanced editor";
  3662. this.linkAdvancedEdit.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3663. this.linkAdvancedEdit.VisitedLinkColor = System.Drawing.Color.Silver;
  3664. this.linkAdvancedEdit.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel3_LinkClicked);
  3665. //
  3666. // linkRestoreDefault
  3667. //
  3668. this.linkRestoreDefault.ActiveLinkColor = System.Drawing.Color.WhiteSmoke;
  3669. this.linkRestoreDefault.AutoSize = true;
  3670. this.linkRestoreDefault.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3671. this.linkRestoreDefault.ForeColor = System.Drawing.Color.Silver;
  3672. this.linkRestoreDefault.LinkColor = System.Drawing.Color.Silver;
  3673. this.linkRestoreDefault.Location = new System.Drawing.Point(323, 369);
  3674. this.linkRestoreDefault.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3675. this.linkRestoreDefault.Name = "linkRestoreDefault";
  3676. this.linkRestoreDefault.Size = new System.Drawing.Size(123, 21);
  3677. this.linkRestoreDefault.TabIndex = 51;
  3678. this.linkRestoreDefault.TabStop = true;
  3679. this.linkRestoreDefault.Tag = "";
  3680. this.linkRestoreDefault.Text = "Restore default";
  3681. this.linkRestoreDefault.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  3682. this.linkRestoreDefault.VisitedLinkColor = System.Drawing.Color.Silver;
  3683. this.linkRestoreDefault.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel4_LinkClicked);
  3684. //
  3685. // lblLock
  3686. //
  3687. this.lblLock.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3688. this.lblLock.ForeColor = System.Drawing.Color.Silver;
  3689. this.lblLock.Location = new System.Drawing.Point(325, 182);
  3690. this.lblLock.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3691. this.lblLock.Name = "lblLock";
  3692. this.lblLock.Size = new System.Drawing.Size(315, 55);
  3693. this.lblLock.TabIndex = 62;
  3694. this.lblLock.Tag = "";
  3695. this.lblLock.Text = "Protect your HOSTS file by locking it.";
  3696. //
  3697. // chkReadOnly
  3698. //
  3699. this.chkReadOnly.AutoSize = true;
  3700. this.chkReadOnly.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3701. this.chkReadOnly.ForeColor = System.Drawing.Color.White;
  3702. this.chkReadOnly.Location = new System.Drawing.Point(329, 155);
  3703. this.chkReadOnly.Margin = new System.Windows.Forms.Padding(2);
  3704. this.chkReadOnly.Name = "chkReadOnly";
  3705. this.chkReadOnly.Size = new System.Drawing.Size(103, 25);
  3706. this.chkReadOnly.TabIndex = 61;
  3707. this.chkReadOnly.Text = "Read-only";
  3708. this.chkReadOnly.UseVisualStyleBackColor = true;
  3709. this.chkReadOnly.CheckedChanged += new System.EventHandler(this.chkReadOnly_CheckedChanged);
  3710. //
  3711. // panelList
  3712. //
  3713. this.panelList.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  3714. this.panelList.Controls.Add(this.listHostEntries);
  3715. this.panelList.Location = new System.Drawing.Point(5, 3);
  3716. this.panelList.Name = "panelList";
  3717. this.panelList.Size = new System.Drawing.Size(312, 388);
  3718. this.panelList.TabIndex = 60;
  3719. //
  3720. // listHostEntries
  3721. //
  3722. this.listHostEntries.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3723. this.listHostEntries.BorderStyle = System.Windows.Forms.BorderStyle.None;
  3724. this.listHostEntries.Dock = System.Windows.Forms.DockStyle.Fill;
  3725. this.listHostEntries.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawVariable;
  3726. this.listHostEntries.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3727. this.listHostEntries.ForeColor = System.Drawing.Color.White;
  3728. this.listHostEntries.FormattingEnabled = true;
  3729. this.listHostEntries.HorizontalScrollbar = true;
  3730. this.listHostEntries.ItemHeight = 21;
  3731. this.listHostEntries.Location = new System.Drawing.Point(0, 0);
  3732. this.listHostEntries.Margin = new System.Windows.Forms.Padding(2);
  3733. this.listHostEntries.Name = "listHostEntries";
  3734. this.listHostEntries.Size = new System.Drawing.Size(310, 386);
  3735. this.listHostEntries.TabIndex = 52;
  3736. //
  3737. // chkBlock
  3738. //
  3739. this.chkBlock.AutoSize = true;
  3740. this.chkBlock.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3741. this.chkBlock.ForeColor = System.Drawing.Color.White;
  3742. this.chkBlock.Location = new System.Drawing.Point(329, 110);
  3743. this.chkBlock.Margin = new System.Windows.Forms.Padding(2);
  3744. this.chkBlock.Name = "chkBlock";
  3745. this.chkBlock.Size = new System.Drawing.Size(69, 25);
  3746. this.chkBlock.TabIndex = 59;
  3747. this.chkBlock.Text = "Block";
  3748. this.chkBlock.UseVisualStyleBackColor = true;
  3749. this.chkBlock.CheckedChanged += new System.EventHandler(this.chkBlock_CheckedChanged);
  3750. //
  3751. // refreshHostsB
  3752. //
  3753. this.refreshHostsB.BackColor = System.Drawing.Color.DodgerBlue;
  3754. this.refreshHostsB.FlatAppearance.BorderSize = 0;
  3755. this.refreshHostsB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3756. this.refreshHostsB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3757. this.refreshHostsB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3758. this.refreshHostsB.ForeColor = System.Drawing.Color.White;
  3759. this.refreshHostsB.Location = new System.Drawing.Point(5, 395);
  3760. this.refreshHostsB.Margin = new System.Windows.Forms.Padding(2);
  3761. this.refreshHostsB.Name = "refreshHostsB";
  3762. this.refreshHostsB.Size = new System.Drawing.Size(152, 31);
  3763. this.refreshHostsB.TabIndex = 55;
  3764. this.refreshHostsB.Text = "Refresh";
  3765. this.refreshHostsB.UseVisualStyleBackColor = false;
  3766. this.refreshHostsB.Click += new System.EventHandler(this.button41_Click);
  3767. //
  3768. // removeHostB
  3769. //
  3770. this.removeHostB.BackColor = System.Drawing.Color.DodgerBlue;
  3771. this.removeHostB.FlatAppearance.BorderSize = 0;
  3772. this.removeHostB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3773. this.removeHostB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3774. this.removeHostB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3775. this.removeHostB.ForeColor = System.Drawing.Color.White;
  3776. this.removeHostB.Location = new System.Drawing.Point(161, 395);
  3777. this.removeHostB.Margin = new System.Windows.Forms.Padding(2);
  3778. this.removeHostB.Name = "removeHostB";
  3779. this.removeHostB.Size = new System.Drawing.Size(156, 31);
  3780. this.removeHostB.TabIndex = 54;
  3781. this.removeHostB.Text = "Delete";
  3782. this.removeHostB.UseVisualStyleBackColor = false;
  3783. this.removeHostB.Click += new System.EventHandler(this.button42_Click);
  3784. //
  3785. // removeAllHostsB
  3786. //
  3787. this.removeAllHostsB.BackColor = System.Drawing.Color.DodgerBlue;
  3788. this.removeAllHostsB.Enabled = false;
  3789. this.removeAllHostsB.FlatAppearance.BorderSize = 0;
  3790. this.removeAllHostsB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3791. this.removeAllHostsB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3792. this.removeAllHostsB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3793. this.removeAllHostsB.ForeColor = System.Drawing.Color.White;
  3794. this.removeAllHostsB.Location = new System.Drawing.Point(161, 430);
  3795. this.removeAllHostsB.Margin = new System.Windows.Forms.Padding(2);
  3796. this.removeAllHostsB.Name = "removeAllHostsB";
  3797. this.removeAllHostsB.Size = new System.Drawing.Size(156, 31);
  3798. this.removeAllHostsB.TabIndex = 53;
  3799. this.removeAllHostsB.Text = "Delete all";
  3800. this.removeAllHostsB.UseVisualStyleBackColor = false;
  3801. this.removeAllHostsB.Visible = false;
  3802. this.removeAllHostsB.Click += new System.EventHandler(this.button46_Click);
  3803. //
  3804. // addHostB
  3805. //
  3806. this.addHostB.BackColor = System.Drawing.Color.DodgerBlue;
  3807. this.addHostB.FlatAppearance.BorderSize = 0;
  3808. this.addHostB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3809. this.addHostB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3810. this.addHostB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3811. this.addHostB.ForeColor = System.Drawing.Color.White;
  3812. this.addHostB.Location = new System.Drawing.Point(511, 110);
  3813. this.addHostB.Margin = new System.Windows.Forms.Padding(2);
  3814. this.addHostB.Name = "addHostB";
  3815. this.addHostB.Size = new System.Drawing.Size(127, 31);
  3816. this.addHostB.TabIndex = 57;
  3817. this.addHostB.Text = "Add";
  3818. this.addHostB.UseVisualStyleBackColor = false;
  3819. this.addHostB.Click += new System.EventHandler(this.button47_Click);
  3820. //
  3821. // txtIP
  3822. //
  3823. this.txtIP.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3824. this.txtIP.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  3825. this.txtIP.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3826. this.txtIP.ForeColor = System.Drawing.Color.White;
  3827. this.txtIP.Location = new System.Drawing.Point(328, 23);
  3828. this.txtIP.Margin = new System.Windows.Forms.Padding(2);
  3829. this.txtIP.Name = "txtIP";
  3830. this.txtIP.Size = new System.Drawing.Size(310, 29);
  3831. this.txtIP.TabIndex = 0;
  3832. this.txtIP.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  3833. //
  3834. // txtDomain
  3835. //
  3836. this.txtDomain.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3837. this.txtDomain.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  3838. this.txtDomain.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3839. this.txtDomain.ForeColor = System.Drawing.Color.White;
  3840. this.txtDomain.Location = new System.Drawing.Point(328, 77);
  3841. this.txtDomain.Margin = new System.Windows.Forms.Padding(2);
  3842. this.txtDomain.Name = "txtDomain";
  3843. this.txtDomain.Size = new System.Drawing.Size(310, 29);
  3844. this.txtDomain.TabIndex = 1;
  3845. this.txtDomain.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  3846. //
  3847. // lblDomain
  3848. //
  3849. this.lblDomain.AutoSize = true;
  3850. this.lblDomain.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3851. this.lblDomain.ForeColor = System.Drawing.Color.DodgerBlue;
  3852. this.lblDomain.Location = new System.Drawing.Point(323, 54);
  3853. this.lblDomain.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3854. this.lblDomain.Name = "lblDomain";
  3855. this.lblDomain.Size = new System.Drawing.Size(66, 21);
  3856. this.lblDomain.TabIndex = 55;
  3857. this.lblDomain.Tag = "themeable";
  3858. this.lblDomain.Text = "Domain";
  3859. //
  3860. // lblIP
  3861. //
  3862. this.lblIP.AutoSize = true;
  3863. this.lblIP.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3864. this.lblIP.ForeColor = System.Drawing.Color.DodgerBlue;
  3865. this.lblIP.Location = new System.Drawing.Point(323, 0);
  3866. this.lblIP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3867. this.lblIP.Name = "lblIP";
  3868. this.lblIP.Size = new System.Drawing.Size(85, 21);
  3869. this.lblIP.TabIndex = 53;
  3870. this.lblIP.Tag = "themeable";
  3871. this.lblIP.Text = "IP address";
  3872. //
  3873. // hostsTitle
  3874. //
  3875. this.hostsTitle.AutoSize = true;
  3876. this.hostsTitle.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3877. this.hostsTitle.ForeColor = System.Drawing.Color.DodgerBlue;
  3878. this.hostsTitle.Location = new System.Drawing.Point(6, 10);
  3879. this.hostsTitle.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3880. this.hostsTitle.Name = "hostsTitle";
  3881. this.hostsTitle.Size = new System.Drawing.Size(182, 28);
  3882. this.hostsTitle.TabIndex = 3;
  3883. this.hostsTitle.Tag = "themeable";
  3884. this.hostsTitle.Text = "Edit your hosts file";
  3885. //
  3886. // linkLocate
  3887. //
  3888. this.linkLocate.ActiveLinkColor = System.Drawing.Color.WhiteSmoke;
  3889. this.linkLocate.AutoSize = true;
  3890. this.linkLocate.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3891. this.linkLocate.ForeColor = System.Drawing.Color.Silver;
  3892. this.linkLocate.LinkColor = System.Drawing.Color.Silver;
  3893. this.linkLocate.Location = new System.Drawing.Point(8, 38);
  3894. this.linkLocate.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3895. this.linkLocate.Name = "linkLocate";
  3896. this.linkLocate.Size = new System.Drawing.Size(59, 21);
  3897. this.linkLocate.TabIndex = 47;
  3898. this.linkLocate.TabStop = true;
  3899. this.linkLocate.Tag = "";
  3900. this.linkLocate.Text = "Locate";
  3901. this.linkLocate.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3902. this.linkLocate.VisitedLinkColor = System.Drawing.Color.Silver;
  3903. this.linkLocate.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel2_LinkClicked);
  3904. //
  3905. // registryFixerTab
  3906. //
  3907. this.registryFixerTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3908. this.registryFixerTab.Controls.Add(this.panel2);
  3909. this.registryFixerTab.Controls.Add(this.registryTitle);
  3910. this.registryFixerTab.Location = new System.Drawing.Point(4, 25);
  3911. this.registryFixerTab.Margin = new System.Windows.Forms.Padding(2);
  3912. this.registryFixerTab.Name = "registryFixerTab";
  3913. this.registryFixerTab.Padding = new System.Windows.Forms.Padding(2);
  3914. this.registryFixerTab.Size = new System.Drawing.Size(974, 653);
  3915. this.registryFixerTab.TabIndex = 8;
  3916. this.registryFixerTab.Text = "Registry";
  3917. //
  3918. // panel2
  3919. //
  3920. this.panel2.Controls.Add(this.regFixB);
  3921. this.panel2.Controls.Add(this.regLbl);
  3922. this.panel2.Controls.Add(this.checkRestartExplorer);
  3923. this.panel2.Controls.Add(this.checkRegistryEditor);
  3924. this.panel2.Controls.Add(this.checkEnableAll);
  3925. this.panel2.Controls.Add(this.checkContextMenu);
  3926. this.panel2.Controls.Add(this.checkTaskManager);
  3927. this.panel2.Controls.Add(this.checkCommandPrompt);
  3928. this.panel2.Controls.Add(this.checkFirewall);
  3929. this.panel2.Controls.Add(this.checkRunDialog);
  3930. this.panel2.Controls.Add(this.checkFolderOptions);
  3931. this.panel2.Controls.Add(this.checkControlPanel);
  3932. this.panel2.Location = new System.Drawing.Point(11, 40);
  3933. this.panel2.Margin = new System.Windows.Forms.Padding(2);
  3934. this.panel2.Name = "panel2";
  3935. this.panel2.Size = new System.Drawing.Size(755, 286);
  3936. this.panel2.TabIndex = 48;
  3937. //
  3938. // regFixB
  3939. //
  3940. this.regFixB.BackColor = System.Drawing.Color.DodgerBlue;
  3941. this.regFixB.FlatAppearance.BorderSize = 0;
  3942. this.regFixB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3943. this.regFixB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3944. this.regFixB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3945. this.regFixB.ForeColor = System.Drawing.Color.White;
  3946. this.regFixB.Location = new System.Drawing.Point(29, 252);
  3947. this.regFixB.Margin = new System.Windows.Forms.Padding(2);
  3948. this.regFixB.Name = "regFixB";
  3949. this.regFixB.Size = new System.Drawing.Size(154, 31);
  3950. this.regFixB.TabIndex = 49;
  3951. this.regFixB.Text = "Fix";
  3952. this.regFixB.UseVisualStyleBackColor = false;
  3953. this.regFixB.Click += new System.EventHandler(this.button33_Click);
  3954. //
  3955. // regLbl
  3956. //
  3957. this.regLbl.AutoSize = true;
  3958. 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)));
  3959. this.regLbl.ForeColor = System.Drawing.Color.Silver;
  3960. this.regLbl.Location = new System.Drawing.Point(94, 208);
  3961. this.regLbl.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3962. this.regLbl.Name = "regLbl";
  3963. this.regLbl.Size = new System.Drawing.Size(236, 21);
  3964. this.regLbl.TabIndex = 51;
  3965. this.regLbl.Tag = "";
  3966. this.regLbl.Text = "(some changes might need this)";
  3967. this.regLbl.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  3968. //
  3969. // checkRestartExplorer
  3970. //
  3971. this.checkRestartExplorer.AutoSize = true;
  3972. this.checkRestartExplorer.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3973. this.checkRestartExplorer.ForeColor = System.Drawing.Color.White;
  3974. this.checkRestartExplorer.Location = new System.Drawing.Point(29, 181);
  3975. this.checkRestartExplorer.Margin = new System.Windows.Forms.Padding(2);
  3976. this.checkRestartExplorer.Name = "checkRestartExplorer";
  3977. this.checkRestartExplorer.Size = new System.Drawing.Size(306, 25);
  3978. this.checkRestartExplorer.TabIndex = 50;
  3979. this.checkRestartExplorer.Tag = "";
  3980. this.checkRestartExplorer.Text = "Also restart Explorer to apply changes";
  3981. this.checkRestartExplorer.UseVisualStyleBackColor = true;
  3982. //
  3983. // checkRegistryEditor
  3984. //
  3985. this.checkRegistryEditor.AutoSize = true;
  3986. this.checkRegistryEditor.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3987. this.checkRegistryEditor.ForeColor = System.Drawing.Color.White;
  3988. this.checkRegistryEditor.Location = new System.Drawing.Point(291, 136);
  3989. this.checkRegistryEditor.Margin = new System.Windows.Forms.Padding(2);
  3990. this.checkRegistryEditor.Name = "checkRegistryEditor";
  3991. this.checkRegistryEditor.Size = new System.Drawing.Size(138, 25);
  3992. this.checkRegistryEditor.TabIndex = 38;
  3993. this.checkRegistryEditor.Text = "Registry Editor";
  3994. this.checkRegistryEditor.UseVisualStyleBackColor = true;
  3995. //
  3996. // checkEnableAll
  3997. //
  3998. this.checkEnableAll.AutoSize = true;
  3999. this.checkEnableAll.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4000. this.checkEnableAll.ForeColor = System.Drawing.Color.White;
  4001. this.checkEnableAll.Location = new System.Drawing.Point(29, 14);
  4002. this.checkEnableAll.Margin = new System.Windows.Forms.Padding(2);
  4003. this.checkEnableAll.Name = "checkEnableAll";
  4004. this.checkEnableAll.Size = new System.Drawing.Size(97, 25);
  4005. this.checkEnableAll.TabIndex = 35;
  4006. this.checkEnableAll.Tag = "";
  4007. this.checkEnableAll.Text = "Enable all";
  4008. this.checkEnableAll.UseVisualStyleBackColor = true;
  4009. this.checkEnableAll.CheckedChanged += new System.EventHandler(this.checkEnableAll_CheckedChanged);
  4010. //
  4011. // checkContextMenu
  4012. //
  4013. this.checkContextMenu.AutoSize = true;
  4014. this.checkContextMenu.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4015. this.checkContextMenu.ForeColor = System.Drawing.Color.White;
  4016. this.checkContextMenu.Location = new System.Drawing.Point(291, 75);
  4017. this.checkContextMenu.Margin = new System.Windows.Forms.Padding(2);
  4018. this.checkContextMenu.Name = "checkContextMenu";
  4019. this.checkContextMenu.Size = new System.Drawing.Size(151, 25);
  4020. this.checkContextMenu.TabIndex = 43;
  4021. this.checkContextMenu.Text = "Right Click menu";
  4022. this.checkContextMenu.UseVisualStyleBackColor = true;
  4023. //
  4024. // checkTaskManager
  4025. //
  4026. this.checkTaskManager.AutoSize = true;
  4027. this.checkTaskManager.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4028. this.checkTaskManager.ForeColor = System.Drawing.Color.White;
  4029. this.checkTaskManager.Location = new System.Drawing.Point(55, 45);
  4030. this.checkTaskManager.Margin = new System.Windows.Forms.Padding(2);
  4031. this.checkTaskManager.Name = "checkTaskManager";
  4032. this.checkTaskManager.Size = new System.Drawing.Size(128, 25);
  4033. this.checkTaskManager.TabIndex = 36;
  4034. this.checkTaskManager.Text = "Task Manager";
  4035. this.checkTaskManager.UseVisualStyleBackColor = true;
  4036. //
  4037. // checkCommandPrompt
  4038. //
  4039. this.checkCommandPrompt.AutoSize = true;
  4040. this.checkCommandPrompt.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4041. this.checkCommandPrompt.ForeColor = System.Drawing.Color.White;
  4042. this.checkCommandPrompt.Location = new System.Drawing.Point(55, 75);
  4043. this.checkCommandPrompt.Margin = new System.Windows.Forms.Padding(2);
  4044. this.checkCommandPrompt.Name = "checkCommandPrompt";
  4045. this.checkCommandPrompt.Size = new System.Drawing.Size(163, 25);
  4046. this.checkCommandPrompt.TabIndex = 42;
  4047. this.checkCommandPrompt.Text = "Command Prompt";
  4048. this.checkCommandPrompt.UseVisualStyleBackColor = true;
  4049. //
  4050. // checkFirewall
  4051. //
  4052. this.checkFirewall.AutoSize = true;
  4053. this.checkFirewall.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4054. this.checkFirewall.ForeColor = System.Drawing.Color.White;
  4055. this.checkFirewall.Location = new System.Drawing.Point(291, 106);
  4056. this.checkFirewall.Margin = new System.Windows.Forms.Padding(2);
  4057. this.checkFirewall.Name = "checkFirewall";
  4058. this.checkFirewall.Size = new System.Drawing.Size(155, 25);
  4059. this.checkFirewall.TabIndex = 37;
  4060. this.checkFirewall.Text = "Windows Firewall";
  4061. this.checkFirewall.UseVisualStyleBackColor = true;
  4062. //
  4063. // checkRunDialog
  4064. //
  4065. this.checkRunDialog.AutoSize = true;
  4066. this.checkRunDialog.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4067. this.checkRunDialog.ForeColor = System.Drawing.Color.White;
  4068. this.checkRunDialog.Location = new System.Drawing.Point(291, 45);
  4069. this.checkRunDialog.Margin = new System.Windows.Forms.Padding(2);
  4070. this.checkRunDialog.Name = "checkRunDialog";
  4071. this.checkRunDialog.Size = new System.Drawing.Size(108, 25);
  4072. this.checkRunDialog.TabIndex = 41;
  4073. this.checkRunDialog.Text = "Run Dialog";
  4074. this.checkRunDialog.UseVisualStyleBackColor = true;
  4075. //
  4076. // checkFolderOptions
  4077. //
  4078. this.checkFolderOptions.AutoSize = true;
  4079. this.checkFolderOptions.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4080. this.checkFolderOptions.ForeColor = System.Drawing.Color.White;
  4081. this.checkFolderOptions.Location = new System.Drawing.Point(55, 136);
  4082. this.checkFolderOptions.Margin = new System.Windows.Forms.Padding(2);
  4083. this.checkFolderOptions.Name = "checkFolderOptions";
  4084. this.checkFolderOptions.Size = new System.Drawing.Size(138, 25);
  4085. this.checkFolderOptions.TabIndex = 39;
  4086. this.checkFolderOptions.Text = "Folder Options";
  4087. this.checkFolderOptions.UseVisualStyleBackColor = true;
  4088. //
  4089. // checkControlPanel
  4090. //
  4091. this.checkControlPanel.AutoSize = true;
  4092. this.checkControlPanel.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4093. this.checkControlPanel.ForeColor = System.Drawing.Color.White;
  4094. this.checkControlPanel.Location = new System.Drawing.Point(55, 106);
  4095. this.checkControlPanel.Margin = new System.Windows.Forms.Padding(2);
  4096. this.checkControlPanel.Name = "checkControlPanel";
  4097. this.checkControlPanel.Size = new System.Drawing.Size(127, 25);
  4098. this.checkControlPanel.TabIndex = 40;
  4099. this.checkControlPanel.Text = "Control Panel";
  4100. this.checkControlPanel.UseVisualStyleBackColor = true;
  4101. //
  4102. // registryTitle
  4103. //
  4104. this.registryTitle.AutoSize = true;
  4105. this.registryTitle.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4106. this.registryTitle.ForeColor = System.Drawing.Color.DodgerBlue;
  4107. this.registryTitle.Location = new System.Drawing.Point(6, 10);
  4108. this.registryTitle.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  4109. this.registryTitle.Name = "registryTitle";
  4110. this.registryTitle.Size = new System.Drawing.Size(260, 28);
  4111. this.registryTitle.TabIndex = 47;
  4112. this.registryTitle.Tag = "themeable";
  4113. this.registryTitle.Text = "Fix common registry issues";
  4114. //
  4115. // indiciumTab
  4116. //
  4117. this.indiciumTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  4118. this.indiciumTab.Controls.Add(this.panel12);
  4119. this.indiciumTab.Controls.Add(this.panel11);
  4120. this.indiciumTab.Location = new System.Drawing.Point(4, 25);
  4121. this.indiciumTab.Name = "indiciumTab";
  4122. this.indiciumTab.Padding = new System.Windows.Forms.Padding(3);
  4123. this.indiciumTab.Size = new System.Drawing.Size(974, 653);
  4124. this.indiciumTab.TabIndex = 14;
  4125. this.indiciumTab.Text = "Hardware";
  4126. //
  4127. // panel12
  4128. //
  4129. this.panel12.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4130. this.panel12.Controls.Add(this.specsTree);
  4131. this.panel12.Dock = System.Windows.Forms.DockStyle.Fill;
  4132. this.panel12.Location = new System.Drawing.Point(3, 38);
  4133. this.panel12.Name = "panel12";
  4134. this.panel12.Size = new System.Drawing.Size(968, 612);
  4135. this.panel12.TabIndex = 2;
  4136. //
  4137. // specsTree
  4138. //
  4139. this.specsTree.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  4140. this.specsTree.BorderStyle = System.Windows.Forms.BorderStyle.None;
  4141. this.specsTree.ContextMenuStrip = this.indiciumMenu;
  4142. this.specsTree.Dock = System.Windows.Forms.DockStyle.Fill;
  4143. this.specsTree.DrawMode = System.Windows.Forms.TreeViewDrawMode.OwnerDrawAll;
  4144. this.specsTree.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4145. this.specsTree.ForeColor = System.Drawing.Color.White;
  4146. this.specsTree.Location = new System.Drawing.Point(0, 0);
  4147. this.specsTree.Name = "specsTree";
  4148. treeNode1.ImageIndex = 0;
  4149. treeNode1.Name = "cpu";
  4150. treeNode1.SelectedImageIndex = 0;
  4151. treeNode1.Text = "Processors";
  4152. treeNode2.ImageIndex = 1;
  4153. treeNode2.Name = "ram";
  4154. treeNode2.SelectedImageIndex = 1;
  4155. treeNode2.Text = "Memory";
  4156. treeNode3.ImageIndex = 2;
  4157. treeNode3.Name = "gpu";
  4158. treeNode3.SelectedImageIndex = 2;
  4159. treeNode3.Text = "Graphics";
  4160. treeNode4.ImageIndex = 3;
  4161. treeNode4.Name = "mobo";
  4162. treeNode4.SelectedImageIndex = 3;
  4163. treeNode4.Text = "Motherboard";
  4164. treeNode5.ImageIndex = 4;
  4165. treeNode5.Name = "disk";
  4166. treeNode5.SelectedImageIndex = 4;
  4167. treeNode5.Text = "Storage";
  4168. treeNode6.ImageIndex = 5;
  4169. treeNode6.Name = "inet";
  4170. treeNode6.SelectedImageIndex = 5;
  4171. treeNode6.Text = "Network Adapters";
  4172. treeNode7.ImageIndex = 6;
  4173. treeNode7.Name = "audio";
  4174. treeNode7.SelectedImageIndex = 6;
  4175. treeNode7.Text = "Audio";
  4176. treeNode8.ImageIndex = 7;
  4177. treeNode8.Name = "dev";
  4178. treeNode8.SelectedImageIndex = 7;
  4179. treeNode8.Text = "Peripherals";
  4180. this.specsTree.Nodes.AddRange(new System.Windows.Forms.TreeNode[] {
  4181. treeNode1,
  4182. treeNode2,
  4183. treeNode3,
  4184. treeNode4,
  4185. treeNode5,
  4186. treeNode6,
  4187. treeNode7,
  4188. treeNode8});
  4189. this.specsTree.Size = new System.Drawing.Size(966, 610);
  4190. this.specsTree.TabIndex = 0;
  4191. this.specsTree.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.specsTree_NodeMouseClick);
  4192. //
  4193. // indiciumMenu
  4194. //
  4195. this.indiciumMenu.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(10)))), ((int)(((byte)(10)))), ((int)(((byte)(10)))));
  4196. this.indiciumMenu.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4197. this.indiciumMenu.ImageScalingSize = new System.Drawing.Size(20, 20);
  4198. this.indiciumMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  4199. this.toolHWCopy,
  4200. this.toolHWGoogle,
  4201. this.toolHWDuck});
  4202. this.indiciumMenu.Name = "launcherMenu";
  4203. this.indiciumMenu.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
  4204. this.indiciumMenu.ShowImageMargin = false;
  4205. this.indiciumMenu.Size = new System.Drawing.Size(223, 76);
  4206. //
  4207. // toolHWCopy
  4208. //
  4209. this.toolHWCopy.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4210. this.toolHWCopy.ForeColor = System.Drawing.Color.White;
  4211. this.toolHWCopy.Name = "toolHWCopy";
  4212. this.toolHWCopy.Size = new System.Drawing.Size(222, 24);
  4213. this.toolHWCopy.Text = "Copy";
  4214. this.toolHWCopy.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal;
  4215. this.toolHWCopy.Click += new System.EventHandler(this.toolStripMenuItem1_Click);
  4216. //
  4217. // toolHWGoogle
  4218. //
  4219. this.toolHWGoogle.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4220. this.toolHWGoogle.ForeColor = System.Drawing.Color.White;
  4221. this.toolHWGoogle.Name = "toolHWGoogle";
  4222. this.toolHWGoogle.Size = new System.Drawing.Size(222, 24);
  4223. this.toolHWGoogle.Text = "Search with Google...";
  4224. this.toolHWGoogle.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal;
  4225. this.toolHWGoogle.Click += new System.EventHandler(this.toolStripMenuItem2_Click);
  4226. //
  4227. // toolHWDuck
  4228. //
  4229. this.toolHWDuck.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4230. this.toolHWDuck.ForeColor = System.Drawing.Color.White;
  4231. this.toolHWDuck.Name = "toolHWDuck";
  4232. this.toolHWDuck.Size = new System.Drawing.Size(222, 24);
  4233. this.toolHWDuck.Text = "Search with DuckDuckGo...";
  4234. this.toolHWDuck.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal;
  4235. this.toolHWDuck.Click += new System.EventHandler(this.toolStripMenuItem3_Click);
  4236. //
  4237. // panel11
  4238. //
  4239. this.panel11.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4240. this.panel11.Controls.Add(this.btnCopyHW);
  4241. this.panel11.Controls.Add(this.btnSaveHW);
  4242. this.panel11.Controls.Add(this.hwDetailed);
  4243. this.panel11.Dock = System.Windows.Forms.DockStyle.Top;
  4244. this.panel11.Location = new System.Drawing.Point(3, 3);
  4245. this.panel11.Name = "panel11";
  4246. this.panel11.Size = new System.Drawing.Size(968, 35);
  4247. this.panel11.TabIndex = 1;
  4248. //
  4249. // btnCopyHW
  4250. //
  4251. this.btnCopyHW.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  4252. this.btnCopyHW.BackColor = System.Drawing.Color.DodgerBlue;
  4253. this.btnCopyHW.FlatAppearance.BorderSize = 0;
  4254. this.btnCopyHW.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  4255. this.btnCopyHW.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  4256. this.btnCopyHW.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  4257. this.btnCopyHW.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4258. this.btnCopyHW.ForeColor = System.Drawing.Color.White;
  4259. this.btnCopyHW.Location = new System.Drawing.Point(817, 4);
  4260. this.btnCopyHW.Margin = new System.Windows.Forms.Padding(2);
  4261. this.btnCopyHW.Name = "btnCopyHW";
  4262. this.btnCopyHW.Size = new System.Drawing.Size(146, 24);
  4263. this.btnCopyHW.TabIndex = 163;
  4264. this.btnCopyHW.Text = "Copy";
  4265. this.btnCopyHW.UseVisualStyleBackColor = false;
  4266. this.btnCopyHW.Click += new System.EventHandler(this.btnCopyHW_Click);
  4267. //
  4268. // btnSaveHW
  4269. //
  4270. this.btnSaveHW.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  4271. this.btnSaveHW.BackColor = System.Drawing.Color.DodgerBlue;
  4272. this.btnSaveHW.FlatAppearance.BorderSize = 0;
  4273. this.btnSaveHW.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  4274. this.btnSaveHW.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  4275. this.btnSaveHW.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  4276. this.btnSaveHW.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4277. this.btnSaveHW.ForeColor = System.Drawing.Color.White;
  4278. this.btnSaveHW.Location = new System.Drawing.Point(667, 4);
  4279. this.btnSaveHW.Margin = new System.Windows.Forms.Padding(2);
  4280. this.btnSaveHW.Name = "btnSaveHW";
  4281. this.btnSaveHW.Size = new System.Drawing.Size(146, 24);
  4282. this.btnSaveHW.TabIndex = 162;
  4283. this.btnSaveHW.Text = "Save";
  4284. this.btnSaveHW.UseVisualStyleBackColor = false;
  4285. this.btnSaveHW.Click += new System.EventHandler(this.btnSaveHW_Click);
  4286. //
  4287. // hwDetailed
  4288. //
  4289. this.hwDetailed.AccessibleName = "Detailed View";
  4290. this.hwDetailed.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  4291. this.hwDetailed.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  4292. this.hwDetailed.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4293. this.hwDetailed.ForeColor = System.Drawing.Color.White;
  4294. this.hwDetailed.LabelText = "Detailed View";
  4295. this.hwDetailed.Location = new System.Drawing.Point(5, 4);
  4296. this.hwDetailed.Margin = new System.Windows.Forms.Padding(6);
  4297. this.hwDetailed.Name = "hwDetailed";
  4298. this.hwDetailed.Size = new System.Drawing.Size(374, 24);
  4299. this.hwDetailed.TabIndex = 89;
  4300. this.hwDetailed.Tag = "themeable";
  4301. this.hwDetailed.ToggleChecked = true;
  4302. this.hwDetailed.ToggleClicked += new System.EventHandler(this.hwDetailed_ToggleClicked);
  4303. //
  4304. // integratorTab
  4305. //
  4306. this.integratorTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  4307. this.integratorTab.Controls.Add(this.synapse);
  4308. this.integratorTab.Location = new System.Drawing.Point(4, 25);
  4309. this.integratorTab.Margin = new System.Windows.Forms.Padding(2);
  4310. this.integratorTab.Name = "integratorTab";
  4311. this.integratorTab.Padding = new System.Windows.Forms.Padding(2);
  4312. this.integratorTab.Size = new System.Drawing.Size(974, 653);
  4313. this.integratorTab.TabIndex = 10;
  4314. this.integratorTab.Text = "Integrator";
  4315. //
  4316. // synapse
  4317. //
  4318. this.synapse.Alignment = System.Windows.Forms.TabAlignment.Bottom;
  4319. this.synapse.Controls.Add(this.integratorInfoTab);
  4320. this.synapse.Controls.Add(this.tabPage8);
  4321. this.synapse.Controls.Add(this.tabPage9);
  4322. this.synapse.Controls.Add(this.tabPage10);
  4323. this.synapse.Controls.Add(this.tabPage11);
  4324. this.synapse.Dock = System.Windows.Forms.DockStyle.Fill;
  4325. this.synapse.Location = new System.Drawing.Point(2, 2);
  4326. this.synapse.Margin = new System.Windows.Forms.Padding(2);
  4327. this.synapse.Multiline = true;
  4328. this.synapse.Name = "synapse";
  4329. this.synapse.Padding = new System.Drawing.Point(0, 0);
  4330. this.synapse.SelectedIndex = 0;
  4331. this.synapse.Size = new System.Drawing.Size(970, 649);
  4332. this.synapse.TabIndex = 0;
  4333. //
  4334. // integratorInfoTab
  4335. //
  4336. this.integratorInfoTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  4337. this.integratorInfoTab.Controls.Add(this.integrator7);
  4338. this.integratorInfoTab.Controls.Add(this.integrator6);
  4339. this.integratorInfoTab.Controls.Add(this.integrator5);
  4340. this.integratorInfoTab.Controls.Add(this.integrator4);
  4341. this.integratorInfoTab.Controls.Add(this.integrator3);
  4342. this.integratorInfoTab.Controls.Add(this.integrator2);
  4343. this.integratorInfoTab.Controls.Add(this.integrator1);
  4344. this.integratorInfoTab.Location = new System.Drawing.Point(4, 4);
  4345. this.integratorInfoTab.Margin = new System.Windows.Forms.Padding(2);
  4346. this.integratorInfoTab.Name = "integratorInfoTab";
  4347. this.integratorInfoTab.Padding = new System.Windows.Forms.Padding(2);
  4348. this.integratorInfoTab.Size = new System.Drawing.Size(962, 620);
  4349. this.integratorInfoTab.TabIndex = 0;
  4350. this.integratorInfoTab.Text = "Info";
  4351. //
  4352. // integrator7
  4353. //
  4354. this.integrator7.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4355. this.integrator7.ForeColor = System.Drawing.Color.Silver;
  4356. this.integrator7.Location = new System.Drawing.Point(6, 225);
  4357. this.integrator7.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  4358. this.integrator7.Name = "integrator7";
  4359. this.integrator7.Size = new System.Drawing.Size(763, 309);
  4360. this.integrator7.TabIndex = 10;
  4361. this.integrator7.Tag = "";
  4362. this.integrator7.Text = resources.GetString("integrator7.Text");
  4363. //
  4364. // integrator6
  4365. //
  4366. this.integrator6.AutoSize = true;
  4367. this.integrator6.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4368. this.integrator6.ForeColor = System.Drawing.Color.Silver;
  4369. this.integrator6.Location = new System.Drawing.Point(38, 183);
  4370. this.integrator6.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  4371. this.integrator6.Name = "integrator6";
  4372. this.integrator6.Size = new System.Drawing.Size(103, 21);
  4373. this.integrator6.TabIndex = 9;
  4374. this.integrator6.Tag = "";
  4375. this.integrator6.Text = "• Commands";
  4376. //
  4377. // integrator5
  4378. //
  4379. this.integrator5.AutoSize = true;
  4380. this.integrator5.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4381. this.integrator5.ForeColor = System.Drawing.Color.Silver;
  4382. this.integrator5.Location = new System.Drawing.Point(38, 158);
  4383. this.integrator5.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  4384. this.integrator5.Name = "integrator5";
  4385. this.integrator5.Size = new System.Drawing.Size(133, 21);
  4386. this.integrator5.TabIndex = 8;
  4387. this.integrator5.Tag = "";
  4388. this.integrator5.Text = "• Any type of file";
  4389. //
  4390. // integrator4
  4391. //
  4392. this.integrator4.AutoSize = true;
  4393. this.integrator4.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4394. this.integrator4.ForeColor = System.Drawing.Color.Silver;
  4395. this.integrator4.Location = new System.Drawing.Point(38, 132);
  4396. this.integrator4.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  4397. this.integrator4.Name = "integrator4";
  4398. this.integrator4.Size = new System.Drawing.Size(156, 21);
  4399. this.integrator4.TabIndex = 7;
  4400. this.integrator4.Tag = "";
  4401. this.integrator4.Text = "• Links to webpages";
  4402. //
  4403. // integrator3
  4404. //
  4405. this.integrator3.AutoSize = true;
  4406. this.integrator3.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4407. this.integrator3.ForeColor = System.Drawing.Color.Silver;
  4408. this.integrator3.Location = new System.Drawing.Point(38, 106);
  4409. this.integrator3.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  4410. this.integrator3.Name = "integrator3";
  4411. this.integrator3.Size = new System.Drawing.Size(167, 21);
  4412. this.integrator3.TabIndex = 6;
  4413. this.integrator3.Tag = "";
  4414. this.integrator3.Text = "• Shortcuts to folders";
  4415. //
  4416. // integrator2
  4417. //
  4418. this.integrator2.AutoSize = true;
  4419. this.integrator2.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4420. this.integrator2.ForeColor = System.Drawing.Color.Silver;
  4421. this.integrator2.Location = new System.Drawing.Point(38, 81);
  4422. this.integrator2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  4423. this.integrator2.Name = "integrator2";
  4424. this.integrator2.Size = new System.Drawing.Size(117, 21);
  4425. this.integrator2.TabIndex = 5;
  4426. this.integrator2.Tag = "";
  4427. this.integrator2.Text = "• Any program";
  4428. //
  4429. // integrator1
  4430. //
  4431. this.integrator1.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4432. this.integrator1.ForeColor = System.Drawing.Color.Silver;
  4433. this.integrator1.Location = new System.Drawing.Point(6, 10);
  4434. this.integrator1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  4435. this.integrator1.Name = "integrator1";
  4436. this.integrator1.Size = new System.Drawing.Size(811, 61);
  4437. this.integrator1.TabIndex = 4;
  4438. this.integrator1.Tag = "";
  4439. this.integrator1.Text = "Integrator is able to add fully-customized items in Desktop right-click menu:";
  4440. //
  4441. // tabPage8
  4442. //
  4443. this.tabPage8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  4444. this.tabPage8.Controls.Add(this.btnAddItem);
  4445. this.tabPage8.Controls.Add(this.itemnamegroup);
  4446. this.tabPage8.Controls.Add(this.security);
  4447. this.tabPage8.Controls.Add(this.itemposition);
  4448. this.tabPage8.Controls.Add(this.icontoaddgroup);
  4449. this.tabPage8.Controls.Add(this.itemtoaddgroup);
  4450. this.tabPage8.Controls.Add(this.itemtype);
  4451. this.tabPage8.Controls.Add(this.addItemL);
  4452. this.tabPage8.Location = new System.Drawing.Point(4, 4);
  4453. this.tabPage8.Margin = new System.Windows.Forms.Padding(2);
  4454. this.tabPage8.Name = "tabPage8";
  4455. this.tabPage8.Padding = new System.Windows.Forms.Padding(2);
  4456. this.tabPage8.Size = new System.Drawing.Size(962, 620);
  4457. this.tabPage8.TabIndex = 1;
  4458. this.tabPage8.Text = "Add/Modify";
  4459. //
  4460. // btnAddItem
  4461. //
  4462. this.btnAddItem.BackColor = System.Drawing.Color.DodgerBlue;
  4463. this.btnAddItem.FlatAppearance.BorderSize = 0;
  4464. this.btnAddItem.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  4465. this.btnAddItem.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  4466. this.btnAddItem.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  4467. this.btnAddItem.ForeColor = System.Drawing.Color.White;
  4468. this.btnAddItem.Location = new System.Drawing.Point(436, 473);
  4469. this.btnAddItem.Margin = new System.Windows.Forms.Padding(2);
  4470. this.btnAddItem.Name = "btnAddItem";
  4471. this.btnAddItem.Size = new System.Drawing.Size(202, 31);
  4472. this.btnAddItem.TabIndex = 85;
  4473. this.btnAddItem.Text = "Add/Modify";
  4474. this.btnAddItem.UseVisualStyleBackColor = false;
  4475. this.btnAddItem.Click += new System.EventHandler(this.btnAddItem_Click);
  4476. //
  4477. // itemnamegroup
  4478. //
  4479. this.itemnamegroup.Controls.Add(this.txtItemName);
  4480. this.itemnamegroup.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4481. this.itemnamegroup.ForeColor = System.Drawing.Color.Silver;
  4482. this.itemnamegroup.Location = new System.Drawing.Point(11, 403);
  4483. this.itemnamegroup.Margin = new System.Windows.Forms.Padding(2);
  4484. this.itemnamegroup.Name = "itemnamegroup";
  4485. this.itemnamegroup.Padding = new System.Windows.Forms.Padding(2);
  4486. this.itemnamegroup.Size = new System.Drawing.Size(627, 66);
  4487. this.itemnamegroup.TabIndex = 84;
  4488. this.itemnamegroup.TabStop = false;
  4489. this.itemnamegroup.Text = "Item name in menu:";
  4490. //
  4491. // txtItemName
  4492. //
  4493. this.txtItemName.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  4494. this.txtItemName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4495. this.txtItemName.ForeColor = System.Drawing.Color.White;
  4496. this.txtItemName.Location = new System.Drawing.Point(11, 26);
  4497. this.txtItemName.Margin = new System.Windows.Forms.Padding(2);
  4498. this.txtItemName.Name = "txtItemName";
  4499. this.txtItemName.Size = new System.Drawing.Size(476, 29);
  4500. this.txtItemName.TabIndex = 82;
  4501. //
  4502. // security
  4503. //
  4504. this.security.Controls.Add(this.checkShift);
  4505. this.security.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4506. this.security.ForeColor = System.Drawing.Color.Silver;
  4507. this.security.Location = new System.Drawing.Point(11, 338);
  4508. this.security.Margin = new System.Windows.Forms.Padding(2);
  4509. this.security.Name = "security";
  4510. this.security.Padding = new System.Windows.Forms.Padding(2);
  4511. this.security.Size = new System.Drawing.Size(627, 61);
  4512. this.security.TabIndex = 83;
  4513. this.security.TabStop = false;
  4514. this.security.Text = "Security:";
  4515. //
  4516. // checkShift
  4517. //
  4518. this.checkShift.AutoSize = true;
  4519. this.checkShift.ForeColor = System.Drawing.Color.White;
  4520. this.checkShift.Location = new System.Drawing.Point(11, 26);
  4521. this.checkShift.Margin = new System.Windows.Forms.Padding(2);
  4522. this.checkShift.Name = "checkShift";
  4523. this.checkShift.Size = new System.Drawing.Size(300, 25);
  4524. this.checkShift.TabIndex = 83;
  4525. this.checkShift.Text = "Show only when SHIFT key is pressed";
  4526. this.checkShift.UseVisualStyleBackColor = true;
  4527. //
  4528. // itemposition
  4529. //
  4530. this.itemposition.Controls.Add(this.radioTop);
  4531. this.itemposition.Controls.Add(this.radioMiddle);
  4532. this.itemposition.Controls.Add(this.radioBottom);
  4533. this.itemposition.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4534. this.itemposition.ForeColor = System.Drawing.Color.Silver;
  4535. this.itemposition.Location = new System.Drawing.Point(11, 272);
  4536. this.itemposition.Margin = new System.Windows.Forms.Padding(2);
  4537. this.itemposition.Name = "itemposition";
  4538. this.itemposition.Padding = new System.Windows.Forms.Padding(2);
  4539. this.itemposition.Size = new System.Drawing.Size(627, 62);
  4540. this.itemposition.TabIndex = 82;
  4541. this.itemposition.TabStop = false;
  4542. this.itemposition.Text = "Item position:";
  4543. //
  4544. // radioTop
  4545. //
  4546. this.radioTop.AutoSize = true;
  4547. this.radioTop.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold);
  4548. this.radioTop.ForeColor = System.Drawing.Color.White;
  4549. this.radioTop.Location = new System.Drawing.Point(11, 26);
  4550. this.radioTop.Margin = new System.Windows.Forms.Padding(2);
  4551. this.radioTop.Name = "radioTop";
  4552. this.radioTop.Size = new System.Drawing.Size(55, 25);
  4553. this.radioTop.TabIndex = 83;
  4554. this.radioTop.Text = "Top";
  4555. this.radioTop.UseVisualStyleBackColor = true;
  4556. this.radioTop.CheckedChanged += new System.EventHandler(this.radioTop_CheckedChanged);
  4557. //
  4558. // radioMiddle
  4559. //
  4560. this.radioMiddle.AutoSize = true;
  4561. this.radioMiddle.ForeColor = System.Drawing.Color.White;
  4562. this.radioMiddle.Location = new System.Drawing.Point(131, 26);
  4563. this.radioMiddle.Margin = new System.Windows.Forms.Padding(2);
  4564. this.radioMiddle.Name = "radioMiddle";
  4565. this.radioMiddle.Size = new System.Drawing.Size(80, 25);
  4566. this.radioMiddle.TabIndex = 84;
  4567. this.radioMiddle.Text = "Middle";
  4568. this.radioMiddle.UseVisualStyleBackColor = true;
  4569. this.radioMiddle.CheckedChanged += new System.EventHandler(this.radioMiddle_CheckedChanged);
  4570. //
  4571. // radioBottom
  4572. //
  4573. this.radioBottom.AutoSize = true;
  4574. this.radioBottom.ForeColor = System.Drawing.Color.White;
  4575. this.radioBottom.Location = new System.Drawing.Point(277, 26);
  4576. this.radioBottom.Margin = new System.Windows.Forms.Padding(2);
  4577. this.radioBottom.Name = "radioBottom";
  4578. this.radioBottom.Size = new System.Drawing.Size(84, 25);
  4579. this.radioBottom.TabIndex = 85;
  4580. this.radioBottom.Text = "Bottom";
  4581. this.radioBottom.UseVisualStyleBackColor = true;
  4582. this.radioBottom.CheckedChanged += new System.EventHandler(this.radioBottom_CheckedChanged);
  4583. //
  4584. // icontoaddgroup
  4585. //
  4586. this.icontoaddgroup.Controls.Add(this.checkDefaultIcon);
  4587. this.icontoaddgroup.Controls.Add(this.btnBrowseIcon);
  4588. this.icontoaddgroup.Controls.Add(this.txtIcon);
  4589. this.icontoaddgroup.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4590. this.icontoaddgroup.ForeColor = System.Drawing.Color.Silver;
  4591. this.icontoaddgroup.Location = new System.Drawing.Point(11, 178);
  4592. this.icontoaddgroup.Margin = new System.Windows.Forms.Padding(2);
  4593. this.icontoaddgroup.Name = "icontoaddgroup";
  4594. this.icontoaddgroup.Padding = new System.Windows.Forms.Padding(2);
  4595. this.icontoaddgroup.Size = new System.Drawing.Size(627, 90);
  4596. this.icontoaddgroup.TabIndex = 81;
  4597. this.icontoaddgroup.TabStop = false;
  4598. this.icontoaddgroup.Text = "Icon to add:";
  4599. //
  4600. // checkDefaultIcon
  4601. //
  4602. this.checkDefaultIcon.AutoSize = true;
  4603. this.checkDefaultIcon.Font = new System.Drawing.Font("Segoe UI Semibold", 12F);
  4604. this.checkDefaultIcon.ForeColor = System.Drawing.Color.White;
  4605. this.checkDefaultIcon.Location = new System.Drawing.Point(11, 58);
  4606. this.checkDefaultIcon.Margin = new System.Windows.Forms.Padding(2);
  4607. this.checkDefaultIcon.Name = "checkDefaultIcon";
  4608. this.checkDefaultIcon.Size = new System.Drawing.Size(169, 25);
  4609. this.checkDefaultIcon.TabIndex = 82;
  4610. this.checkDefaultIcon.Text = "Use program\'s icon";
  4611. this.checkDefaultIcon.UseVisualStyleBackColor = true;
  4612. this.checkDefaultIcon.CheckedChanged += new System.EventHandler(this.checkDefaultIcon_CheckedChanged);
  4613. //
  4614. // btnBrowseIcon
  4615. //
  4616. this.btnBrowseIcon.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  4617. this.btnBrowseIcon.BackColor = System.Drawing.Color.DodgerBlue;
  4618. this.btnBrowseIcon.Enabled = false;
  4619. this.btnBrowseIcon.FlatAppearance.BorderSize = 0;
  4620. this.btnBrowseIcon.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  4621. this.btnBrowseIcon.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  4622. this.btnBrowseIcon.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  4623. this.btnBrowseIcon.ForeColor = System.Drawing.Color.White;
  4624. this.btnBrowseIcon.Location = new System.Drawing.Point(450, 26);
  4625. this.btnBrowseIcon.Margin = new System.Windows.Forms.Padding(2);
  4626. this.btnBrowseIcon.Name = "btnBrowseIcon";
  4627. this.btnBrowseIcon.Size = new System.Drawing.Size(36, 29);
  4628. this.btnBrowseIcon.TabIndex = 82;
  4629. this.btnBrowseIcon.Text = "...";
  4630. this.btnBrowseIcon.UseVisualStyleBackColor = false;
  4631. this.btnBrowseIcon.Click += new System.EventHandler(this.btnBrowseIcon_Click);
  4632. //
  4633. // txtIcon
  4634. //
  4635. this.txtIcon.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  4636. this.txtIcon.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4637. this.txtIcon.Enabled = false;
  4638. this.txtIcon.ForeColor = System.Drawing.Color.White;
  4639. this.txtIcon.Location = new System.Drawing.Point(11, 26);
  4640. this.txtIcon.Margin = new System.Windows.Forms.Padding(2);
  4641. this.txtIcon.Name = "txtIcon";
  4642. this.txtIcon.ReadOnly = true;
  4643. this.txtIcon.Size = new System.Drawing.Size(434, 29);
  4644. this.txtIcon.TabIndex = 81;
  4645. //
  4646. // itemtoaddgroup
  4647. //
  4648. this.itemtoaddgroup.Controls.Add(this.btnBrowseItem);
  4649. this.itemtoaddgroup.Controls.Add(this.txtItem);
  4650. this.itemtoaddgroup.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4651. this.itemtoaddgroup.ForeColor = System.Drawing.Color.Silver;
  4652. this.itemtoaddgroup.Location = new System.Drawing.Point(11, 107);
  4653. this.itemtoaddgroup.Margin = new System.Windows.Forms.Padding(2);
  4654. this.itemtoaddgroup.Name = "itemtoaddgroup";
  4655. this.itemtoaddgroup.Padding = new System.Windows.Forms.Padding(2);
  4656. this.itemtoaddgroup.Size = new System.Drawing.Size(627, 67);
  4657. this.itemtoaddgroup.TabIndex = 80;
  4658. this.itemtoaddgroup.TabStop = false;
  4659. this.itemtoaddgroup.Text = "Program to add:";
  4660. //
  4661. // btnBrowseItem
  4662. //
  4663. this.btnBrowseItem.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  4664. this.btnBrowseItem.BackColor = System.Drawing.Color.DodgerBlue;
  4665. this.btnBrowseItem.FlatAppearance.BorderSize = 0;
  4666. this.btnBrowseItem.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  4667. this.btnBrowseItem.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  4668. this.btnBrowseItem.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  4669. this.btnBrowseItem.ForeColor = System.Drawing.Color.White;
  4670. this.btnBrowseItem.Location = new System.Drawing.Point(449, 26);
  4671. this.btnBrowseItem.Margin = new System.Windows.Forms.Padding(2);
  4672. this.btnBrowseItem.Name = "btnBrowseItem";
  4673. this.btnBrowseItem.Size = new System.Drawing.Size(36, 29);
  4674. this.btnBrowseItem.TabIndex = 82;
  4675. this.btnBrowseItem.Text = "...";
  4676. this.btnBrowseItem.UseVisualStyleBackColor = false;
  4677. this.btnBrowseItem.Click += new System.EventHandler(this.btnBrowseItem_Click);
  4678. //
  4679. // txtItem
  4680. //
  4681. this.txtItem.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  4682. this.txtItem.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4683. this.txtItem.ForeColor = System.Drawing.Color.White;
  4684. this.txtItem.Location = new System.Drawing.Point(11, 26);
  4685. this.txtItem.Margin = new System.Windows.Forms.Padding(2);
  4686. this.txtItem.Name = "txtItem";
  4687. this.txtItem.ReadOnly = true;
  4688. this.txtItem.Size = new System.Drawing.Size(434, 29);
  4689. this.txtItem.TabIndex = 81;
  4690. //
  4691. // itemtype
  4692. //
  4693. this.itemtype.Controls.Add(this.radioCommand);
  4694. this.itemtype.Controls.Add(this.radioProgram);
  4695. this.itemtype.Controls.Add(this.radioFolder);
  4696. this.itemtype.Controls.Add(this.radioLink);
  4697. this.itemtype.Controls.Add(this.radioFile);
  4698. this.itemtype.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4699. this.itemtype.ForeColor = System.Drawing.Color.Silver;
  4700. this.itemtype.Location = new System.Drawing.Point(11, 40);
  4701. this.itemtype.Margin = new System.Windows.Forms.Padding(2);
  4702. this.itemtype.Name = "itemtype";
  4703. this.itemtype.Padding = new System.Windows.Forms.Padding(2);
  4704. this.itemtype.Size = new System.Drawing.Size(627, 63);
  4705. this.itemtype.TabIndex = 79;
  4706. this.itemtype.TabStop = false;
  4707. this.itemtype.Text = "Item Type:";
  4708. //
  4709. // radioCommand
  4710. //
  4711. this.radioCommand.AutoSize = true;
  4712. this.radioCommand.ForeColor = System.Drawing.Color.White;
  4713. this.radioCommand.Location = new System.Drawing.Point(481, 26);
  4714. this.radioCommand.Margin = new System.Windows.Forms.Padding(2);
  4715. this.radioCommand.Name = "radioCommand";
  4716. this.radioCommand.Size = new System.Drawing.Size(103, 25);
  4717. this.radioCommand.TabIndex = 84;
  4718. this.radioCommand.Text = "Command";
  4719. this.radioCommand.UseVisualStyleBackColor = true;
  4720. this.radioCommand.CheckedChanged += new System.EventHandler(this.radioCommand_CheckedChanged);
  4721. //
  4722. // radioProgram
  4723. //
  4724. this.radioProgram.AutoSize = true;
  4725. this.radioProgram.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold);
  4726. this.radioProgram.ForeColor = System.Drawing.Color.White;
  4727. this.radioProgram.Location = new System.Drawing.Point(11, 26);
  4728. this.radioProgram.Margin = new System.Windows.Forms.Padding(2);
  4729. this.radioProgram.Name = "radioProgram";
  4730. this.radioProgram.Size = new System.Drawing.Size(91, 25);
  4731. this.radioProgram.TabIndex = 80;
  4732. this.radioProgram.Text = "Program";
  4733. this.radioProgram.UseVisualStyleBackColor = true;
  4734. this.radioProgram.CheckedChanged += new System.EventHandler(this.radioProgram_CheckedChanged);
  4735. //
  4736. // radioFolder
  4737. //
  4738. this.radioFolder.AutoSize = true;
  4739. this.radioFolder.ForeColor = System.Drawing.Color.White;
  4740. this.radioFolder.Location = new System.Drawing.Point(139, 26);
  4741. this.radioFolder.Margin = new System.Windows.Forms.Padding(2);
  4742. this.radioFolder.Name = "radioFolder";
  4743. this.radioFolder.Size = new System.Drawing.Size(75, 25);
  4744. this.radioFolder.TabIndex = 81;
  4745. this.radioFolder.Text = "Folder";
  4746. this.radioFolder.UseVisualStyleBackColor = true;
  4747. this.radioFolder.CheckedChanged += new System.EventHandler(this.radioFolder_CheckedChanged);
  4748. //
  4749. // radioLink
  4750. //
  4751. this.radioLink.AutoSize = true;
  4752. this.radioLink.ForeColor = System.Drawing.Color.White;
  4753. this.radioLink.Location = new System.Drawing.Point(254, 26);
  4754. this.radioLink.Margin = new System.Windows.Forms.Padding(2);
  4755. this.radioLink.Name = "radioLink";
  4756. this.radioLink.Size = new System.Drawing.Size(57, 25);
  4757. this.radioLink.TabIndex = 82;
  4758. this.radioLink.Text = "Link";
  4759. this.radioLink.UseVisualStyleBackColor = true;
  4760. this.radioLink.CheckedChanged += new System.EventHandler(this.radioLink_CheckedChanged);
  4761. //
  4762. // radioFile
  4763. //
  4764. this.radioFile.AutoSize = true;
  4765. this.radioFile.ForeColor = System.Drawing.Color.White;
  4766. this.radioFile.Location = new System.Drawing.Point(371, 26);
  4767. this.radioFile.Margin = new System.Windows.Forms.Padding(2);
  4768. this.radioFile.Name = "radioFile";
  4769. this.radioFile.Size = new System.Drawing.Size(53, 25);
  4770. this.radioFile.TabIndex = 83;
  4771. this.radioFile.Text = "File";
  4772. this.radioFile.UseVisualStyleBackColor = true;
  4773. this.radioFile.CheckedChanged += new System.EventHandler(this.radioFile_CheckedChanged);
  4774. //
  4775. // addItemL
  4776. //
  4777. this.addItemL.AutoSize = true;
  4778. this.addItemL.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4779. this.addItemL.ForeColor = System.Drawing.Color.DodgerBlue;
  4780. this.addItemL.Location = new System.Drawing.Point(6, 10);
  4781. this.addItemL.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  4782. this.addItemL.Name = "addItemL";
  4783. this.addItemL.Size = new System.Drawing.Size(219, 28);
  4784. this.addItemL.TabIndex = 78;
  4785. this.addItemL.Tag = "themeable";
  4786. this.addItemL.Text = "Add or modify an item";
  4787. //
  4788. // tabPage9
  4789. //
  4790. this.tabPage9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  4791. this.tabPage9.Controls.Add(this.panel5);
  4792. this.tabPage9.Controls.Add(this.refreshIIB);
  4793. this.tabPage9.Controls.Add(this.removeDIB);
  4794. this.tabPage9.Controls.Add(this.removeAllIIB);
  4795. this.tabPage9.Controls.Add(this.removeIntegratorItemsL);
  4796. this.tabPage9.Location = new System.Drawing.Point(4, 4);
  4797. this.tabPage9.Margin = new System.Windows.Forms.Padding(2);
  4798. this.tabPage9.Name = "tabPage9";
  4799. this.tabPage9.Padding = new System.Windows.Forms.Padding(2);
  4800. this.tabPage9.Size = new System.Drawing.Size(962, 620);
  4801. this.tabPage9.TabIndex = 2;
  4802. this.tabPage9.Text = "Remove";
  4803. //
  4804. // panel5
  4805. //
  4806. this.panel5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4807. this.panel5.Controls.Add(this.listDesktopItems);
  4808. this.panel5.Location = new System.Drawing.Point(11, 44);
  4809. this.panel5.Margin = new System.Windows.Forms.Padding(2);
  4810. this.panel5.Name = "panel5";
  4811. this.panel5.Size = new System.Drawing.Size(293, 435);
  4812. this.panel5.TabIndex = 82;
  4813. //
  4814. // listDesktopItems
  4815. //
  4816. this.listDesktopItems.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  4817. this.listDesktopItems.BorderStyle = System.Windows.Forms.BorderStyle.None;
  4818. this.listDesktopItems.Dock = System.Windows.Forms.DockStyle.Fill;
  4819. this.listDesktopItems.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawVariable;
  4820. this.listDesktopItems.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4821. this.listDesktopItems.ForeColor = System.Drawing.Color.White;
  4822. this.listDesktopItems.FormattingEnabled = true;
  4823. this.listDesktopItems.HorizontalScrollbar = true;
  4824. this.listDesktopItems.ItemHeight = 21;
  4825. this.listDesktopItems.Location = new System.Drawing.Point(0, 0);
  4826. this.listDesktopItems.Margin = new System.Windows.Forms.Padding(2);
  4827. this.listDesktopItems.Name = "listDesktopItems";
  4828. this.listDesktopItems.Size = new System.Drawing.Size(291, 433);
  4829. this.listDesktopItems.TabIndex = 78;
  4830. //
  4831. // refreshIIB
  4832. //
  4833. this.refreshIIB.BackColor = System.Drawing.Color.DodgerBlue;
  4834. this.refreshIIB.FlatAppearance.BorderSize = 0;
  4835. this.refreshIIB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  4836. this.refreshIIB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  4837. this.refreshIIB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  4838. this.refreshIIB.ForeColor = System.Drawing.Color.White;
  4839. this.refreshIIB.Location = new System.Drawing.Point(308, 80);
  4840. this.refreshIIB.Margin = new System.Windows.Forms.Padding(2);
  4841. this.refreshIIB.Name = "refreshIIB";
  4842. this.refreshIIB.Size = new System.Drawing.Size(185, 31);
  4843. this.refreshIIB.TabIndex = 81;
  4844. this.refreshIIB.Text = "Refresh";
  4845. this.refreshIIB.UseVisualStyleBackColor = false;
  4846. this.refreshIIB.Click += new System.EventHandler(this.button60_Click);
  4847. //
  4848. // removeDIB
  4849. //
  4850. this.removeDIB.BackColor = System.Drawing.Color.DodgerBlue;
  4851. this.removeDIB.FlatAppearance.BorderSize = 0;
  4852. this.removeDIB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  4853. this.removeDIB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  4854. this.removeDIB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  4855. this.removeDIB.ForeColor = System.Drawing.Color.White;
  4856. this.removeDIB.Location = new System.Drawing.Point(308, 45);
  4857. this.removeDIB.Margin = new System.Windows.Forms.Padding(2);
  4858. this.removeDIB.Name = "removeDIB";
  4859. this.removeDIB.Size = new System.Drawing.Size(185, 31);
  4860. this.removeDIB.TabIndex = 80;
  4861. this.removeDIB.Text = "Delete";
  4862. this.removeDIB.UseVisualStyleBackColor = false;
  4863. this.removeDIB.Click += new System.EventHandler(this.button61_Click);
  4864. //
  4865. // removeAllIIB
  4866. //
  4867. this.removeAllIIB.BackColor = System.Drawing.Color.DodgerBlue;
  4868. this.removeAllIIB.FlatAppearance.BorderSize = 0;
  4869. this.removeAllIIB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  4870. this.removeAllIIB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  4871. this.removeAllIIB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  4872. this.removeAllIIB.ForeColor = System.Drawing.Color.White;
  4873. this.removeAllIIB.Location = new System.Drawing.Point(308, 115);
  4874. this.removeAllIIB.Margin = new System.Windows.Forms.Padding(2);
  4875. this.removeAllIIB.Name = "removeAllIIB";
  4876. this.removeAllIIB.Size = new System.Drawing.Size(185, 31);
  4877. this.removeAllIIB.TabIndex = 79;
  4878. this.removeAllIIB.Text = "Delete all";
  4879. this.removeAllIIB.UseVisualStyleBackColor = false;
  4880. this.removeAllIIB.Click += new System.EventHandler(this.button62_Click);
  4881. //
  4882. // removeIntegratorItemsL
  4883. //
  4884. this.removeIntegratorItemsL.AutoSize = true;
  4885. this.removeIntegratorItemsL.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4886. this.removeIntegratorItemsL.ForeColor = System.Drawing.Color.DodgerBlue;
  4887. this.removeIntegratorItemsL.Location = new System.Drawing.Point(6, 10);
  4888. this.removeIntegratorItemsL.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  4889. this.removeIntegratorItemsL.Name = "removeIntegratorItemsL";
  4890. this.removeIntegratorItemsL.Size = new System.Drawing.Size(300, 28);
  4891. this.removeIntegratorItemsL.TabIndex = 77;
  4892. this.removeIntegratorItemsL.Tag = "themeable";
  4893. this.removeIntegratorItemsL.Text = "Remove existing Desktop items";
  4894. //
  4895. // tabPage10
  4896. //
  4897. this.tabPage10.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  4898. this.tabPage10.Controls.Add(this.WAB);
  4899. this.tabPage10.Controls.Add(this.AddCMDB);
  4900. this.tabPage10.Controls.Add(this.AddOwnerB);
  4901. this.tabPage10.Controls.Add(this.DSB);
  4902. this.tabPage10.Controls.Add(this.SSB);
  4903. this.tabPage10.Controls.Add(this.STB);
  4904. this.tabPage10.Controls.Add(this.PMB);
  4905. this.tabPage10.Controls.Add(this.readyMenusL);
  4906. this.tabPage10.Location = new System.Drawing.Point(4, 4);
  4907. this.tabPage10.Margin = new System.Windows.Forms.Padding(2);
  4908. this.tabPage10.Name = "tabPage10";
  4909. this.tabPage10.Padding = new System.Windows.Forms.Padding(2);
  4910. this.tabPage10.Size = new System.Drawing.Size(962, 620);
  4911. this.tabPage10.TabIndex = 3;
  4912. this.tabPage10.Text = "Ready Menus";
  4913. //
  4914. // WAB
  4915. //
  4916. this.WAB.AccessibleName = "Add \"Windows Apps\"";
  4917. this.WAB.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  4918. this.WAB.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  4919. this.WAB.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4920. this.WAB.ForeColor = System.Drawing.Color.White;
  4921. this.WAB.LabelText = "Add \"Windows Apps\"";
  4922. this.WAB.Location = new System.Drawing.Point(32, 120);
  4923. this.WAB.Margin = new System.Windows.Forms.Padding(6);
  4924. this.WAB.Name = "WAB";
  4925. this.WAB.Size = new System.Drawing.Size(374, 24);
  4926. this.WAB.TabIndex = 95;
  4927. this.WAB.Tag = "themeable";
  4928. this.WAB.ToggleChecked = false;
  4929. //
  4930. // AddCMDB
  4931. //
  4932. this.AddCMDB.AccessibleName = "Add \"Open with CMD\"";
  4933. this.AddCMDB.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  4934. this.AddCMDB.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  4935. this.AddCMDB.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4936. this.AddCMDB.ForeColor = System.Drawing.Color.White;
  4937. this.AddCMDB.LabelText = "Add \"Open with CMD\"";
  4938. this.AddCMDB.Location = new System.Drawing.Point(32, 275);
  4939. this.AddCMDB.Margin = new System.Windows.Forms.Padding(6);
  4940. this.AddCMDB.Name = "AddCMDB";
  4941. this.AddCMDB.Size = new System.Drawing.Size(374, 24);
  4942. this.AddCMDB.TabIndex = 94;
  4943. this.AddCMDB.Tag = "themeable";
  4944. this.AddCMDB.ToggleChecked = false;
  4945. //
  4946. // AddOwnerB
  4947. //
  4948. this.AddOwnerB.AccessibleName = "Add \"Take Ownership\"";
  4949. this.AddOwnerB.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  4950. this.AddOwnerB.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  4951. this.AddOwnerB.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4952. this.AddOwnerB.ForeColor = System.Drawing.Color.White;
  4953. this.AddOwnerB.LabelText = "Add \"Take Ownership\"";
  4954. this.AddOwnerB.Location = new System.Drawing.Point(32, 245);
  4955. this.AddOwnerB.Margin = new System.Windows.Forms.Padding(6);
  4956. this.AddOwnerB.Name = "AddOwnerB";
  4957. this.AddOwnerB.Size = new System.Drawing.Size(374, 24);
  4958. this.AddOwnerB.TabIndex = 93;
  4959. this.AddOwnerB.Tag = "themeable";
  4960. this.AddOwnerB.ToggleChecked = false;
  4961. //
  4962. // DSB
  4963. //
  4964. this.DSB.AccessibleName = "Add \"Desktop Shortcuts\"";
  4965. this.DSB.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  4966. this.DSB.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  4967. this.DSB.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4968. this.DSB.ForeColor = System.Drawing.Color.White;
  4969. this.DSB.LabelText = "Add \"Desktop Shortcuts\"";
  4970. this.DSB.Location = new System.Drawing.Point(32, 180);
  4971. this.DSB.Margin = new System.Windows.Forms.Padding(6);
  4972. this.DSB.Name = "DSB";
  4973. this.DSB.Size = new System.Drawing.Size(374, 24);
  4974. this.DSB.TabIndex = 92;
  4975. this.DSB.Tag = "themeable";
  4976. this.DSB.ToggleChecked = false;
  4977. //
  4978. // SSB
  4979. //
  4980. this.SSB.AccessibleName = "Add \"System Shortcuts\"";
  4981. this.SSB.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  4982. this.SSB.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  4983. this.SSB.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4984. this.SSB.ForeColor = System.Drawing.Color.White;
  4985. this.SSB.LabelText = "Add \"System Shortcuts\"";
  4986. this.SSB.Location = new System.Drawing.Point(32, 150);
  4987. this.SSB.Margin = new System.Windows.Forms.Padding(6);
  4988. this.SSB.Name = "SSB";
  4989. this.SSB.Size = new System.Drawing.Size(374, 24);
  4990. this.SSB.TabIndex = 91;
  4991. this.SSB.Tag = "themeable";
  4992. this.SSB.ToggleChecked = false;
  4993. //
  4994. // STB
  4995. //
  4996. this.STB.AccessibleName = "Add \"System Tools\"";
  4997. this.STB.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  4998. this.STB.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  4999. this.STB.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5000. this.STB.ForeColor = System.Drawing.Color.White;
  5001. this.STB.LabelText = "Add \"System Tools\"";
  5002. this.STB.Location = new System.Drawing.Point(32, 90);
  5003. this.STB.Margin = new System.Windows.Forms.Padding(6);
  5004. this.STB.Name = "STB";
  5005. this.STB.Size = new System.Drawing.Size(374, 24);
  5006. this.STB.TabIndex = 90;
  5007. this.STB.Tag = "themeable";
  5008. this.STB.ToggleChecked = false;
  5009. //
  5010. // PMB
  5011. //
  5012. this.PMB.AccessibleName = "Add \"Power Menu\"";
  5013. this.PMB.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  5014. this.PMB.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  5015. this.PMB.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5016. this.PMB.ForeColor = System.Drawing.Color.White;
  5017. this.PMB.LabelText = "Add \"Power Menu\"";
  5018. this.PMB.Location = new System.Drawing.Point(32, 60);
  5019. this.PMB.Margin = new System.Windows.Forms.Padding(6);
  5020. this.PMB.Name = "PMB";
  5021. this.PMB.Size = new System.Drawing.Size(374, 24);
  5022. this.PMB.TabIndex = 89;
  5023. this.PMB.Tag = "themeable";
  5024. this.PMB.ToggleChecked = false;
  5025. //
  5026. // readyMenusL
  5027. //
  5028. this.readyMenusL.AutoSize = true;
  5029. this.readyMenusL.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5030. this.readyMenusL.ForeColor = System.Drawing.Color.DodgerBlue;
  5031. this.readyMenusL.Location = new System.Drawing.Point(6, 10);
  5032. this.readyMenusL.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  5033. this.readyMenusL.Name = "readyMenusL";
  5034. this.readyMenusL.Size = new System.Drawing.Size(232, 28);
  5035. this.readyMenusL.TabIndex = 76;
  5036. this.readyMenusL.Tag = "themeable";
  5037. this.readyMenusL.Text = "Add ready-made menus";
  5038. //
  5039. // tabPage11
  5040. //
  5041. this.tabPage11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  5042. this.tabPage11.Controls.Add(this.panel6);
  5043. this.tabPage11.Controls.Add(this.removeCCB);
  5044. this.tabPage11.Controls.Add(this.refreshCCB);
  5045. this.tabPage11.Controls.Add(this.removeCCL);
  5046. this.tabPage11.Controls.Add(this.btnCreateCustomCommand);
  5047. this.tabPage11.Controls.Add(this.button48);
  5048. this.tabPage11.Controls.Add(this.txtRunKeyword);
  5049. this.tabPage11.Controls.Add(this.ccKeywordL);
  5050. this.tabPage11.Controls.Add(this.txtRunFile);
  5051. this.tabPage11.Controls.Add(this.ccFileL);
  5052. this.tabPage11.Controls.Add(this.ccL);
  5053. this.tabPage11.Location = new System.Drawing.Point(4, 4);
  5054. this.tabPage11.Margin = new System.Windows.Forms.Padding(2);
  5055. this.tabPage11.Name = "tabPage11";
  5056. this.tabPage11.Padding = new System.Windows.Forms.Padding(2);
  5057. this.tabPage11.Size = new System.Drawing.Size(962, 620);
  5058. this.tabPage11.TabIndex = 4;
  5059. this.tabPage11.Text = "Run Dialog";
  5060. //
  5061. // panel6
  5062. //
  5063. this.panel6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  5064. this.panel6.Controls.Add(this.listCustomCommands);
  5065. this.panel6.Location = new System.Drawing.Point(11, 210);
  5066. this.panel6.Margin = new System.Windows.Forms.Padding(2);
  5067. this.panel6.Name = "panel6";
  5068. this.panel6.Size = new System.Drawing.Size(271, 313);
  5069. this.panel6.TabIndex = 84;
  5070. //
  5071. // listCustomCommands
  5072. //
  5073. this.listCustomCommands.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  5074. this.listCustomCommands.BorderStyle = System.Windows.Forms.BorderStyle.None;
  5075. this.listCustomCommands.Dock = System.Windows.Forms.DockStyle.Fill;
  5076. this.listCustomCommands.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawVariable;
  5077. this.listCustomCommands.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5078. this.listCustomCommands.ForeColor = System.Drawing.Color.White;
  5079. this.listCustomCommands.FormattingEnabled = true;
  5080. this.listCustomCommands.HorizontalScrollbar = true;
  5081. this.listCustomCommands.ItemHeight = 21;
  5082. this.listCustomCommands.Location = new System.Drawing.Point(0, 0);
  5083. this.listCustomCommands.Margin = new System.Windows.Forms.Padding(2);
  5084. this.listCustomCommands.Name = "listCustomCommands";
  5085. this.listCustomCommands.Size = new System.Drawing.Size(269, 311);
  5086. this.listCustomCommands.TabIndex = 79;
  5087. //
  5088. // removeCCB
  5089. //
  5090. this.removeCCB.BackColor = System.Drawing.Color.DodgerBlue;
  5091. this.removeCCB.FlatAppearance.BorderSize = 0;
  5092. this.removeCCB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  5093. this.removeCCB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  5094. this.removeCCB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  5095. this.removeCCB.ForeColor = System.Drawing.Color.White;
  5096. this.removeCCB.Location = new System.Drawing.Point(286, 210);
  5097. this.removeCCB.Margin = new System.Windows.Forms.Padding(2);
  5098. this.removeCCB.Name = "removeCCB";
  5099. this.removeCCB.Size = new System.Drawing.Size(162, 27);
  5100. this.removeCCB.TabIndex = 82;
  5101. this.removeCCB.Text = "Delete";
  5102. this.removeCCB.UseVisualStyleBackColor = false;
  5103. this.removeCCB.Click += new System.EventHandler(this.button26_Click);
  5104. //
  5105. // refreshCCB
  5106. //
  5107. this.refreshCCB.BackColor = System.Drawing.Color.DodgerBlue;
  5108. this.refreshCCB.FlatAppearance.BorderSize = 0;
  5109. this.refreshCCB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  5110. this.refreshCCB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  5111. this.refreshCCB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  5112. this.refreshCCB.ForeColor = System.Drawing.Color.White;
  5113. this.refreshCCB.Location = new System.Drawing.Point(286, 241);
  5114. this.refreshCCB.Margin = new System.Windows.Forms.Padding(2);
  5115. this.refreshCCB.Name = "refreshCCB";
  5116. this.refreshCCB.Size = new System.Drawing.Size(162, 27);
  5117. this.refreshCCB.TabIndex = 81;
  5118. this.refreshCCB.Text = "Refresh";
  5119. this.refreshCCB.UseVisualStyleBackColor = false;
  5120. this.refreshCCB.Click += new System.EventHandler(this.button8_Click);
  5121. //
  5122. // removeCCL
  5123. //
  5124. this.removeCCL.AutoSize = true;
  5125. this.removeCCL.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5126. this.removeCCL.ForeColor = System.Drawing.Color.DodgerBlue;
  5127. this.removeCCL.Location = new System.Drawing.Point(6, 173);
  5128. this.removeCCL.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  5129. this.removeCCL.Name = "removeCCL";
  5130. this.removeCCL.Size = new System.Drawing.Size(254, 28);
  5131. this.removeCCL.TabIndex = 80;
  5132. this.removeCCL.Tag = "themeable";
  5133. this.removeCCL.Text = "Delete existing commands";
  5134. //
  5135. // btnCreateCustomCommand
  5136. //
  5137. this.btnCreateCustomCommand.BackColor = System.Drawing.Color.DodgerBlue;
  5138. this.btnCreateCustomCommand.FlatAppearance.BorderSize = 0;
  5139. this.btnCreateCustomCommand.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  5140. this.btnCreateCustomCommand.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  5141. this.btnCreateCustomCommand.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  5142. this.btnCreateCustomCommand.ForeColor = System.Drawing.Color.White;
  5143. this.btnCreateCustomCommand.Location = new System.Drawing.Point(299, 130);
  5144. this.btnCreateCustomCommand.Margin = new System.Windows.Forms.Padding(2);
  5145. this.btnCreateCustomCommand.Name = "btnCreateCustomCommand";
  5146. this.btnCreateCustomCommand.Size = new System.Drawing.Size(149, 29);
  5147. this.btnCreateCustomCommand.TabIndex = 60;
  5148. this.btnCreateCustomCommand.Text = "Create";
  5149. this.btnCreateCustomCommand.UseVisualStyleBackColor = false;
  5150. this.btnCreateCustomCommand.Click += new System.EventHandler(this.button50_Click);
  5151. //
  5152. // button48
  5153. //
  5154. this.button48.BackColor = System.Drawing.Color.DodgerBlue;
  5155. this.button48.FlatAppearance.BorderSize = 0;
  5156. this.button48.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  5157. this.button48.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  5158. this.button48.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  5159. this.button48.ForeColor = System.Drawing.Color.White;
  5160. this.button48.Location = new System.Drawing.Point(396, 75);
  5161. this.button48.Margin = new System.Windows.Forms.Padding(2);
  5162. this.button48.Name = "button48";
  5163. this.button48.Size = new System.Drawing.Size(52, 29);
  5164. this.button48.TabIndex = 58;
  5165. this.button48.Text = "...";
  5166. this.button48.UseVisualStyleBackColor = false;
  5167. this.button48.Click += new System.EventHandler(this.button48_Click);
  5168. //
  5169. // txtRunKeyword
  5170. //
  5171. this.txtRunKeyword.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  5172. this.txtRunKeyword.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  5173. this.txtRunKeyword.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5174. this.txtRunKeyword.ForeColor = System.Drawing.Color.White;
  5175. this.txtRunKeyword.Location = new System.Drawing.Point(11, 130);
  5176. this.txtRunKeyword.Margin = new System.Windows.Forms.Padding(2);
  5177. this.txtRunKeyword.Name = "txtRunKeyword";
  5178. this.txtRunKeyword.Size = new System.Drawing.Size(284, 29);
  5179. this.txtRunKeyword.TabIndex = 9;
  5180. //
  5181. // ccKeywordL
  5182. //
  5183. this.ccKeywordL.AutoSize = true;
  5184. this.ccKeywordL.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5185. this.ccKeywordL.ForeColor = System.Drawing.Color.Silver;
  5186. this.ccKeywordL.Location = new System.Drawing.Point(7, 105);
  5187. this.ccKeywordL.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  5188. this.ccKeywordL.Name = "ccKeywordL";
  5189. this.ccKeywordL.Size = new System.Drawing.Size(79, 21);
  5190. this.ccKeywordL.TabIndex = 8;
  5191. this.ccKeywordL.Text = "Keyword:";
  5192. //
  5193. // txtRunFile
  5194. //
  5195. this.txtRunFile.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  5196. this.txtRunFile.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  5197. this.txtRunFile.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5198. this.txtRunFile.ForeColor = System.Drawing.Color.White;
  5199. this.txtRunFile.Location = new System.Drawing.Point(11, 75);
  5200. this.txtRunFile.Margin = new System.Windows.Forms.Padding(2);
  5201. this.txtRunFile.Name = "txtRunFile";
  5202. this.txtRunFile.ReadOnly = true;
  5203. this.txtRunFile.Size = new System.Drawing.Size(381, 29);
  5204. this.txtRunFile.TabIndex = 7;
  5205. //
  5206. // ccFileL
  5207. //
  5208. this.ccFileL.AutoSize = true;
  5209. this.ccFileL.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5210. this.ccFileL.ForeColor = System.Drawing.Color.Silver;
  5211. this.ccFileL.Location = new System.Drawing.Point(7, 50);
  5212. this.ccFileL.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  5213. this.ccFileL.Name = "ccFileL";
  5214. this.ccFileL.Size = new System.Drawing.Size(102, 21);
  5215. this.ccFileL.TabIndex = 6;
  5216. this.ccFileL.Text = "File location:";
  5217. //
  5218. // ccL
  5219. //
  5220. this.ccL.AutoSize = true;
  5221. this.ccL.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5222. this.ccL.ForeColor = System.Drawing.Color.DodgerBlue;
  5223. this.ccL.Location = new System.Drawing.Point(6, 10);
  5224. this.ccL.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  5225. this.ccL.Name = "ccL";
  5226. this.ccL.Size = new System.Drawing.Size(298, 28);
  5227. this.ccL.TabIndex = 5;
  5228. this.ccL.Tag = "themeable";
  5229. this.ccL.Text = "Define your custom commands";
  5230. //
  5231. // optionsTab
  5232. //
  5233. this.optionsTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  5234. this.optionsTab.Controls.Add(this.telemetrySvcToggle);
  5235. this.optionsTab.Controls.Add(this.autoStartToggle);
  5236. this.optionsTab.Controls.Add(this.colorPicker1);
  5237. this.optionsTab.Controls.Add(this.pictureBox3);
  5238. this.optionsTab.Controls.Add(this.linkLabel3);
  5239. this.optionsTab.Controls.Add(this.pictureBox17);
  5240. this.optionsTab.Controls.Add(this.linkLabel2);
  5241. this.optionsTab.Controls.Add(this.pictureBox14);
  5242. this.optionsTab.Controls.Add(this.pictureBox13);
  5243. this.optionsTab.Controls.Add(this.pictureBox12);
  5244. this.optionsTab.Controls.Add(this.linkLabel1);
  5245. this.optionsTab.Controls.Add(this.pictureBox85);
  5246. this.optionsTab.Controls.Add(this.panel9);
  5247. this.optionsTab.Controls.Add(this.languagesL);
  5248. this.optionsTab.Controls.Add(this.linkLabel5);
  5249. this.optionsTab.Controls.Add(this.btnOpenConf);
  5250. this.optionsTab.Controls.Add(this.lblTroubleshoot);
  5251. this.optionsTab.Controls.Add(this.lblUpdating);
  5252. this.optionsTab.Controls.Add(this.btnViewLog);
  5253. this.optionsTab.Controls.Add(this.l2);
  5254. this.optionsTab.Controls.Add(this.btnUpdate);
  5255. this.optionsTab.Controls.Add(this.btnResetConfig);
  5256. this.optionsTab.Controls.Add(this.lblTheming);
  5257. this.optionsTab.Controls.Add(this.quickAccessToggle);
  5258. this.optionsTab.Location = new System.Drawing.Point(4, 25);
  5259. this.optionsTab.Margin = new System.Windows.Forms.Padding(2);
  5260. this.optionsTab.Name = "optionsTab";
  5261. this.optionsTab.Padding = new System.Windows.Forms.Padding(2);
  5262. this.optionsTab.Size = new System.Drawing.Size(974, 653);
  5263. this.optionsTab.TabIndex = 6;
  5264. this.optionsTab.Text = "Options";
  5265. //
  5266. // telemetrySvcToggle
  5267. //
  5268. this.telemetrySvcToggle.AccessibleName = "Disable Telemetry Service";
  5269. this.telemetrySvcToggle.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  5270. this.telemetrySvcToggle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  5271. this.telemetrySvcToggle.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5272. this.telemetrySvcToggle.ForeColor = System.Drawing.Color.White;
  5273. this.telemetrySvcToggle.LabelText = "Disable Telemetry Service";
  5274. this.telemetrySvcToggle.Location = new System.Drawing.Point(21, 80);
  5275. this.telemetrySvcToggle.Margin = new System.Windows.Forms.Padding(6);
  5276. this.telemetrySvcToggle.Name = "telemetrySvcToggle";
  5277. this.telemetrySvcToggle.Size = new System.Drawing.Size(374, 24);
  5278. this.telemetrySvcToggle.TabIndex = 99;
  5279. this.telemetrySvcToggle.Tag = "themeable";
  5280. this.telemetrySvcToggle.ToggleChecked = false;
  5281. this.telemetrySvcToggle.ToggleClicked += new System.EventHandler(this.telemetrySvcToggle_ToggleClicked);
  5282. //
  5283. // autoStartToggle
  5284. //
  5285. this.autoStartToggle.AccessibleName = "Start with Windows";
  5286. this.autoStartToggle.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  5287. this.autoStartToggle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  5288. this.autoStartToggle.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5289. this.autoStartToggle.ForeColor = System.Drawing.Color.White;
  5290. this.autoStartToggle.LabelText = "Start with Windows";
  5291. this.autoStartToggle.Location = new System.Drawing.Point(21, 49);
  5292. this.autoStartToggle.Margin = new System.Windows.Forms.Padding(6);
  5293. this.autoStartToggle.Name = "autoStartToggle";
  5294. this.autoStartToggle.Size = new System.Drawing.Size(374, 24);
  5295. this.autoStartToggle.TabIndex = 98;
  5296. this.autoStartToggle.Tag = "themeable";
  5297. this.autoStartToggle.ToggleChecked = false;
  5298. this.autoStartToggle.ToggleClicked += new System.EventHandler(this.autoStartToggle_ToggleClicked);
  5299. //
  5300. // colorPicker1
  5301. //
  5302. this.colorPicker1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
  5303. this.colorPicker1.Location = new System.Drawing.Point(22, 151);
  5304. this.colorPicker1.Name = "colorPicker1";
  5305. this.colorPicker1.Size = new System.Drawing.Size(139, 98);
  5306. this.colorPicker1.TabIndex = 97;
  5307. this.colorPicker1.Text = "colorPicker1";
  5308. this.colorPicker1.ColorChanged += new System.EventHandler(this.colorPicker1_ColorChanged);
  5309. //
  5310. // pictureBox3
  5311. //
  5312. this.pictureBox3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  5313. this.pictureBox3.ErrorImage = null;
  5314. this.pictureBox3.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox3.Image")));
  5315. this.pictureBox3.Location = new System.Drawing.Point(932, 461);
  5316. this.pictureBox3.Name = "pictureBox3";
  5317. this.pictureBox3.Size = new System.Drawing.Size(32, 32);
  5318. this.pictureBox3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  5319. this.pictureBox3.TabIndex = 96;
  5320. this.pictureBox3.TabStop = false;
  5321. //
  5322. // linkLabel3
  5323. //
  5324. this.linkLabel3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  5325. this.linkLabel3.AutoSize = true;
  5326. this.linkLabel3.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5327. this.linkLabel3.ForeColor = System.Drawing.Color.DodgerBlue;
  5328. this.linkLabel3.LinkColor = System.Drawing.Color.DodgerBlue;
  5329. this.linkLabel3.Location = new System.Drawing.Point(807, 460);
  5330. this.linkLabel3.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  5331. this.linkLabel3.Name = "linkLabel3";
  5332. this.linkLabel3.Size = new System.Drawing.Size(121, 28);
  5333. this.linkLabel3.TabIndex = 95;
  5334. this.linkLabel3.TabStop = true;
  5335. this.linkLabel3.Tag = "themeable";
  5336. this.linkLabel3.Text = "Support me";
  5337. this.linkLabel3.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel3_LinkClicked_1);
  5338. //
  5339. // pictureBox17
  5340. //
  5341. this.pictureBox17.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  5342. this.pictureBox17.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox17.Image")));
  5343. this.pictureBox17.Location = new System.Drawing.Point(932, 537);
  5344. this.pictureBox17.Name = "pictureBox17";
  5345. this.pictureBox17.Size = new System.Drawing.Size(32, 32);
  5346. this.pictureBox17.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  5347. this.pictureBox17.TabIndex = 94;
  5348. this.pictureBox17.TabStop = false;
  5349. //
  5350. // linkLabel2
  5351. //
  5352. this.linkLabel2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  5353. this.linkLabel2.AutoSize = true;
  5354. this.linkLabel2.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5355. this.linkLabel2.ForeColor = System.Drawing.Color.DodgerBlue;
  5356. this.linkLabel2.LinkColor = System.Drawing.Color.DodgerBlue;
  5357. this.linkLabel2.Location = new System.Drawing.Point(798, 536);
  5358. this.linkLabel2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  5359. this.linkLabel2.Name = "linkLabel2";
  5360. this.linkLabel2.Size = new System.Drawing.Size(130, 28);
  5361. this.linkLabel2.TabIndex = 93;
  5362. this.linkLabel2.TabStop = true;
  5363. this.linkLabel2.Tag = "themeable";
  5364. this.linkLabel2.Text = "Open Source";
  5365. this.linkLabel2.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel2_LinkClicked_1);
  5366. //
  5367. // pictureBox14
  5368. //
  5369. this.pictureBox14.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  5370. this.pictureBox14.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox14.Image")));
  5371. this.pictureBox14.Location = new System.Drawing.Point(932, 613);
  5372. this.pictureBox14.Name = "pictureBox14";
  5373. this.pictureBox14.Size = new System.Drawing.Size(32, 32);
  5374. this.pictureBox14.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  5375. this.pictureBox14.TabIndex = 92;
  5376. this.pictureBox14.TabStop = false;
  5377. //
  5378. // pictureBox13
  5379. //
  5380. this.pictureBox13.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  5381. this.pictureBox13.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox13.Image")));
  5382. this.pictureBox13.Location = new System.Drawing.Point(932, 499);
  5383. this.pictureBox13.Name = "pictureBox13";
  5384. this.pictureBox13.Size = new System.Drawing.Size(32, 32);
  5385. this.pictureBox13.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  5386. this.pictureBox13.TabIndex = 91;
  5387. this.pictureBox13.TabStop = false;
  5388. //
  5389. // pictureBox12
  5390. //
  5391. this.pictureBox12.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  5392. this.pictureBox12.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox12.Image")));
  5393. this.pictureBox12.Location = new System.Drawing.Point(932, 575);
  5394. this.pictureBox12.Name = "pictureBox12";
  5395. this.pictureBox12.Size = new System.Drawing.Size(32, 32);
  5396. this.pictureBox12.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  5397. this.pictureBox12.TabIndex = 90;
  5398. this.pictureBox12.TabStop = false;
  5399. //
  5400. // linkLabel1
  5401. //
  5402. this.linkLabel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  5403. this.linkLabel1.AutoSize = true;
  5404. this.linkLabel1.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5405. this.linkLabel1.ForeColor = System.Drawing.Color.DodgerBlue;
  5406. this.linkLabel1.LinkColor = System.Drawing.Color.DodgerBlue;
  5407. this.linkLabel1.Location = new System.Drawing.Point(771, 575);
  5408. this.linkLabel1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  5409. this.linkLabel1.Name = "linkLabel1";
  5410. this.linkLabel1.Size = new System.Drawing.Size(158, 28);
  5411. this.linkLabel1.TabIndex = 89;
  5412. this.linkLabel1.TabStop = true;
  5413. this.linkLabel1.Tag = "themeable";
  5414. this.linkLabel1.Text = "Discord support";
  5415. this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked_1);
  5416. //
  5417. // pictureBox85
  5418. //
  5419. this.pictureBox85.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  5420. this.pictureBox85.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox85.Image")));
  5421. this.pictureBox85.Location = new System.Drawing.Point(1067, 7);
  5422. this.pictureBox85.Name = "pictureBox85";
  5423. this.pictureBox85.Size = new System.Drawing.Size(32, 32);
  5424. this.pictureBox85.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  5425. this.pictureBox85.TabIndex = 74;
  5426. this.pictureBox85.TabStop = false;
  5427. //
  5428. // panel9
  5429. //
  5430. this.panel9.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  5431. this.panel9.Controls.Add(this.boxLang);
  5432. this.panel9.Controls.Add(this.picFlag);
  5433. this.panel9.Location = new System.Drawing.Point(623, 37);
  5434. this.panel9.Name = "panel9";
  5435. this.panel9.Size = new System.Drawing.Size(341, 113);
  5436. this.panel9.TabIndex = 73;
  5437. //
  5438. // boxLang
  5439. //
  5440. this.boxLang.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  5441. this.boxLang.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
  5442. this.boxLang.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  5443. this.boxLang.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  5444. this.boxLang.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  5445. this.boxLang.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5446. this.boxLang.ForeColor = System.Drawing.Color.White;
  5447. this.boxLang.FormattingEnabled = true;
  5448. this.boxLang.Items.AddRange(new object[] {
  5449. "English",
  5450. "русский",
  5451. "Ελληνικά",
  5452. "Deutsch",
  5453. "Italiano",
  5454. "Čeština",
  5455. "Türkçe",
  5456. "Español",
  5457. "Português",
  5458. "Français",
  5459. "Polski",
  5460. "简体中文",
  5461. "繁體中文",
  5462. "한국어",
  5463. "العربية",
  5464. "کوردی",
  5465. "Magyar",
  5466. "Română",
  5467. "Nederlands",
  5468. "українська",
  5469. "日本語"});
  5470. this.boxLang.Location = new System.Drawing.Point(92, 3);
  5471. this.boxLang.Name = "boxLang";
  5472. this.boxLang.Size = new System.Drawing.Size(212, 29);
  5473. this.boxLang.TabIndex = 95;
  5474. this.boxLang.SelectedIndexChanged += new System.EventHandler(this.boxLang_SelectedIndexChanged);
  5475. //
  5476. // picFlag
  5477. //
  5478. this.picFlag.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  5479. this.picFlag.Image = global::Optimizer.Properties.Resources.united_kingdom;
  5480. this.picFlag.Location = new System.Drawing.Point(309, 9);
  5481. this.picFlag.Name = "picFlag";
  5482. this.picFlag.Size = new System.Drawing.Size(32, 19);
  5483. this.picFlag.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  5484. this.picFlag.TabIndex = 75;
  5485. this.picFlag.TabStop = false;
  5486. //
  5487. // languagesL
  5488. //
  5489. this.languagesL.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  5490. this.languagesL.Font = new System.Drawing.Font("Segoe UI Semibold", 13F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5491. this.languagesL.ForeColor = System.Drawing.Color.DodgerBlue;
  5492. this.languagesL.Location = new System.Drawing.Point(718, 6);
  5493. this.languagesL.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  5494. this.languagesL.Name = "languagesL";
  5495. this.languagesL.Size = new System.Drawing.Size(246, 28);
  5496. this.languagesL.TabIndex = 71;
  5497. this.languagesL.Tag = "themeable";
  5498. this.languagesL.Text = "Choose language";
  5499. this.languagesL.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  5500. //
  5501. // linkLabel5
  5502. //
  5503. this.linkLabel5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  5504. this.linkLabel5.AutoSize = true;
  5505. this.linkLabel5.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5506. this.linkLabel5.ForeColor = System.Drawing.Color.DodgerBlue;
  5507. this.linkLabel5.LinkColor = System.Drawing.Color.DodgerBlue;
  5508. this.linkLabel5.Location = new System.Drawing.Point(730, 613);
  5509. this.linkLabel5.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  5510. this.linkLabel5.Name = "linkLabel5";
  5511. this.linkLabel5.Size = new System.Drawing.Size(198, 28);
  5512. this.linkLabel5.TabIndex = 65;
  5513. this.linkLabel5.TabStop = true;
  5514. this.linkLabel5.Tag = "themeable";
  5515. this.linkLabel5.Text = "GNU GPL 3.0 license";
  5516. this.linkLabel5.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel5_LinkClicked);
  5517. //
  5518. // btnOpenConf
  5519. //
  5520. this.btnOpenConf.BackColor = System.Drawing.Color.DodgerBlue;
  5521. this.btnOpenConf.FlatAppearance.BorderSize = 0;
  5522. this.btnOpenConf.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  5523. this.btnOpenConf.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  5524. this.btnOpenConf.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  5525. this.btnOpenConf.ForeColor = System.Drawing.Color.White;
  5526. this.btnOpenConf.Location = new System.Drawing.Point(34, 452);
  5527. this.btnOpenConf.Margin = new System.Windows.Forms.Padding(2);
  5528. this.btnOpenConf.Name = "btnOpenConf";
  5529. this.btnOpenConf.Size = new System.Drawing.Size(261, 31);
  5530. this.btnOpenConf.TabIndex = 63;
  5531. this.btnOpenConf.Text = "Show config folder";
  5532. this.btnOpenConf.UseVisualStyleBackColor = false;
  5533. this.btnOpenConf.Click += new System.EventHandler(this.btnOpenConf_Click);
  5534. //
  5535. // lblTroubleshoot
  5536. //
  5537. this.lblTroubleshoot.AutoSize = true;
  5538. this.lblTroubleshoot.Font = new System.Drawing.Font("Segoe UI Semibold", 13F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5539. this.lblTroubleshoot.ForeColor = System.Drawing.Color.DodgerBlue;
  5540. this.lblTroubleshoot.Location = new System.Drawing.Point(17, 379);
  5541. this.lblTroubleshoot.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  5542. this.lblTroubleshoot.Name = "lblTroubleshoot";
  5543. this.lblTroubleshoot.Size = new System.Drawing.Size(150, 25);
  5544. this.lblTroubleshoot.TabIndex = 62;
  5545. this.lblTroubleshoot.Tag = "themeable";
  5546. this.lblTroubleshoot.Text = "Troubleshooting";
  5547. //
  5548. // lblUpdating
  5549. //
  5550. this.lblUpdating.AutoSize = true;
  5551. this.lblUpdating.Font = new System.Drawing.Font("Segoe UI Semibold", 13F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5552. this.lblUpdating.ForeColor = System.Drawing.Color.DodgerBlue;
  5553. this.lblUpdating.Location = new System.Drawing.Point(17, 283);
  5554. this.lblUpdating.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  5555. this.lblUpdating.Name = "lblUpdating";
  5556. this.lblUpdating.Size = new System.Drawing.Size(142, 25);
  5557. this.lblUpdating.TabIndex = 61;
  5558. this.lblUpdating.Tag = "themeable";
  5559. this.lblUpdating.Text = "Check && update";
  5560. //
  5561. // btnViewLog
  5562. //
  5563. this.btnViewLog.BackColor = System.Drawing.Color.DodgerBlue;
  5564. this.btnViewLog.FlatAppearance.BorderSize = 0;
  5565. this.btnViewLog.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  5566. this.btnViewLog.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  5567. this.btnViewLog.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  5568. this.btnViewLog.ForeColor = System.Drawing.Color.White;
  5569. this.btnViewLog.Location = new System.Drawing.Point(34, 417);
  5570. this.btnViewLog.Margin = new System.Windows.Forms.Padding(2);
  5571. this.btnViewLog.Name = "btnViewLog";
  5572. this.btnViewLog.Size = new System.Drawing.Size(261, 31);
  5573. this.btnViewLog.TabIndex = 60;
  5574. this.btnViewLog.Text = "View errors";
  5575. this.btnViewLog.UseVisualStyleBackColor = false;
  5576. this.btnViewLog.Click += new System.EventHandler(this.btnViewLog_Click);
  5577. //
  5578. // l2
  5579. //
  5580. this.l2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  5581. this.l2.AutoSize = true;
  5582. this.l2.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5583. this.l2.ForeColor = System.Drawing.Color.DodgerBlue;
  5584. this.l2.LinkColor = System.Drawing.Color.DodgerBlue;
  5585. this.l2.Location = new System.Drawing.Point(771, 498);
  5586. this.l2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  5587. this.l2.Name = "l2";
  5588. this.l2.Size = new System.Drawing.Size(157, 28);
  5589. this.l2.TabIndex = 59;
  5590. this.l2.TabStop = true;
  5591. this.l2.Tag = "themeable";
  5592. this.l2.Text = "deadmoon © ∞";
  5593. this.l2.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.l2_LinkClicked);
  5594. //
  5595. // btnUpdate
  5596. //
  5597. this.btnUpdate.BackColor = System.Drawing.Color.DodgerBlue;
  5598. this.btnUpdate.FlatAppearance.BorderSize = 0;
  5599. this.btnUpdate.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  5600. this.btnUpdate.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  5601. this.btnUpdate.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  5602. this.btnUpdate.Font = new System.Drawing.Font("Segoe UI Semibold", 10F);
  5603. this.btnUpdate.ForeColor = System.Drawing.Color.White;
  5604. this.btnUpdate.Location = new System.Drawing.Point(34, 317);
  5605. this.btnUpdate.Margin = new System.Windows.Forms.Padding(2);
  5606. this.btnUpdate.Name = "btnUpdate";
  5607. this.btnUpdate.Size = new System.Drawing.Size(261, 31);
  5608. this.btnUpdate.TabIndex = 57;
  5609. this.btnUpdate.Text = "Check for update";
  5610. this.btnUpdate.UseVisualStyleBackColor = false;
  5611. this.btnUpdate.Click += new System.EventHandler(this.btnUpdate_Click);
  5612. //
  5613. // btnResetConfig
  5614. //
  5615. this.btnResetConfig.BackColor = System.Drawing.Color.DodgerBlue;
  5616. this.btnResetConfig.FlatAppearance.BorderColor = System.Drawing.Color.RoyalBlue;
  5617. this.btnResetConfig.FlatAppearance.BorderSize = 0;
  5618. this.btnResetConfig.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  5619. this.btnResetConfig.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  5620. this.btnResetConfig.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  5621. this.btnResetConfig.ForeColor = System.Drawing.Color.White;
  5622. this.btnResetConfig.Location = new System.Drawing.Point(34, 487);
  5623. this.btnResetConfig.Margin = new System.Windows.Forms.Padding(2);
  5624. this.btnResetConfig.Name = "btnResetConfig";
  5625. this.btnResetConfig.Size = new System.Drawing.Size(261, 31);
  5626. this.btnResetConfig.TabIndex = 56;
  5627. this.btnResetConfig.Text = "Repair";
  5628. this.btnResetConfig.UseVisualStyleBackColor = false;
  5629. this.btnResetConfig.Click += new System.EventHandler(this.btnResetConfig_Click);
  5630. //
  5631. // lblTheming
  5632. //
  5633. this.lblTheming.AutoSize = true;
  5634. this.lblTheming.Font = new System.Drawing.Font("Segoe UI Semibold", 13F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5635. this.lblTheming.ForeColor = System.Drawing.Color.DodgerBlue;
  5636. this.lblTheming.Location = new System.Drawing.Point(17, 123);
  5637. this.lblTheming.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  5638. this.lblTheming.Name = "lblTheming";
  5639. this.lblTheming.Size = new System.Drawing.Size(174, 25);
  5640. this.lblTheming.TabIndex = 55;
  5641. this.lblTheming.Tag = "themeable";
  5642. this.lblTheming.Text = "Choose your theme";
  5643. //
  5644. // quickAccessToggle
  5645. //
  5646. this.quickAccessToggle.AccessibleName = "Show Quick Access Menu";
  5647. this.quickAccessToggle.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  5648. this.quickAccessToggle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  5649. this.quickAccessToggle.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5650. this.quickAccessToggle.ForeColor = System.Drawing.Color.White;
  5651. this.quickAccessToggle.LabelText = "Show Quick Access Menu";
  5652. this.quickAccessToggle.Location = new System.Drawing.Point(21, 18);
  5653. this.quickAccessToggle.Margin = new System.Windows.Forms.Padding(6);
  5654. this.quickAccessToggle.Name = "quickAccessToggle";
  5655. this.quickAccessToggle.Size = new System.Drawing.Size(374, 24);
  5656. this.quickAccessToggle.TabIndex = 88;
  5657. this.quickAccessToggle.Tag = "themeable";
  5658. this.quickAccessToggle.ToggleChecked = false;
  5659. this.quickAccessToggle.ToggleClicked += new System.EventHandler(this.quickAccessToggle_ToggleClicked);
  5660. //
  5661. // imagesHw
  5662. //
  5663. this.imagesHw.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imagesHw.ImageStream")));
  5664. this.imagesHw.TransparentColor = System.Drawing.Color.Transparent;
  5665. this.imagesHw.Images.SetKeyName(0, "cpu.png");
  5666. this.imagesHw.Images.SetKeyName(1, "ram.png");
  5667. this.imagesHw.Images.SetKeyName(2, "gpu.png");
  5668. this.imagesHw.Images.SetKeyName(3, "mobo.png");
  5669. this.imagesHw.Images.SetKeyName(4, "1608923_hdd_o_icon.png");
  5670. this.imagesHw.Images.SetKeyName(5, "inet.png");
  5671. this.imagesHw.Images.SetKeyName(6, "audio.png");
  5672. this.imagesHw.Images.SetKeyName(7, "dev.png");
  5673. this.imagesHw.Images.SetKeyName(8, "os.png");
  5674. //
  5675. // defineCommandDialog
  5676. //
  5677. this.defineCommandDialog.Filter = "Executables [*.exe]|*.exe";
  5678. this.defineCommandDialog.Title = "Optimizer";
  5679. this.defineCommandDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.DefineCmd_FileOk);
  5680. //
  5681. // defineProgramDialog
  5682. //
  5683. this.defineProgramDialog.Filter = "Executables [*.exe]|*.exe";
  5684. this.defineProgramDialog.Title = "Optimizer";
  5685. this.defineProgramDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.DefineProgramDialog_FileOk);
  5686. //
  5687. // defineFolderDialog
  5688. //
  5689. this.defineFolderDialog.Description = "Optimizer";
  5690. //
  5691. // defineFileDialog
  5692. //
  5693. this.defineFileDialog.Filter = "All files [*.*]|*.*";
  5694. this.defineFileDialog.Title = "Optimizer";
  5695. this.defineFileDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.DefineFileDialog_FileOk);
  5696. //
  5697. // DefineProgramIconDialog
  5698. //
  5699. this.DefineProgramIconDialog.Filter = "Icon [*.ico]|*.ico|Executable [*.exe]|*.exe";
  5700. this.DefineProgramIconDialog.Title = "Optimizer";
  5701. this.DefineProgramIconDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.DefineProgramIconDialog_FileOk);
  5702. //
  5703. // DefineFolderIconDialog
  5704. //
  5705. this.DefineFolderIconDialog.Filter = "Icon [*.ico]|*.ico|Executable [*.exe]|*.exe";
  5706. this.DefineFolderIconDialog.Title = "Optimizer";
  5707. this.DefineFolderIconDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.DefineFolderIconDialog_FileOk);
  5708. //
  5709. // DefineURLIconDialog
  5710. //
  5711. this.DefineURLIconDialog.Filter = "Icon [*.ico]|*.ico|Executable [*.exe]|*.exe";
  5712. this.DefineURLIconDialog.Title = "Optimizer";
  5713. this.DefineURLIconDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.DefineURLIconDialog_FileOk);
  5714. //
  5715. // DefineFileIconDialog
  5716. //
  5717. this.DefineFileIconDialog.Filter = "Icon [*.ico]|*.ico|Executable [*.exe]|*.exe";
  5718. this.DefineFileIconDialog.Title = "Optimizer";
  5719. this.DefineFileIconDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.DefineFileIconDialog_FileOk);
  5720. //
  5721. // DefineCommandIconDialog
  5722. //
  5723. this.DefineCommandIconDialog.Filter = "Icon [*.ico]|*.ico|Executable [*.exe]|*.exe";
  5724. this.DefineCommandIconDialog.Title = "Optimizer";
  5725. this.DefineCommandIconDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.DefineCommandIconDialog_FileOk);
  5726. //
  5727. // ExportDialog
  5728. //
  5729. this.ExportDialog.Filter = "Text [*.txt]|*.txt";
  5730. this.ExportDialog.Title = "Optimizer";
  5731. //
  5732. // launcherMenu
  5733. //
  5734. this.launcherMenu.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(10)))), ((int)(((byte)(10)))), ((int)(((byte)(10)))));
  5735. this.launcherMenu.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5736. this.launcherMenu.ImageScalingSize = new System.Drawing.Size(20, 20);
  5737. this.launcherMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  5738. this.trayStartup,
  5739. this.trayCleaner,
  5740. this.trayPinger,
  5741. this.trayHosts,
  5742. this.trayAD,
  5743. this.trayHW,
  5744. this.trayRegistry,
  5745. this.toolStripSeparator1,
  5746. this.trayOptions,
  5747. this.trayRestartExplorer,
  5748. this.trayUnlocker,
  5749. this.toolStripSeparator2,
  5750. this.trayExit});
  5751. this.launcherMenu.Name = "launcherMenu";
  5752. this.launcherMenu.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
  5753. this.launcherMenu.Size = new System.Drawing.Size(221, 302);
  5754. //
  5755. // trayStartup
  5756. //
  5757. this.trayStartup.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5758. this.trayStartup.ForeColor = System.Drawing.Color.White;
  5759. this.trayStartup.Image = ((System.Drawing.Image)(resources.GetObject("trayStartup.Image")));
  5760. this.trayStartup.Name = "trayStartup";
  5761. this.trayStartup.Size = new System.Drawing.Size(220, 26);
  5762. this.trayStartup.Text = "Startup Manager";
  5763. this.trayStartup.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal;
  5764. this.trayStartup.Click += new System.EventHandler(this.startupItem_Click);
  5765. //
  5766. // trayCleaner
  5767. //
  5768. this.trayCleaner.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5769. this.trayCleaner.ForeColor = System.Drawing.Color.White;
  5770. this.trayCleaner.Image = ((System.Drawing.Image)(resources.GetObject("trayCleaner.Image")));
  5771. this.trayCleaner.Name = "trayCleaner";
  5772. this.trayCleaner.Size = new System.Drawing.Size(220, 26);
  5773. this.trayCleaner.Text = "PC Cleaner";
  5774. this.trayCleaner.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal;
  5775. this.trayCleaner.Click += new System.EventHandler(this.cleanerItem_Click);
  5776. //
  5777. // trayPinger
  5778. //
  5779. this.trayPinger.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5780. this.trayPinger.ForeColor = System.Drawing.Color.White;
  5781. this.trayPinger.Image = ((System.Drawing.Image)(resources.GetObject("trayPinger.Image")));
  5782. this.trayPinger.Name = "trayPinger";
  5783. this.trayPinger.Size = new System.Drawing.Size(220, 26);
  5784. this.trayPinger.Text = "Pinger Tool";
  5785. this.trayPinger.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal;
  5786. this.trayPinger.Click += new System.EventHandler(this.pingerItem_Click);
  5787. //
  5788. // trayHosts
  5789. //
  5790. this.trayHosts.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5791. this.trayHosts.ForeColor = System.Drawing.Color.White;
  5792. this.trayHosts.Image = ((System.Drawing.Image)(resources.GetObject("trayHosts.Image")));
  5793. this.trayHosts.Name = "trayHosts";
  5794. this.trayHosts.Size = new System.Drawing.Size(220, 26);
  5795. this.trayHosts.Text = "HOSTS Editor";
  5796. this.trayHosts.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal;
  5797. this.trayHosts.Click += new System.EventHandler(this.hostsItem_Click);
  5798. //
  5799. // trayAD
  5800. //
  5801. this.trayAD.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5802. this.trayAD.ForeColor = System.Drawing.Color.White;
  5803. this.trayAD.Image = ((System.Drawing.Image)(resources.GetObject("trayAD.Image")));
  5804. this.trayAD.Name = "trayAD";
  5805. this.trayAD.Size = new System.Drawing.Size(220, 26);
  5806. this.trayAD.Text = "Apps Downloader";
  5807. this.trayAD.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal;
  5808. this.trayAD.Click += new System.EventHandler(this.appsItem_Click);
  5809. //
  5810. // trayHW
  5811. //
  5812. this.trayHW.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5813. this.trayHW.ForeColor = System.Drawing.Color.White;
  5814. this.trayHW.Image = ((System.Drawing.Image)(resources.GetObject("trayHW.Image")));
  5815. this.trayHW.Name = "trayHW";
  5816. this.trayHW.Size = new System.Drawing.Size(220, 26);
  5817. this.trayHW.Text = "Hardware Information";
  5818. this.trayHW.Click += new System.EventHandler(this.trayHW_Click);
  5819. //
  5820. // trayRegistry
  5821. //
  5822. this.trayRegistry.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5823. this.trayRegistry.ForeColor = System.Drawing.Color.White;
  5824. this.trayRegistry.Image = ((System.Drawing.Image)(resources.GetObject("trayRegistry.Image")));
  5825. this.trayRegistry.Name = "trayRegistry";
  5826. this.trayRegistry.Size = new System.Drawing.Size(220, 26);
  5827. this.trayRegistry.Text = "Registry Repair";
  5828. this.trayRegistry.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal;
  5829. this.trayRegistry.Click += new System.EventHandler(this.trayRegistry_Click);
  5830. //
  5831. // toolStripSeparator1
  5832. //
  5833. this.toolStripSeparator1.BackColor = System.Drawing.Color.DodgerBlue;
  5834. this.toolStripSeparator1.ForeColor = System.Drawing.Color.White;
  5835. this.toolStripSeparator1.Name = "toolStripSeparator1";
  5836. this.toolStripSeparator1.Size = new System.Drawing.Size(217, 6);
  5837. this.toolStripSeparator1.Tag = "";
  5838. //
  5839. // trayOptions
  5840. //
  5841. this.trayOptions.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5842. this.trayOptions.ForeColor = System.Drawing.Color.White;
  5843. this.trayOptions.Image = ((System.Drawing.Image)(resources.GetObject("trayOptions.Image")));
  5844. this.trayOptions.Name = "trayOptions";
  5845. this.trayOptions.Size = new System.Drawing.Size(220, 26);
  5846. this.trayOptions.Text = "Options";
  5847. this.trayOptions.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal;
  5848. this.trayOptions.Click += new System.EventHandler(this.trayOptions_Click);
  5849. //
  5850. // trayRestartExplorer
  5851. //
  5852. this.trayRestartExplorer.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5853. this.trayRestartExplorer.ForeColor = System.Drawing.Color.White;
  5854. this.trayRestartExplorer.Image = ((System.Drawing.Image)(resources.GetObject("trayRestartExplorer.Image")));
  5855. this.trayRestartExplorer.Name = "trayRestartExplorer";
  5856. this.trayRestartExplorer.Size = new System.Drawing.Size(220, 26);
  5857. this.trayRestartExplorer.Text = "Restart Explorer";
  5858. this.trayRestartExplorer.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal;
  5859. this.trayRestartExplorer.Click += new System.EventHandler(this.restartExpolorerItem_Click);
  5860. //
  5861. // trayUnlocker
  5862. //
  5863. this.trayUnlocker.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold);
  5864. this.trayUnlocker.ForeColor = System.Drawing.Color.White;
  5865. this.trayUnlocker.Image = ((System.Drawing.Image)(resources.GetObject("trayUnlocker.Image")));
  5866. this.trayUnlocker.Name = "trayUnlocker";
  5867. this.trayUnlocker.Size = new System.Drawing.Size(220, 26);
  5868. this.trayUnlocker.Text = "Find Handles";
  5869. this.trayUnlocker.Click += new System.EventHandler(this.trayUnlocker_Click);
  5870. //
  5871. // toolStripSeparator2
  5872. //
  5873. this.toolStripSeparator2.Name = "toolStripSeparator2";
  5874. this.toolStripSeparator2.Size = new System.Drawing.Size(217, 6);
  5875. //
  5876. // trayExit
  5877. //
  5878. this.trayExit.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5879. this.trayExit.ForeColor = System.Drawing.Color.White;
  5880. this.trayExit.Image = ((System.Drawing.Image)(resources.GetObject("trayExit.Image")));
  5881. this.trayExit.Name = "trayExit";
  5882. this.trayExit.Size = new System.Drawing.Size(220, 26);
  5883. this.trayExit.Text = "Exit";
  5884. this.trayExit.Click += new System.EventHandler(this.exitItem_Click);
  5885. //
  5886. // launcherIcon
  5887. //
  5888. this.launcherIcon.ContextMenuStrip = this.launcherMenu;
  5889. this.launcherIcon.Icon = ((System.Drawing.Icon)(resources.GetObject("launcherIcon.Icon")));
  5890. this.launcherIcon.Text = "Optimizer";
  5891. this.launcherIcon.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.launcherIcon_MouseDoubleClick);
  5892. //
  5893. // MainForm
  5894. //
  5895. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  5896. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  5897. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  5898. this.ClientSize = new System.Drawing.Size(984, 748);
  5899. this.Controls.Add(this.bpanel);
  5900. this.Controls.Add(this.tpanel);
  5901. this.DoubleBuffered = true;
  5902. this.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5903. this.ForeColor = System.Drawing.Color.White;
  5904. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  5905. this.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  5906. this.MinimumSize = new System.Drawing.Size(967, 539);
  5907. this.Name = "MainForm";
  5908. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  5909. this.Text = "Optimizer";
  5910. this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
  5911. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Main_FormClosing);
  5912. this.Load += new System.EventHandler(this.Main_Load);
  5913. this.ResizeBegin += new System.EventHandler(this.MainForm_ResizeBegin);
  5914. this.ResizeEnd += new System.EventHandler(this.MainForm_ResizeEnd);
  5915. this.tpanel.ResumeLayout(false);
  5916. this.tpanel.PerformLayout();
  5917. ((System.ComponentModel.ISupportInitialize)(this.picRestartNeeded)).EndInit();
  5918. ((System.ComponentModel.ISupportInitialize)(this.picLab)).EndInit();
  5919. ((System.ComponentModel.ISupportInitialize)(this.picUpdate)).EndInit();
  5920. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  5921. this.bpanel.ResumeLayout(false);
  5922. this.tabCollection.ResumeLayout(false);
  5923. this.universalTab.ResumeLayout(false);
  5924. this.universalTab.PerformLayout();
  5925. this.windows10Tab.ResumeLayout(false);
  5926. this.windows10Tab.PerformLayout();
  5927. this.panelWin11Tweaks.ResumeLayout(false);
  5928. this.panelWin11Tweaks.PerformLayout();
  5929. this.windows8Tab.ResumeLayout(false);
  5930. this.windows8Tab.PerformLayout();
  5931. this.modernAppsTab.ResumeLayout(false);
  5932. this.modernAppsTab.PerformLayout();
  5933. this.startupTab.ResumeLayout(false);
  5934. this.startupTab.PerformLayout();
  5935. this.panel3.ResumeLayout(false);
  5936. this.appsTab.ResumeLayout(false);
  5937. this.appsTab.PerformLayout();
  5938. this.panel10.ResumeLayout(false);
  5939. this.panel10.PerformLayout();
  5940. this.panelCommonApps.ResumeLayout(false);
  5941. this.panelCommonApps.PerformLayout();
  5942. this.cleanerTab.ResumeLayout(false);
  5943. this.panel14.ResumeLayout(false);
  5944. this.panel13.ResumeLayout(false);
  5945. this.panel13.PerformLayout();
  5946. this.panel1.ResumeLayout(false);
  5947. this.panel1.PerformLayout();
  5948. ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit();
  5949. ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
  5950. ((System.ComponentModel.ISupportInitialize)(this.pictureBox11)).EndInit();
  5951. ((System.ComponentModel.ISupportInitialize)(this.pictureBox10)).EndInit();
  5952. ((System.ComponentModel.ISupportInitialize)(this.pictureBox9)).EndInit();
  5953. ((System.ComponentModel.ISupportInitialize)(this.pictureBox8)).EndInit();
  5954. this.pingerTab.ResumeLayout(false);
  5955. this.netTools.ResumeLayout(false);
  5956. this.tabPage1.ResumeLayout(false);
  5957. this.tabPage1.PerformLayout();
  5958. this.panel7.ResumeLayout(false);
  5959. this.tabPage2.ResumeLayout(false);
  5960. this.tabPage2.PerformLayout();
  5961. this.hostsEditorTab.ResumeLayout(false);
  5962. this.hostsEditorTab.PerformLayout();
  5963. this.panel4.ResumeLayout(false);
  5964. this.panel4.PerformLayout();
  5965. this.panelList.ResumeLayout(false);
  5966. this.registryFixerTab.ResumeLayout(false);
  5967. this.registryFixerTab.PerformLayout();
  5968. this.panel2.ResumeLayout(false);
  5969. this.panel2.PerformLayout();
  5970. this.indiciumTab.ResumeLayout(false);
  5971. this.panel12.ResumeLayout(false);
  5972. this.indiciumMenu.ResumeLayout(false);
  5973. this.panel11.ResumeLayout(false);
  5974. this.integratorTab.ResumeLayout(false);
  5975. this.synapse.ResumeLayout(false);
  5976. this.integratorInfoTab.ResumeLayout(false);
  5977. this.integratorInfoTab.PerformLayout();
  5978. this.tabPage8.ResumeLayout(false);
  5979. this.tabPage8.PerformLayout();
  5980. this.itemnamegroup.ResumeLayout(false);
  5981. this.itemnamegroup.PerformLayout();
  5982. this.security.ResumeLayout(false);
  5983. this.security.PerformLayout();
  5984. this.itemposition.ResumeLayout(false);
  5985. this.itemposition.PerformLayout();
  5986. this.icontoaddgroup.ResumeLayout(false);
  5987. this.icontoaddgroup.PerformLayout();
  5988. this.itemtoaddgroup.ResumeLayout(false);
  5989. this.itemtoaddgroup.PerformLayout();
  5990. this.itemtype.ResumeLayout(false);
  5991. this.itemtype.PerformLayout();
  5992. this.tabPage9.ResumeLayout(false);
  5993. this.tabPage9.PerformLayout();
  5994. this.panel5.ResumeLayout(false);
  5995. this.tabPage10.ResumeLayout(false);
  5996. this.tabPage10.PerformLayout();
  5997. this.tabPage11.ResumeLayout(false);
  5998. this.tabPage11.PerformLayout();
  5999. this.panel6.ResumeLayout(false);
  6000. this.optionsTab.ResumeLayout(false);
  6001. this.optionsTab.PerformLayout();
  6002. ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
  6003. ((System.ComponentModel.ISupportInitialize)(this.pictureBox17)).EndInit();
  6004. ((System.ComponentModel.ISupportInitialize)(this.pictureBox14)).EndInit();
  6005. ((System.ComponentModel.ISupportInitialize)(this.pictureBox13)).EndInit();
  6006. ((System.ComponentModel.ISupportInitialize)(this.pictureBox12)).EndInit();
  6007. ((System.ComponentModel.ISupportInitialize)(this.pictureBox85)).EndInit();
  6008. this.panel9.ResumeLayout(false);
  6009. ((System.ComponentModel.ISupportInitialize)(this.picFlag)).EndInit();
  6010. this.launcherMenu.ResumeLayout(false);
  6011. this.ResumeLayout(false);
  6012. }
  6013. #endregion
  6014. private System.Windows.Forms.Panel tpanel;
  6015. private System.Windows.Forms.Label txtBitness;
  6016. private System.Windows.Forms.Label txtOS;
  6017. private System.Windows.Forms.Label txtVersion;
  6018. private System.Windows.Forms.PictureBox pictureBox1;
  6019. private System.Windows.Forms.Label label2;
  6020. private System.Windows.Forms.Panel bpanel;
  6021. private Optimizer.MoonTabs tabCollection;
  6022. private System.Windows.Forms.TabPage universalTab;
  6023. private System.Windows.Forms.TabPage windows10Tab;
  6024. private System.Windows.Forms.TabPage windows8Tab;
  6025. private System.Windows.Forms.TabPage cleanerTab;
  6026. private System.Windows.Forms.TabPage startupTab;
  6027. private System.Windows.Forms.Label startupTitle;
  6028. private System.Windows.Forms.Button removeStartupItemB;
  6029. private System.Windows.Forms.TabPage registryFixerTab;
  6030. private System.Windows.Forms.Label registryTitle;
  6031. private System.Windows.Forms.Button regFixB;
  6032. private System.Windows.Forms.Panel panel2;
  6033. private MoonCheck checkRegistryEditor;
  6034. private MoonCheck checkEnableAll;
  6035. private MoonCheck checkContextMenu;
  6036. private MoonCheck checkTaskManager;
  6037. private MoonCheck checkCommandPrompt;
  6038. private MoonCheck checkFirewall;
  6039. private MoonCheck checkRunDialog;
  6040. private MoonCheck checkFolderOptions;
  6041. private MoonCheck checkControlPanel;
  6042. private MoonCheck checkRestartExplorer;
  6043. private System.Windows.Forms.Panel panel3;
  6044. private System.Windows.Forms.Label regLbl;
  6045. private System.Windows.Forms.ListView listStartupItems;
  6046. private System.Windows.Forms.ColumnHeader columnHeader1;
  6047. private System.Windows.Forms.ColumnHeader columnHeader2;
  6048. private System.Windows.Forms.Button refreshStartupB;
  6049. private System.Windows.Forms.Button locateFileB;
  6050. private System.Windows.Forms.ColumnHeader columnHeader3;
  6051. private System.Windows.Forms.TabPage hostsEditorTab;
  6052. private System.Windows.Forms.Label hostsTitle;
  6053. private System.Windows.Forms.LinkLabel linkLocate;
  6054. private System.Windows.Forms.LinkLabel linkAdvancedEdit;
  6055. private System.Windows.Forms.LinkLabel linkRestoreDefault;
  6056. private MoonList listHostEntries;
  6057. private System.Windows.Forms.Panel panel4;
  6058. private System.Windows.Forms.Button removeAllHostsB;
  6059. private System.Windows.Forms.Button refreshHostsB;
  6060. private System.Windows.Forms.Button removeHostB;
  6061. private System.Windows.Forms.TextBox txtDomain;
  6062. private System.Windows.Forms.Label lblDomain;
  6063. private System.Windows.Forms.Label lblIP;
  6064. private System.Windows.Forms.Button addHostB;
  6065. private System.Windows.Forms.TextBox txtIP;
  6066. private System.Windows.Forms.TabPage integratorTab;
  6067. private Optimizer.MoonTabs synapse;
  6068. private System.Windows.Forms.TabPage integratorInfoTab;
  6069. private System.Windows.Forms.TabPage tabPage8;
  6070. private System.Windows.Forms.TabPage tabPage9;
  6071. private System.Windows.Forms.TabPage tabPage10;
  6072. private System.Windows.Forms.TabPage tabPage11;
  6073. private System.Windows.Forms.Label integrator7;
  6074. private System.Windows.Forms.Label integrator6;
  6075. private System.Windows.Forms.Label integrator5;
  6076. private System.Windows.Forms.Label integrator4;
  6077. private System.Windows.Forms.Label integrator3;
  6078. private System.Windows.Forms.Label integrator2;
  6079. private System.Windows.Forms.Label integrator1;
  6080. private System.Windows.Forms.Button button48;
  6081. private System.Windows.Forms.TextBox txtRunKeyword;
  6082. private System.Windows.Forms.Label ccKeywordL;
  6083. private System.Windows.Forms.TextBox txtRunFile;
  6084. private System.Windows.Forms.Label ccFileL;
  6085. private System.Windows.Forms.Label ccL;
  6086. private System.Windows.Forms.Button btnCreateCustomCommand;
  6087. internal System.Windows.Forms.OpenFileDialog defineCommandDialog;
  6088. private System.Windows.Forms.Label readyMenusL;
  6089. private MoonList listDesktopItems;
  6090. private System.Windows.Forms.Label removeIntegratorItemsL;
  6091. private System.Windows.Forms.Button refreshIIB;
  6092. private System.Windows.Forms.Button removeDIB;
  6093. private System.Windows.Forms.Button removeAllIIB;
  6094. private System.Windows.Forms.GroupBox itemtype;
  6095. private MoonRadio radioCommand;
  6096. private MoonRadio radioProgram;
  6097. private MoonRadio radioFile;
  6098. private MoonRadio radioFolder;
  6099. private MoonRadio radioLink;
  6100. private System.Windows.Forms.Label addItemL;
  6101. private System.Windows.Forms.GroupBox icontoaddgroup;
  6102. private MoonCheck checkDefaultIcon;
  6103. private System.Windows.Forms.Button btnBrowseIcon;
  6104. private System.Windows.Forms.TextBox txtIcon;
  6105. private System.Windows.Forms.GroupBox itemtoaddgroup;
  6106. private System.Windows.Forms.Button btnBrowseItem;
  6107. private System.Windows.Forms.TextBox txtItem;
  6108. private System.Windows.Forms.GroupBox security;
  6109. private MoonCheck checkShift;
  6110. private System.Windows.Forms.GroupBox itemposition;
  6111. private MoonRadio radioTop;
  6112. private MoonRadio radioMiddle;
  6113. private MoonRadio radioBottom;
  6114. private System.Windows.Forms.GroupBox itemnamegroup;
  6115. private System.Windows.Forms.TextBox txtItemName;
  6116. private System.Windows.Forms.Button btnAddItem;
  6117. internal System.Windows.Forms.OpenFileDialog defineProgramDialog;
  6118. internal System.Windows.Forms.FolderBrowserDialog defineFolderDialog;
  6119. internal System.Windows.Forms.OpenFileDialog defineFileDialog;
  6120. internal System.Windows.Forms.OpenFileDialog DefineProgramIconDialog;
  6121. internal System.Windows.Forms.OpenFileDialog DefineFolderIconDialog;
  6122. internal System.Windows.Forms.OpenFileDialog DefineURLIconDialog;
  6123. internal System.Windows.Forms.OpenFileDialog DefineFileIconDialog;
  6124. internal System.Windows.Forms.OpenFileDialog DefineCommandIconDialog;
  6125. private System.Windows.Forms.Button findInRegB;
  6126. private System.Windows.Forms.TabPage optionsTab;
  6127. private System.Windows.Forms.Label lblTheming;
  6128. private MoonList listCustomCommands;
  6129. private System.Windows.Forms.Label removeCCL;
  6130. private System.Windows.Forms.Button removeCCB;
  6131. private System.Windows.Forms.Button refreshCCB;
  6132. private System.Windows.Forms.Panel panel5;
  6133. private System.Windows.Forms.Panel panel6;
  6134. private System.Windows.Forms.Panel panelList;
  6135. private System.Windows.Forms.TabPage modernAppsTab;
  6136. private System.Windows.Forms.Label txtModernAppsTitle;
  6137. private System.Windows.Forms.Button uninstallModernAppsButton;
  6138. private System.Windows.Forms.Button refreshModernAppsButton;
  6139. private MoonCheck chkSelectAllModernApps;
  6140. private System.Windows.Forms.Button btnResetConfig;
  6141. private System.Windows.Forms.Button btnUpdate;
  6142. private MoonCheck chkReadOnly;
  6143. private System.Windows.Forms.Label lblLock;
  6144. private MoonCheck chkBlock;
  6145. private System.Windows.Forms.TabPage appsTab;
  6146. private System.Windows.Forms.Button btnDownloadApps;
  6147. private System.Windows.Forms.Label appsTitle;
  6148. private System.Windows.Forms.Label setDownDirLbl;
  6149. private System.Windows.Forms.TextBox txtDownloadFolder;
  6150. private System.Windows.Forms.Button changeDownDirB;
  6151. private System.Windows.Forms.Label txtDownloadStatus;
  6152. private System.Windows.Forms.Label bitPref;
  6153. private MoonRadio c32;
  6154. private System.Windows.Forms.Button goToDownloadsB;
  6155. private System.Windows.Forms.LinkLabel linkWarnings;
  6156. private MoonCheck cAutoInstall;
  6157. private MoonCheck chkOnlyRemovable;
  6158. private MoonProgress progressDownloader;
  6159. private System.Windows.Forms.Button btnGetFeed;
  6160. private System.Windows.Forms.Panel panelCommonApps;
  6161. private System.Windows.Forms.LinkLabel l2;
  6162. private System.Windows.Forms.Panel groupSystemTools;
  6163. private System.Windows.Forms.Button btnViewLog;
  6164. private System.Windows.Forms.Label lblTroubleshoot;
  6165. private System.Windows.Forms.Label lblUpdating;
  6166. private System.Windows.Forms.Button btnOpenConf;
  6167. private System.Windows.Forms.TabPage pingerTab;
  6168. internal System.Windows.Forms.SaveFileDialog ExportDialog;
  6169. private System.Windows.Forms.ContextMenuStrip launcherMenu;
  6170. private System.Windows.Forms.NotifyIcon launcherIcon;
  6171. private System.Windows.Forms.ToolStripMenuItem trayStartup;
  6172. private System.Windows.Forms.ToolStripMenuItem trayCleaner;
  6173. private System.Windows.Forms.ToolStripMenuItem trayPinger;
  6174. private System.Windows.Forms.ToolStripMenuItem trayHosts;
  6175. private System.Windows.Forms.ToolStripMenuItem trayAD;
  6176. private System.Windows.Forms.ToolStripMenuItem trayExit;
  6177. private System.Windows.Forms.LinkLabel linkLabel5;
  6178. private System.Windows.Forms.ToolStripMenuItem trayRestartExplorer;
  6179. private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
  6180. private MoonRadio c64;
  6181. private System.Windows.Forms.Panel panel10;
  6182. private Button backupStartupB;
  6183. private Button restoreStartupB;
  6184. private TextBox txtBackupTitle;
  6185. private Label lblBackupTitle;
  6186. private Button doBackup;
  6187. private Button cancelBackup;
  6188. private Label languagesL;
  6189. private PictureBox pictureBox85;
  6190. private Panel panel9;
  6191. private PictureBox picFlag;
  6192. private Label txtNetFw;
  6193. private Panel groupCoding;
  6194. private Panel groupInternet;
  6195. private Panel groupSoundVideo;
  6196. private Label lblVideoSound;
  6197. private Label lblCoding;
  6198. private Label lblSystemTools;
  6199. private Label lblInternet;
  6200. private Panel panelWin11Tweaks;
  6201. private ToolStripMenuItem trayRegistry;
  6202. private ToolStripMenuItem trayOptions;
  6203. private Label txtFeedError;
  6204. private ToggleCard performanceSw;
  6205. private ToggleCard faxSw;
  6206. private ToggleCard homegroupSw;
  6207. private ToggleCard stickySw;
  6208. private ToggleCard compatSw;
  6209. private ToggleCard mediaSharingSw;
  6210. private ToggleCard printSw;
  6211. private ToggleCard superfetchSw;
  6212. private ToggleCard reportingSw;
  6213. private ToggleCard systemRestoreSw;
  6214. private ToggleCard officeTelemetrySw;
  6215. private ToggleCard smartScreenSw;
  6216. private ToggleCard networkSw;
  6217. private ToggleCard telemetryTasksSw;
  6218. private ToggleCard defenderSw;
  6219. private ToggleCard tpmSw;
  6220. private ToggleCard xboxSw;
  6221. private ToggleCard inkSw;
  6222. private ToggleCard spellSw;
  6223. private ToggleCard longPathsSw;
  6224. private ToggleCard uODSw;
  6225. private ToggleCard peopleSw;
  6226. private ToggleCard oldExplorerSw;
  6227. private ToggleCard adsSw;
  6228. private ToggleCard storeUpdatesSw;
  6229. private ToggleCard oldMixerSw;
  6230. private ToggleCard insiderSw;
  6231. private ToggleCard castSw;
  6232. private ToggleCard gameBarSw;
  6233. private ToggleCard sensorSw;
  6234. private ToggleCard ccSw;
  6235. private ToggleCard cortanaSw;
  6236. private ToggleCard privacySw;
  6237. private ToggleCard driversSw;
  6238. private ToggleCard telemetryServicesSw;
  6239. private ToggleCard autoUpdatesSw;
  6240. private ToggleCard classicRibbonSw;
  6241. private ToggleCard classicContextSw;
  6242. private ToggleCard smallerTaskbarSw;
  6243. private ToggleCard widgetsSw;
  6244. private ToggleCard chatSw;
  6245. private ToggleCard snapAssistSw;
  6246. private ToggleCard leftTaskbarSw;
  6247. private ToggleCard disableOneDriveSw;
  6248. private ToggleCard quickAccessToggle;
  6249. private PictureBox picUpdate;
  6250. private TabPage indiciumTab;
  6251. private MoonTree specsTree;
  6252. private Panel panel12;
  6253. private Panel panel11;
  6254. private ImageList imagesHw;
  6255. private ToggleCard hwDetailed;
  6256. private ToolStripMenuItem trayHW;
  6257. private ContextMenuStrip indiciumMenu;
  6258. private ToolStripMenuItem toolHWCopy;
  6259. private ToolStripMenuItem toolHWGoogle;
  6260. private ToolStripMenuItem toolHWDuck;
  6261. private ToolStripSeparator toolStripSeparator2;
  6262. private ToggleCard vsSw;
  6263. private ToggleCard chromeTelemetrySw;
  6264. private ToggleCard ffTelemetrySw;
  6265. private LinkLabel linkLabel1;
  6266. private PictureBox pictureBox13;
  6267. private PictureBox pictureBox12;
  6268. private PictureBox pictureBox14;
  6269. private PictureBox picLab;
  6270. private PictureBox pictureBox17;
  6271. private LinkLabel linkLabel2;
  6272. private Button btnCopyHW;
  6273. private Button btnSaveHW;
  6274. private MoonSelect boxLang;
  6275. private Panel panel1;
  6276. private MoonCheck edgeSession;
  6277. private MoonCheck edgeHistory;
  6278. private Button cleanDriveB;
  6279. private Label lblFootprint;
  6280. private MoonCheck edgeCookies;
  6281. private Label lblPretext;
  6282. private MoonCheck edgeCache;
  6283. private MoonCheck IECache;
  6284. private MoonCheck firefoxHistory;
  6285. private MoonCheck firefoxCookies;
  6286. private MoonCheck firefoxCache;
  6287. private MoonCheck chromePws;
  6288. private MoonCheck chromeSession;
  6289. private MoonCheck chromeHistory;
  6290. private MoonCheck chromeCookies;
  6291. private MoonCheck chromeCache;
  6292. private Label label7;
  6293. private Label label6;
  6294. private Label label5;
  6295. private Label label4;
  6296. private PictureBox pictureBox11;
  6297. private PictureBox pictureBox10;
  6298. private PictureBox pictureBox9;
  6299. private PictureBox pictureBox8;
  6300. private MoonCheck checkErrorReports;
  6301. private MoonCheck checkTemp;
  6302. private MoonCheck checkBin;
  6303. private MoonCheck checkMiniDumps;
  6304. private PictureBox pictureBox2;
  6305. private Label label8;
  6306. private Panel panel13;
  6307. private Panel panel14;
  6308. private MoonCheckList listCleanPreview;
  6309. private LinkLabel checkSelectAll;
  6310. private Button analyzeDriveB;
  6311. private ToggleCard gameModeSw;
  6312. private PictureBox pictureBox3;
  6313. private LinkLabel linkLabel3;
  6314. private ToggleCard compactModeSw;
  6315. private ToggleCard PMB;
  6316. private ToggleCard AddCMDB;
  6317. private ToggleCard AddOwnerB;
  6318. private ToggleCard DSB;
  6319. private ToggleCard SSB;
  6320. private ToggleCard STB;
  6321. private ToggleCard WAB;
  6322. private Label label9;
  6323. private PictureBox pictureBox4;
  6324. private MoonCheck bravePasswords;
  6325. private MoonCheck braveSession;
  6326. private MoonCheck braveHistory;
  6327. private MoonCheck braveCookies;
  6328. private MoonCheck braveCache;
  6329. private ToolStripMenuItem trayUnlocker;
  6330. private Panel panelUwp;
  6331. private ToggleCard stickersSw;
  6332. private PictureBox picRestartNeeded;
  6333. private Label restartAndApply;
  6334. private ToggleCard hibernateSw;
  6335. private ToggleCard smb2Sw;
  6336. private ToggleCard smb1Sw;
  6337. private ToggleCard ntfsStampSw;
  6338. private Button btnWinClean;
  6339. private TabPage tabPage1;
  6340. private Button btnExport;
  6341. private Button copyB;
  6342. private Button copyIPB;
  6343. private Panel panel7;
  6344. private MoonList listPingResults;
  6345. private Label lblResults;
  6346. private Button btnShodan;
  6347. private Button btnPing;
  6348. private TextBox txtPingInput;
  6349. private Label lblPinger;
  6350. private Label pingerTitle;
  6351. private TabPage tabPage2;
  6352. private LinkLabel linkDNSv6A;
  6353. private LinkLabel linkDNSv4A;
  6354. private LinkLabel linkDNSv6;
  6355. private LinkLabel linkDNSv4;
  6356. private Label label3;
  6357. private Label label1;
  6358. private Button btnOpenNetwork;
  6359. private Button flushCacheB;
  6360. private MoonSelect boxAdapter;
  6361. private MoonSelect boxDNS;
  6362. private Controls.ColorPicker colorPicker1;
  6363. private ToggleCard autoStartToggle;
  6364. private ToggleCard nvidiaTelemetrySw;
  6365. private Optimizer.MoonTabs netTools;
  6366. private Label dnsTitle;
  6367. private ToggleCard vbsSw;
  6368. private Label label14s;
  6369. private Label label4a;
  6370. private Label drives;
  6371. private Label label13;
  6372. private Label label14;
  6373. private Label label15;
  6374. private Label label16;
  6375. private Label label18;
  6376. private Label label17;
  6377. private Label label19;
  6378. private Label label20;
  6379. private Label label21;
  6380. private ToggleCard winSearchSw;
  6381. private Button btnRestoreUwp;
  6382. private ToggleCard telemetrySvcToggle;
  6383. }
  6384. }