MainForm.Designer.cs 301 KB

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