MainForm.Designer.cs 281 KB

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