MainForm.Designer.cs 220 KB

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