MainForm.Designer.cs 306 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082
  1. using System.Windows.Forms;
  2. namespace Optimizer
  3. {
  4. partial class MainForm
  5. {
  6. /// <summary>
  7. /// Required designer variable.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// Clean up any resources being used.
  12. /// </summary>
  13. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region Windows Form Designer generated code
  23. /// <summary>
  24. /// Required method for Designer support - do not modify
  25. /// the contents of this method with the code editor.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.components = new System.ComponentModel.Container();
  30. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
  31. this.tpanel = new System.Windows.Forms.Panel();
  32. this.txtNetFw = new System.Windows.Forms.Label();
  33. this.linkUpdate = new System.Windows.Forms.LinkLabel();
  34. this.lblLab = new System.Windows.Forms.Label();
  35. this.txtBitness = new System.Windows.Forms.Label();
  36. this.txtOS = new System.Windows.Forms.Label();
  37. this.txtVersion = new System.Windows.Forms.Label();
  38. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  39. this.label2 = new System.Windows.Forms.Label();
  40. this.bpanel = new System.Windows.Forms.Panel();
  41. this.tabCollection = new System.Windows.Forms.TabControl();
  42. this.universalTab = new System.Windows.Forms.TabPage();
  43. this.stickySw = new Optimizer.ToggleSwitch();
  44. this.smartScreenSw = new Optimizer.ToggleSwitch();
  45. this.faxSw = new Optimizer.ToggleSwitch();
  46. this.compatSw = new Optimizer.ToggleSwitch();
  47. this.officeTelemetrySw = new Optimizer.ToggleSwitch();
  48. this.telemetryTasksSw = new Optimizer.ToggleSwitch();
  49. this.superfetchSw = new Optimizer.ToggleSwitch();
  50. this.homegroupSw = new Optimizer.ToggleSwitch();
  51. this.reportingSw = new Optimizer.ToggleSwitch();
  52. this.mediaSharingSw = new Optimizer.ToggleSwitch();
  53. this.printSw = new Optimizer.ToggleSwitch();
  54. this.systemRestoreSw = new Optimizer.ToggleSwitch();
  55. this.performanceSw = new Optimizer.ToggleSwitch();
  56. this.defenderSw = new Optimizer.ToggleSwitch();
  57. this.networkSw = new Optimizer.ToggleSwitch();
  58. this.restartButton = new System.Windows.Forms.Button();
  59. this.windows11Tab = new System.Windows.Forms.TabPage();
  60. this.widgetsSw = new Optimizer.ToggleSwitch();
  61. this.snapAssistSw = new Optimizer.ToggleSwitch();
  62. this.leftTaskbarSw = new Optimizer.ToggleSwitch();
  63. this.windows10Tab = new System.Windows.Forms.TabPage();
  64. this.restartButton10 = new System.Windows.Forms.Button();
  65. this.actionSw = new Optimizer.ToggleSwitch();
  66. this.castSw = new Optimizer.ToggleSwitch();
  67. this.longPathsSw = new Optimizer.ToggleSwitch();
  68. this.ccSw = new Optimizer.ToggleSwitch();
  69. this.featuresSw = new Optimizer.ToggleSwitch();
  70. this.insiderSw = new Optimizer.ToggleSwitch();
  71. this.darkSw = new Optimizer.ToggleSwitch();
  72. this.spellSw = new Optimizer.ToggleSwitch();
  73. this.inkSw = new Optimizer.ToggleSwitch();
  74. this.driversSw = new Optimizer.ToggleSwitch();
  75. this.sensorSw = new Optimizer.ToggleSwitch();
  76. this.privacySw = new Optimizer.ToggleSwitch();
  77. this.telemetryServicesSw = new Optimizer.ToggleSwitch();
  78. this.autoUpdatesSw = new Optimizer.ToggleSwitch();
  79. this.peopleSw = new Optimizer.ToggleSwitch();
  80. this.adsSw = new Optimizer.ToggleSwitch();
  81. this.colorBarSw = new Optimizer.ToggleSwitch();
  82. this.oldExplorerSw = new Optimizer.ToggleSwitch();
  83. this.xboxSw = new Optimizer.ToggleSwitch();
  84. this.cortanaSw = new Optimizer.ToggleSwitch();
  85. this.gameBarSw = new Optimizer.ToggleSwitch();
  86. this.uODSw = new Optimizer.ToggleSwitch();
  87. this.oldMixerSw = new Optimizer.ToggleSwitch();
  88. this.windows8Tab = new System.Windows.Forms.TabPage();
  89. this.disableOneDriveSw = new Optimizer.ToggleSwitch();
  90. this.restartButton8 = new System.Windows.Forms.Button();
  91. this.modernAppsTab = new System.Windows.Forms.TabPage();
  92. this.chkOnlyRemovable = new Optimizer.ColoredCheckBox();
  93. this.chkSelectAllModernApps = new Optimizer.ColoredCheckBox();
  94. this.txtUWP = new System.Windows.Forms.Label();
  95. this.uninstallModernAppsButton = new System.Windows.Forms.Button();
  96. this.refreshModernAppsButton = new System.Windows.Forms.Button();
  97. this.txtModernAppsTitle = new System.Windows.Forms.Label();
  98. this.panelModernAppsList = new System.Windows.Forms.Panel();
  99. this.listModernApps = new System.Windows.Forms.CheckedListBox();
  100. this.startupTab = new System.Windows.Forms.TabPage();
  101. this.cancelBackup = new System.Windows.Forms.Button();
  102. this.doBackup = new System.Windows.Forms.Button();
  103. this.txtBackupTitle = new System.Windows.Forms.TextBox();
  104. this.lblBackupTitle = new System.Windows.Forms.Label();
  105. this.restoreStartupB = new System.Windows.Forms.Button();
  106. this.backupStartupB = new System.Windows.Forms.Button();
  107. this.findInRegB = new System.Windows.Forms.Button();
  108. this.locateFileB = new System.Windows.Forms.Button();
  109. this.refreshStartupB = new System.Windows.Forms.Button();
  110. this.panel3 = new System.Windows.Forms.Panel();
  111. this.listStartupItems = new System.Windows.Forms.ListView();
  112. this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  113. this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  114. this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  115. this.removeStartupItemB = new System.Windows.Forms.Button();
  116. this.startupTitle = new System.Windows.Forms.Label();
  117. this.appsTab = new System.Windows.Forms.TabPage();
  118. this.txtFeedError = new System.Windows.Forms.Label();
  119. this.lblVideoSound = new System.Windows.Forms.Label();
  120. this.lblCoding = new System.Windows.Forms.Label();
  121. this.lblSystemTools = new System.Windows.Forms.Label();
  122. this.groupSoundVideo = new System.Windows.Forms.Panel();
  123. this.lblInternet = new System.Windows.Forms.Label();
  124. this.groupCoding = new System.Windows.Forms.Panel();
  125. this.groupInternet = new System.Windows.Forms.Panel();
  126. this.panel10 = new System.Windows.Forms.Panel();
  127. this.appsTitle = new System.Windows.Forms.Label();
  128. this.btnGetFeed = new System.Windows.Forms.Button();
  129. this.panelCommonApps = new System.Windows.Forms.Panel();
  130. this.cAutoInstall = new Optimizer.ColoredCheckBox();
  131. this.progressDownloader = new Optimizer.ColoredProgress();
  132. this.c64 = new Optimizer.ColoredRadioButton();
  133. this.c32 = new Optimizer.ColoredRadioButton();
  134. this.btnDownloadApps = new System.Windows.Forms.Button();
  135. this.setDownDirLbl = new System.Windows.Forms.Label();
  136. this.txtDownloadFolder = new System.Windows.Forms.TextBox();
  137. this.changeDownDirB = new System.Windows.Forms.Button();
  138. this.txtDownloadStatus = new System.Windows.Forms.Label();
  139. this.linkWarnings = new System.Windows.Forms.LinkLabel();
  140. this.bitPref = new System.Windows.Forms.Label();
  141. this.goToDownloadsB = new System.Windows.Forms.Button();
  142. this.groupSystemTools = new System.Windows.Forms.Panel();
  143. this.cleanerTab = new System.Windows.Forms.TabPage();
  144. this.cleanerTitle = new System.Windows.Forms.Label();
  145. this.panel1 = new System.Windows.Forms.Panel();
  146. this.lblPretext = new System.Windows.Forms.Label();
  147. this.lblFootprint = new System.Windows.Forms.Label();
  148. this.checkErrorReports = new Optimizer.ColoredCheckBox();
  149. this.cleanDriveB = new System.Windows.Forms.Button();
  150. this.checkSelectAll = new Optimizer.ColoredCheckBox();
  151. this.checkMediaCache = new Optimizer.ColoredCheckBox();
  152. this.checkTemp = new Optimizer.ColoredCheckBox();
  153. this.checkLogs = new Optimizer.ColoredCheckBox();
  154. this.checkBin = new Optimizer.ColoredCheckBox();
  155. this.checkMiniDumps = new Optimizer.ColoredCheckBox();
  156. this.pingerTab = new System.Windows.Forms.TabPage();
  157. this.flushCacheB = new System.Windows.Forms.Button();
  158. this.btnExport = new System.Windows.Forms.Button();
  159. this.copyB = new System.Windows.Forms.Button();
  160. this.copyIPB = new System.Windows.Forms.Button();
  161. this.panel7 = new System.Windows.Forms.Panel();
  162. this.listPingResults = new System.Windows.Forms.ListBox();
  163. this.lblResults = new System.Windows.Forms.Label();
  164. this.btnShodan = new System.Windows.Forms.Button();
  165. this.btnPing = new System.Windows.Forms.Button();
  166. this.txtPingInput = new System.Windows.Forms.TextBox();
  167. this.lblPinger = new System.Windows.Forms.Label();
  168. this.pingerTitle = new System.Windows.Forms.Label();
  169. this.hostsEditorTab = new System.Windows.Forms.TabPage();
  170. this.panel4 = new System.Windows.Forms.Panel();
  171. this.lblAdblockSub = new System.Windows.Forms.Label();
  172. this.linkAdvancedEdit = new System.Windows.Forms.LinkLabel();
  173. this.lblAdblock = new System.Windows.Forms.Label();
  174. this.linkRestoreDefault = new System.Windows.Forms.LinkLabel();
  175. this.adblockUlti = new System.Windows.Forms.Button();
  176. this.adblockP = new System.Windows.Forms.Button();
  177. this.adblockS = new System.Windows.Forms.Button();
  178. this.adblockBasic = new System.Windows.Forms.Button();
  179. this.lblLock = new System.Windows.Forms.Label();
  180. this.chkReadOnly = new Optimizer.ColoredCheckBox();
  181. this.panelList = new System.Windows.Forms.Panel();
  182. this.listHostEntries = new System.Windows.Forms.ListBox();
  183. this.chkBlock = new Optimizer.ColoredCheckBox();
  184. this.refreshHostsB = new System.Windows.Forms.Button();
  185. this.removeHostB = new System.Windows.Forms.Button();
  186. this.removeAllHostsB = new System.Windows.Forms.Button();
  187. this.addHostB = new System.Windows.Forms.Button();
  188. this.txtIP = new System.Windows.Forms.TextBox();
  189. this.txtDomain = new System.Windows.Forms.TextBox();
  190. this.lblDomain = new System.Windows.Forms.Label();
  191. this.lblIP = new System.Windows.Forms.Label();
  192. this.hostsTitle = new System.Windows.Forms.Label();
  193. this.linkLocate = new System.Windows.Forms.LinkLabel();
  194. this.registryFixerTab = new System.Windows.Forms.TabPage();
  195. this.panel2 = new System.Windows.Forms.Panel();
  196. this.regFixB = new System.Windows.Forms.Button();
  197. this.regLbl = new System.Windows.Forms.Label();
  198. this.checkRestartExplorer = new Optimizer.ColoredCheckBox();
  199. this.checkRegistryEditor = new Optimizer.ColoredCheckBox();
  200. this.checkEnableAll = new Optimizer.ColoredCheckBox();
  201. this.checkContextMenu = new Optimizer.ColoredCheckBox();
  202. this.checkTaskManager = new Optimizer.ColoredCheckBox();
  203. this.checkCommandPrompt = new Optimizer.ColoredCheckBox();
  204. this.checkFirewall = new Optimizer.ColoredCheckBox();
  205. this.checkRunDialog = new Optimizer.ColoredCheckBox();
  206. this.checkFolderOptions = new Optimizer.ColoredCheckBox();
  207. this.checkControlPanel = new Optimizer.ColoredCheckBox();
  208. this.registryTitle = new System.Windows.Forms.Label();
  209. this.integratorTab = new System.Windows.Forms.TabPage();
  210. this.synapse = new System.Windows.Forms.TabControl();
  211. this.integratorInfoTab = new System.Windows.Forms.TabPage();
  212. this.integrator7 = new System.Windows.Forms.Label();
  213. this.integrator6 = new System.Windows.Forms.Label();
  214. this.integrator5 = new System.Windows.Forms.Label();
  215. this.integrator4 = new System.Windows.Forms.Label();
  216. this.integrator3 = new System.Windows.Forms.Label();
  217. this.integrator2 = new System.Windows.Forms.Label();
  218. this.integrator1 = new System.Windows.Forms.Label();
  219. this.tabPage8 = new System.Windows.Forms.TabPage();
  220. this.btnAddItem = new System.Windows.Forms.Button();
  221. this.itemnamegroup = new System.Windows.Forms.GroupBox();
  222. this.txtItemName = new System.Windows.Forms.TextBox();
  223. this.security = new System.Windows.Forms.GroupBox();
  224. this.checkShift = new Optimizer.ColoredCheckBox();
  225. this.itemposition = new System.Windows.Forms.GroupBox();
  226. this.radioTop = new Optimizer.ColoredRadioButton();
  227. this.radioMiddle = new Optimizer.ColoredRadioButton();
  228. this.radioBottom = new Optimizer.ColoredRadioButton();
  229. this.icontoaddgroup = new System.Windows.Forms.GroupBox();
  230. this.checkDefaultIcon = new Optimizer.ColoredCheckBox();
  231. this.btnBrowseIcon = new System.Windows.Forms.Button();
  232. this.txtIcon = new System.Windows.Forms.TextBox();
  233. this.itemtoaddgroup = new System.Windows.Forms.GroupBox();
  234. this.btnBrowseItem = new System.Windows.Forms.Button();
  235. this.txtItem = new System.Windows.Forms.TextBox();
  236. this.itemtype = new System.Windows.Forms.GroupBox();
  237. this.radioCommand = new Optimizer.ColoredRadioButton();
  238. this.radioProgram = new Optimizer.ColoredRadioButton();
  239. this.radioFolder = new Optimizer.ColoredRadioButton();
  240. this.radioLink = new Optimizer.ColoredRadioButton();
  241. this.radioFile = new Optimizer.ColoredRadioButton();
  242. this.addItemL = new System.Windows.Forms.Label();
  243. this.tabPage9 = new System.Windows.Forms.TabPage();
  244. this.panel5 = new System.Windows.Forms.Panel();
  245. this.listDesktopItems = new System.Windows.Forms.ListBox();
  246. this.refreshIIB = new System.Windows.Forms.Button();
  247. this.removeDIB = new System.Windows.Forms.Button();
  248. this.removeAllIIB = new System.Windows.Forms.Button();
  249. this.removeIntegratorItemsL = new System.Windows.Forms.Label();
  250. this.tabPage10 = new System.Windows.Forms.TabPage();
  251. this.RemoveOwnerB = new System.Windows.Forms.Button();
  252. this.AddOwnerB = new System.Windows.Forms.Button();
  253. this.readyMenusL = new System.Windows.Forms.Label();
  254. this.PMB = new System.Windows.Forms.Button();
  255. this.DSB = new System.Windows.Forms.Button();
  256. this.STB = new System.Windows.Forms.Button();
  257. this.SSB = new System.Windows.Forms.Button();
  258. this.WAB = new System.Windows.Forms.Button();
  259. this.tabPage11 = new System.Windows.Forms.TabPage();
  260. this.panel6 = new System.Windows.Forms.Panel();
  261. this.listCustomCommands = new System.Windows.Forms.ListBox();
  262. this.removeCCB = new System.Windows.Forms.Button();
  263. this.refreshCCB = new System.Windows.Forms.Button();
  264. this.removeCCL = new System.Windows.Forms.Label();
  265. this.btnCreateCustomCommand = new System.Windows.Forms.Button();
  266. this.button48 = new System.Windows.Forms.Button();
  267. this.txtRunKeyword = new System.Windows.Forms.TextBox();
  268. this.ccKeywordL = new System.Windows.Forms.Label();
  269. this.txtRunFile = new System.Windows.Forms.TextBox();
  270. this.ccFileL = new System.Windows.Forms.Label();
  271. this.ccL = new System.Windows.Forms.Label();
  272. this.optionsTab = new System.Windows.Forms.TabPage();
  273. this.pictureBox85 = new System.Windows.Forms.PictureBox();
  274. this.panel9 = new System.Windows.Forms.Panel();
  275. this.radioGerman = new Optimizer.ColoredRadioButton();
  276. this.pictureBox2 = new System.Windows.Forms.PictureBox();
  277. this.pictureBox89 = new System.Windows.Forms.PictureBox();
  278. this.radioTurkish = new Optimizer.ColoredRadioButton();
  279. this.pictureBox88 = new System.Windows.Forms.PictureBox();
  280. this.radioHellenic = new Optimizer.ColoredRadioButton();
  281. this.pictureBox87 = new System.Windows.Forms.PictureBox();
  282. this.radioEnglish = new Optimizer.ColoredRadioButton();
  283. this.radioRussian = new Optimizer.ColoredRadioButton();
  284. this.pictureBox86 = new System.Windows.Forms.PictureBox();
  285. this.panel8 = new System.Windows.Forms.Panel();
  286. this.radioCaramel = new System.Windows.Forms.RadioButton();
  287. this.radioZerg = new System.Windows.Forms.RadioButton();
  288. this.radioOcean = new System.Windows.Forms.RadioButton();
  289. this.radioMagma = new System.Windows.Forms.RadioButton();
  290. this.radioLime = new System.Windows.Forms.RadioButton();
  291. this.radioMinimal = new System.Windows.Forms.RadioButton();
  292. this.languagesL = new System.Windows.Forms.Label();
  293. this.lblUpdateDisabled = new System.Windows.Forms.Label();
  294. this.linkLabel6 = new System.Windows.Forms.LinkLabel();
  295. this.picFOSS = new System.Windows.Forms.PictureBox();
  296. this.picFSF = new System.Windows.Forms.PictureBox();
  297. this.linkLabel5 = new System.Windows.Forms.LinkLabel();
  298. this.btnOpenConf = new System.Windows.Forms.Button();
  299. this.lblTroubleshoot = new System.Windows.Forms.Label();
  300. this.lblUpdating = new System.Windows.Forms.Label();
  301. this.btnViewLog = new System.Windows.Forms.Button();
  302. this.l2 = new System.Windows.Forms.LinkLabel();
  303. this.btnChangelog = new System.Windows.Forms.Button();
  304. this.btnUpdate = new System.Windows.Forms.Button();
  305. this.btnResetConfig = new System.Windows.Forms.Button();
  306. this.lblTheming = new System.Windows.Forms.Label();
  307. this.helpTipsToggle = new Optimizer.ToggleSwitch();
  308. this.quickAccessToggle = new Optimizer.ToggleSwitch();
  309. this.defineCommandDialog = new System.Windows.Forms.OpenFileDialog();
  310. this.defineProgramDialog = new System.Windows.Forms.OpenFileDialog();
  311. this.defineFolderDialog = new System.Windows.Forms.FolderBrowserDialog();
  312. this.defineFileDialog = new System.Windows.Forms.OpenFileDialog();
  313. this.DefineProgramIconDialog = new System.Windows.Forms.OpenFileDialog();
  314. this.DefineFolderIconDialog = new System.Windows.Forms.OpenFileDialog();
  315. this.DefineURLIconDialog = new System.Windows.Forms.OpenFileDialog();
  316. this.DefineFileIconDialog = new System.Windows.Forms.OpenFileDialog();
  317. this.DefineCommandIconDialog = new System.Windows.Forms.OpenFileDialog();
  318. this.ExportDialog = new System.Windows.Forms.SaveFileDialog();
  319. this.launcherMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
  320. this.trayStartup = new System.Windows.Forms.ToolStripMenuItem();
  321. this.trayCleaner = new System.Windows.Forms.ToolStripMenuItem();
  322. this.trayPinger = new System.Windows.Forms.ToolStripMenuItem();
  323. this.trayHosts = new System.Windows.Forms.ToolStripMenuItem();
  324. this.trayAD = new System.Windows.Forms.ToolStripMenuItem();
  325. this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
  326. this.trayRestartExplorer = new System.Windows.Forms.ToolStripMenuItem();
  327. this.trayExit = new System.Windows.Forms.ToolStripMenuItem();
  328. this.launcherIcon = new System.Windows.Forms.NotifyIcon(this.components);
  329. this.helpBox = new System.Windows.Forms.ToolTip(this.components);
  330. this.smallerTaskbarSw = new Optimizer.ToggleSwitch();
  331. this.tpanel.SuspendLayout();
  332. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  333. this.bpanel.SuspendLayout();
  334. this.tabCollection.SuspendLayout();
  335. this.universalTab.SuspendLayout();
  336. this.windows11Tab.SuspendLayout();
  337. this.windows10Tab.SuspendLayout();
  338. this.windows8Tab.SuspendLayout();
  339. this.modernAppsTab.SuspendLayout();
  340. this.panelModernAppsList.SuspendLayout();
  341. this.startupTab.SuspendLayout();
  342. this.panel3.SuspendLayout();
  343. this.appsTab.SuspendLayout();
  344. this.panel10.SuspendLayout();
  345. this.panelCommonApps.SuspendLayout();
  346. this.cleanerTab.SuspendLayout();
  347. this.panel1.SuspendLayout();
  348. this.pingerTab.SuspendLayout();
  349. this.panel7.SuspendLayout();
  350. this.hostsEditorTab.SuspendLayout();
  351. this.panel4.SuspendLayout();
  352. this.panelList.SuspendLayout();
  353. this.registryFixerTab.SuspendLayout();
  354. this.panel2.SuspendLayout();
  355. this.integratorTab.SuspendLayout();
  356. this.synapse.SuspendLayout();
  357. this.integratorInfoTab.SuspendLayout();
  358. this.tabPage8.SuspendLayout();
  359. this.itemnamegroup.SuspendLayout();
  360. this.security.SuspendLayout();
  361. this.itemposition.SuspendLayout();
  362. this.icontoaddgroup.SuspendLayout();
  363. this.itemtoaddgroup.SuspendLayout();
  364. this.itemtype.SuspendLayout();
  365. this.tabPage9.SuspendLayout();
  366. this.panel5.SuspendLayout();
  367. this.tabPage10.SuspendLayout();
  368. this.tabPage11.SuspendLayout();
  369. this.panel6.SuspendLayout();
  370. this.optionsTab.SuspendLayout();
  371. ((System.ComponentModel.ISupportInitialize)(this.pictureBox85)).BeginInit();
  372. this.panel9.SuspendLayout();
  373. ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
  374. ((System.ComponentModel.ISupportInitialize)(this.pictureBox89)).BeginInit();
  375. ((System.ComponentModel.ISupportInitialize)(this.pictureBox88)).BeginInit();
  376. ((System.ComponentModel.ISupportInitialize)(this.pictureBox87)).BeginInit();
  377. ((System.ComponentModel.ISupportInitialize)(this.pictureBox86)).BeginInit();
  378. this.panel8.SuspendLayout();
  379. ((System.ComponentModel.ISupportInitialize)(this.picFOSS)).BeginInit();
  380. ((System.ComponentModel.ISupportInitialize)(this.picFSF)).BeginInit();
  381. this.launcherMenu.SuspendLayout();
  382. this.SuspendLayout();
  383. //
  384. // tpanel
  385. //
  386. this.tpanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  387. this.tpanel.Controls.Add(this.txtNetFw);
  388. this.tpanel.Controls.Add(this.linkUpdate);
  389. this.tpanel.Controls.Add(this.lblLab);
  390. this.tpanel.Controls.Add(this.txtBitness);
  391. this.tpanel.Controls.Add(this.txtOS);
  392. this.tpanel.Controls.Add(this.txtVersion);
  393. this.tpanel.Controls.Add(this.pictureBox1);
  394. this.tpanel.Controls.Add(this.label2);
  395. this.tpanel.Dock = System.Windows.Forms.DockStyle.Top;
  396. this.tpanel.Location = new System.Drawing.Point(0, 0);
  397. this.tpanel.Margin = new System.Windows.Forms.Padding(2);
  398. this.tpanel.Name = "tpanel";
  399. this.tpanel.Size = new System.Drawing.Size(939, 64);
  400. this.tpanel.TabIndex = 1;
  401. //
  402. // txtNetFw
  403. //
  404. this.txtNetFw.AutoSize = true;
  405. this.txtNetFw.ForeColor = System.Drawing.Color.Silver;
  406. this.txtNetFw.Location = new System.Drawing.Point(188, 42);
  407. this.txtNetFw.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  408. this.txtNetFw.Name = "txtNetFw";
  409. this.txtNetFw.Size = new System.Drawing.Size(37, 15);
  410. this.txtNetFw.TabIndex = 70;
  411. this.txtNetFw.Text = "netfw";
  412. //
  413. // linkUpdate
  414. //
  415. this.linkUpdate.ActiveLinkColor = System.Drawing.Color.Goldenrod;
  416. this.linkUpdate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  417. this.linkUpdate.Font = new System.Drawing.Font("Segoe UI Semibold", 13F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  418. this.linkUpdate.ForeColor = System.Drawing.Color.Gold;
  419. this.linkUpdate.LinkColor = System.Drawing.Color.Gold;
  420. this.linkUpdate.Location = new System.Drawing.Point(607, 6);
  421. this.linkUpdate.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  422. this.linkUpdate.Name = "linkUpdate";
  423. this.linkUpdate.Size = new System.Drawing.Size(320, 50);
  424. this.linkUpdate.TabIndex = 69;
  425. this.linkUpdate.TabStop = true;
  426. this.linkUpdate.Tag = "";
  427. this.linkUpdate.Text = "Update available";
  428. this.linkUpdate.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  429. this.linkUpdate.Visible = false;
  430. this.linkUpdate.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkUpdate_LinkClicked);
  431. //
  432. // lblLab
  433. //
  434. this.lblLab.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  435. this.lblLab.Font = new System.Drawing.Font("Segoe UI Semibold", 13F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  436. this.lblLab.ForeColor = System.Drawing.Color.Gold;
  437. this.lblLab.Location = new System.Drawing.Point(531, 6);
  438. this.lblLab.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  439. this.lblLab.Name = "lblLab";
  440. this.lblLab.Size = new System.Drawing.Size(402, 50);
  441. this.lblLab.TabIndex = 68;
  442. this.lblLab.Text = "EXPERIMENTAL BUILD\r\n(delete after testing)";
  443. this.lblLab.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  444. this.lblLab.Visible = false;
  445. //
  446. // txtBitness
  447. //
  448. this.txtBitness.AutoSize = true;
  449. this.txtBitness.ForeColor = System.Drawing.Color.Silver;
  450. this.txtBitness.Location = new System.Drawing.Point(188, 24);
  451. this.txtBitness.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  452. this.txtBitness.Name = "txtBitness";
  453. this.txtBitness.Size = new System.Drawing.Size(44, 15);
  454. this.txtBitness.TabIndex = 4;
  455. this.txtBitness.Text = "bitness";
  456. //
  457. // txtOS
  458. //
  459. this.txtOS.AutoSize = true;
  460. this.txtOS.ForeColor = System.Drawing.Color.Silver;
  461. this.txtOS.Location = new System.Drawing.Point(188, 6);
  462. this.txtOS.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  463. this.txtOS.Name = "txtOS";
  464. this.txtOS.Size = new System.Drawing.Size(19, 15);
  465. this.txtOS.TabIndex = 3;
  466. this.txtOS.Text = "os";
  467. //
  468. // txtVersion
  469. //
  470. this.txtVersion.AutoSize = true;
  471. this.txtVersion.ForeColor = System.Drawing.Color.Silver;
  472. this.txtVersion.Location = new System.Drawing.Point(69, 37);
  473. this.txtVersion.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  474. this.txtVersion.Name = "txtVersion";
  475. this.txtVersion.Size = new System.Drawing.Size(77, 15);
  476. this.txtVersion.TabIndex = 1;
  477. this.txtVersion.Text = "Version: {VN}";
  478. //
  479. // pictureBox1
  480. //
  481. this.pictureBox1.Cursor = System.Windows.Forms.Cursors.Hand;
  482. this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
  483. this.pictureBox1.Location = new System.Drawing.Point(10, 10);
  484. this.pictureBox1.Margin = new System.Windows.Forms.Padding(2);
  485. this.pictureBox1.Name = "pictureBox1";
  486. this.pictureBox1.Size = new System.Drawing.Size(44, 43);
  487. this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  488. this.pictureBox1.TabIndex = 1;
  489. this.pictureBox1.TabStop = false;
  490. this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click);
  491. //
  492. // label2
  493. //
  494. this.label2.AutoSize = true;
  495. this.label2.Font = new System.Drawing.Font("Segoe UI Semibold", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  496. this.label2.ForeColor = System.Drawing.Color.White;
  497. this.label2.Location = new System.Drawing.Point(67, 7);
  498. this.label2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  499. this.label2.Name = "label2";
  500. this.label2.Size = new System.Drawing.Size(97, 25);
  501. this.label2.TabIndex = 2;
  502. this.label2.Text = "Optimizer";
  503. //
  504. // bpanel
  505. //
  506. this.bpanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  507. this.bpanel.Controls.Add(this.tabCollection);
  508. this.bpanel.Dock = System.Windows.Forms.DockStyle.Fill;
  509. this.bpanel.Location = new System.Drawing.Point(0, 64);
  510. this.bpanel.Margin = new System.Windows.Forms.Padding(2);
  511. this.bpanel.Name = "bpanel";
  512. this.bpanel.Size = new System.Drawing.Size(939, 641);
  513. this.bpanel.TabIndex = 2;
  514. //
  515. // tabCollection
  516. //
  517. this.tabCollection.Controls.Add(this.universalTab);
  518. this.tabCollection.Controls.Add(this.windows11Tab);
  519. this.tabCollection.Controls.Add(this.windows10Tab);
  520. this.tabCollection.Controls.Add(this.windows8Tab);
  521. this.tabCollection.Controls.Add(this.modernAppsTab);
  522. this.tabCollection.Controls.Add(this.startupTab);
  523. this.tabCollection.Controls.Add(this.appsTab);
  524. this.tabCollection.Controls.Add(this.cleanerTab);
  525. this.tabCollection.Controls.Add(this.pingerTab);
  526. this.tabCollection.Controls.Add(this.hostsEditorTab);
  527. this.tabCollection.Controls.Add(this.registryFixerTab);
  528. this.tabCollection.Controls.Add(this.integratorTab);
  529. this.tabCollection.Controls.Add(this.optionsTab);
  530. this.tabCollection.Dock = System.Windows.Forms.DockStyle.Fill;
  531. this.tabCollection.Location = new System.Drawing.Point(0, 0);
  532. this.tabCollection.Margin = new System.Windows.Forms.Padding(2);
  533. this.tabCollection.Name = "tabCollection";
  534. this.tabCollection.SelectedIndex = 0;
  535. this.tabCollection.Size = new System.Drawing.Size(937, 639);
  536. this.tabCollection.TabIndex = 0;
  537. this.tabCollection.SelectedIndexChanged += new System.EventHandler(this.aio_SelectedIndexChanged);
  538. //
  539. // universalTab
  540. //
  541. this.universalTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  542. this.universalTab.Controls.Add(this.stickySw);
  543. this.universalTab.Controls.Add(this.smartScreenSw);
  544. this.universalTab.Controls.Add(this.faxSw);
  545. this.universalTab.Controls.Add(this.compatSw);
  546. this.universalTab.Controls.Add(this.officeTelemetrySw);
  547. this.universalTab.Controls.Add(this.telemetryTasksSw);
  548. this.universalTab.Controls.Add(this.superfetchSw);
  549. this.universalTab.Controls.Add(this.homegroupSw);
  550. this.universalTab.Controls.Add(this.reportingSw);
  551. this.universalTab.Controls.Add(this.mediaSharingSw);
  552. this.universalTab.Controls.Add(this.printSw);
  553. this.universalTab.Controls.Add(this.systemRestoreSw);
  554. this.universalTab.Controls.Add(this.performanceSw);
  555. this.universalTab.Controls.Add(this.defenderSw);
  556. this.universalTab.Controls.Add(this.networkSw);
  557. this.universalTab.Controls.Add(this.restartButton);
  558. this.universalTab.Location = new System.Drawing.Point(4, 24);
  559. this.universalTab.Margin = new System.Windows.Forms.Padding(2);
  560. this.universalTab.Name = "universalTab";
  561. this.universalTab.Padding = new System.Windows.Forms.Padding(2);
  562. this.universalTab.Size = new System.Drawing.Size(929, 611);
  563. this.universalTab.TabIndex = 0;
  564. this.universalTab.Text = "Universal";
  565. //
  566. // stickySw
  567. //
  568. this.stickySw.Location = new System.Drawing.Point(337, 121);
  569. this.stickySw.Margin = new System.Windows.Forms.Padding(2);
  570. this.stickySw.Name = "stickySw";
  571. this.stickySw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  572. this.stickySw.OffForeColor = System.Drawing.Color.White;
  573. this.stickySw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  574. this.stickySw.OnForeColor = System.Drawing.Color.White;
  575. this.stickySw.OnText = "Disable Sticky Keys";
  576. this.stickySw.Size = new System.Drawing.Size(319, 31);
  577. this.stickySw.TabIndex = 50;
  578. this.stickySw.Tag = "themeable";
  579. //
  580. // smartScreenSw
  581. //
  582. this.smartScreenSw.Location = new System.Drawing.Point(14, 121);
  583. this.smartScreenSw.Margin = new System.Windows.Forms.Padding(2);
  584. this.smartScreenSw.Name = "smartScreenSw";
  585. this.smartScreenSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  586. this.smartScreenSw.OffForeColor = System.Drawing.Color.White;
  587. this.smartScreenSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  588. this.smartScreenSw.OnForeColor = System.Drawing.Color.White;
  589. this.smartScreenSw.OnText = "Disable SmartScreen";
  590. this.smartScreenSw.Size = new System.Drawing.Size(319, 31);
  591. this.smartScreenSw.TabIndex = 49;
  592. this.smartScreenSw.Tag = "themeable";
  593. //
  594. // faxSw
  595. //
  596. this.faxSw.Location = new System.Drawing.Point(337, 51);
  597. this.faxSw.Margin = new System.Windows.Forms.Padding(2);
  598. this.faxSw.Name = "faxSw";
  599. this.faxSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  600. this.faxSw.OffForeColor = System.Drawing.Color.White;
  601. this.faxSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  602. this.faxSw.OnForeColor = System.Drawing.Color.White;
  603. this.faxSw.OnText = "Disable Fax Service";
  604. this.faxSw.Size = new System.Drawing.Size(319, 31);
  605. this.faxSw.TabIndex = 48;
  606. this.faxSw.Tag = "themeable";
  607. //
  608. // compatSw
  609. //
  610. this.compatSw.Location = new System.Drawing.Point(337, 226);
  611. this.compatSw.Margin = new System.Windows.Forms.Padding(2);
  612. this.compatSw.Name = "compatSw";
  613. this.compatSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  614. this.compatSw.OffForeColor = System.Drawing.Color.White;
  615. this.compatSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  616. this.compatSw.OnForeColor = System.Drawing.Color.White;
  617. this.compatSw.OnText = "Disable Compatibility Assistant";
  618. this.compatSw.Size = new System.Drawing.Size(319, 31);
  619. this.compatSw.TabIndex = 47;
  620. this.compatSw.Tag = "themeable";
  621. //
  622. // officeTelemetrySw
  623. //
  624. this.officeTelemetrySw.Location = new System.Drawing.Point(14, 261);
  625. this.officeTelemetrySw.Margin = new System.Windows.Forms.Padding(2);
  626. this.officeTelemetrySw.Name = "officeTelemetrySw";
  627. this.officeTelemetrySw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  628. this.officeTelemetrySw.OffForeColor = System.Drawing.Color.White;
  629. this.officeTelemetrySw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  630. this.officeTelemetrySw.OnForeColor = System.Drawing.Color.White;
  631. this.officeTelemetrySw.OnText = "Disable Office 2016 Telemetry";
  632. this.officeTelemetrySw.Size = new System.Drawing.Size(319, 31);
  633. this.officeTelemetrySw.TabIndex = 46;
  634. this.officeTelemetrySw.Tag = "themeable";
  635. //
  636. // telemetryTasksSw
  637. //
  638. this.telemetryTasksSw.Location = new System.Drawing.Point(14, 226);
  639. this.telemetryTasksSw.Margin = new System.Windows.Forms.Padding(2);
  640. this.telemetryTasksSw.Name = "telemetryTasksSw";
  641. this.telemetryTasksSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  642. this.telemetryTasksSw.OffForeColor = System.Drawing.Color.White;
  643. this.telemetryTasksSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  644. this.telemetryTasksSw.OnForeColor = System.Drawing.Color.White;
  645. this.telemetryTasksSw.OnText = "Disable Telemetry Tasks";
  646. this.telemetryTasksSw.Size = new System.Drawing.Size(319, 31);
  647. this.telemetryTasksSw.TabIndex = 45;
  648. this.telemetryTasksSw.Tag = "themeable";
  649. //
  650. // superfetchSw
  651. //
  652. this.superfetchSw.Location = new System.Drawing.Point(337, 191);
  653. this.superfetchSw.Margin = new System.Windows.Forms.Padding(2);
  654. this.superfetchSw.Name = "superfetchSw";
  655. this.superfetchSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  656. this.superfetchSw.OffForeColor = System.Drawing.Color.White;
  657. this.superfetchSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  658. this.superfetchSw.OnForeColor = System.Drawing.Color.White;
  659. this.superfetchSw.OnText = "Disable Superfetch";
  660. this.superfetchSw.Size = new System.Drawing.Size(319, 31);
  661. this.superfetchSw.TabIndex = 44;
  662. this.superfetchSw.Tag = "themeable";
  663. //
  664. // homegroupSw
  665. //
  666. this.homegroupSw.Location = new System.Drawing.Point(337, 156);
  667. this.homegroupSw.Margin = new System.Windows.Forms.Padding(2);
  668. this.homegroupSw.Name = "homegroupSw";
  669. this.homegroupSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  670. this.homegroupSw.OffForeColor = System.Drawing.Color.White;
  671. this.homegroupSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  672. this.homegroupSw.OnForeColor = System.Drawing.Color.White;
  673. this.homegroupSw.OnText = "Disable HomeGroup";
  674. this.homegroupSw.Size = new System.Drawing.Size(319, 31);
  675. this.homegroupSw.TabIndex = 43;
  676. this.homegroupSw.Tag = "themeable";
  677. //
  678. // reportingSw
  679. //
  680. this.reportingSw.Location = new System.Drawing.Point(14, 191);
  681. this.reportingSw.Margin = new System.Windows.Forms.Padding(2);
  682. this.reportingSw.Name = "reportingSw";
  683. this.reportingSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  684. this.reportingSw.OffForeColor = System.Drawing.Color.White;
  685. this.reportingSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  686. this.reportingSw.OnForeColor = System.Drawing.Color.White;
  687. this.reportingSw.OnText = "Disable Error Reporting";
  688. this.reportingSw.Size = new System.Drawing.Size(319, 31);
  689. this.reportingSw.TabIndex = 42;
  690. this.reportingSw.Tag = "themeable";
  691. //
  692. // mediaSharingSw
  693. //
  694. this.mediaSharingSw.Location = new System.Drawing.Point(337, 86);
  695. this.mediaSharingSw.Margin = new System.Windows.Forms.Padding(2);
  696. this.mediaSharingSw.Name = "mediaSharingSw";
  697. this.mediaSharingSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  698. this.mediaSharingSw.OffForeColor = System.Drawing.Color.White;
  699. this.mediaSharingSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  700. this.mediaSharingSw.OnForeColor = System.Drawing.Color.White;
  701. this.mediaSharingSw.OnText = "Disable Media Player Sharing";
  702. this.mediaSharingSw.Size = new System.Drawing.Size(319, 31);
  703. this.mediaSharingSw.TabIndex = 40;
  704. this.mediaSharingSw.Tag = "themeable";
  705. //
  706. // printSw
  707. //
  708. this.printSw.Location = new System.Drawing.Point(337, 16);
  709. this.printSw.Margin = new System.Windows.Forms.Padding(2);
  710. this.printSw.Name = "printSw";
  711. this.printSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  712. this.printSw.OffForeColor = System.Drawing.Color.White;
  713. this.printSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  714. this.printSw.OnForeColor = System.Drawing.Color.White;
  715. this.printSw.OnText = "Disable Print Service";
  716. this.printSw.Size = new System.Drawing.Size(319, 31);
  717. this.printSw.TabIndex = 39;
  718. this.printSw.Tag = "themeable";
  719. //
  720. // systemRestoreSw
  721. //
  722. this.systemRestoreSw.Location = new System.Drawing.Point(14, 156);
  723. this.systemRestoreSw.Margin = new System.Windows.Forms.Padding(2);
  724. this.systemRestoreSw.Name = "systemRestoreSw";
  725. this.systemRestoreSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  726. this.systemRestoreSw.OffForeColor = System.Drawing.Color.White;
  727. this.systemRestoreSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  728. this.systemRestoreSw.OnForeColor = System.Drawing.Color.White;
  729. this.systemRestoreSw.OnText = "Disable System Restore";
  730. this.systemRestoreSw.Size = new System.Drawing.Size(319, 31);
  731. this.systemRestoreSw.TabIndex = 38;
  732. this.systemRestoreSw.Tag = "themeable";
  733. //
  734. // performanceSw
  735. //
  736. this.performanceSw.Location = new System.Drawing.Point(14, 16);
  737. this.performanceSw.Margin = new System.Windows.Forms.Padding(2);
  738. this.performanceSw.Name = "performanceSw";
  739. this.performanceSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  740. this.performanceSw.OffForeColor = System.Drawing.Color.White;
  741. this.performanceSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  742. this.performanceSw.OnForeColor = System.Drawing.Color.White;
  743. this.performanceSw.OnText = "Enable Performance Tweaks";
  744. this.performanceSw.Size = new System.Drawing.Size(319, 31);
  745. this.performanceSw.TabIndex = 37;
  746. this.performanceSw.Tag = "themeable";
  747. //
  748. // defenderSw
  749. //
  750. this.defenderSw.Location = new System.Drawing.Point(14, 86);
  751. this.defenderSw.Margin = new System.Windows.Forms.Padding(2);
  752. this.defenderSw.Name = "defenderSw";
  753. this.defenderSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  754. this.defenderSw.OffForeColor = System.Drawing.Color.White;
  755. this.defenderSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  756. this.defenderSw.OnForeColor = System.Drawing.Color.White;
  757. this.defenderSw.OnText = "Disable Windows Defender";
  758. this.defenderSw.Size = new System.Drawing.Size(319, 31);
  759. this.defenderSw.TabIndex = 36;
  760. this.defenderSw.Tag = "themeable";
  761. //
  762. // networkSw
  763. //
  764. this.networkSw.Location = new System.Drawing.Point(14, 51);
  765. this.networkSw.Margin = new System.Windows.Forms.Padding(2);
  766. this.networkSw.Name = "networkSw";
  767. this.networkSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  768. this.networkSw.OffForeColor = System.Drawing.Color.White;
  769. this.networkSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  770. this.networkSw.OnForeColor = System.Drawing.Color.White;
  771. this.networkSw.OnText = "Disable Network Throttling";
  772. this.networkSw.Size = new System.Drawing.Size(319, 31);
  773. this.networkSw.TabIndex = 35;
  774. this.networkSw.Tag = "themeable";
  775. //
  776. // restartButton
  777. //
  778. this.restartButton.AutoSize = true;
  779. this.restartButton.BackColor = System.Drawing.Color.DodgerBlue;
  780. this.restartButton.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  781. this.restartButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  782. this.restartButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  783. this.restartButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  784. this.restartButton.ForeColor = System.Drawing.Color.White;
  785. this.restartButton.Location = new System.Drawing.Point(14, 310);
  786. this.restartButton.Margin = new System.Windows.Forms.Padding(2);
  787. this.restartButton.Name = "restartButton";
  788. this.restartButton.Size = new System.Drawing.Size(115, 31);
  789. this.restartButton.TabIndex = 30;
  790. this.restartButton.Text = "Apply && Restart";
  791. this.restartButton.UseVisualStyleBackColor = false;
  792. this.restartButton.Click += new System.EventHandler(this.button39_Click);
  793. //
  794. // windows11Tab
  795. //
  796. this.windows11Tab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  797. this.windows11Tab.Controls.Add(this.smallerTaskbarSw);
  798. this.windows11Tab.Controls.Add(this.widgetsSw);
  799. this.windows11Tab.Controls.Add(this.snapAssistSw);
  800. this.windows11Tab.Controls.Add(this.leftTaskbarSw);
  801. this.windows11Tab.Location = new System.Drawing.Point(4, 24);
  802. this.windows11Tab.Name = "windows11Tab";
  803. this.windows11Tab.Size = new System.Drawing.Size(929, 611);
  804. this.windows11Tab.TabIndex = 14;
  805. this.windows11Tab.Text = "Windows 11";
  806. //
  807. // widgetsSw
  808. //
  809. this.widgetsSw.Location = new System.Drawing.Point(14, 86);
  810. this.widgetsSw.Margin = new System.Windows.Forms.Padding(2);
  811. this.widgetsSw.Name = "widgetsSw";
  812. this.widgetsSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  813. this.widgetsSw.OffForeColor = System.Drawing.Color.White;
  814. this.widgetsSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  815. this.widgetsSw.OnForeColor = System.Drawing.Color.White;
  816. this.widgetsSw.OnText = "Disable Widgets";
  817. this.widgetsSw.Size = new System.Drawing.Size(319, 31);
  818. this.widgetsSw.TabIndex = 41;
  819. this.widgetsSw.Tag = "themeable";
  820. //
  821. // snapAssistSw
  822. //
  823. this.snapAssistSw.Location = new System.Drawing.Point(14, 51);
  824. this.snapAssistSw.Margin = new System.Windows.Forms.Padding(2);
  825. this.snapAssistSw.Name = "snapAssistSw";
  826. this.snapAssistSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  827. this.snapAssistSw.OffForeColor = System.Drawing.Color.White;
  828. this.snapAssistSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  829. this.snapAssistSw.OnForeColor = System.Drawing.Color.White;
  830. this.snapAssistSw.OnText = "Disable Snap Assist";
  831. this.snapAssistSw.Size = new System.Drawing.Size(319, 31);
  832. this.snapAssistSw.TabIndex = 40;
  833. this.snapAssistSw.Tag = "themeable";
  834. //
  835. // leftTaskbarSw
  836. //
  837. this.leftTaskbarSw.Location = new System.Drawing.Point(14, 16);
  838. this.leftTaskbarSw.Margin = new System.Windows.Forms.Padding(2);
  839. this.leftTaskbarSw.Name = "leftTaskbarSw";
  840. this.leftTaskbarSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  841. this.leftTaskbarSw.OffForeColor = System.Drawing.Color.White;
  842. this.leftTaskbarSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  843. this.leftTaskbarSw.OnForeColor = System.Drawing.Color.White;
  844. this.leftTaskbarSw.OnText = "Align Taskbar to Left";
  845. this.leftTaskbarSw.Size = new System.Drawing.Size(319, 31);
  846. this.leftTaskbarSw.TabIndex = 38;
  847. this.leftTaskbarSw.Tag = "themeable";
  848. //
  849. // windows10Tab
  850. //
  851. this.windows10Tab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  852. this.windows10Tab.Controls.Add(this.restartButton10);
  853. this.windows10Tab.Controls.Add(this.actionSw);
  854. this.windows10Tab.Controls.Add(this.castSw);
  855. this.windows10Tab.Controls.Add(this.longPathsSw);
  856. this.windows10Tab.Controls.Add(this.ccSw);
  857. this.windows10Tab.Controls.Add(this.featuresSw);
  858. this.windows10Tab.Controls.Add(this.insiderSw);
  859. this.windows10Tab.Controls.Add(this.darkSw);
  860. this.windows10Tab.Controls.Add(this.spellSw);
  861. this.windows10Tab.Controls.Add(this.inkSw);
  862. this.windows10Tab.Controls.Add(this.driversSw);
  863. this.windows10Tab.Controls.Add(this.sensorSw);
  864. this.windows10Tab.Controls.Add(this.privacySw);
  865. this.windows10Tab.Controls.Add(this.telemetryServicesSw);
  866. this.windows10Tab.Controls.Add(this.autoUpdatesSw);
  867. this.windows10Tab.Controls.Add(this.peopleSw);
  868. this.windows10Tab.Controls.Add(this.adsSw);
  869. this.windows10Tab.Controls.Add(this.colorBarSw);
  870. this.windows10Tab.Controls.Add(this.oldExplorerSw);
  871. this.windows10Tab.Controls.Add(this.xboxSw);
  872. this.windows10Tab.Controls.Add(this.cortanaSw);
  873. this.windows10Tab.Controls.Add(this.gameBarSw);
  874. this.windows10Tab.Controls.Add(this.uODSw);
  875. this.windows10Tab.Controls.Add(this.oldMixerSw);
  876. this.windows10Tab.Location = new System.Drawing.Point(4, 24);
  877. this.windows10Tab.Margin = new System.Windows.Forms.Padding(2);
  878. this.windows10Tab.Name = "windows10Tab";
  879. this.windows10Tab.Padding = new System.Windows.Forms.Padding(2);
  880. this.windows10Tab.Size = new System.Drawing.Size(929, 611);
  881. this.windows10Tab.TabIndex = 1;
  882. this.windows10Tab.Text = "Windows 10";
  883. //
  884. // restartButton10
  885. //
  886. this.restartButton10.AutoSize = true;
  887. this.restartButton10.BackColor = System.Drawing.Color.DodgerBlue;
  888. this.restartButton10.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  889. this.restartButton10.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  890. this.restartButton10.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  891. this.restartButton10.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  892. this.restartButton10.ForeColor = System.Drawing.Color.White;
  893. this.restartButton10.Location = new System.Drawing.Point(14, 457);
  894. this.restartButton10.Margin = new System.Windows.Forms.Padding(2);
  895. this.restartButton10.Name = "restartButton10";
  896. this.restartButton10.Size = new System.Drawing.Size(115, 31);
  897. this.restartButton10.TabIndex = 31;
  898. this.restartButton10.Text = "Apply && Restart";
  899. this.restartButton10.UseVisualStyleBackColor = false;
  900. this.restartButton10.Click += new System.EventHandler(this.button43_Click);
  901. //
  902. // actionSw
  903. //
  904. this.actionSw.Location = new System.Drawing.Point(14, 410);
  905. this.actionSw.Margin = new System.Windows.Forms.Padding(2);
  906. this.actionSw.Name = "actionSw";
  907. this.actionSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  908. this.actionSw.OffForeColor = System.Drawing.Color.White;
  909. this.actionSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  910. this.actionSw.OnForeColor = System.Drawing.Color.White;
  911. this.actionSw.OnText = "Disable Notification Center";
  912. this.actionSw.Size = new System.Drawing.Size(319, 31);
  913. this.actionSw.TabIndex = 71;
  914. this.actionSw.Tag = "themeable";
  915. //
  916. // castSw
  917. //
  918. this.castSw.Location = new System.Drawing.Point(337, 267);
  919. this.castSw.Margin = new System.Windows.Forms.Padding(2);
  920. this.castSw.Name = "castSw";
  921. this.castSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  922. this.castSw.OffForeColor = System.Drawing.Color.White;
  923. this.castSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  924. this.castSw.OnForeColor = System.Drawing.Color.White;
  925. this.castSw.OnText = "Remove Cast To Device";
  926. this.castSw.Size = new System.Drawing.Size(319, 31);
  927. this.castSw.TabIndex = 61;
  928. this.castSw.Tag = "themeable";
  929. //
  930. // longPathsSw
  931. //
  932. this.longPathsSw.Location = new System.Drawing.Point(14, 267);
  933. this.longPathsSw.Margin = new System.Windows.Forms.Padding(2);
  934. this.longPathsSw.Name = "longPathsSw";
  935. this.longPathsSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  936. this.longPathsSw.OffForeColor = System.Drawing.Color.White;
  937. this.longPathsSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  938. this.longPathsSw.OnForeColor = System.Drawing.Color.White;
  939. this.longPathsSw.OnText = "Enable Long Paths";
  940. this.longPathsSw.Size = new System.Drawing.Size(319, 31);
  941. this.longPathsSw.TabIndex = 60;
  942. this.longPathsSw.Tag = "themeable";
  943. //
  944. // ccSw
  945. //
  946. this.ccSw.Location = new System.Drawing.Point(337, 161);
  947. this.ccSw.Margin = new System.Windows.Forms.Padding(2);
  948. this.ccSw.Name = "ccSw";
  949. this.ccSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  950. this.ccSw.OffForeColor = System.Drawing.Color.White;
  951. this.ccSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  952. this.ccSw.OnForeColor = System.Drawing.Color.White;
  953. this.ccSw.OnText = "Disable Cloud Clipboard";
  954. this.ccSw.Size = new System.Drawing.Size(319, 31);
  955. this.ccSw.TabIndex = 59;
  956. this.ccSw.Tag = "themeable";
  957. //
  958. // featuresSw
  959. //
  960. this.featuresSw.Location = new System.Drawing.Point(337, 375);
  961. this.featuresSw.Margin = new System.Windows.Forms.Padding(2);
  962. this.featuresSw.Name = "featuresSw";
  963. this.featuresSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  964. this.featuresSw.OffForeColor = System.Drawing.Color.White;
  965. this.featuresSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  966. this.featuresSw.OnForeColor = System.Drawing.Color.White;
  967. this.featuresSw.OnText = "Disable Feature Updates";
  968. this.featuresSw.Size = new System.Drawing.Size(319, 31);
  969. this.featuresSw.TabIndex = 58;
  970. this.featuresSw.Tag = "themeable";
  971. //
  972. // insiderSw
  973. //
  974. this.insiderSw.Location = new System.Drawing.Point(337, 339);
  975. this.insiderSw.Margin = new System.Windows.Forms.Padding(2);
  976. this.insiderSw.Name = "insiderSw";
  977. this.insiderSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  978. this.insiderSw.OffForeColor = System.Drawing.Color.White;
  979. this.insiderSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  980. this.insiderSw.OnForeColor = System.Drawing.Color.White;
  981. this.insiderSw.OnText = "Disable Insider Service";
  982. this.insiderSw.Size = new System.Drawing.Size(319, 31);
  983. this.insiderSw.TabIndex = 57;
  984. this.insiderSw.Tag = "themeable";
  985. //
  986. // darkSw
  987. //
  988. this.darkSw.Location = new System.Drawing.Point(14, 160);
  989. this.darkSw.Margin = new System.Windows.Forms.Padding(2);
  990. this.darkSw.Name = "darkSw";
  991. this.darkSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  992. this.darkSw.OffForeColor = System.Drawing.Color.White;
  993. this.darkSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  994. this.darkSw.OnForeColor = System.Drawing.Color.White;
  995. this.darkSw.OnText = "Enable Dark Theme";
  996. this.darkSw.Size = new System.Drawing.Size(319, 31);
  997. this.darkSw.TabIndex = 56;
  998. this.darkSw.Tag = "themeable";
  999. //
  1000. // spellSw
  1001. //
  1002. this.spellSw.Location = new System.Drawing.Point(14, 339);
  1003. this.spellSw.Margin = new System.Windows.Forms.Padding(2);
  1004. this.spellSw.Name = "spellSw";
  1005. this.spellSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1006. this.spellSw.OffForeColor = System.Drawing.Color.White;
  1007. this.spellSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1008. this.spellSw.OnForeColor = System.Drawing.Color.White;
  1009. this.spellSw.OnText = "Disable Spell Checking";
  1010. this.spellSw.Size = new System.Drawing.Size(319, 31);
  1011. this.spellSw.TabIndex = 55;
  1012. this.spellSw.Tag = "themeable";
  1013. //
  1014. // inkSw
  1015. //
  1016. this.inkSw.Location = new System.Drawing.Point(14, 303);
  1017. this.inkSw.Margin = new System.Windows.Forms.Padding(2);
  1018. this.inkSw.Name = "inkSw";
  1019. this.inkSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1020. this.inkSw.OffForeColor = System.Drawing.Color.White;
  1021. this.inkSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1022. this.inkSw.OnForeColor = System.Drawing.Color.White;
  1023. this.inkSw.OnText = "Disable Windows Ink";
  1024. this.inkSw.Size = new System.Drawing.Size(319, 31);
  1025. this.inkSw.TabIndex = 54;
  1026. this.inkSw.Tag = "themeable";
  1027. //
  1028. // driversSw
  1029. //
  1030. this.driversSw.Location = new System.Drawing.Point(337, 52);
  1031. this.driversSw.Margin = new System.Windows.Forms.Padding(2);
  1032. this.driversSw.Name = "driversSw";
  1033. this.driversSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1034. this.driversSw.OffForeColor = System.Drawing.Color.White;
  1035. this.driversSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1036. this.driversSw.OnForeColor = System.Drawing.Color.White;
  1037. this.driversSw.OnText = "Exclude Drivers from Updates";
  1038. this.driversSw.Size = new System.Drawing.Size(319, 31);
  1039. this.driversSw.TabIndex = 53;
  1040. this.driversSw.Tag = "themeable";
  1041. //
  1042. // sensorSw
  1043. //
  1044. this.sensorSw.Location = new System.Drawing.Point(337, 232);
  1045. this.sensorSw.Margin = new System.Windows.Forms.Padding(2);
  1046. this.sensorSw.Name = "sensorSw";
  1047. this.sensorSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1048. this.sensorSw.OffForeColor = System.Drawing.Color.White;
  1049. this.sensorSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1050. this.sensorSw.OnForeColor = System.Drawing.Color.White;
  1051. this.sensorSw.OnText = "Disable Sensor Services";
  1052. this.sensorSw.Size = new System.Drawing.Size(319, 31);
  1053. this.sensorSw.TabIndex = 51;
  1054. this.sensorSw.Tag = "themeable";
  1055. //
  1056. // privacySw
  1057. //
  1058. this.privacySw.Location = new System.Drawing.Point(337, 124);
  1059. this.privacySw.Margin = new System.Windows.Forms.Padding(2);
  1060. this.privacySw.Name = "privacySw";
  1061. this.privacySw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1062. this.privacySw.OffForeColor = System.Drawing.Color.White;
  1063. this.privacySw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1064. this.privacySw.OnForeColor = System.Drawing.Color.White;
  1065. this.privacySw.OnText = "Enhance Privacy";
  1066. this.privacySw.Size = new System.Drawing.Size(319, 31);
  1067. this.privacySw.TabIndex = 50;
  1068. this.privacySw.Tag = "themeable";
  1069. //
  1070. // telemetryServicesSw
  1071. //
  1072. this.telemetryServicesSw.Location = new System.Drawing.Point(337, 88);
  1073. this.telemetryServicesSw.Margin = new System.Windows.Forms.Padding(2);
  1074. this.telemetryServicesSw.Name = "telemetryServicesSw";
  1075. this.telemetryServicesSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1076. this.telemetryServicesSw.OffForeColor = System.Drawing.Color.White;
  1077. this.telemetryServicesSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1078. this.telemetryServicesSw.OnForeColor = System.Drawing.Color.White;
  1079. this.telemetryServicesSw.OnText = "Disable Telemetry Services";
  1080. this.telemetryServicesSw.Size = new System.Drawing.Size(319, 31);
  1081. this.telemetryServicesSw.TabIndex = 48;
  1082. this.telemetryServicesSw.Tag = "themeable";
  1083. //
  1084. // autoUpdatesSw
  1085. //
  1086. this.autoUpdatesSw.Location = new System.Drawing.Point(337, 16);
  1087. this.autoUpdatesSw.Margin = new System.Windows.Forms.Padding(2);
  1088. this.autoUpdatesSw.Name = "autoUpdatesSw";
  1089. this.autoUpdatesSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1090. this.autoUpdatesSw.OffForeColor = System.Drawing.Color.White;
  1091. this.autoUpdatesSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1092. this.autoUpdatesSw.OnForeColor = System.Drawing.Color.White;
  1093. this.autoUpdatesSw.OnText = "Disable Automatic Updates";
  1094. this.autoUpdatesSw.Size = new System.Drawing.Size(319, 31);
  1095. this.autoUpdatesSw.TabIndex = 47;
  1096. this.autoUpdatesSw.Tag = "themeable";
  1097. //
  1098. // peopleSw
  1099. //
  1100. this.peopleSw.Location = new System.Drawing.Point(14, 232);
  1101. this.peopleSw.Margin = new System.Windows.Forms.Padding(2);
  1102. this.peopleSw.Name = "peopleSw";
  1103. this.peopleSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1104. this.peopleSw.OffForeColor = System.Drawing.Color.White;
  1105. this.peopleSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1106. this.peopleSw.OnForeColor = System.Drawing.Color.White;
  1107. this.peopleSw.OnText = "Disable My People";
  1108. this.peopleSw.Size = new System.Drawing.Size(319, 31);
  1109. this.peopleSw.TabIndex = 46;
  1110. this.peopleSw.Tag = "themeable";
  1111. //
  1112. // adsSw
  1113. //
  1114. this.adsSw.Location = new System.Drawing.Point(14, 124);
  1115. this.adsSw.Margin = new System.Windows.Forms.Padding(2);
  1116. this.adsSw.Name = "adsSw";
  1117. this.adsSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1118. this.adsSw.OffForeColor = System.Drawing.Color.White;
  1119. this.adsSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1120. this.adsSw.OnForeColor = System.Drawing.Color.White;
  1121. this.adsSw.OnText = "Disable Start Menu Ads";
  1122. this.adsSw.Size = new System.Drawing.Size(319, 31);
  1123. this.adsSw.TabIndex = 45;
  1124. this.adsSw.Tag = "themeable";
  1125. //
  1126. // colorBarSw
  1127. //
  1128. this.colorBarSw.Location = new System.Drawing.Point(14, 52);
  1129. this.colorBarSw.Margin = new System.Windows.Forms.Padding(2);
  1130. this.colorBarSw.Name = "colorBarSw";
  1131. this.colorBarSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1132. this.colorBarSw.OffForeColor = System.Drawing.Color.White;
  1133. this.colorBarSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1134. this.colorBarSw.OnForeColor = System.Drawing.Color.White;
  1135. this.colorBarSw.OnText = "Enable Taskbar Color";
  1136. this.colorBarSw.Size = new System.Drawing.Size(319, 31);
  1137. this.colorBarSw.TabIndex = 44;
  1138. this.colorBarSw.Tag = "themeable";
  1139. //
  1140. // oldExplorerSw
  1141. //
  1142. this.oldExplorerSw.Location = new System.Drawing.Point(14, 88);
  1143. this.oldExplorerSw.Margin = new System.Windows.Forms.Padding(2);
  1144. this.oldExplorerSw.Name = "oldExplorerSw";
  1145. this.oldExplorerSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1146. this.oldExplorerSw.OffForeColor = System.Drawing.Color.White;
  1147. this.oldExplorerSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1148. this.oldExplorerSw.OnForeColor = System.Drawing.Color.White;
  1149. this.oldExplorerSw.OnText = "Disable Quick Access History";
  1150. this.oldExplorerSw.Size = new System.Drawing.Size(319, 31);
  1151. this.oldExplorerSw.TabIndex = 43;
  1152. this.oldExplorerSw.Tag = "themeable";
  1153. //
  1154. // xboxSw
  1155. //
  1156. this.xboxSw.Location = new System.Drawing.Point(14, 375);
  1157. this.xboxSw.Margin = new System.Windows.Forms.Padding(2);
  1158. this.xboxSw.Name = "xboxSw";
  1159. this.xboxSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1160. this.xboxSw.OffForeColor = System.Drawing.Color.White;
  1161. this.xboxSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1162. this.xboxSw.OnForeColor = System.Drawing.Color.White;
  1163. this.xboxSw.OnText = "Disable Xbox Live";
  1164. this.xboxSw.Size = new System.Drawing.Size(319, 31);
  1165. this.xboxSw.TabIndex = 42;
  1166. this.xboxSw.Tag = "themeable";
  1167. //
  1168. // cortanaSw
  1169. //
  1170. this.cortanaSw.Location = new System.Drawing.Point(337, 196);
  1171. this.cortanaSw.Margin = new System.Windows.Forms.Padding(2);
  1172. this.cortanaSw.Name = "cortanaSw";
  1173. this.cortanaSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1174. this.cortanaSw.OffForeColor = System.Drawing.Color.White;
  1175. this.cortanaSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1176. this.cortanaSw.OnForeColor = System.Drawing.Color.White;
  1177. this.cortanaSw.OnText = "Disable Cortana";
  1178. this.cortanaSw.Size = new System.Drawing.Size(319, 31);
  1179. this.cortanaSw.TabIndex = 41;
  1180. this.cortanaSw.Tag = "themeable";
  1181. //
  1182. // gameBarSw
  1183. //
  1184. this.gameBarSw.Location = new System.Drawing.Point(337, 303);
  1185. this.gameBarSw.Margin = new System.Windows.Forms.Padding(2);
  1186. this.gameBarSw.Name = "gameBarSw";
  1187. this.gameBarSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1188. this.gameBarSw.OffForeColor = System.Drawing.Color.White;
  1189. this.gameBarSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1190. this.gameBarSw.OnForeColor = System.Drawing.Color.White;
  1191. this.gameBarSw.OnText = "Disable Game Bar";
  1192. this.gameBarSw.Size = new System.Drawing.Size(319, 31);
  1193. this.gameBarSw.TabIndex = 40;
  1194. this.gameBarSw.Tag = "themeable";
  1195. //
  1196. // uODSw
  1197. //
  1198. this.uODSw.Location = new System.Drawing.Point(14, 196);
  1199. this.uODSw.Margin = new System.Windows.Forms.Padding(2);
  1200. this.uODSw.Name = "uODSw";
  1201. this.uODSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1202. this.uODSw.OffForeColor = System.Drawing.Color.White;
  1203. this.uODSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1204. this.uODSw.OnForeColor = System.Drawing.Color.White;
  1205. this.uODSw.OnText = "Uninstall OneDrive";
  1206. this.uODSw.Size = new System.Drawing.Size(319, 31);
  1207. this.uODSw.TabIndex = 39;
  1208. this.uODSw.Tag = "themeable";
  1209. //
  1210. // oldMixerSw
  1211. //
  1212. this.oldMixerSw.Location = new System.Drawing.Point(14, 16);
  1213. this.oldMixerSw.Margin = new System.Windows.Forms.Padding(2);
  1214. this.oldMixerSw.Name = "oldMixerSw";
  1215. this.oldMixerSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1216. this.oldMixerSw.OffForeColor = System.Drawing.Color.White;
  1217. this.oldMixerSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1218. this.oldMixerSw.OnForeColor = System.Drawing.Color.White;
  1219. this.oldMixerSw.OnText = "Enable Classic Volume Mixer";
  1220. this.oldMixerSw.Size = new System.Drawing.Size(319, 31);
  1221. this.oldMixerSw.TabIndex = 38;
  1222. this.oldMixerSw.Tag = "themeable";
  1223. //
  1224. // windows8Tab
  1225. //
  1226. this.windows8Tab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1227. this.windows8Tab.Controls.Add(this.disableOneDriveSw);
  1228. this.windows8Tab.Controls.Add(this.restartButton8);
  1229. this.windows8Tab.Location = new System.Drawing.Point(4, 24);
  1230. this.windows8Tab.Margin = new System.Windows.Forms.Padding(2);
  1231. this.windows8Tab.Name = "windows8Tab";
  1232. this.windows8Tab.Padding = new System.Windows.Forms.Padding(2);
  1233. this.windows8Tab.Size = new System.Drawing.Size(929, 611);
  1234. this.windows8Tab.TabIndex = 2;
  1235. this.windows8Tab.Text = "Windows 8.1";
  1236. //
  1237. // disableOneDriveSw
  1238. //
  1239. this.disableOneDriveSw.Location = new System.Drawing.Point(14, 16);
  1240. this.disableOneDriveSw.Margin = new System.Windows.Forms.Padding(2);
  1241. this.disableOneDriveSw.Name = "disableOneDriveSw";
  1242. this.disableOneDriveSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1243. this.disableOneDriveSw.OffForeColor = System.Drawing.Color.White;
  1244. this.disableOneDriveSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1245. this.disableOneDriveSw.OnForeColor = System.Drawing.Color.White;
  1246. this.disableOneDriveSw.OnText = "Disable OneDrive";
  1247. this.disableOneDriveSw.Size = new System.Drawing.Size(319, 31);
  1248. this.disableOneDriveSw.TabIndex = 46;
  1249. this.disableOneDriveSw.Tag = "themeable";
  1250. //
  1251. // restartButton8
  1252. //
  1253. this.restartButton8.AutoSize = true;
  1254. this.restartButton8.BackColor = System.Drawing.Color.DodgerBlue;
  1255. this.restartButton8.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  1256. this.restartButton8.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  1257. this.restartButton8.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  1258. this.restartButton8.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1259. this.restartButton8.ForeColor = System.Drawing.Color.White;
  1260. this.restartButton8.Location = new System.Drawing.Point(14, 65);
  1261. this.restartButton8.Margin = new System.Windows.Forms.Padding(2);
  1262. this.restartButton8.Name = "restartButton8";
  1263. this.restartButton8.Size = new System.Drawing.Size(115, 31);
  1264. this.restartButton8.TabIndex = 32;
  1265. this.restartButton8.Text = "Apply && Restart";
  1266. this.restartButton8.UseVisualStyleBackColor = false;
  1267. this.restartButton8.Click += new System.EventHandler(this.button44_Click);
  1268. //
  1269. // modernAppsTab
  1270. //
  1271. this.modernAppsTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1272. this.modernAppsTab.Controls.Add(this.chkOnlyRemovable);
  1273. this.modernAppsTab.Controls.Add(this.chkSelectAllModernApps);
  1274. this.modernAppsTab.Controls.Add(this.txtUWP);
  1275. this.modernAppsTab.Controls.Add(this.uninstallModernAppsButton);
  1276. this.modernAppsTab.Controls.Add(this.refreshModernAppsButton);
  1277. this.modernAppsTab.Controls.Add(this.txtModernAppsTitle);
  1278. this.modernAppsTab.Controls.Add(this.panelModernAppsList);
  1279. this.modernAppsTab.Location = new System.Drawing.Point(4, 24);
  1280. this.modernAppsTab.Name = "modernAppsTab";
  1281. this.modernAppsTab.Padding = new System.Windows.Forms.Padding(3);
  1282. this.modernAppsTab.Size = new System.Drawing.Size(929, 611);
  1283. this.modernAppsTab.TabIndex = 11;
  1284. this.modernAppsTab.Text = "UWP Apps";
  1285. //
  1286. // chkOnlyRemovable
  1287. //
  1288. this.chkOnlyRemovable.AutoSize = true;
  1289. this.chkOnlyRemovable.Font = new System.Drawing.Font("Segoe UI Semibold", 12F);
  1290. this.chkOnlyRemovable.ForeColor = System.Drawing.Color.White;
  1291. this.chkOnlyRemovable.Location = new System.Drawing.Point(503, 140);
  1292. this.chkOnlyRemovable.Margin = new System.Windows.Forms.Padding(2);
  1293. this.chkOnlyRemovable.Name = "chkOnlyRemovable";
  1294. this.chkOnlyRemovable.Size = new System.Drawing.Size(170, 25);
  1295. this.chkOnlyRemovable.TabIndex = 53;
  1296. this.chkOnlyRemovable.Text = "Only uninstall-ables";
  1297. this.chkOnlyRemovable.UseVisualStyleBackColor = true;
  1298. this.chkOnlyRemovable.CheckedChanged += new System.EventHandler(this.chkOnlyRemovable_CheckedChanged);
  1299. //
  1300. // chkSelectAllModernApps
  1301. //
  1302. this.chkSelectAllModernApps.AutoSize = true;
  1303. this.chkSelectAllModernApps.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1304. this.chkSelectAllModernApps.ForeColor = System.Drawing.Color.White;
  1305. this.chkSelectAllModernApps.Location = new System.Drawing.Point(503, 111);
  1306. this.chkSelectAllModernApps.Margin = new System.Windows.Forms.Padding(2);
  1307. this.chkSelectAllModernApps.Name = "chkSelectAllModernApps";
  1308. this.chkSelectAllModernApps.Size = new System.Drawing.Size(94, 25);
  1309. this.chkSelectAllModernApps.TabIndex = 52;
  1310. this.chkSelectAllModernApps.Text = "Select all";
  1311. this.chkSelectAllModernApps.UseVisualStyleBackColor = true;
  1312. this.chkSelectAllModernApps.CheckedChanged += new System.EventHandler(this.chkSelectAllModernApps_CheckedChanged);
  1313. //
  1314. // txtUWP
  1315. //
  1316. this.txtUWP.AutoSize = true;
  1317. this.txtUWP.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1318. this.txtUWP.ForeColor = System.Drawing.Color.Silver;
  1319. this.txtUWP.Location = new System.Drawing.Point(499, 195);
  1320. this.txtUWP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1321. this.txtUWP.Name = "txtUWP";
  1322. this.txtUWP.Size = new System.Drawing.Size(160, 231);
  1323. this.txtUWP.TabIndex = 51;
  1324. this.txtUWP.Tag = "";
  1325. this.txtUWP.Text = "IMPORTANT:\r\n\r\nIf you uninstall Store\r\nyou won\'t be able\r\nto install new apps!\r\n\r\n" +
  1326. "Also, some apps\r\ncan\'t be uninstalled.\r\n\r\nLike Microsoft Edge,\r\nSettings, etc.";
  1327. //
  1328. // uninstallModernAppsButton
  1329. //
  1330. this.uninstallModernAppsButton.BackColor = System.Drawing.Color.DodgerBlue;
  1331. this.uninstallModernAppsButton.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  1332. this.uninstallModernAppsButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  1333. this.uninstallModernAppsButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  1334. this.uninstallModernAppsButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1335. this.uninstallModernAppsButton.ForeColor = System.Drawing.Color.White;
  1336. this.uninstallModernAppsButton.Location = new System.Drawing.Point(503, 76);
  1337. this.uninstallModernAppsButton.Margin = new System.Windows.Forms.Padding(2);
  1338. this.uninstallModernAppsButton.Name = "uninstallModernAppsButton";
  1339. this.uninstallModernAppsButton.Size = new System.Drawing.Size(169, 31);
  1340. this.uninstallModernAppsButton.TabIndex = 50;
  1341. this.uninstallModernAppsButton.Text = "Uninstall";
  1342. this.uninstallModernAppsButton.UseVisualStyleBackColor = false;
  1343. this.uninstallModernAppsButton.Click += new System.EventHandler(this.button74_Click);
  1344. //
  1345. // refreshModernAppsButton
  1346. //
  1347. this.refreshModernAppsButton.BackColor = System.Drawing.Color.DodgerBlue;
  1348. this.refreshModernAppsButton.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  1349. this.refreshModernAppsButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  1350. this.refreshModernAppsButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  1351. this.refreshModernAppsButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1352. this.refreshModernAppsButton.ForeColor = System.Drawing.Color.White;
  1353. this.refreshModernAppsButton.Location = new System.Drawing.Point(503, 41);
  1354. this.refreshModernAppsButton.Margin = new System.Windows.Forms.Padding(2);
  1355. this.refreshModernAppsButton.Name = "refreshModernAppsButton";
  1356. this.refreshModernAppsButton.Size = new System.Drawing.Size(169, 31);
  1357. this.refreshModernAppsButton.TabIndex = 49;
  1358. this.refreshModernAppsButton.Text = "Refresh";
  1359. this.refreshModernAppsButton.UseVisualStyleBackColor = false;
  1360. this.refreshModernAppsButton.Click += new System.EventHandler(this.button75_Click);
  1361. //
  1362. // txtModernAppsTitle
  1363. //
  1364. this.txtModernAppsTitle.AutoSize = true;
  1365. this.txtModernAppsTitle.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1366. this.txtModernAppsTitle.ForeColor = System.Drawing.Color.DodgerBlue;
  1367. this.txtModernAppsTitle.Location = new System.Drawing.Point(6, 10);
  1368. this.txtModernAppsTitle.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1369. this.txtModernAppsTitle.Name = "txtModernAppsTitle";
  1370. this.txtModernAppsTitle.Size = new System.Drawing.Size(291, 28);
  1371. this.txtModernAppsTitle.TabIndex = 47;
  1372. this.txtModernAppsTitle.Tag = "themeable";
  1373. this.txtModernAppsTitle.Text = "Uninstall unwanted UWP Apps";
  1374. //
  1375. // panelModernAppsList
  1376. //
  1377. this.panelModernAppsList.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  1378. | System.Windows.Forms.AnchorStyles.Left)));
  1379. this.panelModernAppsList.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1380. this.panelModernAppsList.Controls.Add(this.listModernApps);
  1381. this.panelModernAppsList.Location = new System.Drawing.Point(11, 41);
  1382. this.panelModernAppsList.Name = "panelModernAppsList";
  1383. this.panelModernAppsList.Size = new System.Drawing.Size(487, 449);
  1384. this.panelModernAppsList.TabIndex = 0;
  1385. //
  1386. // listModernApps
  1387. //
  1388. this.listModernApps.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1389. this.listModernApps.BorderStyle = System.Windows.Forms.BorderStyle.None;
  1390. this.listModernApps.CheckOnClick = true;
  1391. this.listModernApps.Dock = System.Windows.Forms.DockStyle.Fill;
  1392. this.listModernApps.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1393. this.listModernApps.ForeColor = System.Drawing.Color.White;
  1394. this.listModernApps.FormattingEnabled = true;
  1395. this.listModernApps.HorizontalScrollbar = true;
  1396. this.listModernApps.Location = new System.Drawing.Point(0, 0);
  1397. this.listModernApps.Name = "listModernApps";
  1398. this.listModernApps.Size = new System.Drawing.Size(485, 447);
  1399. this.listModernApps.Sorted = true;
  1400. this.listModernApps.TabIndex = 0;
  1401. //
  1402. // startupTab
  1403. //
  1404. this.startupTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1405. this.startupTab.Controls.Add(this.cancelBackup);
  1406. this.startupTab.Controls.Add(this.doBackup);
  1407. this.startupTab.Controls.Add(this.txtBackupTitle);
  1408. this.startupTab.Controls.Add(this.lblBackupTitle);
  1409. this.startupTab.Controls.Add(this.restoreStartupB);
  1410. this.startupTab.Controls.Add(this.backupStartupB);
  1411. this.startupTab.Controls.Add(this.findInRegB);
  1412. this.startupTab.Controls.Add(this.locateFileB);
  1413. this.startupTab.Controls.Add(this.refreshStartupB);
  1414. this.startupTab.Controls.Add(this.panel3);
  1415. this.startupTab.Controls.Add(this.removeStartupItemB);
  1416. this.startupTab.Controls.Add(this.startupTitle);
  1417. this.startupTab.Location = new System.Drawing.Point(4, 24);
  1418. this.startupTab.Margin = new System.Windows.Forms.Padding(2);
  1419. this.startupTab.Name = "startupTab";
  1420. this.startupTab.Size = new System.Drawing.Size(929, 611);
  1421. this.startupTab.TabIndex = 7;
  1422. this.startupTab.Text = "Startup";
  1423. //
  1424. // cancelBackup
  1425. //
  1426. this.cancelBackup.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  1427. this.cancelBackup.BackColor = System.Drawing.Color.DodgerBlue;
  1428. this.cancelBackup.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  1429. this.cancelBackup.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  1430. this.cancelBackup.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  1431. this.cancelBackup.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1432. this.cancelBackup.ForeColor = System.Drawing.Color.White;
  1433. this.cancelBackup.Location = new System.Drawing.Point(106, 551);
  1434. this.cancelBackup.Margin = new System.Windows.Forms.Padding(2);
  1435. this.cancelBackup.Name = "cancelBackup";
  1436. this.cancelBackup.Size = new System.Drawing.Size(90, 25);
  1437. this.cancelBackup.TabIndex = 61;
  1438. this.cancelBackup.Text = "Cancel";
  1439. this.cancelBackup.UseVisualStyleBackColor = false;
  1440. this.cancelBackup.Visible = false;
  1441. this.cancelBackup.Click += new System.EventHandler(this.button14_Click);
  1442. //
  1443. // doBackup
  1444. //
  1445. this.doBackup.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  1446. this.doBackup.BackColor = System.Drawing.Color.DodgerBlue;
  1447. this.doBackup.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  1448. this.doBackup.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  1449. this.doBackup.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  1450. this.doBackup.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1451. this.doBackup.ForeColor = System.Drawing.Color.White;
  1452. this.doBackup.Location = new System.Drawing.Point(12, 551);
  1453. this.doBackup.Margin = new System.Windows.Forms.Padding(2);
  1454. this.doBackup.Name = "doBackup";
  1455. this.doBackup.Size = new System.Drawing.Size(90, 25);
  1456. this.doBackup.TabIndex = 60;
  1457. this.doBackup.Text = "OK";
  1458. this.doBackup.UseVisualStyleBackColor = false;
  1459. this.doBackup.Visible = false;
  1460. this.doBackup.Click += new System.EventHandler(this.button13_Click);
  1461. //
  1462. // txtBackupTitle
  1463. //
  1464. this.txtBackupTitle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1465. this.txtBackupTitle.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1466. this.txtBackupTitle.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1467. this.txtBackupTitle.ForeColor = System.Drawing.Color.White;
  1468. this.txtBackupTitle.Location = new System.Drawing.Point(12, 522);
  1469. this.txtBackupTitle.Margin = new System.Windows.Forms.Padding(2);
  1470. this.txtBackupTitle.Name = "txtBackupTitle";
  1471. this.txtBackupTitle.Size = new System.Drawing.Size(323, 25);
  1472. this.txtBackupTitle.TabIndex = 58;
  1473. this.txtBackupTitle.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1474. this.txtBackupTitle.Visible = false;
  1475. //
  1476. // lblBackupTitle
  1477. //
  1478. this.lblBackupTitle.AutoSize = true;
  1479. this.lblBackupTitle.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1480. this.lblBackupTitle.ForeColor = System.Drawing.Color.Silver;
  1481. this.lblBackupTitle.Location = new System.Drawing.Point(8, 501);
  1482. this.lblBackupTitle.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1483. this.lblBackupTitle.Name = "lblBackupTitle";
  1484. this.lblBackupTitle.Size = new System.Drawing.Size(86, 19);
  1485. this.lblBackupTitle.TabIndex = 59;
  1486. this.lblBackupTitle.Tag = "";
  1487. this.lblBackupTitle.Text = "Backup title:";
  1488. this.lblBackupTitle.Visible = false;
  1489. //
  1490. // restoreStartupB
  1491. //
  1492. this.restoreStartupB.BackColor = System.Drawing.Color.DodgerBlue;
  1493. this.restoreStartupB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  1494. this.restoreStartupB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  1495. this.restoreStartupB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  1496. this.restoreStartupB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1497. this.restoreStartupB.ForeColor = System.Drawing.Color.White;
  1498. this.restoreStartupB.Location = new System.Drawing.Point(176, 502);
  1499. this.restoreStartupB.Margin = new System.Windows.Forms.Padding(2);
  1500. this.restoreStartupB.Name = "restoreStartupB";
  1501. this.restoreStartupB.Size = new System.Drawing.Size(160, 31);
  1502. this.restoreStartupB.TabIndex = 42;
  1503. this.restoreStartupB.Text = "Restore";
  1504. this.restoreStartupB.UseVisualStyleBackColor = false;
  1505. this.restoreStartupB.Click += new System.EventHandler(this.button12_Click);
  1506. //
  1507. // backupStartupB
  1508. //
  1509. this.backupStartupB.BackColor = System.Drawing.Color.DodgerBlue;
  1510. this.backupStartupB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  1511. this.backupStartupB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  1512. this.backupStartupB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  1513. this.backupStartupB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1514. this.backupStartupB.ForeColor = System.Drawing.Color.White;
  1515. this.backupStartupB.Location = new System.Drawing.Point(12, 502);
  1516. this.backupStartupB.Margin = new System.Windows.Forms.Padding(2);
  1517. this.backupStartupB.Name = "backupStartupB";
  1518. this.backupStartupB.Size = new System.Drawing.Size(160, 31);
  1519. this.backupStartupB.TabIndex = 41;
  1520. this.backupStartupB.Text = "Backup";
  1521. this.backupStartupB.UseVisualStyleBackColor = false;
  1522. this.backupStartupB.Click += new System.EventHandler(this.button11_Click);
  1523. //
  1524. // findInRegB
  1525. //
  1526. this.findInRegB.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  1527. this.findInRegB.BackColor = System.Drawing.Color.DodgerBlue;
  1528. this.findInRegB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  1529. this.findInRegB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  1530. this.findInRegB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  1531. this.findInRegB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1532. this.findInRegB.ForeColor = System.Drawing.Color.White;
  1533. this.findInRegB.Location = new System.Drawing.Point(590, 538);
  1534. this.findInRegB.Margin = new System.Windows.Forms.Padding(2);
  1535. this.findInRegB.Name = "findInRegB";
  1536. this.findInRegB.Size = new System.Drawing.Size(160, 31);
  1537. this.findInRegB.TabIndex = 40;
  1538. this.findInRegB.Text = "Find in Registry";
  1539. this.findInRegB.UseVisualStyleBackColor = false;
  1540. this.findInRegB.Click += new System.EventHandler(this.button64_Click);
  1541. //
  1542. // locateFileB
  1543. //
  1544. this.locateFileB.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  1545. this.locateFileB.BackColor = System.Drawing.Color.DodgerBlue;
  1546. this.locateFileB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  1547. this.locateFileB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  1548. this.locateFileB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  1549. this.locateFileB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1550. this.locateFileB.ForeColor = System.Drawing.Color.White;
  1551. this.locateFileB.Location = new System.Drawing.Point(754, 503);
  1552. this.locateFileB.Margin = new System.Windows.Forms.Padding(2);
  1553. this.locateFileB.Name = "locateFileB";
  1554. this.locateFileB.Size = new System.Drawing.Size(160, 31);
  1555. this.locateFileB.TabIndex = 39;
  1556. this.locateFileB.Text = "Locate file";
  1557. this.locateFileB.UseVisualStyleBackColor = false;
  1558. this.locateFileB.Click += new System.EventHandler(this.button31_Click);
  1559. //
  1560. // refreshStartupB
  1561. //
  1562. this.refreshStartupB.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  1563. this.refreshStartupB.BackColor = System.Drawing.Color.DodgerBlue;
  1564. this.refreshStartupB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  1565. this.refreshStartupB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  1566. this.refreshStartupB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  1567. this.refreshStartupB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1568. this.refreshStartupB.ForeColor = System.Drawing.Color.White;
  1569. this.refreshStartupB.Location = new System.Drawing.Point(754, 538);
  1570. this.refreshStartupB.Margin = new System.Windows.Forms.Padding(2);
  1571. this.refreshStartupB.Name = "refreshStartupB";
  1572. this.refreshStartupB.Size = new System.Drawing.Size(160, 31);
  1573. this.refreshStartupB.TabIndex = 38;
  1574. this.refreshStartupB.Text = "Refresh";
  1575. this.refreshStartupB.UseVisualStyleBackColor = false;
  1576. this.refreshStartupB.Click += new System.EventHandler(this.button37_Click);
  1577. //
  1578. // panel3
  1579. //
  1580. this.panel3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  1581. | System.Windows.Forms.AnchorStyles.Right)));
  1582. this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1583. this.panel3.Controls.Add(this.listStartupItems);
  1584. this.panel3.Location = new System.Drawing.Point(11, 40);
  1585. this.panel3.Margin = new System.Windows.Forms.Padding(2);
  1586. this.panel3.Name = "panel3";
  1587. this.panel3.Size = new System.Drawing.Size(903, 459);
  1588. this.panel3.TabIndex = 37;
  1589. //
  1590. // listStartupItems
  1591. //
  1592. this.listStartupItems.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1593. this.listStartupItems.BorderStyle = System.Windows.Forms.BorderStyle.None;
  1594. this.listStartupItems.CheckBoxes = true;
  1595. this.listStartupItems.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
  1596. this.columnHeader1,
  1597. this.columnHeader2,
  1598. this.columnHeader3});
  1599. this.listStartupItems.Dock = System.Windows.Forms.DockStyle.Fill;
  1600. this.listStartupItems.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1601. this.listStartupItems.ForeColor = System.Drawing.Color.White;
  1602. this.listStartupItems.FullRowSelect = true;
  1603. this.listStartupItems.HideSelection = false;
  1604. this.listStartupItems.Location = new System.Drawing.Point(0, 0);
  1605. this.listStartupItems.Margin = new System.Windows.Forms.Padding(2);
  1606. this.listStartupItems.MultiSelect = false;
  1607. this.listStartupItems.Name = "listStartupItems";
  1608. this.listStartupItems.ShowGroups = false;
  1609. this.listStartupItems.Size = new System.Drawing.Size(901, 457);
  1610. this.listStartupItems.TabIndex = 0;
  1611. this.listStartupItems.UseCompatibleStateImageBehavior = false;
  1612. this.listStartupItems.View = System.Windows.Forms.View.Details;
  1613. this.listStartupItems.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.listStartupItems_ColumnClick);
  1614. //
  1615. // columnHeader1
  1616. //
  1617. this.columnHeader1.Text = "Name";
  1618. this.columnHeader1.Width = 194;
  1619. //
  1620. // columnHeader2
  1621. //
  1622. this.columnHeader2.Text = "Location";
  1623. this.columnHeader2.Width = 507;
  1624. //
  1625. // columnHeader3
  1626. //
  1627. this.columnHeader3.Text = "Type";
  1628. this.columnHeader3.Width = 134;
  1629. //
  1630. // removeStartupItemB
  1631. //
  1632. this.removeStartupItemB.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  1633. this.removeStartupItemB.BackColor = System.Drawing.Color.DodgerBlue;
  1634. this.removeStartupItemB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  1635. this.removeStartupItemB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  1636. this.removeStartupItemB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  1637. this.removeStartupItemB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1638. this.removeStartupItemB.ForeColor = System.Drawing.Color.White;
  1639. this.removeStartupItemB.Location = new System.Drawing.Point(590, 503);
  1640. this.removeStartupItemB.Margin = new System.Windows.Forms.Padding(2);
  1641. this.removeStartupItemB.Name = "removeStartupItemB";
  1642. this.removeStartupItemB.Size = new System.Drawing.Size(160, 31);
  1643. this.removeStartupItemB.TabIndex = 36;
  1644. this.removeStartupItemB.Text = "Delete";
  1645. this.removeStartupItemB.UseVisualStyleBackColor = false;
  1646. this.removeStartupItemB.Click += new System.EventHandler(this.button32_Click);
  1647. //
  1648. // startupTitle
  1649. //
  1650. this.startupTitle.AutoSize = true;
  1651. this.startupTitle.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1652. this.startupTitle.ForeColor = System.Drawing.Color.DodgerBlue;
  1653. this.startupTitle.Location = new System.Drawing.Point(6, 10);
  1654. this.startupTitle.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1655. this.startupTitle.Name = "startupTitle";
  1656. this.startupTitle.Size = new System.Drawing.Size(254, 28);
  1657. this.startupTitle.TabIndex = 3;
  1658. this.startupTitle.Tag = "themeable";
  1659. this.startupTitle.Text = "Choose your startup items";
  1660. //
  1661. // appsTab
  1662. //
  1663. this.appsTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1664. this.appsTab.Controls.Add(this.txtFeedError);
  1665. this.appsTab.Controls.Add(this.lblVideoSound);
  1666. this.appsTab.Controls.Add(this.lblCoding);
  1667. this.appsTab.Controls.Add(this.lblSystemTools);
  1668. this.appsTab.Controls.Add(this.groupSoundVideo);
  1669. this.appsTab.Controls.Add(this.lblInternet);
  1670. this.appsTab.Controls.Add(this.groupCoding);
  1671. this.appsTab.Controls.Add(this.groupInternet);
  1672. this.appsTab.Controls.Add(this.panel10);
  1673. this.appsTab.Controls.Add(this.panelCommonApps);
  1674. this.appsTab.Controls.Add(this.groupSystemTools);
  1675. this.appsTab.Location = new System.Drawing.Point(4, 24);
  1676. this.appsTab.Name = "appsTab";
  1677. this.appsTab.Padding = new System.Windows.Forms.Padding(3);
  1678. this.appsTab.Size = new System.Drawing.Size(929, 611);
  1679. this.appsTab.TabIndex = 12;
  1680. this.appsTab.Text = "Common Apps";
  1681. //
  1682. // txtFeedError
  1683. //
  1684. this.txtFeedError.BackColor = System.Drawing.Color.Transparent;
  1685. this.txtFeedError.Dock = System.Windows.Forms.DockStyle.Fill;
  1686. 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)));
  1687. this.txtFeedError.ForeColor = System.Drawing.Color.Gold;
  1688. this.txtFeedError.Location = new System.Drawing.Point(3, 47);
  1689. this.txtFeedError.Name = "txtFeedError";
  1690. this.txtFeedError.Size = new System.Drawing.Size(923, 441);
  1691. this.txtFeedError.TabIndex = 170;
  1692. this.txtFeedError.Text = "No internet connection, try refreshing links again";
  1693. this.txtFeedError.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1694. this.txtFeedError.Visible = false;
  1695. //
  1696. // lblVideoSound
  1697. //
  1698. this.lblVideoSound.AutoSize = true;
  1699. 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)));
  1700. this.lblVideoSound.ForeColor = System.Drawing.Color.Silver;
  1701. this.lblVideoSound.Location = new System.Drawing.Point(703, 46);
  1702. this.lblVideoSound.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1703. this.lblVideoSound.Name = "lblVideoSound";
  1704. this.lblVideoSound.Size = new System.Drawing.Size(88, 15);
  1705. this.lblVideoSound.TabIndex = 169;
  1706. this.lblVideoSound.Tag = "";
  1707. this.lblVideoSound.Text = "Video && Sound";
  1708. //
  1709. // lblCoding
  1710. //
  1711. this.lblCoding.AutoSize = true;
  1712. 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)));
  1713. this.lblCoding.ForeColor = System.Drawing.Color.Silver;
  1714. this.lblCoding.Location = new System.Drawing.Point(499, 46);
  1715. this.lblCoding.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1716. this.lblCoding.Name = "lblCoding";
  1717. this.lblCoding.Size = new System.Drawing.Size(45, 15);
  1718. this.lblCoding.TabIndex = 168;
  1719. this.lblCoding.Tag = "";
  1720. this.lblCoding.Text = "Coding";
  1721. //
  1722. // lblSystemTools
  1723. //
  1724. this.lblSystemTools.AutoSize = true;
  1725. 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)));
  1726. this.lblSystemTools.ForeColor = System.Drawing.Color.Silver;
  1727. this.lblSystemTools.Location = new System.Drawing.Point(11, 46);
  1728. this.lblSystemTools.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1729. this.lblSystemTools.Name = "lblSystemTools";
  1730. this.lblSystemTools.Size = new System.Drawing.Size(89, 15);
  1731. this.lblSystemTools.TabIndex = 162;
  1732. this.lblSystemTools.Tag = "";
  1733. this.lblSystemTools.Text = "System && Tools";
  1734. //
  1735. // groupSoundVideo
  1736. //
  1737. this.groupSoundVideo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  1738. | System.Windows.Forms.AnchorStyles.Left)));
  1739. this.groupSoundVideo.AutoScroll = true;
  1740. this.groupSoundVideo.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1741. this.groupSoundVideo.Location = new System.Drawing.Point(706, 64);
  1742. this.groupSoundVideo.Name = "groupSoundVideo";
  1743. this.groupSoundVideo.Size = new System.Drawing.Size(211, 421);
  1744. this.groupSoundVideo.TabIndex = 166;
  1745. //
  1746. // lblInternet
  1747. //
  1748. this.lblInternet.AutoSize = true;
  1749. 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)));
  1750. this.lblInternet.ForeColor = System.Drawing.Color.Silver;
  1751. this.lblInternet.Location = new System.Drawing.Point(262, 46);
  1752. this.lblInternet.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1753. this.lblInternet.Name = "lblInternet";
  1754. this.lblInternet.Size = new System.Drawing.Size(49, 15);
  1755. this.lblInternet.TabIndex = 167;
  1756. this.lblInternet.Tag = "";
  1757. this.lblInternet.Text = "Internet";
  1758. //
  1759. // groupCoding
  1760. //
  1761. this.groupCoding.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  1762. | System.Windows.Forms.AnchorStyles.Left)));
  1763. this.groupCoding.AutoScroll = true;
  1764. this.groupCoding.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1765. this.groupCoding.Location = new System.Drawing.Point(502, 64);
  1766. this.groupCoding.Name = "groupCoding";
  1767. this.groupCoding.Size = new System.Drawing.Size(198, 421);
  1768. this.groupCoding.TabIndex = 165;
  1769. //
  1770. // groupInternet
  1771. //
  1772. this.groupInternet.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  1773. | System.Windows.Forms.AnchorStyles.Left)));
  1774. this.groupInternet.AutoScroll = true;
  1775. this.groupInternet.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1776. this.groupInternet.Location = new System.Drawing.Point(265, 64);
  1777. this.groupInternet.Name = "groupInternet";
  1778. this.groupInternet.Size = new System.Drawing.Size(231, 421);
  1779. this.groupInternet.TabIndex = 164;
  1780. //
  1781. // panel10
  1782. //
  1783. this.panel10.Controls.Add(this.appsTitle);
  1784. this.panel10.Controls.Add(this.btnGetFeed);
  1785. this.panel10.Dock = System.Windows.Forms.DockStyle.Top;
  1786. this.panel10.Location = new System.Drawing.Point(3, 3);
  1787. this.panel10.Name = "panel10";
  1788. this.panel10.Size = new System.Drawing.Size(923, 44);
  1789. this.panel10.TabIndex = 163;
  1790. //
  1791. // appsTitle
  1792. //
  1793. this.appsTitle.AutoSize = true;
  1794. this.appsTitle.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1795. this.appsTitle.ForeColor = System.Drawing.Color.DodgerBlue;
  1796. this.appsTitle.Location = new System.Drawing.Point(5, 7);
  1797. this.appsTitle.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1798. this.appsTitle.Name = "appsTitle";
  1799. this.appsTitle.Size = new System.Drawing.Size(365, 28);
  1800. this.appsTitle.TabIndex = 53;
  1801. this.appsTitle.Tag = "themeable";
  1802. this.appsTitle.Text = "Quickly download && install useful apps";
  1803. //
  1804. // btnGetFeed
  1805. //
  1806. this.btnGetFeed.BackColor = System.Drawing.Color.DodgerBlue;
  1807. this.btnGetFeed.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  1808. this.btnGetFeed.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  1809. this.btnGetFeed.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  1810. this.btnGetFeed.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1811. this.btnGetFeed.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1812. this.btnGetFeed.ForeColor = System.Drawing.Color.White;
  1813. this.btnGetFeed.Location = new System.Drawing.Point(777, 6);
  1814. this.btnGetFeed.Margin = new System.Windows.Forms.Padding(2);
  1815. this.btnGetFeed.Name = "btnGetFeed";
  1816. this.btnGetFeed.Size = new System.Drawing.Size(144, 32);
  1817. this.btnGetFeed.TabIndex = 161;
  1818. this.btnGetFeed.Text = "Refresh links";
  1819. this.btnGetFeed.UseVisualStyleBackColor = false;
  1820. this.btnGetFeed.Click += new System.EventHandler(this.btnGetFeed_Click);
  1821. //
  1822. // panelCommonApps
  1823. //
  1824. this.panelCommonApps.Controls.Add(this.cAutoInstall);
  1825. this.panelCommonApps.Controls.Add(this.progressDownloader);
  1826. this.panelCommonApps.Controls.Add(this.c64);
  1827. this.panelCommonApps.Controls.Add(this.c32);
  1828. this.panelCommonApps.Controls.Add(this.btnDownloadApps);
  1829. this.panelCommonApps.Controls.Add(this.setDownDirLbl);
  1830. this.panelCommonApps.Controls.Add(this.txtDownloadFolder);
  1831. this.panelCommonApps.Controls.Add(this.changeDownDirB);
  1832. this.panelCommonApps.Controls.Add(this.txtDownloadStatus);
  1833. this.panelCommonApps.Controls.Add(this.linkWarnings);
  1834. this.panelCommonApps.Controls.Add(this.bitPref);
  1835. this.panelCommonApps.Controls.Add(this.goToDownloadsB);
  1836. this.panelCommonApps.Dock = System.Windows.Forms.DockStyle.Bottom;
  1837. this.panelCommonApps.Location = new System.Drawing.Point(3, 488);
  1838. this.panelCommonApps.Name = "panelCommonApps";
  1839. this.panelCommonApps.Size = new System.Drawing.Size(923, 120);
  1840. this.panelCommonApps.TabIndex = 162;
  1841. //
  1842. // cAutoInstall
  1843. //
  1844. this.cAutoInstall.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  1845. this.cAutoInstall.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
  1846. this.cAutoInstall.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1847. this.cAutoInstall.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1848. this.cAutoInstall.Location = new System.Drawing.Point(551, 55);
  1849. this.cAutoInstall.Name = "cAutoInstall";
  1850. this.cAutoInstall.Size = new System.Drawing.Size(290, 24);
  1851. this.cAutoInstall.TabIndex = 107;
  1852. this.cAutoInstall.Text = "Install after downloading";
  1853. this.cAutoInstall.UseVisualStyleBackColor = true;
  1854. //
  1855. // progressDownloader
  1856. //
  1857. this.progressDownloader.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  1858. this.progressDownloader.Location = new System.Drawing.Point(11, 83);
  1859. this.progressDownloader.MarqueeAnimationSpeed = 15;
  1860. this.progressDownloader.Name = "progressDownloader";
  1861. this.progressDownloader.Size = new System.Drawing.Size(302, 10);
  1862. this.progressDownloader.TabIndex = 160;
  1863. //
  1864. // c64
  1865. //
  1866. this.c64.AutoSize = true;
  1867. this.c64.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1868. this.c64.Location = new System.Drawing.Point(373, 29);
  1869. this.c64.Name = "c64";
  1870. this.c64.Size = new System.Drawing.Size(72, 25);
  1871. this.c64.TabIndex = 75;
  1872. this.c64.TabStop = true;
  1873. this.c64.Text = "64-bit";
  1874. this.c64.UseVisualStyleBackColor = true;
  1875. //
  1876. // c32
  1877. //
  1878. this.c32.AutoSize = true;
  1879. this.c32.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1880. this.c32.Location = new System.Drawing.Point(448, 29);
  1881. this.c32.Name = "c32";
  1882. this.c32.Size = new System.Drawing.Size(72, 25);
  1883. this.c32.TabIndex = 76;
  1884. this.c32.TabStop = true;
  1885. this.c32.Text = "32-bit";
  1886. this.c32.UseVisualStyleBackColor = true;
  1887. //
  1888. // btnDownloadApps
  1889. //
  1890. this.btnDownloadApps.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  1891. this.btnDownloadApps.BackColor = System.Drawing.Color.DodgerBlue;
  1892. this.btnDownloadApps.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  1893. this.btnDownloadApps.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  1894. this.btnDownloadApps.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  1895. this.btnDownloadApps.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1896. this.btnDownloadApps.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1897. this.btnDownloadApps.ForeColor = System.Drawing.Color.White;
  1898. this.btnDownloadApps.Location = new System.Drawing.Point(738, 82);
  1899. this.btnDownloadApps.Margin = new System.Windows.Forms.Padding(2);
  1900. this.btnDownloadApps.Name = "btnDownloadApps";
  1901. this.btnDownloadApps.Size = new System.Drawing.Size(183, 35);
  1902. this.btnDownloadApps.TabIndex = 50;
  1903. this.btnDownloadApps.Text = "Download";
  1904. this.btnDownloadApps.UseVisualStyleBackColor = false;
  1905. this.btnDownloadApps.Click += new System.EventHandler(this.btnDownloadApps_Click);
  1906. //
  1907. // setDownDirLbl
  1908. //
  1909. this.setDownDirLbl.AutoSize = true;
  1910. this.setDownDirLbl.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1911. this.setDownDirLbl.ForeColor = System.Drawing.Color.DodgerBlue;
  1912. this.setDownDirLbl.Location = new System.Drawing.Point(6, 4);
  1913. this.setDownDirLbl.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1914. this.setDownDirLbl.Name = "setDownDirLbl";
  1915. this.setDownDirLbl.Size = new System.Drawing.Size(160, 21);
  1916. this.setDownDirLbl.TabIndex = 69;
  1917. this.setDownDirLbl.Tag = "themeable";
  1918. this.setDownDirLbl.Text = "Set download folder";
  1919. //
  1920. // txtDownloadFolder
  1921. //
  1922. this.txtDownloadFolder.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(30)))), ((int)(((byte)(30)))));
  1923. this.txtDownloadFolder.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1924. this.txtDownloadFolder.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1925. this.txtDownloadFolder.ForeColor = System.Drawing.Color.Silver;
  1926. this.txtDownloadFolder.Location = new System.Drawing.Point(11, 30);
  1927. this.txtDownloadFolder.Name = "txtDownloadFolder";
  1928. this.txtDownloadFolder.Size = new System.Drawing.Size(302, 23);
  1929. this.txtDownloadFolder.TabIndex = 70;
  1930. this.txtDownloadFolder.TextChanged += new System.EventHandler(this.txtDownloadFolder_TextChanged);
  1931. //
  1932. // changeDownDirB
  1933. //
  1934. this.changeDownDirB.BackColor = System.Drawing.Color.DodgerBlue;
  1935. this.changeDownDirB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  1936. this.changeDownDirB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  1937. this.changeDownDirB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  1938. this.changeDownDirB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1939. this.changeDownDirB.ForeColor = System.Drawing.Color.White;
  1940. this.changeDownDirB.Location = new System.Drawing.Point(316, 30);
  1941. this.changeDownDirB.Margin = new System.Windows.Forms.Padding(2);
  1942. this.changeDownDirB.Name = "changeDownDirB";
  1943. this.changeDownDirB.Size = new System.Drawing.Size(30, 23);
  1944. this.changeDownDirB.TabIndex = 71;
  1945. this.changeDownDirB.Text = "...";
  1946. this.changeDownDirB.UseVisualStyleBackColor = false;
  1947. this.changeDownDirB.Click += new System.EventHandler(this.button5_Click);
  1948. //
  1949. // txtDownloadStatus
  1950. //
  1951. this.txtDownloadStatus.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  1952. this.txtDownloadStatus.AutoSize = true;
  1953. this.txtDownloadStatus.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1954. this.txtDownloadStatus.ForeColor = System.Drawing.Color.LightGray;
  1955. this.txtDownloadStatus.Location = new System.Drawing.Point(7, 58);
  1956. this.txtDownloadStatus.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1957. this.txtDownloadStatus.Name = "txtDownloadStatus";
  1958. this.txtDownloadStatus.Size = new System.Drawing.Size(32, 19);
  1959. this.txtDownloadStatus.TabIndex = 72;
  1960. this.txtDownloadStatus.Tag = "";
  1961. this.txtDownloadStatus.Text = "Idle";
  1962. //
  1963. // linkWarnings
  1964. //
  1965. this.linkWarnings.ActiveLinkColor = System.Drawing.Color.Gold;
  1966. this.linkWarnings.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  1967. this.linkWarnings.AutoSize = true;
  1968. this.linkWarnings.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1969. this.linkWarnings.ForeColor = System.Drawing.Color.Gold;
  1970. this.linkWarnings.LinkColor = System.Drawing.Color.Gold;
  1971. this.linkWarnings.Location = new System.Drawing.Point(7, 98);
  1972. this.linkWarnings.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1973. this.linkWarnings.Name = "linkWarnings";
  1974. this.linkWarnings.Size = new System.Drawing.Size(92, 19);
  1975. this.linkWarnings.TabIndex = 78;
  1976. this.linkWarnings.TabStop = true;
  1977. this.linkWarnings.Tag = "";
  1978. this.linkWarnings.Text = "See warnings";
  1979. this.linkWarnings.Visible = false;
  1980. this.linkWarnings.VisitedLinkColor = System.Drawing.Color.Gold;
  1981. this.linkWarnings.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
  1982. //
  1983. // bitPref
  1984. //
  1985. this.bitPref.AutoSize = true;
  1986. this.bitPref.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1987. this.bitPref.ForeColor = System.Drawing.Color.DodgerBlue;
  1988. this.bitPref.Location = new System.Drawing.Point(368, 6);
  1989. this.bitPref.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1990. this.bitPref.Name = "bitPref";
  1991. this.bitPref.Size = new System.Drawing.Size(143, 21);
  1992. this.bitPref.TabIndex = 74;
  1993. this.bitPref.Tag = "themeable";
  1994. this.bitPref.Text = "Set bit preference";
  1995. //
  1996. // goToDownloadsB
  1997. //
  1998. this.goToDownloadsB.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  1999. this.goToDownloadsB.BackColor = System.Drawing.Color.DodgerBlue;
  2000. this.goToDownloadsB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  2001. this.goToDownloadsB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2002. this.goToDownloadsB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2003. this.goToDownloadsB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2004. this.goToDownloadsB.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2005. this.goToDownloadsB.ForeColor = System.Drawing.Color.White;
  2006. this.goToDownloadsB.Location = new System.Drawing.Point(551, 82);
  2007. this.goToDownloadsB.Margin = new System.Windows.Forms.Padding(2);
  2008. this.goToDownloadsB.Name = "goToDownloadsB";
  2009. this.goToDownloadsB.Size = new System.Drawing.Size(183, 35);
  2010. this.goToDownloadsB.TabIndex = 77;
  2011. this.goToDownloadsB.Text = "Go to Downloads";
  2012. this.goToDownloadsB.UseVisualStyleBackColor = false;
  2013. this.goToDownloadsB.Click += new System.EventHandler(this.button6_Click);
  2014. //
  2015. // groupSystemTools
  2016. //
  2017. this.groupSystemTools.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  2018. | System.Windows.Forms.AnchorStyles.Left)));
  2019. this.groupSystemTools.AutoScroll = true;
  2020. this.groupSystemTools.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2021. this.groupSystemTools.Location = new System.Drawing.Point(13, 64);
  2022. this.groupSystemTools.Name = "groupSystemTools";
  2023. this.groupSystemTools.Size = new System.Drawing.Size(246, 421);
  2024. this.groupSystemTools.TabIndex = 162;
  2025. //
  2026. // cleanerTab
  2027. //
  2028. this.cleanerTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  2029. this.cleanerTab.Controls.Add(this.cleanerTitle);
  2030. this.cleanerTab.Controls.Add(this.panel1);
  2031. this.cleanerTab.Location = new System.Drawing.Point(4, 24);
  2032. this.cleanerTab.Margin = new System.Windows.Forms.Padding(2);
  2033. this.cleanerTab.Name = "cleanerTab";
  2034. this.cleanerTab.Padding = new System.Windows.Forms.Padding(2);
  2035. this.cleanerTab.Size = new System.Drawing.Size(929, 611);
  2036. this.cleanerTab.TabIndex = 5;
  2037. this.cleanerTab.Text = "Cleaner";
  2038. //
  2039. // cleanerTitle
  2040. //
  2041. this.cleanerTitle.AutoSize = true;
  2042. this.cleanerTitle.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2043. this.cleanerTitle.ForeColor = System.Drawing.Color.DodgerBlue;
  2044. this.cleanerTitle.Location = new System.Drawing.Point(6, 10);
  2045. this.cleanerTitle.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2046. this.cleanerTitle.Name = "cleanerTitle";
  2047. this.cleanerTitle.Size = new System.Drawing.Size(260, 28);
  2048. this.cleanerTitle.TabIndex = 46;
  2049. this.cleanerTitle.Tag = "themeable";
  2050. this.cleanerTitle.Text = "Clean up your system drive";
  2051. //
  2052. // panel1
  2053. //
  2054. this.panel1.Controls.Add(this.lblPretext);
  2055. this.panel1.Controls.Add(this.lblFootprint);
  2056. this.panel1.Controls.Add(this.checkErrorReports);
  2057. this.panel1.Controls.Add(this.cleanDriveB);
  2058. this.panel1.Controls.Add(this.checkSelectAll);
  2059. this.panel1.Controls.Add(this.checkMediaCache);
  2060. this.panel1.Controls.Add(this.checkTemp);
  2061. this.panel1.Controls.Add(this.checkLogs);
  2062. this.panel1.Controls.Add(this.checkBin);
  2063. this.panel1.Controls.Add(this.checkMiniDumps);
  2064. this.panel1.Location = new System.Drawing.Point(11, 40);
  2065. this.panel1.Margin = new System.Windows.Forms.Padding(2);
  2066. this.panel1.Name = "panel1";
  2067. this.panel1.Size = new System.Drawing.Size(805, 333);
  2068. this.panel1.TabIndex = 45;
  2069. //
  2070. // lblPretext
  2071. //
  2072. this.lblPretext.AutoSize = true;
  2073. 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)));
  2074. this.lblPretext.ForeColor = System.Drawing.Color.Silver;
  2075. this.lblPretext.Location = new System.Drawing.Point(51, 241);
  2076. this.lblPretext.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2077. this.lblPretext.Name = "lblPretext";
  2078. this.lblPretext.Size = new System.Drawing.Size(123, 21);
  2079. this.lblPretext.TabIndex = 49;
  2080. this.lblPretext.Tag = "";
  2081. this.lblPretext.Text = "Size to be freed:";
  2082. this.lblPretext.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2083. //
  2084. // lblFootprint
  2085. //
  2086. this.lblFootprint.Font = new System.Drawing.Font("Segoe UI Semibold", 13F, ((System.Drawing.FontStyle)(((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic)
  2087. | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2088. this.lblFootprint.ForeColor = System.Drawing.Color.DodgerBlue;
  2089. this.lblFootprint.Location = new System.Drawing.Point(52, 262);
  2090. this.lblFootprint.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2091. this.lblFootprint.Name = "lblFootprint";
  2092. this.lblFootprint.Size = new System.Drawing.Size(119, 31);
  2093. this.lblFootprint.TabIndex = 48;
  2094. this.lblFootprint.Tag = "themeable";
  2095. this.lblFootprint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2096. //
  2097. // checkErrorReports
  2098. //
  2099. this.checkErrorReports.AutoSize = true;
  2100. this.checkErrorReports.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2101. this.checkErrorReports.ForeColor = System.Drawing.Color.White;
  2102. this.checkErrorReports.Location = new System.Drawing.Point(275, 104);
  2103. this.checkErrorReports.Margin = new System.Windows.Forms.Padding(2);
  2104. this.checkErrorReports.Name = "checkErrorReports";
  2105. this.checkErrorReports.Size = new System.Drawing.Size(123, 25);
  2106. this.checkErrorReports.TabIndex = 44;
  2107. this.checkErrorReports.Text = "Error reports";
  2108. this.checkErrorReports.UseVisualStyleBackColor = true;
  2109. //
  2110. // cleanDriveB
  2111. //
  2112. this.cleanDriveB.BackColor = System.Drawing.Color.DodgerBlue;
  2113. this.cleanDriveB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  2114. this.cleanDriveB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2115. this.cleanDriveB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2116. this.cleanDriveB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2117. this.cleanDriveB.ForeColor = System.Drawing.Color.White;
  2118. this.cleanDriveB.Location = new System.Drawing.Point(29, 196);
  2119. this.cleanDriveB.Margin = new System.Windows.Forms.Padding(2);
  2120. this.cleanDriveB.Name = "cleanDriveB";
  2121. this.cleanDriveB.Size = new System.Drawing.Size(120, 31);
  2122. this.cleanDriveB.TabIndex = 34;
  2123. this.cleanDriveB.Text = "Clean";
  2124. this.cleanDriveB.UseVisualStyleBackColor = false;
  2125. this.cleanDriveB.Click += new System.EventHandler(this.button20_Click);
  2126. //
  2127. // checkSelectAll
  2128. //
  2129. this.checkSelectAll.AutoSize = true;
  2130. this.checkSelectAll.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2131. this.checkSelectAll.ForeColor = System.Drawing.Color.White;
  2132. this.checkSelectAll.Location = new System.Drawing.Point(29, 14);
  2133. this.checkSelectAll.Margin = new System.Windows.Forms.Padding(2);
  2134. this.checkSelectAll.Name = "checkSelectAll";
  2135. this.checkSelectAll.Size = new System.Drawing.Size(94, 25);
  2136. this.checkSelectAll.TabIndex = 35;
  2137. this.checkSelectAll.Tag = "";
  2138. this.checkSelectAll.Text = "Select all";
  2139. this.checkSelectAll.UseVisualStyleBackColor = true;
  2140. this.checkSelectAll.CheckedChanged += new System.EventHandler(this.checkSelectAll_CheckedChanged);
  2141. //
  2142. // checkMediaCache
  2143. //
  2144. this.checkMediaCache.AutoSize = true;
  2145. this.checkMediaCache.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2146. this.checkMediaCache.ForeColor = System.Drawing.Color.White;
  2147. this.checkMediaCache.Location = new System.Drawing.Point(275, 75);
  2148. this.checkMediaCache.Margin = new System.Windows.Forms.Padding(2);
  2149. this.checkMediaCache.Name = "checkMediaCache";
  2150. this.checkMediaCache.Size = new System.Drawing.Size(176, 25);
  2151. this.checkMediaCache.TabIndex = 43;
  2152. this.checkMediaCache.Text = "Media Players cache";
  2153. this.checkMediaCache.UseVisualStyleBackColor = true;
  2154. //
  2155. // checkTemp
  2156. //
  2157. this.checkTemp.AutoSize = true;
  2158. this.checkTemp.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2159. this.checkTemp.ForeColor = System.Drawing.Color.White;
  2160. this.checkTemp.Location = new System.Drawing.Point(55, 45);
  2161. this.checkTemp.Margin = new System.Windows.Forms.Padding(2);
  2162. this.checkTemp.Name = "checkTemp";
  2163. this.checkTemp.Size = new System.Drawing.Size(142, 25);
  2164. this.checkTemp.TabIndex = 36;
  2165. this.checkTemp.Text = "Temporary files";
  2166. this.checkTemp.UseVisualStyleBackColor = true;
  2167. //
  2168. // checkLogs
  2169. //
  2170. this.checkLogs.AutoSize = true;
  2171. this.checkLogs.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2172. this.checkLogs.ForeColor = System.Drawing.Color.White;
  2173. this.checkLogs.Location = new System.Drawing.Point(55, 75);
  2174. this.checkLogs.Margin = new System.Windows.Forms.Padding(2);
  2175. this.checkLogs.Name = "checkLogs";
  2176. this.checkLogs.Size = new System.Drawing.Size(131, 25);
  2177. this.checkLogs.TabIndex = 42;
  2178. this.checkLogs.Text = "Windows logs";
  2179. this.checkLogs.UseVisualStyleBackColor = true;
  2180. //
  2181. // checkBin
  2182. //
  2183. this.checkBin.AutoSize = true;
  2184. this.checkBin.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2185. this.checkBin.ForeColor = System.Drawing.Color.White;
  2186. this.checkBin.Location = new System.Drawing.Point(275, 45);
  2187. this.checkBin.Margin = new System.Windows.Forms.Padding(2);
  2188. this.checkBin.Name = "checkBin";
  2189. this.checkBin.Size = new System.Drawing.Size(162, 25);
  2190. this.checkBin.TabIndex = 41;
  2191. this.checkBin.Text = "Empty Recycle Bin";
  2192. this.checkBin.UseVisualStyleBackColor = true;
  2193. //
  2194. // checkMiniDumps
  2195. //
  2196. this.checkMiniDumps.AutoSize = true;
  2197. this.checkMiniDumps.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2198. this.checkMiniDumps.ForeColor = System.Drawing.Color.White;
  2199. this.checkMiniDumps.Location = new System.Drawing.Point(55, 104);
  2200. this.checkMiniDumps.Margin = new System.Windows.Forms.Padding(2);
  2201. this.checkMiniDumps.Name = "checkMiniDumps";
  2202. this.checkMiniDumps.Size = new System.Drawing.Size(157, 25);
  2203. this.checkMiniDumps.TabIndex = 39;
  2204. this.checkMiniDumps.Text = "BSOD Minidumps";
  2205. this.checkMiniDumps.UseVisualStyleBackColor = true;
  2206. //
  2207. // pingerTab
  2208. //
  2209. this.pingerTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  2210. this.pingerTab.Controls.Add(this.flushCacheB);
  2211. this.pingerTab.Controls.Add(this.btnExport);
  2212. this.pingerTab.Controls.Add(this.copyB);
  2213. this.pingerTab.Controls.Add(this.copyIPB);
  2214. this.pingerTab.Controls.Add(this.panel7);
  2215. this.pingerTab.Controls.Add(this.lblResults);
  2216. this.pingerTab.Controls.Add(this.btnShodan);
  2217. this.pingerTab.Controls.Add(this.btnPing);
  2218. this.pingerTab.Controls.Add(this.txtPingInput);
  2219. this.pingerTab.Controls.Add(this.lblPinger);
  2220. this.pingerTab.Controls.Add(this.pingerTitle);
  2221. this.pingerTab.Location = new System.Drawing.Point(4, 24);
  2222. this.pingerTab.Name = "pingerTab";
  2223. this.pingerTab.Padding = new System.Windows.Forms.Padding(3);
  2224. this.pingerTab.Size = new System.Drawing.Size(929, 611);
  2225. this.pingerTab.TabIndex = 13;
  2226. this.pingerTab.Text = "Pinger";
  2227. //
  2228. // flushCacheB
  2229. //
  2230. this.flushCacheB.BackColor = System.Drawing.Color.DodgerBlue;
  2231. this.flushCacheB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  2232. this.flushCacheB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2233. this.flushCacheB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2234. this.flushCacheB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2235. this.flushCacheB.ForeColor = System.Drawing.Color.White;
  2236. this.flushCacheB.Location = new System.Drawing.Point(26, 512);
  2237. this.flushCacheB.Margin = new System.Windows.Forms.Padding(2);
  2238. this.flushCacheB.Name = "flushCacheB";
  2239. this.flushCacheB.Size = new System.Drawing.Size(177, 29);
  2240. this.flushCacheB.TabIndex = 84;
  2241. this.flushCacheB.Text = "Flush DNS cache";
  2242. this.flushCacheB.UseVisualStyleBackColor = false;
  2243. this.flushCacheB.Click += new System.EventHandler(this.button10_Click);
  2244. //
  2245. // btnExport
  2246. //
  2247. this.btnExport.BackColor = System.Drawing.Color.DodgerBlue;
  2248. this.btnExport.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  2249. this.btnExport.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2250. this.btnExport.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2251. this.btnExport.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2252. this.btnExport.ForeColor = System.Drawing.Color.White;
  2253. this.btnExport.Location = new System.Drawing.Point(463, 512);
  2254. this.btnExport.Margin = new System.Windows.Forms.Padding(2);
  2255. this.btnExport.Name = "btnExport";
  2256. this.btnExport.Size = new System.Drawing.Size(107, 29);
  2257. this.btnExport.TabIndex = 83;
  2258. this.btnExport.Text = "Export...";
  2259. this.btnExport.UseVisualStyleBackColor = false;
  2260. this.btnExport.Click += new System.EventHandler(this.btnExport_Click);
  2261. //
  2262. // copyB
  2263. //
  2264. this.copyB.BackColor = System.Drawing.Color.DodgerBlue;
  2265. this.copyB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  2266. this.copyB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2267. this.copyB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2268. this.copyB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2269. this.copyB.ForeColor = System.Drawing.Color.White;
  2270. this.copyB.Location = new System.Drawing.Point(265, 116);
  2271. this.copyB.Margin = new System.Windows.Forms.Padding(2);
  2272. this.copyB.Name = "copyB";
  2273. this.copyB.Size = new System.Drawing.Size(146, 31);
  2274. this.copyB.TabIndex = 82;
  2275. this.copyB.Text = "Copy IP";
  2276. this.copyB.UseVisualStyleBackColor = false;
  2277. this.copyB.Click += new System.EventHandler(this.button9_Click);
  2278. //
  2279. // copyIPB
  2280. //
  2281. this.copyIPB.BackColor = System.Drawing.Color.DodgerBlue;
  2282. this.copyIPB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  2283. this.copyIPB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2284. this.copyIPB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2285. this.copyIPB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2286. this.copyIPB.ForeColor = System.Drawing.Color.White;
  2287. this.copyIPB.Location = new System.Drawing.Point(415, 116);
  2288. this.copyIPB.Margin = new System.Windows.Forms.Padding(2);
  2289. this.copyIPB.Name = "copyIPB";
  2290. this.copyIPB.Size = new System.Drawing.Size(146, 31);
  2291. this.copyIPB.TabIndex = 81;
  2292. this.copyIPB.Text = "Copy";
  2293. this.copyIPB.UseVisualStyleBackColor = false;
  2294. this.copyIPB.Click += new System.EventHandler(this.button7_Click);
  2295. //
  2296. // panel7
  2297. //
  2298. this.panel7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2299. this.panel7.Controls.Add(this.listPingResults);
  2300. this.panel7.Location = new System.Drawing.Point(26, 200);
  2301. this.panel7.Name = "panel7";
  2302. this.panel7.Size = new System.Drawing.Size(544, 307);
  2303. this.panel7.TabIndex = 80;
  2304. //
  2305. // listPingResults
  2306. //
  2307. this.listPingResults.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  2308. this.listPingResults.BorderStyle = System.Windows.Forms.BorderStyle.None;
  2309. this.listPingResults.Dock = System.Windows.Forms.DockStyle.Fill;
  2310. this.listPingResults.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2311. this.listPingResults.ForeColor = System.Drawing.Color.White;
  2312. this.listPingResults.FormattingEnabled = true;
  2313. this.listPingResults.HorizontalScrollbar = true;
  2314. this.listPingResults.ItemHeight = 21;
  2315. this.listPingResults.Location = new System.Drawing.Point(0, 0);
  2316. this.listPingResults.Margin = new System.Windows.Forms.Padding(2);
  2317. this.listPingResults.Name = "listPingResults";
  2318. this.listPingResults.Size = new System.Drawing.Size(542, 305);
  2319. this.listPingResults.TabIndex = 79;
  2320. //
  2321. // lblResults
  2322. //
  2323. this.lblResults.AutoSize = true;
  2324. this.lblResults.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2325. this.lblResults.ForeColor = System.Drawing.Color.Silver;
  2326. this.lblResults.Location = new System.Drawing.Point(21, 176);
  2327. this.lblResults.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2328. this.lblResults.Name = "lblResults";
  2329. this.lblResults.Size = new System.Drawing.Size(62, 21);
  2330. this.lblResults.TabIndex = 60;
  2331. this.lblResults.Tag = "";
  2332. this.lblResults.Text = "Results";
  2333. //
  2334. // btnShodan
  2335. //
  2336. this.btnShodan.BackColor = System.Drawing.Color.DodgerBlue;
  2337. this.btnShodan.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  2338. this.btnShodan.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2339. this.btnShodan.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2340. this.btnShodan.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2341. this.btnShodan.ForeColor = System.Drawing.Color.White;
  2342. this.btnShodan.Location = new System.Drawing.Point(101, 116);
  2343. this.btnShodan.Margin = new System.Windows.Forms.Padding(2);
  2344. this.btnShodan.Name = "btnShodan";
  2345. this.btnShodan.Size = new System.Drawing.Size(160, 31);
  2346. this.btnShodan.TabIndex = 59;
  2347. this.btnShodan.Text = "Check on SHODAN.io";
  2348. this.btnShodan.UseVisualStyleBackColor = false;
  2349. this.btnShodan.Click += new System.EventHandler(this.btnShodan_Click);
  2350. //
  2351. // btnPing
  2352. //
  2353. this.btnPing.BackColor = System.Drawing.Color.DodgerBlue;
  2354. this.btnPing.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  2355. this.btnPing.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2356. this.btnPing.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2357. this.btnPing.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2358. this.btnPing.ForeColor = System.Drawing.Color.White;
  2359. this.btnPing.Location = new System.Drawing.Point(26, 116);
  2360. this.btnPing.Margin = new System.Windows.Forms.Padding(2);
  2361. this.btnPing.Name = "btnPing";
  2362. this.btnPing.Size = new System.Drawing.Size(71, 31);
  2363. this.btnPing.TabIndex = 58;
  2364. this.btnPing.Text = "Ping";
  2365. this.btnPing.UseVisualStyleBackColor = false;
  2366. this.btnPing.Click += new System.EventHandler(this.btnPing_Click);
  2367. //
  2368. // txtPingInput
  2369. //
  2370. this.txtPingInput.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  2371. this.txtPingInput.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2372. this.txtPingInput.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2373. this.txtPingInput.ForeColor = System.Drawing.Color.White;
  2374. this.txtPingInput.Location = new System.Drawing.Point(26, 83);
  2375. this.txtPingInput.Margin = new System.Windows.Forms.Padding(2);
  2376. this.txtPingInput.Name = "txtPingInput";
  2377. this.txtPingInput.Size = new System.Drawing.Size(535, 29);
  2378. this.txtPingInput.TabIndex = 56;
  2379. this.txtPingInput.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  2380. this.txtPingInput.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtPingInput_KeyDown);
  2381. //
  2382. // lblPinger
  2383. //
  2384. this.lblPinger.AutoSize = true;
  2385. this.lblPinger.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2386. this.lblPinger.ForeColor = System.Drawing.Color.Silver;
  2387. this.lblPinger.Location = new System.Drawing.Point(23, 60);
  2388. this.lblPinger.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2389. this.lblPinger.Name = "lblPinger";
  2390. this.lblPinger.Size = new System.Drawing.Size(139, 21);
  2391. this.lblPinger.TabIndex = 57;
  2392. this.lblPinger.Tag = "";
  2393. this.lblPinger.Text = "IP / Domain name";
  2394. //
  2395. // pingerTitle
  2396. //
  2397. this.pingerTitle.AutoSize = true;
  2398. this.pingerTitle.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2399. this.pingerTitle.ForeColor = System.Drawing.Color.DodgerBlue;
  2400. this.pingerTitle.Location = new System.Drawing.Point(6, 10);
  2401. this.pingerTitle.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2402. this.pingerTitle.Name = "pingerTitle";
  2403. this.pingerTitle.Size = new System.Drawing.Size(393, 28);
  2404. this.pingerTitle.TabIndex = 47;
  2405. this.pingerTitle.Tag = "themeable";
  2406. this.pingerTitle.Text = "Ping IP addresses and assess your latency";
  2407. //
  2408. // hostsEditorTab
  2409. //
  2410. this.hostsEditorTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  2411. this.hostsEditorTab.Controls.Add(this.panel4);
  2412. this.hostsEditorTab.Controls.Add(this.hostsTitle);
  2413. this.hostsEditorTab.Controls.Add(this.linkLocate);
  2414. this.hostsEditorTab.Location = new System.Drawing.Point(4, 24);
  2415. this.hostsEditorTab.Margin = new System.Windows.Forms.Padding(2);
  2416. this.hostsEditorTab.Name = "hostsEditorTab";
  2417. this.hostsEditorTab.Padding = new System.Windows.Forms.Padding(2);
  2418. this.hostsEditorTab.Size = new System.Drawing.Size(929, 611);
  2419. this.hostsEditorTab.TabIndex = 9;
  2420. this.hostsEditorTab.Text = "Hosts";
  2421. //
  2422. // panel4
  2423. //
  2424. this.panel4.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  2425. | System.Windows.Forms.AnchorStyles.Left)
  2426. | System.Windows.Forms.AnchorStyles.Right)));
  2427. this.panel4.Controls.Add(this.lblAdblockSub);
  2428. this.panel4.Controls.Add(this.linkAdvancedEdit);
  2429. this.panel4.Controls.Add(this.lblAdblock);
  2430. this.panel4.Controls.Add(this.linkRestoreDefault);
  2431. this.panel4.Controls.Add(this.adblockUlti);
  2432. this.panel4.Controls.Add(this.adblockP);
  2433. this.panel4.Controls.Add(this.adblockS);
  2434. this.panel4.Controls.Add(this.adblockBasic);
  2435. this.panel4.Controls.Add(this.lblLock);
  2436. this.panel4.Controls.Add(this.chkReadOnly);
  2437. this.panel4.Controls.Add(this.panelList);
  2438. this.panel4.Controls.Add(this.chkBlock);
  2439. this.panel4.Controls.Add(this.refreshHostsB);
  2440. this.panel4.Controls.Add(this.removeHostB);
  2441. this.panel4.Controls.Add(this.removeAllHostsB);
  2442. this.panel4.Controls.Add(this.addHostB);
  2443. this.panel4.Controls.Add(this.txtIP);
  2444. this.panel4.Controls.Add(this.txtDomain);
  2445. this.panel4.Controls.Add(this.lblDomain);
  2446. this.panel4.Controls.Add(this.lblIP);
  2447. this.panel4.Location = new System.Drawing.Point(6, 70);
  2448. this.panel4.Margin = new System.Windows.Forms.Padding(2);
  2449. this.panel4.Name = "panel4";
  2450. this.panel4.Size = new System.Drawing.Size(921, 537);
  2451. this.panel4.TabIndex = 53;
  2452. //
  2453. // lblAdblockSub
  2454. //
  2455. this.lblAdblockSub.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2456. this.lblAdblockSub.ForeColor = System.Drawing.Color.Silver;
  2457. this.lblAdblockSub.Location = new System.Drawing.Point(325, 279);
  2458. this.lblAdblockSub.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2459. this.lblAdblockSub.Name = "lblAdblockSub";
  2460. this.lblAdblockSub.Size = new System.Drawing.Size(313, 25);
  2461. this.lblAdblockSub.TabIndex = 68;
  2462. this.lblAdblockSub.Tag = "";
  2463. this.lblAdblockSub.Text = "(will delete your current config)";
  2464. //
  2465. // linkAdvancedEdit
  2466. //
  2467. this.linkAdvancedEdit.ActiveLinkColor = System.Drawing.Color.WhiteSmoke;
  2468. this.linkAdvancedEdit.AutoSize = true;
  2469. this.linkAdvancedEdit.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2470. this.linkAdvancedEdit.ForeColor = System.Drawing.Color.Silver;
  2471. this.linkAdvancedEdit.LinkColor = System.Drawing.Color.Silver;
  2472. this.linkAdvancedEdit.Location = new System.Drawing.Point(1, 428);
  2473. this.linkAdvancedEdit.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2474. this.linkAdvancedEdit.Name = "linkAdvancedEdit";
  2475. this.linkAdvancedEdit.Size = new System.Drawing.Size(132, 21);
  2476. this.linkAdvancedEdit.TabIndex = 49;
  2477. this.linkAdvancedEdit.TabStop = true;
  2478. this.linkAdvancedEdit.Tag = "";
  2479. this.linkAdvancedEdit.Text = "Advanced editor";
  2480. this.linkAdvancedEdit.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  2481. this.linkAdvancedEdit.VisitedLinkColor = System.Drawing.Color.Silver;
  2482. this.linkAdvancedEdit.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel3_LinkClicked);
  2483. //
  2484. // lblAdblock
  2485. //
  2486. this.lblAdblock.Font = new System.Drawing.Font("Segoe UI Semibold", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2487. this.lblAdblock.ForeColor = System.Drawing.Color.DodgerBlue;
  2488. this.lblAdblock.Location = new System.Drawing.Point(322, 254);
  2489. this.lblAdblock.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2490. this.lblAdblock.Name = "lblAdblock";
  2491. this.lblAdblock.Size = new System.Drawing.Size(281, 25);
  2492. this.lblAdblock.TabIndex = 67;
  2493. this.lblAdblock.Tag = "themeable";
  2494. this.lblAdblock.Text = "Pre-made adblocks";
  2495. //
  2496. // linkRestoreDefault
  2497. //
  2498. this.linkRestoreDefault.ActiveLinkColor = System.Drawing.Color.WhiteSmoke;
  2499. this.linkRestoreDefault.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  2500. this.linkRestoreDefault.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2501. this.linkRestoreDefault.ForeColor = System.Drawing.Color.Silver;
  2502. this.linkRestoreDefault.LinkColor = System.Drawing.Color.Silver;
  2503. this.linkRestoreDefault.Location = new System.Drawing.Point(427, 516);
  2504. this.linkRestoreDefault.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2505. this.linkRestoreDefault.Name = "linkRestoreDefault";
  2506. this.linkRestoreDefault.Size = new System.Drawing.Size(494, 21);
  2507. this.linkRestoreDefault.TabIndex = 51;
  2508. this.linkRestoreDefault.TabStop = true;
  2509. this.linkRestoreDefault.Tag = "";
  2510. this.linkRestoreDefault.Text = "Restore default";
  2511. this.linkRestoreDefault.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  2512. this.linkRestoreDefault.VisitedLinkColor = System.Drawing.Color.Silver;
  2513. this.linkRestoreDefault.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel4_LinkClicked);
  2514. //
  2515. // adblockUlti
  2516. //
  2517. this.adblockUlti.BackColor = System.Drawing.Color.DodgerBlue;
  2518. this.adblockUlti.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  2519. this.adblockUlti.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2520. this.adblockUlti.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2521. this.adblockUlti.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2522. this.adblockUlti.ForeColor = System.Drawing.Color.White;
  2523. this.adblockUlti.Location = new System.Drawing.Point(485, 351);
  2524. this.adblockUlti.Margin = new System.Windows.Forms.Padding(2);
  2525. this.adblockUlti.Name = "adblockUlti";
  2526. this.adblockUlti.Size = new System.Drawing.Size(153, 31);
  2527. this.adblockUlti.TabIndex = 66;
  2528. this.adblockUlti.Text = "AdBlock Ultimate\r\n";
  2529. this.adblockUlti.UseVisualStyleBackColor = false;
  2530. this.adblockUlti.Click += new System.EventHandler(this.button4_Click);
  2531. //
  2532. // adblockP
  2533. //
  2534. this.adblockP.BackColor = System.Drawing.Color.DodgerBlue;
  2535. this.adblockP.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  2536. this.adblockP.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2537. this.adblockP.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2538. this.adblockP.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2539. this.adblockP.ForeColor = System.Drawing.Color.White;
  2540. this.adblockP.Location = new System.Drawing.Point(485, 316);
  2541. this.adblockP.Margin = new System.Windows.Forms.Padding(2);
  2542. this.adblockP.Name = "adblockP";
  2543. this.adblockP.Size = new System.Drawing.Size(153, 31);
  2544. this.adblockP.TabIndex = 65;
  2545. this.adblockP.Text = "AdBlock + Porn";
  2546. this.adblockP.UseVisualStyleBackColor = false;
  2547. this.adblockP.Click += new System.EventHandler(this.button3_Click);
  2548. //
  2549. // adblockS
  2550. //
  2551. this.adblockS.BackColor = System.Drawing.Color.DodgerBlue;
  2552. this.adblockS.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  2553. this.adblockS.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2554. this.adblockS.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2555. this.adblockS.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2556. this.adblockS.ForeColor = System.Drawing.Color.White;
  2557. this.adblockS.Location = new System.Drawing.Point(327, 351);
  2558. this.adblockS.Margin = new System.Windows.Forms.Padding(2);
  2559. this.adblockS.Name = "adblockS";
  2560. this.adblockS.Size = new System.Drawing.Size(153, 31);
  2561. this.adblockS.TabIndex = 64;
  2562. this.adblockS.Text = "AdBlock + Social";
  2563. this.adblockS.UseVisualStyleBackColor = false;
  2564. this.adblockS.Click += new System.EventHandler(this.button2_Click);
  2565. //
  2566. // adblockBasic
  2567. //
  2568. this.adblockBasic.BackColor = System.Drawing.Color.DodgerBlue;
  2569. this.adblockBasic.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  2570. this.adblockBasic.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2571. this.adblockBasic.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2572. this.adblockBasic.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2573. this.adblockBasic.ForeColor = System.Drawing.Color.White;
  2574. this.adblockBasic.Location = new System.Drawing.Point(327, 316);
  2575. this.adblockBasic.Margin = new System.Windows.Forms.Padding(2);
  2576. this.adblockBasic.Name = "adblockBasic";
  2577. this.adblockBasic.Size = new System.Drawing.Size(153, 31);
  2578. this.adblockBasic.TabIndex = 63;
  2579. this.adblockBasic.Text = "AdBlock Basic";
  2580. this.adblockBasic.UseVisualStyleBackColor = false;
  2581. this.adblockBasic.Click += new System.EventHandler(this.button1_Click);
  2582. //
  2583. // lblLock
  2584. //
  2585. this.lblLock.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2586. this.lblLock.ForeColor = System.Drawing.Color.Silver;
  2587. this.lblLock.Location = new System.Drawing.Point(325, 182);
  2588. this.lblLock.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2589. this.lblLock.Name = "lblLock";
  2590. this.lblLock.Size = new System.Drawing.Size(315, 55);
  2591. this.lblLock.TabIndex = 62;
  2592. this.lblLock.Tag = "";
  2593. this.lblLock.Text = "Protect your HOSTS file by locking it.";
  2594. //
  2595. // chkReadOnly
  2596. //
  2597. this.chkReadOnly.AutoSize = true;
  2598. this.chkReadOnly.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2599. this.chkReadOnly.ForeColor = System.Drawing.Color.White;
  2600. this.chkReadOnly.Location = new System.Drawing.Point(329, 155);
  2601. this.chkReadOnly.Margin = new System.Windows.Forms.Padding(2);
  2602. this.chkReadOnly.Name = "chkReadOnly";
  2603. this.chkReadOnly.Size = new System.Drawing.Size(103, 25);
  2604. this.chkReadOnly.TabIndex = 61;
  2605. this.chkReadOnly.Text = "Read-only";
  2606. this.chkReadOnly.UseVisualStyleBackColor = true;
  2607. this.chkReadOnly.CheckedChanged += new System.EventHandler(this.chkReadOnly_CheckedChanged);
  2608. //
  2609. // panelList
  2610. //
  2611. this.panelList.Controls.Add(this.listHostEntries);
  2612. this.panelList.Location = new System.Drawing.Point(5, 3);
  2613. this.panelList.Name = "panelList";
  2614. this.panelList.Size = new System.Drawing.Size(312, 388);
  2615. this.panelList.TabIndex = 60;
  2616. //
  2617. // listHostEntries
  2618. //
  2619. this.listHostEntries.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  2620. this.listHostEntries.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2621. this.listHostEntries.Dock = System.Windows.Forms.DockStyle.Fill;
  2622. this.listHostEntries.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2623. this.listHostEntries.ForeColor = System.Drawing.Color.White;
  2624. this.listHostEntries.FormattingEnabled = true;
  2625. this.listHostEntries.HorizontalScrollbar = true;
  2626. this.listHostEntries.ItemHeight = 21;
  2627. this.listHostEntries.Location = new System.Drawing.Point(0, 0);
  2628. this.listHostEntries.Margin = new System.Windows.Forms.Padding(2);
  2629. this.listHostEntries.Name = "listHostEntries";
  2630. this.listHostEntries.Size = new System.Drawing.Size(312, 388);
  2631. this.listHostEntries.TabIndex = 52;
  2632. //
  2633. // chkBlock
  2634. //
  2635. this.chkBlock.AutoSize = true;
  2636. this.chkBlock.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2637. this.chkBlock.ForeColor = System.Drawing.Color.White;
  2638. this.chkBlock.Location = new System.Drawing.Point(329, 110);
  2639. this.chkBlock.Margin = new System.Windows.Forms.Padding(2);
  2640. this.chkBlock.Name = "chkBlock";
  2641. this.chkBlock.Size = new System.Drawing.Size(69, 25);
  2642. this.chkBlock.TabIndex = 59;
  2643. this.chkBlock.Text = "Block";
  2644. this.chkBlock.UseVisualStyleBackColor = true;
  2645. this.chkBlock.CheckedChanged += new System.EventHandler(this.chkBlock_CheckedChanged);
  2646. //
  2647. // refreshHostsB
  2648. //
  2649. this.refreshHostsB.BackColor = System.Drawing.Color.DodgerBlue;
  2650. this.refreshHostsB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  2651. this.refreshHostsB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2652. this.refreshHostsB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2653. this.refreshHostsB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2654. this.refreshHostsB.ForeColor = System.Drawing.Color.White;
  2655. this.refreshHostsB.Location = new System.Drawing.Point(5, 395);
  2656. this.refreshHostsB.Margin = new System.Windows.Forms.Padding(2);
  2657. this.refreshHostsB.Name = "refreshHostsB";
  2658. this.refreshHostsB.Size = new System.Drawing.Size(152, 31);
  2659. this.refreshHostsB.TabIndex = 55;
  2660. this.refreshHostsB.Text = "Refresh";
  2661. this.refreshHostsB.UseVisualStyleBackColor = false;
  2662. this.refreshHostsB.Click += new System.EventHandler(this.button41_Click);
  2663. //
  2664. // removeHostB
  2665. //
  2666. this.removeHostB.BackColor = System.Drawing.Color.DodgerBlue;
  2667. this.removeHostB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  2668. this.removeHostB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2669. this.removeHostB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2670. this.removeHostB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2671. this.removeHostB.ForeColor = System.Drawing.Color.White;
  2672. this.removeHostB.Location = new System.Drawing.Point(161, 395);
  2673. this.removeHostB.Margin = new System.Windows.Forms.Padding(2);
  2674. this.removeHostB.Name = "removeHostB";
  2675. this.removeHostB.Size = new System.Drawing.Size(156, 31);
  2676. this.removeHostB.TabIndex = 54;
  2677. this.removeHostB.Text = "Delete";
  2678. this.removeHostB.UseVisualStyleBackColor = false;
  2679. this.removeHostB.Click += new System.EventHandler(this.button42_Click);
  2680. //
  2681. // removeAllHostsB
  2682. //
  2683. this.removeAllHostsB.BackColor = System.Drawing.Color.DodgerBlue;
  2684. this.removeAllHostsB.Enabled = false;
  2685. this.removeAllHostsB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  2686. this.removeAllHostsB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2687. this.removeAllHostsB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2688. this.removeAllHostsB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2689. this.removeAllHostsB.ForeColor = System.Drawing.Color.White;
  2690. this.removeAllHostsB.Location = new System.Drawing.Point(161, 430);
  2691. this.removeAllHostsB.Margin = new System.Windows.Forms.Padding(2);
  2692. this.removeAllHostsB.Name = "removeAllHostsB";
  2693. this.removeAllHostsB.Size = new System.Drawing.Size(156, 31);
  2694. this.removeAllHostsB.TabIndex = 53;
  2695. this.removeAllHostsB.Text = "Delete all";
  2696. this.removeAllHostsB.UseVisualStyleBackColor = false;
  2697. this.removeAllHostsB.Visible = false;
  2698. this.removeAllHostsB.Click += new System.EventHandler(this.button46_Click);
  2699. //
  2700. // addHostB
  2701. //
  2702. this.addHostB.BackColor = System.Drawing.Color.DodgerBlue;
  2703. this.addHostB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  2704. this.addHostB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2705. this.addHostB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2706. this.addHostB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2707. this.addHostB.ForeColor = System.Drawing.Color.White;
  2708. this.addHostB.Location = new System.Drawing.Point(551, 110);
  2709. this.addHostB.Margin = new System.Windows.Forms.Padding(2);
  2710. this.addHostB.Name = "addHostB";
  2711. this.addHostB.Size = new System.Drawing.Size(87, 31);
  2712. this.addHostB.TabIndex = 57;
  2713. this.addHostB.Text = "Add";
  2714. this.addHostB.UseVisualStyleBackColor = false;
  2715. this.addHostB.Click += new System.EventHandler(this.button47_Click);
  2716. //
  2717. // txtIP
  2718. //
  2719. this.txtIP.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  2720. this.txtIP.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2721. this.txtIP.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2722. this.txtIP.ForeColor = System.Drawing.Color.White;
  2723. this.txtIP.Location = new System.Drawing.Point(328, 23);
  2724. this.txtIP.Margin = new System.Windows.Forms.Padding(2);
  2725. this.txtIP.Name = "txtIP";
  2726. this.txtIP.Size = new System.Drawing.Size(310, 29);
  2727. this.txtIP.TabIndex = 0;
  2728. this.txtIP.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  2729. //
  2730. // txtDomain
  2731. //
  2732. this.txtDomain.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  2733. this.txtDomain.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2734. this.txtDomain.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2735. this.txtDomain.ForeColor = System.Drawing.Color.White;
  2736. this.txtDomain.Location = new System.Drawing.Point(328, 77);
  2737. this.txtDomain.Margin = new System.Windows.Forms.Padding(2);
  2738. this.txtDomain.Name = "txtDomain";
  2739. this.txtDomain.Size = new System.Drawing.Size(310, 29);
  2740. this.txtDomain.TabIndex = 1;
  2741. this.txtDomain.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  2742. //
  2743. // lblDomain
  2744. //
  2745. this.lblDomain.AutoSize = true;
  2746. this.lblDomain.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2747. this.lblDomain.ForeColor = System.Drawing.Color.DodgerBlue;
  2748. this.lblDomain.Location = new System.Drawing.Point(323, 54);
  2749. this.lblDomain.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2750. this.lblDomain.Name = "lblDomain";
  2751. this.lblDomain.Size = new System.Drawing.Size(66, 21);
  2752. this.lblDomain.TabIndex = 55;
  2753. this.lblDomain.Tag = "themeable";
  2754. this.lblDomain.Text = "Domain";
  2755. //
  2756. // lblIP
  2757. //
  2758. this.lblIP.AutoSize = true;
  2759. this.lblIP.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2760. this.lblIP.ForeColor = System.Drawing.Color.DodgerBlue;
  2761. this.lblIP.Location = new System.Drawing.Point(323, 0);
  2762. this.lblIP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2763. this.lblIP.Name = "lblIP";
  2764. this.lblIP.Size = new System.Drawing.Size(85, 21);
  2765. this.lblIP.TabIndex = 53;
  2766. this.lblIP.Tag = "themeable";
  2767. this.lblIP.Text = "IP address";
  2768. //
  2769. // hostsTitle
  2770. //
  2771. this.hostsTitle.AutoSize = true;
  2772. this.hostsTitle.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2773. this.hostsTitle.ForeColor = System.Drawing.Color.DodgerBlue;
  2774. this.hostsTitle.Location = new System.Drawing.Point(6, 10);
  2775. this.hostsTitle.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2776. this.hostsTitle.Name = "hostsTitle";
  2777. this.hostsTitle.Size = new System.Drawing.Size(182, 28);
  2778. this.hostsTitle.TabIndex = 3;
  2779. this.hostsTitle.Tag = "themeable";
  2780. this.hostsTitle.Text = "Edit your hosts file";
  2781. //
  2782. // linkLocate
  2783. //
  2784. this.linkLocate.ActiveLinkColor = System.Drawing.Color.WhiteSmoke;
  2785. this.linkLocate.AutoSize = true;
  2786. this.linkLocate.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2787. this.linkLocate.ForeColor = System.Drawing.Color.Silver;
  2788. this.linkLocate.LinkColor = System.Drawing.Color.Silver;
  2789. this.linkLocate.Location = new System.Drawing.Point(8, 38);
  2790. this.linkLocate.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2791. this.linkLocate.Name = "linkLocate";
  2792. this.linkLocate.Size = new System.Drawing.Size(59, 21);
  2793. this.linkLocate.TabIndex = 47;
  2794. this.linkLocate.TabStop = true;
  2795. this.linkLocate.Tag = "";
  2796. this.linkLocate.Text = "Locate";
  2797. this.linkLocate.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  2798. this.linkLocate.VisitedLinkColor = System.Drawing.Color.Silver;
  2799. this.linkLocate.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel2_LinkClicked);
  2800. //
  2801. // registryFixerTab
  2802. //
  2803. this.registryFixerTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  2804. this.registryFixerTab.Controls.Add(this.panel2);
  2805. this.registryFixerTab.Controls.Add(this.registryTitle);
  2806. this.registryFixerTab.Location = new System.Drawing.Point(4, 24);
  2807. this.registryFixerTab.Margin = new System.Windows.Forms.Padding(2);
  2808. this.registryFixerTab.Name = "registryFixerTab";
  2809. this.registryFixerTab.Padding = new System.Windows.Forms.Padding(2);
  2810. this.registryFixerTab.Size = new System.Drawing.Size(929, 611);
  2811. this.registryFixerTab.TabIndex = 8;
  2812. this.registryFixerTab.Text = "Registry";
  2813. //
  2814. // panel2
  2815. //
  2816. this.panel2.Controls.Add(this.regFixB);
  2817. this.panel2.Controls.Add(this.regLbl);
  2818. this.panel2.Controls.Add(this.checkRestartExplorer);
  2819. this.panel2.Controls.Add(this.checkRegistryEditor);
  2820. this.panel2.Controls.Add(this.checkEnableAll);
  2821. this.panel2.Controls.Add(this.checkContextMenu);
  2822. this.panel2.Controls.Add(this.checkTaskManager);
  2823. this.panel2.Controls.Add(this.checkCommandPrompt);
  2824. this.panel2.Controls.Add(this.checkFirewall);
  2825. this.panel2.Controls.Add(this.checkRunDialog);
  2826. this.panel2.Controls.Add(this.checkFolderOptions);
  2827. this.panel2.Controls.Add(this.checkControlPanel);
  2828. this.panel2.Location = new System.Drawing.Point(11, 40);
  2829. this.panel2.Margin = new System.Windows.Forms.Padding(2);
  2830. this.panel2.Name = "panel2";
  2831. this.panel2.Size = new System.Drawing.Size(755, 286);
  2832. this.panel2.TabIndex = 48;
  2833. //
  2834. // regFixB
  2835. //
  2836. this.regFixB.BackColor = System.Drawing.Color.DodgerBlue;
  2837. this.regFixB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  2838. this.regFixB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2839. this.regFixB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2840. this.regFixB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2841. this.regFixB.ForeColor = System.Drawing.Color.White;
  2842. this.regFixB.Location = new System.Drawing.Point(29, 252);
  2843. this.regFixB.Margin = new System.Windows.Forms.Padding(2);
  2844. this.regFixB.Name = "regFixB";
  2845. this.regFixB.Size = new System.Drawing.Size(108, 31);
  2846. this.regFixB.TabIndex = 49;
  2847. this.regFixB.Text = "Fix";
  2848. this.regFixB.UseVisualStyleBackColor = false;
  2849. this.regFixB.Click += new System.EventHandler(this.button33_Click);
  2850. //
  2851. // regLbl
  2852. //
  2853. this.regLbl.AutoSize = true;
  2854. 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)));
  2855. this.regLbl.ForeColor = System.Drawing.Color.Silver;
  2856. this.regLbl.Location = new System.Drawing.Point(94, 202);
  2857. this.regLbl.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2858. this.regLbl.Name = "regLbl";
  2859. this.regLbl.Size = new System.Drawing.Size(236, 21);
  2860. this.regLbl.TabIndex = 51;
  2861. this.regLbl.Tag = "";
  2862. this.regLbl.Text = "(some changes might need this)";
  2863. this.regLbl.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  2864. //
  2865. // checkRestartExplorer
  2866. //
  2867. this.checkRestartExplorer.AutoSize = true;
  2868. this.checkRestartExplorer.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2869. this.checkRestartExplorer.ForeColor = System.Drawing.Color.White;
  2870. this.checkRestartExplorer.Location = new System.Drawing.Point(29, 175);
  2871. this.checkRestartExplorer.Margin = new System.Windows.Forms.Padding(2);
  2872. this.checkRestartExplorer.Name = "checkRestartExplorer";
  2873. this.checkRestartExplorer.Size = new System.Drawing.Size(306, 25);
  2874. this.checkRestartExplorer.TabIndex = 50;
  2875. this.checkRestartExplorer.Tag = "";
  2876. this.checkRestartExplorer.Text = "Also restart Explorer to apply changes";
  2877. this.checkRestartExplorer.UseVisualStyleBackColor = true;
  2878. //
  2879. // checkRegistryEditor
  2880. //
  2881. this.checkRegistryEditor.AutoSize = true;
  2882. this.checkRegistryEditor.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2883. this.checkRegistryEditor.ForeColor = System.Drawing.Color.White;
  2884. this.checkRegistryEditor.Location = new System.Drawing.Point(256, 136);
  2885. this.checkRegistryEditor.Margin = new System.Windows.Forms.Padding(2);
  2886. this.checkRegistryEditor.Name = "checkRegistryEditor";
  2887. this.checkRegistryEditor.Size = new System.Drawing.Size(138, 25);
  2888. this.checkRegistryEditor.TabIndex = 38;
  2889. this.checkRegistryEditor.Text = "Registry Editor";
  2890. this.checkRegistryEditor.UseVisualStyleBackColor = true;
  2891. //
  2892. // checkEnableAll
  2893. //
  2894. this.checkEnableAll.AutoSize = true;
  2895. this.checkEnableAll.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2896. this.checkEnableAll.ForeColor = System.Drawing.Color.White;
  2897. this.checkEnableAll.Location = new System.Drawing.Point(29, 14);
  2898. this.checkEnableAll.Margin = new System.Windows.Forms.Padding(2);
  2899. this.checkEnableAll.Name = "checkEnableAll";
  2900. this.checkEnableAll.Size = new System.Drawing.Size(97, 25);
  2901. this.checkEnableAll.TabIndex = 35;
  2902. this.checkEnableAll.Tag = "";
  2903. this.checkEnableAll.Text = "Enable all";
  2904. this.checkEnableAll.UseVisualStyleBackColor = true;
  2905. this.checkEnableAll.CheckedChanged += new System.EventHandler(this.checkEnableAll_CheckedChanged);
  2906. //
  2907. // checkContextMenu
  2908. //
  2909. this.checkContextMenu.AutoSize = true;
  2910. this.checkContextMenu.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2911. this.checkContextMenu.ForeColor = System.Drawing.Color.White;
  2912. this.checkContextMenu.Location = new System.Drawing.Point(256, 75);
  2913. this.checkContextMenu.Margin = new System.Windows.Forms.Padding(2);
  2914. this.checkContextMenu.Name = "checkContextMenu";
  2915. this.checkContextMenu.Size = new System.Drawing.Size(151, 25);
  2916. this.checkContextMenu.TabIndex = 43;
  2917. this.checkContextMenu.Text = "Right Click menu";
  2918. this.checkContextMenu.UseVisualStyleBackColor = true;
  2919. //
  2920. // checkTaskManager
  2921. //
  2922. this.checkTaskManager.AutoSize = true;
  2923. this.checkTaskManager.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2924. this.checkTaskManager.ForeColor = System.Drawing.Color.White;
  2925. this.checkTaskManager.Location = new System.Drawing.Point(55, 45);
  2926. this.checkTaskManager.Margin = new System.Windows.Forms.Padding(2);
  2927. this.checkTaskManager.Name = "checkTaskManager";
  2928. this.checkTaskManager.Size = new System.Drawing.Size(128, 25);
  2929. this.checkTaskManager.TabIndex = 36;
  2930. this.checkTaskManager.Text = "Task Manager";
  2931. this.checkTaskManager.UseVisualStyleBackColor = true;
  2932. //
  2933. // checkCommandPrompt
  2934. //
  2935. this.checkCommandPrompt.AutoSize = true;
  2936. this.checkCommandPrompt.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2937. this.checkCommandPrompt.ForeColor = System.Drawing.Color.White;
  2938. this.checkCommandPrompt.Location = new System.Drawing.Point(55, 75);
  2939. this.checkCommandPrompt.Margin = new System.Windows.Forms.Padding(2);
  2940. this.checkCommandPrompt.Name = "checkCommandPrompt";
  2941. this.checkCommandPrompt.Size = new System.Drawing.Size(163, 25);
  2942. this.checkCommandPrompt.TabIndex = 42;
  2943. this.checkCommandPrompt.Text = "Command Prompt";
  2944. this.checkCommandPrompt.UseVisualStyleBackColor = true;
  2945. //
  2946. // checkFirewall
  2947. //
  2948. this.checkFirewall.AutoSize = true;
  2949. this.checkFirewall.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2950. this.checkFirewall.ForeColor = System.Drawing.Color.White;
  2951. this.checkFirewall.Location = new System.Drawing.Point(256, 106);
  2952. this.checkFirewall.Margin = new System.Windows.Forms.Padding(2);
  2953. this.checkFirewall.Name = "checkFirewall";
  2954. this.checkFirewall.Size = new System.Drawing.Size(155, 25);
  2955. this.checkFirewall.TabIndex = 37;
  2956. this.checkFirewall.Text = "Windows Firewall";
  2957. this.checkFirewall.UseVisualStyleBackColor = true;
  2958. //
  2959. // checkRunDialog
  2960. //
  2961. this.checkRunDialog.AutoSize = true;
  2962. this.checkRunDialog.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2963. this.checkRunDialog.ForeColor = System.Drawing.Color.White;
  2964. this.checkRunDialog.Location = new System.Drawing.Point(256, 45);
  2965. this.checkRunDialog.Margin = new System.Windows.Forms.Padding(2);
  2966. this.checkRunDialog.Name = "checkRunDialog";
  2967. this.checkRunDialog.Size = new System.Drawing.Size(108, 25);
  2968. this.checkRunDialog.TabIndex = 41;
  2969. this.checkRunDialog.Text = "Run Dialog";
  2970. this.checkRunDialog.UseVisualStyleBackColor = true;
  2971. //
  2972. // checkFolderOptions
  2973. //
  2974. this.checkFolderOptions.AutoSize = true;
  2975. this.checkFolderOptions.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2976. this.checkFolderOptions.ForeColor = System.Drawing.Color.White;
  2977. this.checkFolderOptions.Location = new System.Drawing.Point(55, 136);
  2978. this.checkFolderOptions.Margin = new System.Windows.Forms.Padding(2);
  2979. this.checkFolderOptions.Name = "checkFolderOptions";
  2980. this.checkFolderOptions.Size = new System.Drawing.Size(138, 25);
  2981. this.checkFolderOptions.TabIndex = 39;
  2982. this.checkFolderOptions.Text = "Folder Options";
  2983. this.checkFolderOptions.UseVisualStyleBackColor = true;
  2984. //
  2985. // checkControlPanel
  2986. //
  2987. this.checkControlPanel.AutoSize = true;
  2988. this.checkControlPanel.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2989. this.checkControlPanel.ForeColor = System.Drawing.Color.White;
  2990. this.checkControlPanel.Location = new System.Drawing.Point(55, 106);
  2991. this.checkControlPanel.Margin = new System.Windows.Forms.Padding(2);
  2992. this.checkControlPanel.Name = "checkControlPanel";
  2993. this.checkControlPanel.Size = new System.Drawing.Size(127, 25);
  2994. this.checkControlPanel.TabIndex = 40;
  2995. this.checkControlPanel.Text = "Control Panel";
  2996. this.checkControlPanel.UseVisualStyleBackColor = true;
  2997. //
  2998. // registryTitle
  2999. //
  3000. this.registryTitle.AutoSize = true;
  3001. this.registryTitle.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3002. this.registryTitle.ForeColor = System.Drawing.Color.DodgerBlue;
  3003. this.registryTitle.Location = new System.Drawing.Point(6, 10);
  3004. this.registryTitle.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3005. this.registryTitle.Name = "registryTitle";
  3006. this.registryTitle.Size = new System.Drawing.Size(260, 28);
  3007. this.registryTitle.TabIndex = 47;
  3008. this.registryTitle.Tag = "themeable";
  3009. this.registryTitle.Text = "Fix common registry issues";
  3010. //
  3011. // integratorTab
  3012. //
  3013. this.integratorTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3014. this.integratorTab.Controls.Add(this.synapse);
  3015. this.integratorTab.Location = new System.Drawing.Point(4, 24);
  3016. this.integratorTab.Margin = new System.Windows.Forms.Padding(2);
  3017. this.integratorTab.Name = "integratorTab";
  3018. this.integratorTab.Padding = new System.Windows.Forms.Padding(2);
  3019. this.integratorTab.Size = new System.Drawing.Size(929, 611);
  3020. this.integratorTab.TabIndex = 10;
  3021. this.integratorTab.Text = "Integrator";
  3022. //
  3023. // synapse
  3024. //
  3025. this.synapse.Alignment = System.Windows.Forms.TabAlignment.Bottom;
  3026. this.synapse.Controls.Add(this.integratorInfoTab);
  3027. this.synapse.Controls.Add(this.tabPage8);
  3028. this.synapse.Controls.Add(this.tabPage9);
  3029. this.synapse.Controls.Add(this.tabPage10);
  3030. this.synapse.Controls.Add(this.tabPage11);
  3031. this.synapse.Dock = System.Windows.Forms.DockStyle.Fill;
  3032. this.synapse.Location = new System.Drawing.Point(2, 2);
  3033. this.synapse.Margin = new System.Windows.Forms.Padding(2);
  3034. this.synapse.Multiline = true;
  3035. this.synapse.Name = "synapse";
  3036. this.synapse.SelectedIndex = 0;
  3037. this.synapse.Size = new System.Drawing.Size(925, 607);
  3038. this.synapse.TabIndex = 0;
  3039. //
  3040. // integratorInfoTab
  3041. //
  3042. this.integratorInfoTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3043. this.integratorInfoTab.Controls.Add(this.integrator7);
  3044. this.integratorInfoTab.Controls.Add(this.integrator6);
  3045. this.integratorInfoTab.Controls.Add(this.integrator5);
  3046. this.integratorInfoTab.Controls.Add(this.integrator4);
  3047. this.integratorInfoTab.Controls.Add(this.integrator3);
  3048. this.integratorInfoTab.Controls.Add(this.integrator2);
  3049. this.integratorInfoTab.Controls.Add(this.integrator1);
  3050. this.integratorInfoTab.Location = new System.Drawing.Point(4, 4);
  3051. this.integratorInfoTab.Margin = new System.Windows.Forms.Padding(2);
  3052. this.integratorInfoTab.Name = "integratorInfoTab";
  3053. this.integratorInfoTab.Padding = new System.Windows.Forms.Padding(2);
  3054. this.integratorInfoTab.Size = new System.Drawing.Size(917, 579);
  3055. this.integratorInfoTab.TabIndex = 0;
  3056. this.integratorInfoTab.Text = "Info";
  3057. //
  3058. // integrator7
  3059. //
  3060. this.integrator7.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3061. this.integrator7.ForeColor = System.Drawing.Color.Silver;
  3062. this.integrator7.Location = new System.Drawing.Point(6, 225);
  3063. this.integrator7.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3064. this.integrator7.Name = "integrator7";
  3065. this.integrator7.Size = new System.Drawing.Size(763, 309);
  3066. this.integrator7.TabIndex = 10;
  3067. this.integrator7.Tag = "";
  3068. this.integrator7.Text = resources.GetString("integrator7.Text");
  3069. //
  3070. // integrator6
  3071. //
  3072. this.integrator6.AutoSize = true;
  3073. this.integrator6.Font = new System.Drawing.Font("Segoe UI Semibold", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3074. this.integrator6.ForeColor = System.Drawing.Color.Silver;
  3075. this.integrator6.Location = new System.Drawing.Point(38, 183);
  3076. this.integrator6.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3077. this.integrator6.Name = "integrator6";
  3078. this.integrator6.Size = new System.Drawing.Size(122, 25);
  3079. this.integrator6.TabIndex = 9;
  3080. this.integrator6.Tag = "";
  3081. this.integrator6.Text = "• Commands";
  3082. //
  3083. // integrator5
  3084. //
  3085. this.integrator5.AutoSize = true;
  3086. this.integrator5.Font = new System.Drawing.Font("Segoe UI Semibold", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3087. this.integrator5.ForeColor = System.Drawing.Color.Silver;
  3088. this.integrator5.Location = new System.Drawing.Point(38, 158);
  3089. this.integrator5.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3090. this.integrator5.Name = "integrator5";
  3091. this.integrator5.Size = new System.Drawing.Size(157, 25);
  3092. this.integrator5.TabIndex = 8;
  3093. this.integrator5.Tag = "";
  3094. this.integrator5.Text = "• Any type of file";
  3095. //
  3096. // integrator4
  3097. //
  3098. this.integrator4.AutoSize = true;
  3099. this.integrator4.Font = new System.Drawing.Font("Segoe UI Semibold", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3100. this.integrator4.ForeColor = System.Drawing.Color.Silver;
  3101. this.integrator4.Location = new System.Drawing.Point(38, 132);
  3102. this.integrator4.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3103. this.integrator4.Name = "integrator4";
  3104. this.integrator4.Size = new System.Drawing.Size(181, 25);
  3105. this.integrator4.TabIndex = 7;
  3106. this.integrator4.Tag = "";
  3107. this.integrator4.Text = "• Links to webpages";
  3108. //
  3109. // integrator3
  3110. //
  3111. this.integrator3.AutoSize = true;
  3112. this.integrator3.Font = new System.Drawing.Font("Segoe UI Semibold", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3113. this.integrator3.ForeColor = System.Drawing.Color.Silver;
  3114. this.integrator3.Location = new System.Drawing.Point(38, 106);
  3115. this.integrator3.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3116. this.integrator3.Name = "integrator3";
  3117. this.integrator3.Size = new System.Drawing.Size(194, 25);
  3118. this.integrator3.TabIndex = 6;
  3119. this.integrator3.Tag = "";
  3120. this.integrator3.Text = "• Shortcuts to folders";
  3121. //
  3122. // integrator2
  3123. //
  3124. this.integrator2.AutoSize = true;
  3125. this.integrator2.Font = new System.Drawing.Font("Segoe UI Semibold", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3126. this.integrator2.ForeColor = System.Drawing.Color.Silver;
  3127. this.integrator2.Location = new System.Drawing.Point(38, 81);
  3128. this.integrator2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3129. this.integrator2.Name = "integrator2";
  3130. this.integrator2.Size = new System.Drawing.Size(138, 25);
  3131. this.integrator2.TabIndex = 5;
  3132. this.integrator2.Tag = "";
  3133. this.integrator2.Text = "• Any program";
  3134. //
  3135. // integrator1
  3136. //
  3137. this.integrator1.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3138. this.integrator1.ForeColor = System.Drawing.Color.Silver;
  3139. this.integrator1.Location = new System.Drawing.Point(6, 10);
  3140. this.integrator1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3141. this.integrator1.Name = "integrator1";
  3142. this.integrator1.Size = new System.Drawing.Size(811, 61);
  3143. this.integrator1.TabIndex = 4;
  3144. this.integrator1.Tag = "";
  3145. this.integrator1.Text = "Integrator is able to add fully-customized items in Desktop right-click menu:";
  3146. //
  3147. // tabPage8
  3148. //
  3149. this.tabPage8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3150. this.tabPage8.Controls.Add(this.btnAddItem);
  3151. this.tabPage8.Controls.Add(this.itemnamegroup);
  3152. this.tabPage8.Controls.Add(this.security);
  3153. this.tabPage8.Controls.Add(this.itemposition);
  3154. this.tabPage8.Controls.Add(this.icontoaddgroup);
  3155. this.tabPage8.Controls.Add(this.itemtoaddgroup);
  3156. this.tabPage8.Controls.Add(this.itemtype);
  3157. this.tabPage8.Controls.Add(this.addItemL);
  3158. this.tabPage8.Location = new System.Drawing.Point(4, 4);
  3159. this.tabPage8.Margin = new System.Windows.Forms.Padding(2);
  3160. this.tabPage8.Name = "tabPage8";
  3161. this.tabPage8.Padding = new System.Windows.Forms.Padding(2);
  3162. this.tabPage8.Size = new System.Drawing.Size(917, 579);
  3163. this.tabPage8.TabIndex = 1;
  3164. this.tabPage8.Text = "Add/Modify";
  3165. //
  3166. // btnAddItem
  3167. //
  3168. this.btnAddItem.BackColor = System.Drawing.Color.DodgerBlue;
  3169. this.btnAddItem.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  3170. this.btnAddItem.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3171. this.btnAddItem.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3172. this.btnAddItem.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3173. this.btnAddItem.ForeColor = System.Drawing.Color.White;
  3174. this.btnAddItem.Location = new System.Drawing.Point(465, 473);
  3175. this.btnAddItem.Margin = new System.Windows.Forms.Padding(2);
  3176. this.btnAddItem.Name = "btnAddItem";
  3177. this.btnAddItem.Size = new System.Drawing.Size(173, 31);
  3178. this.btnAddItem.TabIndex = 85;
  3179. this.btnAddItem.Text = "Add/Modify";
  3180. this.btnAddItem.UseVisualStyleBackColor = false;
  3181. this.btnAddItem.Click += new System.EventHandler(this.btnAddItem_Click);
  3182. //
  3183. // itemnamegroup
  3184. //
  3185. this.itemnamegroup.Controls.Add(this.txtItemName);
  3186. this.itemnamegroup.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3187. this.itemnamegroup.ForeColor = System.Drawing.Color.Silver;
  3188. this.itemnamegroup.Location = new System.Drawing.Point(11, 403);
  3189. this.itemnamegroup.Margin = new System.Windows.Forms.Padding(2);
  3190. this.itemnamegroup.Name = "itemnamegroup";
  3191. this.itemnamegroup.Padding = new System.Windows.Forms.Padding(2);
  3192. this.itemnamegroup.Size = new System.Drawing.Size(627, 66);
  3193. this.itemnamegroup.TabIndex = 84;
  3194. this.itemnamegroup.TabStop = false;
  3195. this.itemnamegroup.Text = "Item name in menu:";
  3196. //
  3197. // txtItemName
  3198. //
  3199. this.txtItemName.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3200. this.txtItemName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  3201. this.txtItemName.ForeColor = System.Drawing.Color.White;
  3202. this.txtItemName.Location = new System.Drawing.Point(11, 26);
  3203. this.txtItemName.Margin = new System.Windows.Forms.Padding(2);
  3204. this.txtItemName.Name = "txtItemName";
  3205. this.txtItemName.Size = new System.Drawing.Size(476, 29);
  3206. this.txtItemName.TabIndex = 82;
  3207. //
  3208. // security
  3209. //
  3210. this.security.Controls.Add(this.checkShift);
  3211. this.security.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3212. this.security.ForeColor = System.Drawing.Color.Silver;
  3213. this.security.Location = new System.Drawing.Point(11, 338);
  3214. this.security.Margin = new System.Windows.Forms.Padding(2);
  3215. this.security.Name = "security";
  3216. this.security.Padding = new System.Windows.Forms.Padding(2);
  3217. this.security.Size = new System.Drawing.Size(627, 61);
  3218. this.security.TabIndex = 83;
  3219. this.security.TabStop = false;
  3220. this.security.Text = "Security:";
  3221. //
  3222. // checkShift
  3223. //
  3224. this.checkShift.AutoSize = true;
  3225. this.checkShift.ForeColor = System.Drawing.Color.White;
  3226. this.checkShift.Location = new System.Drawing.Point(11, 26);
  3227. this.checkShift.Margin = new System.Windows.Forms.Padding(2);
  3228. this.checkShift.Name = "checkShift";
  3229. this.checkShift.Size = new System.Drawing.Size(300, 25);
  3230. this.checkShift.TabIndex = 83;
  3231. this.checkShift.Text = "Show only when SHIFT key is pressed";
  3232. this.checkShift.UseVisualStyleBackColor = true;
  3233. //
  3234. // itemposition
  3235. //
  3236. this.itemposition.Controls.Add(this.radioTop);
  3237. this.itemposition.Controls.Add(this.radioMiddle);
  3238. this.itemposition.Controls.Add(this.radioBottom);
  3239. this.itemposition.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3240. this.itemposition.ForeColor = System.Drawing.Color.Silver;
  3241. this.itemposition.Location = new System.Drawing.Point(11, 272);
  3242. this.itemposition.Margin = new System.Windows.Forms.Padding(2);
  3243. this.itemposition.Name = "itemposition";
  3244. this.itemposition.Padding = new System.Windows.Forms.Padding(2);
  3245. this.itemposition.Size = new System.Drawing.Size(627, 62);
  3246. this.itemposition.TabIndex = 82;
  3247. this.itemposition.TabStop = false;
  3248. this.itemposition.Text = "Item position:";
  3249. //
  3250. // radioTop
  3251. //
  3252. this.radioTop.AutoSize = true;
  3253. this.radioTop.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold);
  3254. this.radioTop.ForeColor = System.Drawing.Color.White;
  3255. this.radioTop.Location = new System.Drawing.Point(11, 26);
  3256. this.radioTop.Margin = new System.Windows.Forms.Padding(2);
  3257. this.radioTop.Name = "radioTop";
  3258. this.radioTop.Size = new System.Drawing.Size(55, 25);
  3259. this.radioTop.TabIndex = 83;
  3260. this.radioTop.Text = "Top";
  3261. this.radioTop.UseVisualStyleBackColor = true;
  3262. this.radioTop.CheckedChanged += new System.EventHandler(this.radioTop_CheckedChanged);
  3263. //
  3264. // radioMiddle
  3265. //
  3266. this.radioMiddle.AutoSize = true;
  3267. this.radioMiddle.ForeColor = System.Drawing.Color.White;
  3268. this.radioMiddle.Location = new System.Drawing.Point(131, 26);
  3269. this.radioMiddle.Margin = new System.Windows.Forms.Padding(2);
  3270. this.radioMiddle.Name = "radioMiddle";
  3271. this.radioMiddle.Size = new System.Drawing.Size(80, 25);
  3272. this.radioMiddle.TabIndex = 84;
  3273. this.radioMiddle.Text = "Middle";
  3274. this.radioMiddle.UseVisualStyleBackColor = true;
  3275. this.radioMiddle.CheckedChanged += new System.EventHandler(this.radioMiddle_CheckedChanged);
  3276. //
  3277. // radioBottom
  3278. //
  3279. this.radioBottom.AutoSize = true;
  3280. this.radioBottom.ForeColor = System.Drawing.Color.White;
  3281. this.radioBottom.Location = new System.Drawing.Point(277, 26);
  3282. this.radioBottom.Margin = new System.Windows.Forms.Padding(2);
  3283. this.radioBottom.Name = "radioBottom";
  3284. this.radioBottom.Size = new System.Drawing.Size(84, 25);
  3285. this.radioBottom.TabIndex = 85;
  3286. this.radioBottom.Text = "Bottom";
  3287. this.radioBottom.UseVisualStyleBackColor = true;
  3288. this.radioBottom.CheckedChanged += new System.EventHandler(this.radioBottom_CheckedChanged);
  3289. //
  3290. // icontoaddgroup
  3291. //
  3292. this.icontoaddgroup.Controls.Add(this.checkDefaultIcon);
  3293. this.icontoaddgroup.Controls.Add(this.btnBrowseIcon);
  3294. this.icontoaddgroup.Controls.Add(this.txtIcon);
  3295. this.icontoaddgroup.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3296. this.icontoaddgroup.ForeColor = System.Drawing.Color.Silver;
  3297. this.icontoaddgroup.Location = new System.Drawing.Point(11, 178);
  3298. this.icontoaddgroup.Margin = new System.Windows.Forms.Padding(2);
  3299. this.icontoaddgroup.Name = "icontoaddgroup";
  3300. this.icontoaddgroup.Padding = new System.Windows.Forms.Padding(2);
  3301. this.icontoaddgroup.Size = new System.Drawing.Size(627, 90);
  3302. this.icontoaddgroup.TabIndex = 81;
  3303. this.icontoaddgroup.TabStop = false;
  3304. this.icontoaddgroup.Text = "Icon to add:";
  3305. //
  3306. // checkDefaultIcon
  3307. //
  3308. this.checkDefaultIcon.AutoSize = true;
  3309. this.checkDefaultIcon.Font = new System.Drawing.Font("Segoe UI Semibold", 12F);
  3310. this.checkDefaultIcon.ForeColor = System.Drawing.Color.White;
  3311. this.checkDefaultIcon.Location = new System.Drawing.Point(11, 58);
  3312. this.checkDefaultIcon.Margin = new System.Windows.Forms.Padding(2);
  3313. this.checkDefaultIcon.Name = "checkDefaultIcon";
  3314. this.checkDefaultIcon.Size = new System.Drawing.Size(169, 25);
  3315. this.checkDefaultIcon.TabIndex = 82;
  3316. this.checkDefaultIcon.Text = "Use program\'s icon";
  3317. this.checkDefaultIcon.UseVisualStyleBackColor = true;
  3318. this.checkDefaultIcon.CheckedChanged += new System.EventHandler(this.checkDefaultIcon_CheckedChanged);
  3319. //
  3320. // btnBrowseIcon
  3321. //
  3322. this.btnBrowseIcon.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  3323. this.btnBrowseIcon.BackColor = System.Drawing.Color.DodgerBlue;
  3324. this.btnBrowseIcon.Enabled = false;
  3325. this.btnBrowseIcon.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  3326. this.btnBrowseIcon.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3327. this.btnBrowseIcon.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3328. this.btnBrowseIcon.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3329. this.btnBrowseIcon.ForeColor = System.Drawing.Color.White;
  3330. this.btnBrowseIcon.Location = new System.Drawing.Point(450, 26);
  3331. this.btnBrowseIcon.Margin = new System.Windows.Forms.Padding(2);
  3332. this.btnBrowseIcon.Name = "btnBrowseIcon";
  3333. this.btnBrowseIcon.Size = new System.Drawing.Size(36, 29);
  3334. this.btnBrowseIcon.TabIndex = 82;
  3335. this.btnBrowseIcon.Text = "...";
  3336. this.btnBrowseIcon.UseVisualStyleBackColor = false;
  3337. this.btnBrowseIcon.Click += new System.EventHandler(this.btnBrowseIcon_Click);
  3338. //
  3339. // txtIcon
  3340. //
  3341. this.txtIcon.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3342. this.txtIcon.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  3343. this.txtIcon.Enabled = false;
  3344. this.txtIcon.ForeColor = System.Drawing.Color.White;
  3345. this.txtIcon.Location = new System.Drawing.Point(11, 26);
  3346. this.txtIcon.Margin = new System.Windows.Forms.Padding(2);
  3347. this.txtIcon.Name = "txtIcon";
  3348. this.txtIcon.ReadOnly = true;
  3349. this.txtIcon.Size = new System.Drawing.Size(434, 29);
  3350. this.txtIcon.TabIndex = 81;
  3351. //
  3352. // itemtoaddgroup
  3353. //
  3354. this.itemtoaddgroup.Controls.Add(this.btnBrowseItem);
  3355. this.itemtoaddgroup.Controls.Add(this.txtItem);
  3356. this.itemtoaddgroup.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3357. this.itemtoaddgroup.ForeColor = System.Drawing.Color.Silver;
  3358. this.itemtoaddgroup.Location = new System.Drawing.Point(11, 107);
  3359. this.itemtoaddgroup.Margin = new System.Windows.Forms.Padding(2);
  3360. this.itemtoaddgroup.Name = "itemtoaddgroup";
  3361. this.itemtoaddgroup.Padding = new System.Windows.Forms.Padding(2);
  3362. this.itemtoaddgroup.Size = new System.Drawing.Size(627, 67);
  3363. this.itemtoaddgroup.TabIndex = 80;
  3364. this.itemtoaddgroup.TabStop = false;
  3365. this.itemtoaddgroup.Text = "Program to add:";
  3366. //
  3367. // btnBrowseItem
  3368. //
  3369. this.btnBrowseItem.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  3370. this.btnBrowseItem.BackColor = System.Drawing.Color.DodgerBlue;
  3371. this.btnBrowseItem.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  3372. this.btnBrowseItem.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3373. this.btnBrowseItem.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3374. this.btnBrowseItem.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3375. this.btnBrowseItem.ForeColor = System.Drawing.Color.White;
  3376. this.btnBrowseItem.Location = new System.Drawing.Point(449, 26);
  3377. this.btnBrowseItem.Margin = new System.Windows.Forms.Padding(2);
  3378. this.btnBrowseItem.Name = "btnBrowseItem";
  3379. this.btnBrowseItem.Size = new System.Drawing.Size(36, 29);
  3380. this.btnBrowseItem.TabIndex = 82;
  3381. this.btnBrowseItem.Text = "...";
  3382. this.btnBrowseItem.UseVisualStyleBackColor = false;
  3383. this.btnBrowseItem.Click += new System.EventHandler(this.btnBrowseItem_Click);
  3384. //
  3385. // txtItem
  3386. //
  3387. this.txtItem.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3388. this.txtItem.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  3389. this.txtItem.ForeColor = System.Drawing.Color.White;
  3390. this.txtItem.Location = new System.Drawing.Point(11, 26);
  3391. this.txtItem.Margin = new System.Windows.Forms.Padding(2);
  3392. this.txtItem.Name = "txtItem";
  3393. this.txtItem.ReadOnly = true;
  3394. this.txtItem.Size = new System.Drawing.Size(434, 29);
  3395. this.txtItem.TabIndex = 81;
  3396. //
  3397. // itemtype
  3398. //
  3399. this.itemtype.Controls.Add(this.radioCommand);
  3400. this.itemtype.Controls.Add(this.radioProgram);
  3401. this.itemtype.Controls.Add(this.radioFolder);
  3402. this.itemtype.Controls.Add(this.radioLink);
  3403. this.itemtype.Controls.Add(this.radioFile);
  3404. this.itemtype.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3405. this.itemtype.ForeColor = System.Drawing.Color.Silver;
  3406. this.itemtype.Location = new System.Drawing.Point(11, 40);
  3407. this.itemtype.Margin = new System.Windows.Forms.Padding(2);
  3408. this.itemtype.Name = "itemtype";
  3409. this.itemtype.Padding = new System.Windows.Forms.Padding(2);
  3410. this.itemtype.Size = new System.Drawing.Size(627, 63);
  3411. this.itemtype.TabIndex = 79;
  3412. this.itemtype.TabStop = false;
  3413. this.itemtype.Text = "Item Type:";
  3414. //
  3415. // radioCommand
  3416. //
  3417. this.radioCommand.AutoSize = true;
  3418. this.radioCommand.ForeColor = System.Drawing.Color.White;
  3419. this.radioCommand.Location = new System.Drawing.Point(481, 26);
  3420. this.radioCommand.Margin = new System.Windows.Forms.Padding(2);
  3421. this.radioCommand.Name = "radioCommand";
  3422. this.radioCommand.Size = new System.Drawing.Size(103, 25);
  3423. this.radioCommand.TabIndex = 84;
  3424. this.radioCommand.Text = "Command";
  3425. this.radioCommand.UseVisualStyleBackColor = true;
  3426. this.radioCommand.CheckedChanged += new System.EventHandler(this.radioCommand_CheckedChanged);
  3427. //
  3428. // radioProgram
  3429. //
  3430. this.radioProgram.AutoSize = true;
  3431. this.radioProgram.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold);
  3432. this.radioProgram.ForeColor = System.Drawing.Color.White;
  3433. this.radioProgram.Location = new System.Drawing.Point(11, 26);
  3434. this.radioProgram.Margin = new System.Windows.Forms.Padding(2);
  3435. this.radioProgram.Name = "radioProgram";
  3436. this.radioProgram.Size = new System.Drawing.Size(91, 25);
  3437. this.radioProgram.TabIndex = 80;
  3438. this.radioProgram.Text = "Program";
  3439. this.radioProgram.UseVisualStyleBackColor = true;
  3440. this.radioProgram.CheckedChanged += new System.EventHandler(this.radioProgram_CheckedChanged);
  3441. //
  3442. // radioFolder
  3443. //
  3444. this.radioFolder.AutoSize = true;
  3445. this.radioFolder.ForeColor = System.Drawing.Color.White;
  3446. this.radioFolder.Location = new System.Drawing.Point(139, 26);
  3447. this.radioFolder.Margin = new System.Windows.Forms.Padding(2);
  3448. this.radioFolder.Name = "radioFolder";
  3449. this.radioFolder.Size = new System.Drawing.Size(75, 25);
  3450. this.radioFolder.TabIndex = 81;
  3451. this.radioFolder.Text = "Folder";
  3452. this.radioFolder.UseVisualStyleBackColor = true;
  3453. this.radioFolder.CheckedChanged += new System.EventHandler(this.radioFolder_CheckedChanged);
  3454. //
  3455. // radioLink
  3456. //
  3457. this.radioLink.AutoSize = true;
  3458. this.radioLink.ForeColor = System.Drawing.Color.White;
  3459. this.radioLink.Location = new System.Drawing.Point(254, 26);
  3460. this.radioLink.Margin = new System.Windows.Forms.Padding(2);
  3461. this.radioLink.Name = "radioLink";
  3462. this.radioLink.Size = new System.Drawing.Size(57, 25);
  3463. this.radioLink.TabIndex = 82;
  3464. this.radioLink.Text = "Link";
  3465. this.radioLink.UseVisualStyleBackColor = true;
  3466. this.radioLink.CheckedChanged += new System.EventHandler(this.radioLink_CheckedChanged);
  3467. //
  3468. // radioFile
  3469. //
  3470. this.radioFile.AutoSize = true;
  3471. this.radioFile.ForeColor = System.Drawing.Color.White;
  3472. this.radioFile.Location = new System.Drawing.Point(371, 26);
  3473. this.radioFile.Margin = new System.Windows.Forms.Padding(2);
  3474. this.radioFile.Name = "radioFile";
  3475. this.radioFile.Size = new System.Drawing.Size(53, 25);
  3476. this.radioFile.TabIndex = 83;
  3477. this.radioFile.Text = "File";
  3478. this.radioFile.UseVisualStyleBackColor = true;
  3479. this.radioFile.CheckedChanged += new System.EventHandler(this.radioFile_CheckedChanged);
  3480. //
  3481. // addItemL
  3482. //
  3483. this.addItemL.AutoSize = true;
  3484. this.addItemL.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3485. this.addItemL.ForeColor = System.Drawing.Color.DodgerBlue;
  3486. this.addItemL.Location = new System.Drawing.Point(6, 10);
  3487. this.addItemL.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3488. this.addItemL.Name = "addItemL";
  3489. this.addItemL.Size = new System.Drawing.Size(219, 28);
  3490. this.addItemL.TabIndex = 78;
  3491. this.addItemL.Tag = "themeable";
  3492. this.addItemL.Text = "Add or modify an item";
  3493. //
  3494. // tabPage9
  3495. //
  3496. this.tabPage9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3497. this.tabPage9.Controls.Add(this.panel5);
  3498. this.tabPage9.Controls.Add(this.refreshIIB);
  3499. this.tabPage9.Controls.Add(this.removeDIB);
  3500. this.tabPage9.Controls.Add(this.removeAllIIB);
  3501. this.tabPage9.Controls.Add(this.removeIntegratorItemsL);
  3502. this.tabPage9.Location = new System.Drawing.Point(4, 4);
  3503. this.tabPage9.Margin = new System.Windows.Forms.Padding(2);
  3504. this.tabPage9.Name = "tabPage9";
  3505. this.tabPage9.Padding = new System.Windows.Forms.Padding(2);
  3506. this.tabPage9.Size = new System.Drawing.Size(917, 579);
  3507. this.tabPage9.TabIndex = 2;
  3508. this.tabPage9.Text = "Remove";
  3509. //
  3510. // panel5
  3511. //
  3512. this.panel5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  3513. this.panel5.Controls.Add(this.listDesktopItems);
  3514. this.panel5.Location = new System.Drawing.Point(11, 44);
  3515. this.panel5.Margin = new System.Windows.Forms.Padding(2);
  3516. this.panel5.Name = "panel5";
  3517. this.panel5.Size = new System.Drawing.Size(293, 435);
  3518. this.panel5.TabIndex = 82;
  3519. //
  3520. // listDesktopItems
  3521. //
  3522. this.listDesktopItems.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3523. this.listDesktopItems.BorderStyle = System.Windows.Forms.BorderStyle.None;
  3524. this.listDesktopItems.Dock = System.Windows.Forms.DockStyle.Fill;
  3525. this.listDesktopItems.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3526. this.listDesktopItems.ForeColor = System.Drawing.Color.White;
  3527. this.listDesktopItems.FormattingEnabled = true;
  3528. this.listDesktopItems.HorizontalScrollbar = true;
  3529. this.listDesktopItems.ItemHeight = 21;
  3530. this.listDesktopItems.Location = new System.Drawing.Point(0, 0);
  3531. this.listDesktopItems.Margin = new System.Windows.Forms.Padding(2);
  3532. this.listDesktopItems.Name = "listDesktopItems";
  3533. this.listDesktopItems.Size = new System.Drawing.Size(291, 433);
  3534. this.listDesktopItems.TabIndex = 78;
  3535. //
  3536. // refreshIIB
  3537. //
  3538. this.refreshIIB.BackColor = System.Drawing.Color.DodgerBlue;
  3539. this.refreshIIB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  3540. this.refreshIIB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3541. this.refreshIIB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3542. this.refreshIIB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3543. this.refreshIIB.ForeColor = System.Drawing.Color.White;
  3544. this.refreshIIB.Location = new System.Drawing.Point(308, 80);
  3545. this.refreshIIB.Margin = new System.Windows.Forms.Padding(2);
  3546. this.refreshIIB.Name = "refreshIIB";
  3547. this.refreshIIB.Size = new System.Drawing.Size(137, 31);
  3548. this.refreshIIB.TabIndex = 81;
  3549. this.refreshIIB.Text = "Refresh";
  3550. this.refreshIIB.UseVisualStyleBackColor = false;
  3551. this.refreshIIB.Click += new System.EventHandler(this.button60_Click);
  3552. //
  3553. // removeDIB
  3554. //
  3555. this.removeDIB.BackColor = System.Drawing.Color.DodgerBlue;
  3556. this.removeDIB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  3557. this.removeDIB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3558. this.removeDIB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3559. this.removeDIB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3560. this.removeDIB.ForeColor = System.Drawing.Color.White;
  3561. this.removeDIB.Location = new System.Drawing.Point(308, 45);
  3562. this.removeDIB.Margin = new System.Windows.Forms.Padding(2);
  3563. this.removeDIB.Name = "removeDIB";
  3564. this.removeDIB.Size = new System.Drawing.Size(137, 31);
  3565. this.removeDIB.TabIndex = 80;
  3566. this.removeDIB.Text = "Delete";
  3567. this.removeDIB.UseVisualStyleBackColor = false;
  3568. this.removeDIB.Click += new System.EventHandler(this.button61_Click);
  3569. //
  3570. // removeAllIIB
  3571. //
  3572. this.removeAllIIB.BackColor = System.Drawing.Color.DodgerBlue;
  3573. this.removeAllIIB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  3574. this.removeAllIIB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3575. this.removeAllIIB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3576. this.removeAllIIB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3577. this.removeAllIIB.ForeColor = System.Drawing.Color.White;
  3578. this.removeAllIIB.Location = new System.Drawing.Point(308, 115);
  3579. this.removeAllIIB.Margin = new System.Windows.Forms.Padding(2);
  3580. this.removeAllIIB.Name = "removeAllIIB";
  3581. this.removeAllIIB.Size = new System.Drawing.Size(137, 31);
  3582. this.removeAllIIB.TabIndex = 79;
  3583. this.removeAllIIB.Text = "Delete all";
  3584. this.removeAllIIB.UseVisualStyleBackColor = false;
  3585. this.removeAllIIB.Click += new System.EventHandler(this.button62_Click);
  3586. //
  3587. // removeIntegratorItemsL
  3588. //
  3589. this.removeIntegratorItemsL.AutoSize = true;
  3590. this.removeIntegratorItemsL.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3591. this.removeIntegratorItemsL.ForeColor = System.Drawing.Color.DodgerBlue;
  3592. this.removeIntegratorItemsL.Location = new System.Drawing.Point(6, 10);
  3593. this.removeIntegratorItemsL.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3594. this.removeIntegratorItemsL.Name = "removeIntegratorItemsL";
  3595. this.removeIntegratorItemsL.Size = new System.Drawing.Size(300, 28);
  3596. this.removeIntegratorItemsL.TabIndex = 77;
  3597. this.removeIntegratorItemsL.Tag = "themeable";
  3598. this.removeIntegratorItemsL.Text = "Remove existing Desktop items";
  3599. //
  3600. // tabPage10
  3601. //
  3602. this.tabPage10.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3603. this.tabPage10.Controls.Add(this.RemoveOwnerB);
  3604. this.tabPage10.Controls.Add(this.AddOwnerB);
  3605. this.tabPage10.Controls.Add(this.readyMenusL);
  3606. this.tabPage10.Controls.Add(this.PMB);
  3607. this.tabPage10.Controls.Add(this.DSB);
  3608. this.tabPage10.Controls.Add(this.STB);
  3609. this.tabPage10.Controls.Add(this.SSB);
  3610. this.tabPage10.Controls.Add(this.WAB);
  3611. this.tabPage10.Location = new System.Drawing.Point(4, 4);
  3612. this.tabPage10.Margin = new System.Windows.Forms.Padding(2);
  3613. this.tabPage10.Name = "tabPage10";
  3614. this.tabPage10.Padding = new System.Windows.Forms.Padding(2);
  3615. this.tabPage10.Size = new System.Drawing.Size(917, 579);
  3616. this.tabPage10.TabIndex = 3;
  3617. this.tabPage10.Text = "Ready Menus";
  3618. //
  3619. // RemoveOwnerB
  3620. //
  3621. this.RemoveOwnerB.BackColor = System.Drawing.Color.DodgerBlue;
  3622. this.RemoveOwnerB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  3623. this.RemoveOwnerB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3624. this.RemoveOwnerB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3625. this.RemoveOwnerB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3626. this.RemoveOwnerB.ForeColor = System.Drawing.Color.White;
  3627. this.RemoveOwnerB.Location = new System.Drawing.Point(11, 276);
  3628. this.RemoveOwnerB.Margin = new System.Windows.Forms.Padding(2);
  3629. this.RemoveOwnerB.Name = "RemoveOwnerB";
  3630. this.RemoveOwnerB.Size = new System.Drawing.Size(334, 31);
  3631. this.RemoveOwnerB.TabIndex = 78;
  3632. this.RemoveOwnerB.Text = "Delete \"Take Ownership\"";
  3633. this.RemoveOwnerB.UseVisualStyleBackColor = false;
  3634. this.RemoveOwnerB.Click += new System.EventHandler(this.button65_Click);
  3635. //
  3636. // AddOwnerB
  3637. //
  3638. this.AddOwnerB.BackColor = System.Drawing.Color.DodgerBlue;
  3639. this.AddOwnerB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  3640. this.AddOwnerB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3641. this.AddOwnerB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3642. this.AddOwnerB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3643. this.AddOwnerB.ForeColor = System.Drawing.Color.White;
  3644. this.AddOwnerB.Location = new System.Drawing.Point(11, 240);
  3645. this.AddOwnerB.Margin = new System.Windows.Forms.Padding(2);
  3646. this.AddOwnerB.Name = "AddOwnerB";
  3647. this.AddOwnerB.Size = new System.Drawing.Size(334, 31);
  3648. this.AddOwnerB.TabIndex = 77;
  3649. this.AddOwnerB.Text = "Add \"Take Ownership\"";
  3650. this.AddOwnerB.UseVisualStyleBackColor = false;
  3651. this.AddOwnerB.Click += new System.EventHandler(this.button66_Click);
  3652. //
  3653. // readyMenusL
  3654. //
  3655. this.readyMenusL.AutoSize = true;
  3656. this.readyMenusL.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3657. this.readyMenusL.ForeColor = System.Drawing.Color.DodgerBlue;
  3658. this.readyMenusL.Location = new System.Drawing.Point(6, 10);
  3659. this.readyMenusL.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3660. this.readyMenusL.Name = "readyMenusL";
  3661. this.readyMenusL.Size = new System.Drawing.Size(232, 28);
  3662. this.readyMenusL.TabIndex = 76;
  3663. this.readyMenusL.Tag = "themeable";
  3664. this.readyMenusL.Text = "Add ready-made menus";
  3665. //
  3666. // PMB
  3667. //
  3668. this.PMB.BackColor = System.Drawing.Color.DodgerBlue;
  3669. this.PMB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  3670. this.PMB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3671. this.PMB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3672. this.PMB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3673. this.PMB.ForeColor = System.Drawing.Color.White;
  3674. this.PMB.Location = new System.Drawing.Point(11, 48);
  3675. this.PMB.Margin = new System.Windows.Forms.Padding(2);
  3676. this.PMB.Name = "PMB";
  3677. this.PMB.Size = new System.Drawing.Size(334, 31);
  3678. this.PMB.TabIndex = 74;
  3679. this.PMB.Text = "Add \"Power Menu\"";
  3680. this.PMB.UseVisualStyleBackColor = false;
  3681. this.PMB.Click += new System.EventHandler(this.button59_Click);
  3682. //
  3683. // DSB
  3684. //
  3685. this.DSB.BackColor = System.Drawing.Color.DodgerBlue;
  3686. this.DSB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  3687. this.DSB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3688. this.DSB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3689. this.DSB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3690. this.DSB.ForeColor = System.Drawing.Color.White;
  3691. this.DSB.Location = new System.Drawing.Point(11, 192);
  3692. this.DSB.Margin = new System.Windows.Forms.Padding(2);
  3693. this.DSB.Name = "DSB";
  3694. this.DSB.Size = new System.Drawing.Size(334, 31);
  3695. this.DSB.TabIndex = 72;
  3696. this.DSB.Text = "Add \"Desktop Shortcuts\"";
  3697. this.DSB.UseVisualStyleBackColor = false;
  3698. this.DSB.Click += new System.EventHandler(this.button57_Click);
  3699. //
  3700. // STB
  3701. //
  3702. this.STB.BackColor = System.Drawing.Color.DodgerBlue;
  3703. this.STB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  3704. this.STB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3705. this.STB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3706. this.STB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3707. this.STB.ForeColor = System.Drawing.Color.White;
  3708. this.STB.Location = new System.Drawing.Point(11, 84);
  3709. this.STB.Margin = new System.Windows.Forms.Padding(2);
  3710. this.STB.Name = "STB";
  3711. this.STB.Size = new System.Drawing.Size(334, 31);
  3712. this.STB.TabIndex = 70;
  3713. this.STB.Text = "Add \"System Tools\"";
  3714. this.STB.UseVisualStyleBackColor = false;
  3715. this.STB.Click += new System.EventHandler(this.button53_Click);
  3716. //
  3717. // SSB
  3718. //
  3719. this.SSB.BackColor = System.Drawing.Color.DodgerBlue;
  3720. this.SSB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  3721. this.SSB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3722. this.SSB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3723. this.SSB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3724. this.SSB.ForeColor = System.Drawing.Color.White;
  3725. this.SSB.Location = new System.Drawing.Point(11, 156);
  3726. this.SSB.Margin = new System.Windows.Forms.Padding(2);
  3727. this.SSB.Name = "SSB";
  3728. this.SSB.Size = new System.Drawing.Size(334, 31);
  3729. this.SSB.TabIndex = 68;
  3730. this.SSB.Text = "Add \"System Shortcuts\"";
  3731. this.SSB.UseVisualStyleBackColor = false;
  3732. this.SSB.Click += new System.EventHandler(this.button51_Click);
  3733. //
  3734. // WAB
  3735. //
  3736. this.WAB.BackColor = System.Drawing.Color.DodgerBlue;
  3737. this.WAB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  3738. this.WAB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3739. this.WAB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3740. this.WAB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3741. this.WAB.ForeColor = System.Drawing.Color.White;
  3742. this.WAB.Location = new System.Drawing.Point(11, 120);
  3743. this.WAB.Margin = new System.Windows.Forms.Padding(2);
  3744. this.WAB.Name = "WAB";
  3745. this.WAB.Size = new System.Drawing.Size(334, 31);
  3746. this.WAB.TabIndex = 65;
  3747. this.WAB.Text = "Add \"Windows Apps\"";
  3748. this.WAB.UseVisualStyleBackColor = false;
  3749. this.WAB.Click += new System.EventHandler(this.button54_Click);
  3750. //
  3751. // tabPage11
  3752. //
  3753. this.tabPage11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3754. this.tabPage11.Controls.Add(this.panel6);
  3755. this.tabPage11.Controls.Add(this.removeCCB);
  3756. this.tabPage11.Controls.Add(this.refreshCCB);
  3757. this.tabPage11.Controls.Add(this.removeCCL);
  3758. this.tabPage11.Controls.Add(this.btnCreateCustomCommand);
  3759. this.tabPage11.Controls.Add(this.button48);
  3760. this.tabPage11.Controls.Add(this.txtRunKeyword);
  3761. this.tabPage11.Controls.Add(this.ccKeywordL);
  3762. this.tabPage11.Controls.Add(this.txtRunFile);
  3763. this.tabPage11.Controls.Add(this.ccFileL);
  3764. this.tabPage11.Controls.Add(this.ccL);
  3765. this.tabPage11.Location = new System.Drawing.Point(4, 4);
  3766. this.tabPage11.Margin = new System.Windows.Forms.Padding(2);
  3767. this.tabPage11.Name = "tabPage11";
  3768. this.tabPage11.Padding = new System.Windows.Forms.Padding(2);
  3769. this.tabPage11.Size = new System.Drawing.Size(917, 579);
  3770. this.tabPage11.TabIndex = 4;
  3771. this.tabPage11.Text = "Run Dialog";
  3772. //
  3773. // panel6
  3774. //
  3775. this.panel6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  3776. this.panel6.Controls.Add(this.listCustomCommands);
  3777. this.panel6.Location = new System.Drawing.Point(11, 210);
  3778. this.panel6.Margin = new System.Windows.Forms.Padding(2);
  3779. this.panel6.Name = "panel6";
  3780. this.panel6.Size = new System.Drawing.Size(271, 313);
  3781. this.panel6.TabIndex = 84;
  3782. //
  3783. // listCustomCommands
  3784. //
  3785. this.listCustomCommands.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3786. this.listCustomCommands.BorderStyle = System.Windows.Forms.BorderStyle.None;
  3787. this.listCustomCommands.Dock = System.Windows.Forms.DockStyle.Fill;
  3788. this.listCustomCommands.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3789. this.listCustomCommands.ForeColor = System.Drawing.Color.White;
  3790. this.listCustomCommands.FormattingEnabled = true;
  3791. this.listCustomCommands.HorizontalScrollbar = true;
  3792. this.listCustomCommands.ItemHeight = 21;
  3793. this.listCustomCommands.Location = new System.Drawing.Point(0, 0);
  3794. this.listCustomCommands.Margin = new System.Windows.Forms.Padding(2);
  3795. this.listCustomCommands.Name = "listCustomCommands";
  3796. this.listCustomCommands.Size = new System.Drawing.Size(269, 311);
  3797. this.listCustomCommands.TabIndex = 79;
  3798. //
  3799. // removeCCB
  3800. //
  3801. this.removeCCB.BackColor = System.Drawing.Color.DodgerBlue;
  3802. this.removeCCB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  3803. this.removeCCB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3804. this.removeCCB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3805. this.removeCCB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3806. this.removeCCB.ForeColor = System.Drawing.Color.White;
  3807. this.removeCCB.Location = new System.Drawing.Point(286, 210);
  3808. this.removeCCB.Margin = new System.Windows.Forms.Padding(2);
  3809. this.removeCCB.Name = "removeCCB";
  3810. this.removeCCB.Size = new System.Drawing.Size(120, 27);
  3811. this.removeCCB.TabIndex = 82;
  3812. this.removeCCB.Text = "Delete";
  3813. this.removeCCB.UseVisualStyleBackColor = false;
  3814. this.removeCCB.Click += new System.EventHandler(this.button26_Click);
  3815. //
  3816. // refreshCCB
  3817. //
  3818. this.refreshCCB.BackColor = System.Drawing.Color.DodgerBlue;
  3819. this.refreshCCB.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  3820. this.refreshCCB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3821. this.refreshCCB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3822. this.refreshCCB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3823. this.refreshCCB.ForeColor = System.Drawing.Color.White;
  3824. this.refreshCCB.Location = new System.Drawing.Point(286, 241);
  3825. this.refreshCCB.Margin = new System.Windows.Forms.Padding(2);
  3826. this.refreshCCB.Name = "refreshCCB";
  3827. this.refreshCCB.Size = new System.Drawing.Size(120, 27);
  3828. this.refreshCCB.TabIndex = 81;
  3829. this.refreshCCB.Text = "Refresh";
  3830. this.refreshCCB.UseVisualStyleBackColor = false;
  3831. this.refreshCCB.Click += new System.EventHandler(this.button8_Click);
  3832. //
  3833. // removeCCL
  3834. //
  3835. this.removeCCL.AutoSize = true;
  3836. this.removeCCL.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3837. this.removeCCL.ForeColor = System.Drawing.Color.DodgerBlue;
  3838. this.removeCCL.Location = new System.Drawing.Point(6, 173);
  3839. this.removeCCL.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3840. this.removeCCL.Name = "removeCCL";
  3841. this.removeCCL.Size = new System.Drawing.Size(254, 28);
  3842. this.removeCCL.TabIndex = 80;
  3843. this.removeCCL.Tag = "themeable";
  3844. this.removeCCL.Text = "Delete existing commands";
  3845. //
  3846. // btnCreateCustomCommand
  3847. //
  3848. this.btnCreateCustomCommand.BackColor = System.Drawing.Color.DodgerBlue;
  3849. this.btnCreateCustomCommand.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  3850. this.btnCreateCustomCommand.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3851. this.btnCreateCustomCommand.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3852. this.btnCreateCustomCommand.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3853. this.btnCreateCustomCommand.ForeColor = System.Drawing.Color.White;
  3854. this.btnCreateCustomCommand.Location = new System.Drawing.Point(299, 130);
  3855. this.btnCreateCustomCommand.Margin = new System.Windows.Forms.Padding(2);
  3856. this.btnCreateCustomCommand.Name = "btnCreateCustomCommand";
  3857. this.btnCreateCustomCommand.Size = new System.Drawing.Size(107, 29);
  3858. this.btnCreateCustomCommand.TabIndex = 60;
  3859. this.btnCreateCustomCommand.Text = "Create";
  3860. this.btnCreateCustomCommand.UseVisualStyleBackColor = false;
  3861. this.btnCreateCustomCommand.Click += new System.EventHandler(this.button50_Click);
  3862. //
  3863. // button48
  3864. //
  3865. this.button48.BackColor = System.Drawing.Color.DodgerBlue;
  3866. this.button48.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  3867. this.button48.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3868. this.button48.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3869. this.button48.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3870. this.button48.ForeColor = System.Drawing.Color.White;
  3871. this.button48.Location = new System.Drawing.Point(354, 75);
  3872. this.button48.Margin = new System.Windows.Forms.Padding(2);
  3873. this.button48.Name = "button48";
  3874. this.button48.Size = new System.Drawing.Size(52, 29);
  3875. this.button48.TabIndex = 58;
  3876. this.button48.Text = "...";
  3877. this.button48.UseVisualStyleBackColor = false;
  3878. this.button48.Click += new System.EventHandler(this.button48_Click);
  3879. //
  3880. // txtRunKeyword
  3881. //
  3882. this.txtRunKeyword.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3883. this.txtRunKeyword.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  3884. this.txtRunKeyword.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3885. this.txtRunKeyword.ForeColor = System.Drawing.Color.White;
  3886. this.txtRunKeyword.Location = new System.Drawing.Point(11, 130);
  3887. this.txtRunKeyword.Margin = new System.Windows.Forms.Padding(2);
  3888. this.txtRunKeyword.Name = "txtRunKeyword";
  3889. this.txtRunKeyword.Size = new System.Drawing.Size(284, 29);
  3890. this.txtRunKeyword.TabIndex = 9;
  3891. //
  3892. // ccKeywordL
  3893. //
  3894. this.ccKeywordL.AutoSize = true;
  3895. this.ccKeywordL.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3896. this.ccKeywordL.ForeColor = System.Drawing.Color.Silver;
  3897. this.ccKeywordL.Location = new System.Drawing.Point(7, 105);
  3898. this.ccKeywordL.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3899. this.ccKeywordL.Name = "ccKeywordL";
  3900. this.ccKeywordL.Size = new System.Drawing.Size(79, 21);
  3901. this.ccKeywordL.TabIndex = 8;
  3902. this.ccKeywordL.Text = "Keyword:";
  3903. //
  3904. // txtRunFile
  3905. //
  3906. this.txtRunFile.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3907. this.txtRunFile.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  3908. this.txtRunFile.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3909. this.txtRunFile.ForeColor = System.Drawing.Color.White;
  3910. this.txtRunFile.Location = new System.Drawing.Point(11, 75);
  3911. this.txtRunFile.Margin = new System.Windows.Forms.Padding(2);
  3912. this.txtRunFile.Name = "txtRunFile";
  3913. this.txtRunFile.ReadOnly = true;
  3914. this.txtRunFile.Size = new System.Drawing.Size(339, 29);
  3915. this.txtRunFile.TabIndex = 7;
  3916. //
  3917. // ccFileL
  3918. //
  3919. this.ccFileL.AutoSize = true;
  3920. this.ccFileL.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3921. this.ccFileL.ForeColor = System.Drawing.Color.Silver;
  3922. this.ccFileL.Location = new System.Drawing.Point(7, 50);
  3923. this.ccFileL.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3924. this.ccFileL.Name = "ccFileL";
  3925. this.ccFileL.Size = new System.Drawing.Size(102, 21);
  3926. this.ccFileL.TabIndex = 6;
  3927. this.ccFileL.Text = "File location:";
  3928. //
  3929. // ccL
  3930. //
  3931. this.ccL.AutoSize = true;
  3932. this.ccL.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3933. this.ccL.ForeColor = System.Drawing.Color.DodgerBlue;
  3934. this.ccL.Location = new System.Drawing.Point(6, 10);
  3935. this.ccL.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3936. this.ccL.Name = "ccL";
  3937. this.ccL.Size = new System.Drawing.Size(298, 28);
  3938. this.ccL.TabIndex = 5;
  3939. this.ccL.Tag = "themeable";
  3940. this.ccL.Text = "Define your custom commands";
  3941. //
  3942. // optionsTab
  3943. //
  3944. this.optionsTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3945. this.optionsTab.Controls.Add(this.pictureBox85);
  3946. this.optionsTab.Controls.Add(this.panel9);
  3947. this.optionsTab.Controls.Add(this.panel8);
  3948. this.optionsTab.Controls.Add(this.languagesL);
  3949. this.optionsTab.Controls.Add(this.lblUpdateDisabled);
  3950. this.optionsTab.Controls.Add(this.linkLabel6);
  3951. this.optionsTab.Controls.Add(this.picFOSS);
  3952. this.optionsTab.Controls.Add(this.picFSF);
  3953. this.optionsTab.Controls.Add(this.linkLabel5);
  3954. this.optionsTab.Controls.Add(this.btnOpenConf);
  3955. this.optionsTab.Controls.Add(this.lblTroubleshoot);
  3956. this.optionsTab.Controls.Add(this.lblUpdating);
  3957. this.optionsTab.Controls.Add(this.btnViewLog);
  3958. this.optionsTab.Controls.Add(this.l2);
  3959. this.optionsTab.Controls.Add(this.btnChangelog);
  3960. this.optionsTab.Controls.Add(this.btnUpdate);
  3961. this.optionsTab.Controls.Add(this.btnResetConfig);
  3962. this.optionsTab.Controls.Add(this.lblTheming);
  3963. this.optionsTab.Controls.Add(this.helpTipsToggle);
  3964. this.optionsTab.Controls.Add(this.quickAccessToggle);
  3965. this.optionsTab.Location = new System.Drawing.Point(4, 24);
  3966. this.optionsTab.Margin = new System.Windows.Forms.Padding(2);
  3967. this.optionsTab.Name = "optionsTab";
  3968. this.optionsTab.Padding = new System.Windows.Forms.Padding(2);
  3969. this.optionsTab.Size = new System.Drawing.Size(929, 611);
  3970. this.optionsTab.TabIndex = 6;
  3971. this.optionsTab.Text = "Options";
  3972. //
  3973. // pictureBox85
  3974. //
  3975. this.pictureBox85.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  3976. this.pictureBox85.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox85.Image")));
  3977. this.pictureBox85.Location = new System.Drawing.Point(884, 11);
  3978. this.pictureBox85.Name = "pictureBox85";
  3979. this.pictureBox85.Size = new System.Drawing.Size(33, 32);
  3980. this.pictureBox85.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  3981. this.pictureBox85.TabIndex = 74;
  3982. this.pictureBox85.TabStop = false;
  3983. //
  3984. // panel9
  3985. //
  3986. this.panel9.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  3987. this.panel9.Controls.Add(this.radioGerman);
  3988. this.panel9.Controls.Add(this.pictureBox2);
  3989. this.panel9.Controls.Add(this.pictureBox89);
  3990. this.panel9.Controls.Add(this.radioTurkish);
  3991. this.panel9.Controls.Add(this.pictureBox88);
  3992. this.panel9.Controls.Add(this.radioHellenic);
  3993. this.panel9.Controls.Add(this.pictureBox87);
  3994. this.panel9.Controls.Add(this.radioEnglish);
  3995. this.panel9.Controls.Add(this.radioRussian);
  3996. this.panel9.Controls.Add(this.pictureBox86);
  3997. this.panel9.Location = new System.Drawing.Point(637, 46);
  3998. this.panel9.Name = "panel9";
  3999. this.panel9.Size = new System.Drawing.Size(285, 205);
  4000. this.panel9.TabIndex = 73;
  4001. //
  4002. // radioGerman
  4003. //
  4004. this.radioGerman.AutoSize = true;
  4005. this.radioGerman.Font = new System.Drawing.Font("Segoe UI Semibold", 12F);
  4006. this.radioGerman.ForeColor = System.Drawing.Color.White;
  4007. this.radioGerman.Location = new System.Drawing.Point(151, 95);
  4008. this.radioGerman.Margin = new System.Windows.Forms.Padding(2);
  4009. this.radioGerman.Name = "radioGerman";
  4010. this.radioGerman.Size = new System.Drawing.Size(87, 25);
  4011. this.radioGerman.TabIndex = 82;
  4012. this.radioGerman.Tag = "";
  4013. this.radioGerman.Text = "Deutsch";
  4014. this.radioGerman.UseVisualStyleBackColor = true;
  4015. this.radioGerman.Click += new System.EventHandler(this.radioGerman_Click);
  4016. //
  4017. // pictureBox2
  4018. //
  4019. this.pictureBox2.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox2.Image")));
  4020. this.pictureBox2.Location = new System.Drawing.Point(110, 96);
  4021. this.pictureBox2.Name = "pictureBox2";
  4022. this.pictureBox2.Size = new System.Drawing.Size(36, 22);
  4023. this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  4024. this.pictureBox2.TabIndex = 81;
  4025. this.pictureBox2.TabStop = false;
  4026. this.pictureBox2.Click += new System.EventHandler(this.pictureBox2_Click);
  4027. //
  4028. // pictureBox89
  4029. //
  4030. this.pictureBox89.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox89.Image")));
  4031. this.pictureBox89.Location = new System.Drawing.Point(110, 125);
  4032. this.pictureBox89.Name = "pictureBox89";
  4033. this.pictureBox89.Size = new System.Drawing.Size(36, 22);
  4034. this.pictureBox89.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  4035. this.pictureBox89.TabIndex = 79;
  4036. this.pictureBox89.TabStop = false;
  4037. this.pictureBox89.Click += new System.EventHandler(this.pictureBox89_Click);
  4038. //
  4039. // radioTurkish
  4040. //
  4041. this.radioTurkish.AutoSize = true;
  4042. this.radioTurkish.Font = new System.Drawing.Font("Segoe UI Semibold", 12F);
  4043. this.radioTurkish.ForeColor = System.Drawing.Color.White;
  4044. this.radioTurkish.Location = new System.Drawing.Point(151, 124);
  4045. this.radioTurkish.Margin = new System.Windows.Forms.Padding(2);
  4046. this.radioTurkish.Name = "radioTurkish";
  4047. this.radioTurkish.Size = new System.Drawing.Size(76, 25);
  4048. this.radioTurkish.TabIndex = 80;
  4049. this.radioTurkish.Tag = "";
  4050. this.radioTurkish.Text = "Türkçe";
  4051. this.radioTurkish.UseVisualStyleBackColor = true;
  4052. this.radioTurkish.Click += new System.EventHandler(this.radioTurkish_Click);
  4053. //
  4054. // pictureBox88
  4055. //
  4056. this.pictureBox88.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox88.Image")));
  4057. this.pictureBox88.Location = new System.Drawing.Point(110, 67);
  4058. this.pictureBox88.Name = "pictureBox88";
  4059. this.pictureBox88.Size = new System.Drawing.Size(36, 22);
  4060. this.pictureBox88.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  4061. this.pictureBox88.TabIndex = 77;
  4062. this.pictureBox88.TabStop = false;
  4063. this.pictureBox88.Click += new System.EventHandler(this.pictureBox88_Click);
  4064. //
  4065. // radioHellenic
  4066. //
  4067. this.radioHellenic.AutoSize = true;
  4068. this.radioHellenic.Font = new System.Drawing.Font("Segoe UI Semibold", 12F);
  4069. this.radioHellenic.ForeColor = System.Drawing.Color.White;
  4070. this.radioHellenic.Location = new System.Drawing.Point(151, 66);
  4071. this.radioHellenic.Margin = new System.Windows.Forms.Padding(2);
  4072. this.radioHellenic.Name = "radioHellenic";
  4073. this.radioHellenic.Size = new System.Drawing.Size(94, 25);
  4074. this.radioHellenic.TabIndex = 78;
  4075. this.radioHellenic.Tag = "";
  4076. this.radioHellenic.Text = "Ελληνικά";
  4077. this.radioHellenic.UseVisualStyleBackColor = true;
  4078. this.radioHellenic.Click += new System.EventHandler(this.radioHellenic_Click);
  4079. //
  4080. // pictureBox87
  4081. //
  4082. this.pictureBox87.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox87.Image")));
  4083. this.pictureBox87.Location = new System.Drawing.Point(110, 38);
  4084. this.pictureBox87.Name = "pictureBox87";
  4085. this.pictureBox87.Size = new System.Drawing.Size(36, 22);
  4086. this.pictureBox87.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  4087. this.pictureBox87.TabIndex = 76;
  4088. this.pictureBox87.TabStop = false;
  4089. this.pictureBox87.Click += new System.EventHandler(this.pictureBox87_Click);
  4090. //
  4091. // radioEnglish
  4092. //
  4093. this.radioEnglish.AutoSize = true;
  4094. this.radioEnglish.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4095. this.radioEnglish.ForeColor = System.Drawing.Color.White;
  4096. this.radioEnglish.Location = new System.Drawing.Point(151, 8);
  4097. this.radioEnglish.Margin = new System.Windows.Forms.Padding(2);
  4098. this.radioEnglish.Name = "radioEnglish";
  4099. this.radioEnglish.Size = new System.Drawing.Size(79, 25);
  4100. this.radioEnglish.TabIndex = 75;
  4101. this.radioEnglish.Tag = "";
  4102. this.radioEnglish.Text = "English";
  4103. this.radioEnglish.UseVisualStyleBackColor = true;
  4104. this.radioEnglish.Click += new System.EventHandler(this.radioEnglish_Click);
  4105. //
  4106. // radioRussian
  4107. //
  4108. this.radioRussian.AutoSize = true;
  4109. this.radioRussian.Font = new System.Drawing.Font("Segoe UI Semibold", 12F);
  4110. this.radioRussian.ForeColor = System.Drawing.Color.White;
  4111. this.radioRussian.Location = new System.Drawing.Point(151, 37);
  4112. this.radioRussian.Margin = new System.Windows.Forms.Padding(2);
  4113. this.radioRussian.Name = "radioRussian";
  4114. this.radioRussian.Size = new System.Drawing.Size(90, 25);
  4115. this.radioRussian.TabIndex = 74;
  4116. this.radioRussian.Tag = "";
  4117. this.radioRussian.Text = "русский";
  4118. this.radioRussian.UseVisualStyleBackColor = true;
  4119. this.radioRussian.Click += new System.EventHandler(this.radioRussian_Click);
  4120. //
  4121. // pictureBox86
  4122. //
  4123. this.pictureBox86.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox86.Image")));
  4124. this.pictureBox86.Location = new System.Drawing.Point(110, 9);
  4125. this.pictureBox86.Name = "pictureBox86";
  4126. this.pictureBox86.Size = new System.Drawing.Size(36, 22);
  4127. this.pictureBox86.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  4128. this.pictureBox86.TabIndex = 75;
  4129. this.pictureBox86.TabStop = false;
  4130. this.pictureBox86.Click += new System.EventHandler(this.pictureBox86_Click);
  4131. //
  4132. // panel8
  4133. //
  4134. this.panel8.Controls.Add(this.radioCaramel);
  4135. this.panel8.Controls.Add(this.radioZerg);
  4136. this.panel8.Controls.Add(this.radioOcean);
  4137. this.panel8.Controls.Add(this.radioMagma);
  4138. this.panel8.Controls.Add(this.radioLime);
  4139. this.panel8.Controls.Add(this.radioMinimal);
  4140. this.panel8.Location = new System.Drawing.Point(16, 130);
  4141. this.panel8.Name = "panel8";
  4142. this.panel8.Size = new System.Drawing.Size(326, 118);
  4143. this.panel8.TabIndex = 72;
  4144. //
  4145. // radioCaramel
  4146. //
  4147. this.radioCaramel.AutoSize = true;
  4148. this.radioCaramel.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4149. this.radioCaramel.ForeColor = System.Drawing.Color.DarkOrange;
  4150. this.radioCaramel.Location = new System.Drawing.Point(163, 11);
  4151. this.radioCaramel.Margin = new System.Windows.Forms.Padding(2);
  4152. this.radioCaramel.Name = "radioCaramel";
  4153. this.radioCaramel.Size = new System.Drawing.Size(87, 25);
  4154. this.radioCaramel.TabIndex = 52;
  4155. this.radioCaramel.Text = "Caramel";
  4156. this.radioCaramel.UseVisualStyleBackColor = true;
  4157. this.radioCaramel.CheckedChanged += new System.EventHandler(this.radioCaramel_CheckedChanged);
  4158. //
  4159. // radioZerg
  4160. //
  4161. this.radioZerg.AutoSize = true;
  4162. this.radioZerg.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4163. this.radioZerg.ForeColor = System.Drawing.Color.MediumOrchid;
  4164. this.radioZerg.Location = new System.Drawing.Point(15, 69);
  4165. this.radioZerg.Margin = new System.Windows.Forms.Padding(2);
  4166. this.radioZerg.Name = "radioZerg";
  4167. this.radioZerg.Size = new System.Drawing.Size(62, 25);
  4168. this.radioZerg.TabIndex = 48;
  4169. this.radioZerg.Text = "Zerg";
  4170. this.radioZerg.UseVisualStyleBackColor = true;
  4171. this.radioZerg.CheckedChanged += new System.EventHandler(this.radioZerg_CheckedChanged);
  4172. //
  4173. // radioOcean
  4174. //
  4175. this.radioOcean.AutoSize = true;
  4176. this.radioOcean.Font = new System.Drawing.Font("Segoe UI Semibold", 12F);
  4177. this.radioOcean.ForeColor = System.Drawing.Color.DodgerBlue;
  4178. this.radioOcean.Location = new System.Drawing.Point(15, 11);
  4179. this.radioOcean.Margin = new System.Windows.Forms.Padding(2);
  4180. this.radioOcean.Name = "radioOcean";
  4181. this.radioOcean.Size = new System.Drawing.Size(74, 25);
  4182. this.radioOcean.TabIndex = 49;
  4183. this.radioOcean.Text = "Ocean";
  4184. this.radioOcean.UseVisualStyleBackColor = true;
  4185. this.radioOcean.CheckedChanged += new System.EventHandler(this.radioOcean_CheckedChanged);
  4186. //
  4187. // radioMagma
  4188. //
  4189. this.radioMagma.AutoSize = true;
  4190. this.radioMagma.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4191. this.radioMagma.ForeColor = System.Drawing.Color.Tomato;
  4192. this.radioMagma.Location = new System.Drawing.Point(15, 40);
  4193. this.radioMagma.Margin = new System.Windows.Forms.Padding(2);
  4194. this.radioMagma.Name = "radioMagma";
  4195. this.radioMagma.Size = new System.Drawing.Size(83, 25);
  4196. this.radioMagma.TabIndex = 50;
  4197. this.radioMagma.Text = "Magma";
  4198. this.radioMagma.UseVisualStyleBackColor = true;
  4199. this.radioMagma.CheckedChanged += new System.EventHandler(this.radioMagma_CheckedChanged);
  4200. //
  4201. // radioLime
  4202. //
  4203. this.radioLime.AutoSize = true;
  4204. this.radioLime.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4205. this.radioLime.ForeColor = System.Drawing.Color.LimeGreen;
  4206. this.radioLime.Location = new System.Drawing.Point(163, 40);
  4207. this.radioLime.Margin = new System.Windows.Forms.Padding(2);
  4208. this.radioLime.Name = "radioLime";
  4209. this.radioLime.Size = new System.Drawing.Size(63, 25);
  4210. this.radioLime.TabIndex = 51;
  4211. this.radioLime.Text = "Lime";
  4212. this.radioLime.UseVisualStyleBackColor = true;
  4213. this.radioLime.CheckedChanged += new System.EventHandler(this.radioLime_CheckedChanged);
  4214. //
  4215. // radioMinimal
  4216. //
  4217. this.radioMinimal.AutoSize = true;
  4218. this.radioMinimal.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4219. this.radioMinimal.ForeColor = System.Drawing.Color.Gray;
  4220. this.radioMinimal.Location = new System.Drawing.Point(163, 69);
  4221. this.radioMinimal.Margin = new System.Windows.Forms.Padding(2);
  4222. this.radioMinimal.Name = "radioMinimal";
  4223. this.radioMinimal.Size = new System.Drawing.Size(86, 25);
  4224. this.radioMinimal.TabIndex = 53;
  4225. this.radioMinimal.Text = "Minimal";
  4226. this.radioMinimal.UseVisualStyleBackColor = true;
  4227. this.radioMinimal.CheckedChanged += new System.EventHandler(this.radioMinimal_CheckedChanged);
  4228. //
  4229. // languagesL
  4230. //
  4231. this.languagesL.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  4232. this.languagesL.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4233. this.languagesL.ForeColor = System.Drawing.Color.DodgerBlue;
  4234. this.languagesL.Location = new System.Drawing.Point(637, 9);
  4235. this.languagesL.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  4236. this.languagesL.Name = "languagesL";
  4237. this.languagesL.Size = new System.Drawing.Size(246, 28);
  4238. this.languagesL.TabIndex = 71;
  4239. this.languagesL.Tag = "themeable";
  4240. this.languagesL.Text = "Choose language";
  4241. this.languagesL.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  4242. //
  4243. // lblUpdateDisabled
  4244. //
  4245. this.lblUpdateDisabled.AutoSize = true;
  4246. this.lblUpdateDisabled.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4247. this.lblUpdateDisabled.ForeColor = System.Drawing.Color.Gold;
  4248. this.lblUpdateDisabled.Location = new System.Drawing.Point(28, 358);
  4249. this.lblUpdateDisabled.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  4250. this.lblUpdateDisabled.Name = "lblUpdateDisabled";
  4251. this.lblUpdateDisabled.Size = new System.Drawing.Size(239, 21);
  4252. this.lblUpdateDisabled.TabIndex = 69;
  4253. this.lblUpdateDisabled.Text = "Disabled in experimental builds";
  4254. this.lblUpdateDisabled.Visible = false;
  4255. //
  4256. // linkLabel6
  4257. //
  4258. this.linkLabel6.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  4259. this.linkLabel6.AutoSize = true;
  4260. this.linkLabel6.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4261. this.linkLabel6.ForeColor = System.Drawing.Color.DodgerBlue;
  4262. this.linkLabel6.LinkColor = System.Drawing.Color.DodgerBlue;
  4263. this.linkLabel6.Location = new System.Drawing.Point(792, 428);
  4264. this.linkLabel6.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  4265. this.linkLabel6.Name = "linkLabel6";
  4266. this.linkLabel6.Size = new System.Drawing.Size(130, 28);
  4267. this.linkLabel6.TabIndex = 68;
  4268. this.linkLabel6.TabStop = true;
  4269. this.linkLabel6.Tag = "themeable";
  4270. this.linkLabel6.Text = "Open Source";
  4271. this.linkLabel6.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel6_LinkClicked);
  4272. //
  4273. // picFOSS
  4274. //
  4275. this.picFOSS.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  4276. this.picFOSS.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("picFOSS.BackgroundImage")));
  4277. this.picFOSS.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4278. this.picFOSS.Location = new System.Drawing.Point(788, 311);
  4279. this.picFOSS.Name = "picFOSS";
  4280. this.picFOSS.Size = new System.Drawing.Size(128, 114);
  4281. this.picFOSS.TabIndex = 67;
  4282. this.picFOSS.TabStop = false;
  4283. //
  4284. // picFSF
  4285. //
  4286. this.picFSF.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  4287. this.picFSF.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("picFSF.BackgroundImage")));
  4288. this.picFSF.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4289. this.picFSF.Location = new System.Drawing.Point(777, 459);
  4290. this.picFSF.Name = "picFSF";
  4291. this.picFSF.Size = new System.Drawing.Size(145, 114);
  4292. this.picFSF.TabIndex = 66;
  4293. this.picFSF.TabStop = false;
  4294. //
  4295. // linkLabel5
  4296. //
  4297. this.linkLabel5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  4298. this.linkLabel5.AutoSize = true;
  4299. this.linkLabel5.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4300. this.linkLabel5.ForeColor = System.Drawing.Color.DodgerBlue;
  4301. this.linkLabel5.LinkColor = System.Drawing.Color.DodgerBlue;
  4302. this.linkLabel5.Location = new System.Drawing.Point(726, 576);
  4303. this.linkLabel5.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  4304. this.linkLabel5.Name = "linkLabel5";
  4305. this.linkLabel5.Size = new System.Drawing.Size(203, 28);
  4306. this.linkLabel5.TabIndex = 65;
  4307. this.linkLabel5.TabStop = true;
  4308. this.linkLabel5.Tag = "themeable";
  4309. this.linkLabel5.Text = "GNU GPL 3.0 License";
  4310. this.linkLabel5.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel5_LinkClicked);
  4311. //
  4312. // btnOpenConf
  4313. //
  4314. this.btnOpenConf.BackColor = System.Drawing.Color.DodgerBlue;
  4315. this.btnOpenConf.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  4316. this.btnOpenConf.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  4317. this.btnOpenConf.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  4318. this.btnOpenConf.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  4319. this.btnOpenConf.ForeColor = System.Drawing.Color.White;
  4320. this.btnOpenConf.Location = new System.Drawing.Point(31, 471);
  4321. this.btnOpenConf.Margin = new System.Windows.Forms.Padding(2);
  4322. this.btnOpenConf.Name = "btnOpenConf";
  4323. this.btnOpenConf.Size = new System.Drawing.Size(197, 31);
  4324. this.btnOpenConf.TabIndex = 63;
  4325. this.btnOpenConf.Text = "Show config folder";
  4326. this.btnOpenConf.UseVisualStyleBackColor = false;
  4327. this.btnOpenConf.Click += new System.EventHandler(this.btnOpenConf_Click);
  4328. //
  4329. // lblTroubleshoot
  4330. //
  4331. this.lblTroubleshoot.AutoSize = true;
  4332. this.lblTroubleshoot.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4333. this.lblTroubleshoot.ForeColor = System.Drawing.Color.DodgerBlue;
  4334. this.lblTroubleshoot.Location = new System.Drawing.Point(11, 390);
  4335. this.lblTroubleshoot.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  4336. this.lblTroubleshoot.Name = "lblTroubleshoot";
  4337. this.lblTroubleshoot.Size = new System.Drawing.Size(161, 28);
  4338. this.lblTroubleshoot.TabIndex = 62;
  4339. this.lblTroubleshoot.Tag = "themeable";
  4340. this.lblTroubleshoot.Text = "Troubleshooting";
  4341. //
  4342. // lblUpdating
  4343. //
  4344. this.lblUpdating.AutoSize = true;
  4345. this.lblUpdating.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4346. this.lblUpdating.ForeColor = System.Drawing.Color.DodgerBlue;
  4347. this.lblUpdating.Location = new System.Drawing.Point(11, 243);
  4348. this.lblUpdating.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  4349. this.lblUpdating.Name = "lblUpdating";
  4350. this.lblUpdating.Size = new System.Drawing.Size(157, 28);
  4351. this.lblUpdating.TabIndex = 61;
  4352. this.lblUpdating.Tag = "themeable";
  4353. this.lblUpdating.Text = "Check && update";
  4354. //
  4355. // btnViewLog
  4356. //
  4357. this.btnViewLog.BackColor = System.Drawing.Color.DodgerBlue;
  4358. this.btnViewLog.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  4359. this.btnViewLog.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  4360. this.btnViewLog.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  4361. this.btnViewLog.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  4362. this.btnViewLog.ForeColor = System.Drawing.Color.White;
  4363. this.btnViewLog.Location = new System.Drawing.Point(31, 436);
  4364. this.btnViewLog.Margin = new System.Windows.Forms.Padding(2);
  4365. this.btnViewLog.Name = "btnViewLog";
  4366. this.btnViewLog.Size = new System.Drawing.Size(197, 31);
  4367. this.btnViewLog.TabIndex = 60;
  4368. this.btnViewLog.Text = "View errors";
  4369. this.btnViewLog.UseVisualStyleBackColor = false;
  4370. this.btnViewLog.Click += new System.EventHandler(this.btnViewLog_Click);
  4371. //
  4372. // l2
  4373. //
  4374. this.l2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  4375. this.l2.AutoSize = true;
  4376. this.l2.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4377. this.l2.ForeColor = System.Drawing.Color.DodgerBlue;
  4378. this.l2.LinkColor = System.Drawing.Color.DodgerBlue;
  4379. this.l2.Location = new System.Drawing.Point(6, 576);
  4380. this.l2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  4381. this.l2.Name = "l2";
  4382. this.l2.Size = new System.Drawing.Size(157, 28);
  4383. this.l2.TabIndex = 59;
  4384. this.l2.TabStop = true;
  4385. this.l2.Tag = "themeable";
  4386. this.l2.Text = "deadmoon © ∞";
  4387. this.l2.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.l2_LinkClicked);
  4388. //
  4389. // btnChangelog
  4390. //
  4391. this.btnChangelog.BackColor = System.Drawing.Color.DodgerBlue;
  4392. this.btnChangelog.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  4393. this.btnChangelog.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  4394. this.btnChangelog.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  4395. this.btnChangelog.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  4396. this.btnChangelog.ForeColor = System.Drawing.Color.White;
  4397. this.btnChangelog.Location = new System.Drawing.Point(31, 325);
  4398. this.btnChangelog.Margin = new System.Windows.Forms.Padding(2);
  4399. this.btnChangelog.Name = "btnChangelog";
  4400. this.btnChangelog.Size = new System.Drawing.Size(197, 31);
  4401. this.btnChangelog.TabIndex = 58;
  4402. this.btnChangelog.Text = "View changes";
  4403. this.btnChangelog.UseVisualStyleBackColor = false;
  4404. this.btnChangelog.Click += new System.EventHandler(this.btnChangelog_Click);
  4405. //
  4406. // btnUpdate
  4407. //
  4408. this.btnUpdate.BackColor = System.Drawing.Color.DodgerBlue;
  4409. this.btnUpdate.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  4410. this.btnUpdate.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  4411. this.btnUpdate.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  4412. this.btnUpdate.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  4413. this.btnUpdate.ForeColor = System.Drawing.Color.White;
  4414. this.btnUpdate.Location = new System.Drawing.Point(31, 290);
  4415. this.btnUpdate.Margin = new System.Windows.Forms.Padding(2);
  4416. this.btnUpdate.Name = "btnUpdate";
  4417. this.btnUpdate.Size = new System.Drawing.Size(197, 31);
  4418. this.btnUpdate.TabIndex = 57;
  4419. this.btnUpdate.Text = "Check for update";
  4420. this.btnUpdate.UseVisualStyleBackColor = false;
  4421. this.btnUpdate.Click += new System.EventHandler(this.btnUpdate_Click);
  4422. //
  4423. // btnResetConfig
  4424. //
  4425. this.btnResetConfig.BackColor = System.Drawing.Color.DodgerBlue;
  4426. this.btnResetConfig.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  4427. this.btnResetConfig.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  4428. this.btnResetConfig.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  4429. this.btnResetConfig.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  4430. this.btnResetConfig.ForeColor = System.Drawing.Color.White;
  4431. this.btnResetConfig.Location = new System.Drawing.Point(31, 506);
  4432. this.btnResetConfig.Margin = new System.Windows.Forms.Padding(2);
  4433. this.btnResetConfig.Name = "btnResetConfig";
  4434. this.btnResetConfig.Size = new System.Drawing.Size(197, 31);
  4435. this.btnResetConfig.TabIndex = 56;
  4436. this.btnResetConfig.Text = "Reset configuration";
  4437. this.btnResetConfig.UseVisualStyleBackColor = false;
  4438. this.btnResetConfig.Click += new System.EventHandler(this.btnResetConfig_Click);
  4439. //
  4440. // lblTheming
  4441. //
  4442. this.lblTheming.AutoSize = true;
  4443. this.lblTheming.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4444. this.lblTheming.ForeColor = System.Drawing.Color.DodgerBlue;
  4445. this.lblTheming.Location = new System.Drawing.Point(11, 99);
  4446. this.lblTheming.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  4447. this.lblTheming.Name = "lblTheming";
  4448. this.lblTheming.Size = new System.Drawing.Size(192, 28);
  4449. this.lblTheming.TabIndex = 55;
  4450. this.lblTheming.Tag = "themeable";
  4451. this.lblTheming.Text = "Choose your theme";
  4452. //
  4453. // helpTipsToggle
  4454. //
  4455. this.helpTipsToggle.Location = new System.Drawing.Point(14, 51);
  4456. this.helpTipsToggle.Margin = new System.Windows.Forms.Padding(2);
  4457. this.helpTipsToggle.Name = "helpTipsToggle";
  4458. this.helpTipsToggle.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4459. this.helpTipsToggle.OffForeColor = System.Drawing.Color.White;
  4460. this.helpTipsToggle.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4461. this.helpTipsToggle.OnForeColor = System.Drawing.Color.White;
  4462. this.helpTipsToggle.OnText = "Show Help Messages";
  4463. this.helpTipsToggle.Size = new System.Drawing.Size(319, 31);
  4464. this.helpTipsToggle.TabIndex = 70;
  4465. this.helpTipsToggle.Tag = "themeable";
  4466. this.helpTipsToggle.CheckedChanged += new Optimizer.ToggleSwitch.CheckedChangedDelegate(this.helpTipsToggle_CheckedChanged);
  4467. //
  4468. // quickAccessToggle
  4469. //
  4470. this.quickAccessToggle.Location = new System.Drawing.Point(14, 16);
  4471. this.quickAccessToggle.Margin = new System.Windows.Forms.Padding(2);
  4472. this.quickAccessToggle.Name = "quickAccessToggle";
  4473. this.quickAccessToggle.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4474. this.quickAccessToggle.OffForeColor = System.Drawing.Color.White;
  4475. this.quickAccessToggle.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4476. this.quickAccessToggle.OnForeColor = System.Drawing.Color.White;
  4477. this.quickAccessToggle.OnText = "Show Quick Access Menu";
  4478. this.quickAccessToggle.Size = new System.Drawing.Size(319, 31);
  4479. this.quickAccessToggle.TabIndex = 64;
  4480. this.quickAccessToggle.Tag = "themeable";
  4481. this.quickAccessToggle.CheckedChanged += new Optimizer.ToggleSwitch.CheckedChangedDelegate(this.quickAccessToggle_CheckedChanged);
  4482. //
  4483. // defineCommandDialog
  4484. //
  4485. this.defineCommandDialog.Filter = "Executables [*.exe]|*.exe";
  4486. this.defineCommandDialog.Title = "Optimizer";
  4487. this.defineCommandDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.DefineCmd_FileOk);
  4488. //
  4489. // defineProgramDialog
  4490. //
  4491. this.defineProgramDialog.Filter = "Executables [*.exe]|*.exe";
  4492. this.defineProgramDialog.Title = "Optimizer";
  4493. this.defineProgramDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.DefineProgramDialog_FileOk);
  4494. //
  4495. // defineFolderDialog
  4496. //
  4497. this.defineFolderDialog.Description = "Optimizer";
  4498. //
  4499. // defineFileDialog
  4500. //
  4501. this.defineFileDialog.Filter = "All files [*.*]|*.*";
  4502. this.defineFileDialog.Title = "Optimizer";
  4503. this.defineFileDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.DefineFileDialog_FileOk);
  4504. //
  4505. // DefineProgramIconDialog
  4506. //
  4507. this.DefineProgramIconDialog.Filter = "Icon [*.ico]|*.ico|Executable [*.exe]|*.exe";
  4508. this.DefineProgramIconDialog.Title = "Optimizer";
  4509. this.DefineProgramIconDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.DefineProgramIconDialog_FileOk);
  4510. //
  4511. // DefineFolderIconDialog
  4512. //
  4513. this.DefineFolderIconDialog.Filter = "Icon [*.ico]|*.ico|Executable [*.exe]|*.exe";
  4514. this.DefineFolderIconDialog.Title = "Optimizer";
  4515. this.DefineFolderIconDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.DefineFolderIconDialog_FileOk);
  4516. //
  4517. // DefineURLIconDialog
  4518. //
  4519. this.DefineURLIconDialog.Filter = "Icon [*.ico]|*.ico|Executable [*.exe]|*.exe";
  4520. this.DefineURLIconDialog.Title = "Optimizer";
  4521. this.DefineURLIconDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.DefineURLIconDialog_FileOk);
  4522. //
  4523. // DefineFileIconDialog
  4524. //
  4525. this.DefineFileIconDialog.Filter = "Icon [*.ico]|*.ico|Executable [*.exe]|*.exe";
  4526. this.DefineFileIconDialog.Title = "Optimizer";
  4527. this.DefineFileIconDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.DefineFileIconDialog_FileOk);
  4528. //
  4529. // DefineCommandIconDialog
  4530. //
  4531. this.DefineCommandIconDialog.Filter = "Icon [*.ico]|*.ico|Executable [*.exe]|*.exe";
  4532. this.DefineCommandIconDialog.Title = "Optimizer";
  4533. this.DefineCommandIconDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.DefineCommandIconDialog_FileOk);
  4534. //
  4535. // ExportDialog
  4536. //
  4537. this.ExportDialog.Filter = "Text [*.txt]|*.txt";
  4538. this.ExportDialog.Title = "Optimizer";
  4539. //
  4540. // launcherMenu
  4541. //
  4542. this.launcherMenu.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  4543. this.launcherMenu.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4544. this.launcherMenu.ImageScalingSize = new System.Drawing.Size(20, 20);
  4545. this.launcherMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  4546. this.trayStartup,
  4547. this.trayCleaner,
  4548. this.trayPinger,
  4549. this.trayHosts,
  4550. this.trayAD,
  4551. this.toolStripSeparator1,
  4552. this.trayRestartExplorer,
  4553. this.trayExit});
  4554. this.launcherMenu.Name = "launcherMenu";
  4555. this.launcherMenu.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
  4556. this.launcherMenu.Size = new System.Drawing.Size(205, 192);
  4557. //
  4558. // trayStartup
  4559. //
  4560. this.trayStartup.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4561. this.trayStartup.ForeColor = System.Drawing.Color.White;
  4562. this.trayStartup.Image = ((System.Drawing.Image)(resources.GetObject("trayStartup.Image")));
  4563. this.trayStartup.Name = "trayStartup";
  4564. this.trayStartup.Size = new System.Drawing.Size(204, 26);
  4565. this.trayStartup.Text = "Startup Manager";
  4566. this.trayStartup.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal;
  4567. this.trayStartup.Click += new System.EventHandler(this.startupItem_Click);
  4568. //
  4569. // trayCleaner
  4570. //
  4571. this.trayCleaner.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4572. this.trayCleaner.ForeColor = System.Drawing.Color.White;
  4573. this.trayCleaner.Image = ((System.Drawing.Image)(resources.GetObject("trayCleaner.Image")));
  4574. this.trayCleaner.Name = "trayCleaner";
  4575. this.trayCleaner.Size = new System.Drawing.Size(204, 26);
  4576. this.trayCleaner.Text = "PC Cleaner";
  4577. this.trayCleaner.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal;
  4578. this.trayCleaner.Click += new System.EventHandler(this.cleanerItem_Click);
  4579. //
  4580. // trayPinger
  4581. //
  4582. this.trayPinger.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4583. this.trayPinger.ForeColor = System.Drawing.Color.White;
  4584. this.trayPinger.Image = ((System.Drawing.Image)(resources.GetObject("trayPinger.Image")));
  4585. this.trayPinger.Name = "trayPinger";
  4586. this.trayPinger.Size = new System.Drawing.Size(204, 26);
  4587. this.trayPinger.Text = "Pinger Tool";
  4588. this.trayPinger.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal;
  4589. this.trayPinger.Click += new System.EventHandler(this.pingerItem_Click);
  4590. //
  4591. // trayHosts
  4592. //
  4593. this.trayHosts.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4594. this.trayHosts.ForeColor = System.Drawing.Color.White;
  4595. this.trayHosts.Image = ((System.Drawing.Image)(resources.GetObject("trayHosts.Image")));
  4596. this.trayHosts.Name = "trayHosts";
  4597. this.trayHosts.Size = new System.Drawing.Size(204, 26);
  4598. this.trayHosts.Text = "HOSTS Editor";
  4599. this.trayHosts.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal;
  4600. this.trayHosts.Click += new System.EventHandler(this.hostsItem_Click);
  4601. //
  4602. // trayAD
  4603. //
  4604. this.trayAD.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4605. this.trayAD.ForeColor = System.Drawing.Color.White;
  4606. this.trayAD.Image = ((System.Drawing.Image)(resources.GetObject("trayAD.Image")));
  4607. this.trayAD.Name = "trayAD";
  4608. this.trayAD.Size = new System.Drawing.Size(204, 26);
  4609. this.trayAD.Text = "Apps Downloader";
  4610. this.trayAD.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal;
  4611. this.trayAD.Click += new System.EventHandler(this.appsItem_Click);
  4612. //
  4613. // toolStripSeparator1
  4614. //
  4615. this.toolStripSeparator1.BackColor = System.Drawing.Color.DodgerBlue;
  4616. this.toolStripSeparator1.ForeColor = System.Drawing.Color.DodgerBlue;
  4617. this.toolStripSeparator1.Name = "toolStripSeparator1";
  4618. this.toolStripSeparator1.Size = new System.Drawing.Size(201, 6);
  4619. this.toolStripSeparator1.Tag = "";
  4620. //
  4621. // trayRestartExplorer
  4622. //
  4623. this.trayRestartExplorer.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4624. this.trayRestartExplorer.ForeColor = System.Drawing.Color.White;
  4625. this.trayRestartExplorer.Image = ((System.Drawing.Image)(resources.GetObject("trayRestartExplorer.Image")));
  4626. this.trayRestartExplorer.Name = "trayRestartExplorer";
  4627. this.trayRestartExplorer.Size = new System.Drawing.Size(204, 26);
  4628. this.trayRestartExplorer.Text = "Restart Explorer";
  4629. this.trayRestartExplorer.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal;
  4630. this.trayRestartExplorer.Click += new System.EventHandler(this.restartExpolorerItem_Click);
  4631. //
  4632. // trayExit
  4633. //
  4634. this.trayExit.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4635. this.trayExit.ForeColor = System.Drawing.Color.White;
  4636. this.trayExit.Image = ((System.Drawing.Image)(resources.GetObject("trayExit.Image")));
  4637. this.trayExit.Name = "trayExit";
  4638. this.trayExit.Size = new System.Drawing.Size(204, 26);
  4639. this.trayExit.Text = "Exit";
  4640. this.trayExit.Click += new System.EventHandler(this.exitItem_Click);
  4641. //
  4642. // launcherIcon
  4643. //
  4644. this.launcherIcon.ContextMenuStrip = this.launcherMenu;
  4645. this.launcherIcon.Icon = ((System.Drawing.Icon)(resources.GetObject("launcherIcon.Icon")));
  4646. this.launcherIcon.Text = "Optimizer";
  4647. this.launcherIcon.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.launcherIcon_MouseDoubleClick);
  4648. //
  4649. // helpBox
  4650. //
  4651. this.helpBox.IsBalloon = true;
  4652. this.helpBox.ToolTipIcon = System.Windows.Forms.ToolTipIcon.Info;
  4653. this.helpBox.UseAnimation = false;
  4654. this.helpBox.UseFading = false;
  4655. //
  4656. // smallerTaskbarSw
  4657. //
  4658. this.smallerTaskbarSw.Location = new System.Drawing.Point(14, 121);
  4659. this.smallerTaskbarSw.Margin = new System.Windows.Forms.Padding(2);
  4660. this.smallerTaskbarSw.Name = "smallerTaskbarSw";
  4661. this.smallerTaskbarSw.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4662. this.smallerTaskbarSw.OffForeColor = System.Drawing.Color.White;
  4663. this.smallerTaskbarSw.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4664. this.smallerTaskbarSw.OnForeColor = System.Drawing.Color.White;
  4665. this.smallerTaskbarSw.OnText = "Make Taskbar smaller";
  4666. this.smallerTaskbarSw.Size = new System.Drawing.Size(319, 31);
  4667. this.smallerTaskbarSw.TabIndex = 42;
  4668. this.smallerTaskbarSw.Tag = "themeable";
  4669. //
  4670. // MainForm
  4671. //
  4672. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  4673. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  4674. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  4675. this.ClientSize = new System.Drawing.Size(939, 705);
  4676. this.Controls.Add(this.bpanel);
  4677. this.Controls.Add(this.tpanel);
  4678. this.DoubleBuffered = true;
  4679. this.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4680. this.ForeColor = System.Drawing.Color.White;
  4681. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  4682. this.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  4683. this.MinimumSize = new System.Drawing.Size(955, 744);
  4684. this.Name = "MainForm";
  4685. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  4686. this.Text = "Optimizer";
  4687. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Main_FormClosing);
  4688. this.Load += new System.EventHandler(this.Main_Load);
  4689. this.tpanel.ResumeLayout(false);
  4690. this.tpanel.PerformLayout();
  4691. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  4692. this.bpanel.ResumeLayout(false);
  4693. this.tabCollection.ResumeLayout(false);
  4694. this.universalTab.ResumeLayout(false);
  4695. this.universalTab.PerformLayout();
  4696. this.windows11Tab.ResumeLayout(false);
  4697. this.windows10Tab.ResumeLayout(false);
  4698. this.windows10Tab.PerformLayout();
  4699. this.windows8Tab.ResumeLayout(false);
  4700. this.windows8Tab.PerformLayout();
  4701. this.modernAppsTab.ResumeLayout(false);
  4702. this.modernAppsTab.PerformLayout();
  4703. this.panelModernAppsList.ResumeLayout(false);
  4704. this.startupTab.ResumeLayout(false);
  4705. this.startupTab.PerformLayout();
  4706. this.panel3.ResumeLayout(false);
  4707. this.appsTab.ResumeLayout(false);
  4708. this.appsTab.PerformLayout();
  4709. this.panel10.ResumeLayout(false);
  4710. this.panel10.PerformLayout();
  4711. this.panelCommonApps.ResumeLayout(false);
  4712. this.panelCommonApps.PerformLayout();
  4713. this.cleanerTab.ResumeLayout(false);
  4714. this.cleanerTab.PerformLayout();
  4715. this.panel1.ResumeLayout(false);
  4716. this.panel1.PerformLayout();
  4717. this.pingerTab.ResumeLayout(false);
  4718. this.pingerTab.PerformLayout();
  4719. this.panel7.ResumeLayout(false);
  4720. this.hostsEditorTab.ResumeLayout(false);
  4721. this.hostsEditorTab.PerformLayout();
  4722. this.panel4.ResumeLayout(false);
  4723. this.panel4.PerformLayout();
  4724. this.panelList.ResumeLayout(false);
  4725. this.registryFixerTab.ResumeLayout(false);
  4726. this.registryFixerTab.PerformLayout();
  4727. this.panel2.ResumeLayout(false);
  4728. this.panel2.PerformLayout();
  4729. this.integratorTab.ResumeLayout(false);
  4730. this.synapse.ResumeLayout(false);
  4731. this.integratorInfoTab.ResumeLayout(false);
  4732. this.integratorInfoTab.PerformLayout();
  4733. this.tabPage8.ResumeLayout(false);
  4734. this.tabPage8.PerformLayout();
  4735. this.itemnamegroup.ResumeLayout(false);
  4736. this.itemnamegroup.PerformLayout();
  4737. this.security.ResumeLayout(false);
  4738. this.security.PerformLayout();
  4739. this.itemposition.ResumeLayout(false);
  4740. this.itemposition.PerformLayout();
  4741. this.icontoaddgroup.ResumeLayout(false);
  4742. this.icontoaddgroup.PerformLayout();
  4743. this.itemtoaddgroup.ResumeLayout(false);
  4744. this.itemtoaddgroup.PerformLayout();
  4745. this.itemtype.ResumeLayout(false);
  4746. this.itemtype.PerformLayout();
  4747. this.tabPage9.ResumeLayout(false);
  4748. this.tabPage9.PerformLayout();
  4749. this.panel5.ResumeLayout(false);
  4750. this.tabPage10.ResumeLayout(false);
  4751. this.tabPage10.PerformLayout();
  4752. this.tabPage11.ResumeLayout(false);
  4753. this.tabPage11.PerformLayout();
  4754. this.panel6.ResumeLayout(false);
  4755. this.optionsTab.ResumeLayout(false);
  4756. this.optionsTab.PerformLayout();
  4757. ((System.ComponentModel.ISupportInitialize)(this.pictureBox85)).EndInit();
  4758. this.panel9.ResumeLayout(false);
  4759. this.panel9.PerformLayout();
  4760. ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
  4761. ((System.ComponentModel.ISupportInitialize)(this.pictureBox89)).EndInit();
  4762. ((System.ComponentModel.ISupportInitialize)(this.pictureBox88)).EndInit();
  4763. ((System.ComponentModel.ISupportInitialize)(this.pictureBox87)).EndInit();
  4764. ((System.ComponentModel.ISupportInitialize)(this.pictureBox86)).EndInit();
  4765. this.panel8.ResumeLayout(false);
  4766. this.panel8.PerformLayout();
  4767. ((System.ComponentModel.ISupportInitialize)(this.picFOSS)).EndInit();
  4768. ((System.ComponentModel.ISupportInitialize)(this.picFSF)).EndInit();
  4769. this.launcherMenu.ResumeLayout(false);
  4770. this.ResumeLayout(false);
  4771. }
  4772. #endregion
  4773. private System.Windows.Forms.Panel tpanel;
  4774. private System.Windows.Forms.Label txtBitness;
  4775. private System.Windows.Forms.Label txtOS;
  4776. private System.Windows.Forms.Label txtVersion;
  4777. private System.Windows.Forms.PictureBox pictureBox1;
  4778. private System.Windows.Forms.Label label2;
  4779. private System.Windows.Forms.Panel bpanel;
  4780. private System.Windows.Forms.TabControl tabCollection;
  4781. private System.Windows.Forms.TabPage universalTab;
  4782. private System.Windows.Forms.Button restartButton;
  4783. private System.Windows.Forms.TabPage windows10Tab;
  4784. private System.Windows.Forms.Button restartButton10;
  4785. private System.Windows.Forms.TabPage windows8Tab;
  4786. private System.Windows.Forms.Button restartButton8;
  4787. private System.Windows.Forms.TabPage cleanerTab;
  4788. private ColoredCheckBox checkTemp;
  4789. private ColoredCheckBox checkSelectAll;
  4790. private System.Windows.Forms.Button cleanDriveB;
  4791. private ColoredCheckBox checkMediaCache;
  4792. private ColoredCheckBox checkLogs;
  4793. private ColoredCheckBox checkBin;
  4794. private ColoredCheckBox checkMiniDumps;
  4795. private System.Windows.Forms.Panel panel1;
  4796. private System.Windows.Forms.TabPage startupTab;
  4797. private System.Windows.Forms.Label startupTitle;
  4798. private System.Windows.Forms.Button removeStartupItemB;
  4799. private System.Windows.Forms.Label cleanerTitle;
  4800. private System.Windows.Forms.TabPage registryFixerTab;
  4801. private System.Windows.Forms.Label registryTitle;
  4802. private System.Windows.Forms.Button regFixB;
  4803. private System.Windows.Forms.Panel panel2;
  4804. private ColoredCheckBox checkRegistryEditor;
  4805. private ColoredCheckBox checkEnableAll;
  4806. private ColoredCheckBox checkContextMenu;
  4807. private ColoredCheckBox checkTaskManager;
  4808. private ColoredCheckBox checkCommandPrompt;
  4809. private ColoredCheckBox checkFirewall;
  4810. private ColoredCheckBox checkRunDialog;
  4811. private ColoredCheckBox checkFolderOptions;
  4812. private ColoredCheckBox checkControlPanel;
  4813. private ColoredCheckBox checkRestartExplorer;
  4814. private System.Windows.Forms.Panel panel3;
  4815. private System.Windows.Forms.Label regLbl;
  4816. private System.Windows.Forms.ListView listStartupItems;
  4817. private System.Windows.Forms.ColumnHeader columnHeader1;
  4818. private System.Windows.Forms.ColumnHeader columnHeader2;
  4819. private System.Windows.Forms.Button refreshStartupB;
  4820. private System.Windows.Forms.Button locateFileB;
  4821. private System.Windows.Forms.ColumnHeader columnHeader3;
  4822. private System.Windows.Forms.TabPage hostsEditorTab;
  4823. private System.Windows.Forms.Label hostsTitle;
  4824. private System.Windows.Forms.LinkLabel linkLocate;
  4825. private System.Windows.Forms.LinkLabel linkAdvancedEdit;
  4826. private System.Windows.Forms.LinkLabel linkRestoreDefault;
  4827. private System.Windows.Forms.ListBox listHostEntries;
  4828. private System.Windows.Forms.Panel panel4;
  4829. private System.Windows.Forms.Button removeAllHostsB;
  4830. private System.Windows.Forms.Button refreshHostsB;
  4831. private System.Windows.Forms.Button removeHostB;
  4832. private System.Windows.Forms.TextBox txtDomain;
  4833. private System.Windows.Forms.Label lblDomain;
  4834. private System.Windows.Forms.Label lblIP;
  4835. private System.Windows.Forms.Button addHostB;
  4836. private System.Windows.Forms.TextBox txtIP;
  4837. private ColoredCheckBox checkErrorReports;
  4838. private System.Windows.Forms.TabPage integratorTab;
  4839. private System.Windows.Forms.TabControl synapse;
  4840. private System.Windows.Forms.TabPage integratorInfoTab;
  4841. private System.Windows.Forms.TabPage tabPage8;
  4842. private System.Windows.Forms.TabPage tabPage9;
  4843. private System.Windows.Forms.TabPage tabPage10;
  4844. private System.Windows.Forms.TabPage tabPage11;
  4845. private System.Windows.Forms.Label integrator7;
  4846. private System.Windows.Forms.Label integrator6;
  4847. private System.Windows.Forms.Label integrator5;
  4848. private System.Windows.Forms.Label integrator4;
  4849. private System.Windows.Forms.Label integrator3;
  4850. private System.Windows.Forms.Label integrator2;
  4851. private System.Windows.Forms.Label integrator1;
  4852. private System.Windows.Forms.Button button48;
  4853. private System.Windows.Forms.TextBox txtRunKeyword;
  4854. private System.Windows.Forms.Label ccKeywordL;
  4855. private System.Windows.Forms.TextBox txtRunFile;
  4856. private System.Windows.Forms.Label ccFileL;
  4857. private System.Windows.Forms.Label ccL;
  4858. private System.Windows.Forms.Button btnCreateCustomCommand;
  4859. internal System.Windows.Forms.OpenFileDialog defineCommandDialog;
  4860. private System.Windows.Forms.Button PMB;
  4861. private System.Windows.Forms.Button DSB;
  4862. private System.Windows.Forms.Button STB;
  4863. private System.Windows.Forms.Button SSB;
  4864. private System.Windows.Forms.Button WAB;
  4865. private System.Windows.Forms.Label readyMenusL;
  4866. private System.Windows.Forms.ListBox listDesktopItems;
  4867. private System.Windows.Forms.Label removeIntegratorItemsL;
  4868. private System.Windows.Forms.Button refreshIIB;
  4869. private System.Windows.Forms.Button removeDIB;
  4870. private System.Windows.Forms.Button removeAllIIB;
  4871. private System.Windows.Forms.GroupBox itemtype;
  4872. private ColoredRadioButton radioCommand;
  4873. private ColoredRadioButton radioProgram;
  4874. private ColoredRadioButton radioFile;
  4875. private ColoredRadioButton radioFolder;
  4876. private ColoredRadioButton radioLink;
  4877. private System.Windows.Forms.Label addItemL;
  4878. private System.Windows.Forms.GroupBox icontoaddgroup;
  4879. private ColoredCheckBox checkDefaultIcon;
  4880. private System.Windows.Forms.Button btnBrowseIcon;
  4881. private System.Windows.Forms.TextBox txtIcon;
  4882. private System.Windows.Forms.GroupBox itemtoaddgroup;
  4883. private System.Windows.Forms.Button btnBrowseItem;
  4884. private System.Windows.Forms.TextBox txtItem;
  4885. private System.Windows.Forms.GroupBox security;
  4886. private ColoredCheckBox checkShift;
  4887. private System.Windows.Forms.GroupBox itemposition;
  4888. private ColoredRadioButton radioTop;
  4889. private ColoredRadioButton radioMiddle;
  4890. private ColoredRadioButton radioBottom;
  4891. private System.Windows.Forms.GroupBox itemnamegroup;
  4892. private System.Windows.Forms.TextBox txtItemName;
  4893. private System.Windows.Forms.Button btnAddItem;
  4894. internal System.Windows.Forms.OpenFileDialog defineProgramDialog;
  4895. internal System.Windows.Forms.FolderBrowserDialog defineFolderDialog;
  4896. internal System.Windows.Forms.OpenFileDialog defineFileDialog;
  4897. internal System.Windows.Forms.OpenFileDialog DefineProgramIconDialog;
  4898. internal System.Windows.Forms.OpenFileDialog DefineFolderIconDialog;
  4899. internal System.Windows.Forms.OpenFileDialog DefineURLIconDialog;
  4900. internal System.Windows.Forms.OpenFileDialog DefineFileIconDialog;
  4901. internal System.Windows.Forms.OpenFileDialog DefineCommandIconDialog;
  4902. private System.Windows.Forms.Button findInRegB;
  4903. private System.Windows.Forms.Button RemoveOwnerB;
  4904. private System.Windows.Forms.Button AddOwnerB;
  4905. private System.Windows.Forms.TabPage optionsTab;
  4906. private System.Windows.Forms.RadioButton radioMinimal;
  4907. private System.Windows.Forms.RadioButton radioCaramel;
  4908. private System.Windows.Forms.RadioButton radioLime;
  4909. private System.Windows.Forms.RadioButton radioMagma;
  4910. private System.Windows.Forms.RadioButton radioOcean;
  4911. private System.Windows.Forms.RadioButton radioZerg;
  4912. private System.Windows.Forms.Label lblTheming;
  4913. private System.Windows.Forms.ListBox listCustomCommands;
  4914. private System.Windows.Forms.Label removeCCL;
  4915. private System.Windows.Forms.Button removeCCB;
  4916. private System.Windows.Forms.Button refreshCCB;
  4917. private System.Windows.Forms.Panel panel5;
  4918. private System.Windows.Forms.Panel panel6;
  4919. private System.Windows.Forms.Panel panelList;
  4920. private System.Windows.Forms.TabPage modernAppsTab;
  4921. private System.Windows.Forms.Label txtModernAppsTitle;
  4922. private System.Windows.Forms.Panel panelModernAppsList;
  4923. private System.Windows.Forms.CheckedListBox listModernApps;
  4924. private System.Windows.Forms.Button uninstallModernAppsButton;
  4925. private System.Windows.Forms.Button refreshModernAppsButton;
  4926. private System.Windows.Forms.Label txtUWP;
  4927. private ColoredCheckBox chkSelectAllModernApps;
  4928. private ToggleSwitch performanceSw;
  4929. private ToggleSwitch defenderSw;
  4930. private ToggleSwitch networkSw;
  4931. private ToggleSwitch mediaSharingSw;
  4932. private ToggleSwitch printSw;
  4933. private ToggleSwitch systemRestoreSw;
  4934. private ToggleSwitch officeTelemetrySw;
  4935. private ToggleSwitch telemetryTasksSw;
  4936. private ToggleSwitch superfetchSw;
  4937. private ToggleSwitch homegroupSw;
  4938. private ToggleSwitch reportingSw;
  4939. private ToggleSwitch oldMixerSw;
  4940. private ToggleSwitch gameBarSw;
  4941. private ToggleSwitch uODSw;
  4942. private ToggleSwitch sensorSw;
  4943. private ToggleSwitch privacySw;
  4944. private ToggleSwitch telemetryServicesSw;
  4945. private ToggleSwitch autoUpdatesSw;
  4946. private ToggleSwitch peopleSw;
  4947. private ToggleSwitch adsSw;
  4948. private ToggleSwitch colorBarSw;
  4949. private ToggleSwitch oldExplorerSw;
  4950. private ToggleSwitch xboxSw;
  4951. private ToggleSwitch cortanaSw;
  4952. private ToggleSwitch darkSw;
  4953. private ToggleSwitch spellSw;
  4954. private ToggleSwitch inkSw;
  4955. private ToggleSwitch driversSw;
  4956. private System.Windows.Forms.Button btnResetConfig;
  4957. private ToggleSwitch disableOneDriveSw;
  4958. private ToggleSwitch compatSw;
  4959. private System.Windows.Forms.Button btnUpdate;
  4960. private System.Windows.Forms.Button btnChangelog;
  4961. private ToggleSwitch faxSw;
  4962. private ToggleSwitch insiderSw;
  4963. private ToggleSwitch featuresSw;
  4964. private ToggleSwitch smartScreenSw;
  4965. private ColoredCheckBox chkReadOnly;
  4966. private System.Windows.Forms.Label lblLock;
  4967. private ToggleSwitch ccSw;
  4968. private ToggleSwitch stickySw;
  4969. private ToggleSwitch longPathsSw;
  4970. private ColoredCheckBox chkBlock;
  4971. private ToggleSwitch castSw;
  4972. private System.Windows.Forms.Button adblockBasic;
  4973. private System.Windows.Forms.Label lblAdblockSub;
  4974. private System.Windows.Forms.Label lblAdblock;
  4975. private System.Windows.Forms.Button adblockUlti;
  4976. private System.Windows.Forms.Button adblockP;
  4977. private System.Windows.Forms.Button adblockS;
  4978. private System.Windows.Forms.TabPage appsTab;
  4979. private System.Windows.Forms.Button btnDownloadApps;
  4980. private System.Windows.Forms.Label appsTitle;
  4981. private System.Windows.Forms.Label setDownDirLbl;
  4982. private System.Windows.Forms.TextBox txtDownloadFolder;
  4983. private System.Windows.Forms.Button changeDownDirB;
  4984. private System.Windows.Forms.Label txtDownloadStatus;
  4985. private System.Windows.Forms.Label bitPref;
  4986. private ColoredRadioButton c32;
  4987. private System.Windows.Forms.Button goToDownloadsB;
  4988. private System.Windows.Forms.LinkLabel linkWarnings;
  4989. private ColoredCheckBox cAutoInstall;
  4990. private ColoredCheckBox chkOnlyRemovable;
  4991. private ColoredProgress progressDownloader;
  4992. private System.Windows.Forms.Button btnGetFeed;
  4993. private System.Windows.Forms.Panel panelCommonApps;
  4994. private ToggleSwitch actionSw;
  4995. private System.Windows.Forms.LinkLabel l2;
  4996. private System.Windows.Forms.Panel groupSystemTools;
  4997. private System.Windows.Forms.Button btnViewLog;
  4998. private System.Windows.Forms.Label lblTroubleshoot;
  4999. private System.Windows.Forms.Label lblUpdating;
  5000. private System.Windows.Forms.Button btnOpenConf;
  5001. private System.Windows.Forms.TabPage pingerTab;
  5002. private System.Windows.Forms.Label pingerTitle;
  5003. private System.Windows.Forms.TextBox txtPingInput;
  5004. private System.Windows.Forms.Label lblPinger;
  5005. private System.Windows.Forms.Button btnPing;
  5006. private System.Windows.Forms.Label lblFootprint;
  5007. private System.Windows.Forms.Label lblPretext;
  5008. private System.Windows.Forms.Button btnShodan;
  5009. private System.Windows.Forms.Label lblResults;
  5010. private System.Windows.Forms.ListBox listPingResults;
  5011. private System.Windows.Forms.Panel panel7;
  5012. private System.Windows.Forms.Button copyIPB;
  5013. private System.Windows.Forms.Button copyB;
  5014. private System.Windows.Forms.Button btnExport;
  5015. internal System.Windows.Forms.SaveFileDialog ExportDialog;
  5016. private System.Windows.Forms.ContextMenuStrip launcherMenu;
  5017. private System.Windows.Forms.NotifyIcon launcherIcon;
  5018. private System.Windows.Forms.ToolStripMenuItem trayStartup;
  5019. private System.Windows.Forms.ToolStripMenuItem trayCleaner;
  5020. private System.Windows.Forms.ToolStripMenuItem trayPinger;
  5021. private System.Windows.Forms.ToolStripMenuItem trayHosts;
  5022. private System.Windows.Forms.ToolStripMenuItem trayAD;
  5023. private System.Windows.Forms.ToolStripMenuItem trayExit;
  5024. private ToggleSwitch quickAccessToggle;
  5025. private System.Windows.Forms.PictureBox picFSF;
  5026. private System.Windows.Forms.LinkLabel linkLabel5;
  5027. private System.Windows.Forms.LinkLabel linkLabel6;
  5028. private System.Windows.Forms.PictureBox picFOSS;
  5029. private System.Windows.Forms.Label lblLab;
  5030. private System.Windows.Forms.LinkLabel linkUpdate;
  5031. private System.Windows.Forms.Label lblUpdateDisabled;
  5032. private System.Windows.Forms.ToolStripMenuItem trayRestartExplorer;
  5033. private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
  5034. private System.Windows.Forms.Button flushCacheB;
  5035. private ColoredRadioButton c64;
  5036. private System.Windows.Forms.Panel panel10;
  5037. private ToggleSwitch helpTipsToggle;
  5038. private Button backupStartupB;
  5039. private Button restoreStartupB;
  5040. private TextBox txtBackupTitle;
  5041. private Label lblBackupTitle;
  5042. private Button doBackup;
  5043. private Button cancelBackup;
  5044. private Label languagesL;
  5045. private Panel panel8;
  5046. private PictureBox pictureBox85;
  5047. private Panel panel9;
  5048. private PictureBox pictureBox87;
  5049. private PictureBox pictureBox86;
  5050. private ToolTip helpBox;
  5051. private PictureBox pictureBox88;
  5052. private ColoredRadioButton radioHellenic;
  5053. private ColoredRadioButton radioEnglish;
  5054. private ColoredRadioButton radioRussian;
  5055. private PictureBox pictureBox89;
  5056. private ColoredRadioButton radioTurkish;
  5057. private Label txtNetFw;
  5058. private Panel groupCoding;
  5059. private Panel groupInternet;
  5060. private Panel groupSoundVideo;
  5061. private Label lblVideoSound;
  5062. private Label lblCoding;
  5063. private Label lblSystemTools;
  5064. private Label lblInternet;
  5065. private Label txtFeedError;
  5066. private ColoredRadioButton radioGerman;
  5067. private PictureBox pictureBox2;
  5068. private TabPage windows11Tab;
  5069. private ToggleSwitch leftTaskbarSw;
  5070. private ToggleSwitch snapAssistSw;
  5071. private ToggleSwitch widgetsSw;
  5072. private ToggleSwitch smallerTaskbarSw;
  5073. }
  5074. }