MainForm.Designer.cs 301 KB

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