MainForm.Designer.cs 234 KB

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