MainForm.Designer.cs 196 KB

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