MainForm.Designer.cs 217 KB

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