MainForm.Designer.cs 213 KB

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