MainForm.Designer.cs 216 KB

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