2
0

MainForm.Designer.cs 354 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980
  1. using System.Windows.Forms;
  2. namespace Optimizer
  3. {
  4. partial class MainForm
  5. {
  6. /// <summary>
  7. /// Required designer variable.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// Clean up any resources being used.
  12. /// </summary>
  13. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region Windows Form Designer generated code
  23. /// <summary>
  24. /// Required method for Designer support - do not modify
  25. /// the contents of this method with the code editor.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.components = new System.ComponentModel.Container();
  30. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
  31. System.Windows.Forms.TreeNode treeNode1 = new System.Windows.Forms.TreeNode("Processors", 0, 0);
  32. System.Windows.Forms.TreeNode treeNode2 = new System.Windows.Forms.TreeNode("Memory", 1, 1);
  33. System.Windows.Forms.TreeNode treeNode3 = new System.Windows.Forms.TreeNode("Graphics", 2, 2);
  34. System.Windows.Forms.TreeNode treeNode4 = new System.Windows.Forms.TreeNode("Motherboard", 3, 3);
  35. System.Windows.Forms.TreeNode treeNode5 = new System.Windows.Forms.TreeNode("Storage", 4, 4);
  36. System.Windows.Forms.TreeNode treeNode6 = new System.Windows.Forms.TreeNode("Network Adapters", 5, 5);
  37. System.Windows.Forms.TreeNode treeNode7 = new System.Windows.Forms.TreeNode("Audio", 6, 6);
  38. System.Windows.Forms.TreeNode treeNode8 = new System.Windows.Forms.TreeNode("Peripherals", 7, 7);
  39. this.tpanel = new System.Windows.Forms.Panel();
  40. this.picLab = new System.Windows.Forms.PictureBox();
  41. this.picUpdate = new System.Windows.Forms.PictureBox();
  42. this.txtNetFw = new System.Windows.Forms.Label();
  43. this.txtBitness = new System.Windows.Forms.Label();
  44. this.txtOS = new System.Windows.Forms.Label();
  45. this.txtVersion = new System.Windows.Forms.Label();
  46. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  47. this.label2 = new System.Windows.Forms.Label();
  48. this.bpanel = new System.Windows.Forms.Panel();
  49. this.tabCollection = new Optimizer.MoonTabs();
  50. this.universalTab = new System.Windows.Forms.TabPage();
  51. this.chromeTelemetrySw = new Optimizer.ToggleCard();
  52. this.ffTelemetrySw = new Optimizer.ToggleCard();
  53. this.vsSw = new Optimizer.ToggleCard();
  54. this.reportingSw = new Optimizer.ToggleCard();
  55. this.systemRestoreSw = new Optimizer.ToggleCard();
  56. this.officeTelemetrySw = new Optimizer.ToggleCard();
  57. this.smartScreenSw = new Optimizer.ToggleCard();
  58. this.networkSw = new Optimizer.ToggleCard();
  59. this.telemetryTasksSw = new Optimizer.ToggleCard();
  60. this.defenderSw = new Optimizer.ToggleCard();
  61. this.homegroupSw = new Optimizer.ToggleCard();
  62. this.stickySw = new Optimizer.ToggleCard();
  63. this.compatSw = new Optimizer.ToggleCard();
  64. this.mediaSharingSw = new Optimizer.ToggleCard();
  65. this.printSw = new Optimizer.ToggleCard();
  66. this.superfetchSw = new Optimizer.ToggleCard();
  67. this.faxSw = new Optimizer.ToggleCard();
  68. this.performanceSw = new Optimizer.ToggleCard();
  69. this.windows10Tab = new System.Windows.Forms.TabPage();
  70. this.gameModeSw = new Optimizer.ToggleCard();
  71. this.featuresSw = new Optimizer.ToggleCard();
  72. this.oldMixerSw = new Optimizer.ToggleCard();
  73. this.insiderSw = new Optimizer.ToggleCard();
  74. this.castSw = new Optimizer.ToggleCard();
  75. this.gameBarSw = new Optimizer.ToggleCard();
  76. this.sensorSw = new Optimizer.ToggleCard();
  77. this.ccSw = new Optimizer.ToggleCard();
  78. this.cortanaSw = new Optimizer.ToggleCard();
  79. this.privacySw = new Optimizer.ToggleCard();
  80. this.driversSw = new Optimizer.ToggleCard();
  81. this.telemetryServicesSw = new Optimizer.ToggleCard();
  82. this.autoUpdatesSw = new Optimizer.ToggleCard();
  83. this.tpmSw = new Optimizer.ToggleCard();
  84. this.xboxSw = new Optimizer.ToggleCard();
  85. this.inkSw = new Optimizer.ToggleCard();
  86. this.spellSw = new Optimizer.ToggleCard();
  87. this.longPathsSw = new Optimizer.ToggleCard();
  88. this.uODSw = new Optimizer.ToggleCard();
  89. this.peopleSw = new Optimizer.ToggleCard();
  90. this.oldExplorerSw = new Optimizer.ToggleCard();
  91. this.adsSw = new Optimizer.ToggleCard();
  92. this.panelWin11Tweaks = new System.Windows.Forms.Panel();
  93. this.compactModeSw = new Optimizer.ToggleCard();
  94. this.classicRibbonSw = new Optimizer.ToggleCard();
  95. this.snapAssistSw = new Optimizer.ToggleCard();
  96. this.widgetsSw = new Optimizer.ToggleCard();
  97. this.leftTaskbarSw = new Optimizer.ToggleCard();
  98. this.classicContextSw = new Optimizer.ToggleCard();
  99. this.chatSw = new Optimizer.ToggleCard();
  100. this.smallerTaskbarSw = new Optimizer.ToggleCard();
  101. this.windows8Tab = new System.Windows.Forms.TabPage();
  102. this.disableOneDriveSw = new Optimizer.ToggleCard();
  103. this.modernAppsTab = new System.Windows.Forms.TabPage();
  104. this.chkOnlyRemovable = new Optimizer.MoonCheck();
  105. this.chkSelectAllModernApps = new Optimizer.MoonCheck();
  106. this.uninstallModernAppsButton = new System.Windows.Forms.Button();
  107. this.refreshModernAppsButton = new System.Windows.Forms.Button();
  108. this.txtModernAppsTitle = new System.Windows.Forms.Label();
  109. this.panelModernAppsList = new System.Windows.Forms.Panel();
  110. this.listModernApps = new Optimizer.MoonCheckList();
  111. this.startupTab = new System.Windows.Forms.TabPage();
  112. this.cancelBackup = new System.Windows.Forms.Button();
  113. this.doBackup = new System.Windows.Forms.Button();
  114. this.txtBackupTitle = new System.Windows.Forms.TextBox();
  115. this.lblBackupTitle = new System.Windows.Forms.Label();
  116. this.restoreStartupB = new System.Windows.Forms.Button();
  117. this.backupStartupB = new System.Windows.Forms.Button();
  118. this.findInRegB = new System.Windows.Forms.Button();
  119. this.locateFileB = new System.Windows.Forms.Button();
  120. this.refreshStartupB = new System.Windows.Forms.Button();
  121. this.panel3 = new System.Windows.Forms.Panel();
  122. this.listStartupItems = new System.Windows.Forms.ListView();
  123. this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  124. this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  125. this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  126. this.removeStartupItemB = new System.Windows.Forms.Button();
  127. this.startupTitle = new System.Windows.Forms.Label();
  128. this.appsTab = new System.Windows.Forms.TabPage();
  129. this.txtFeedError = new System.Windows.Forms.Label();
  130. this.lblVideoSound = new System.Windows.Forms.Label();
  131. this.lblCoding = new System.Windows.Forms.Label();
  132. this.lblSystemTools = new System.Windows.Forms.Label();
  133. this.groupSoundVideo = new System.Windows.Forms.Panel();
  134. this.lblInternet = new System.Windows.Forms.Label();
  135. this.groupCoding = new System.Windows.Forms.Panel();
  136. this.groupInternet = new System.Windows.Forms.Panel();
  137. this.panel10 = new System.Windows.Forms.Panel();
  138. this.appsTitle = new System.Windows.Forms.Label();
  139. this.btnGetFeed = new System.Windows.Forms.Button();
  140. this.panelCommonApps = new System.Windows.Forms.Panel();
  141. this.cAutoInstall = new Optimizer.MoonCheck();
  142. this.progressDownloader = new Optimizer.MoonProgress();
  143. this.c64 = new Optimizer.MoonRadio();
  144. this.c32 = new Optimizer.MoonRadio();
  145. this.btnDownloadApps = new System.Windows.Forms.Button();
  146. this.setDownDirLbl = new System.Windows.Forms.Label();
  147. this.txtDownloadFolder = new System.Windows.Forms.TextBox();
  148. this.changeDownDirB = new System.Windows.Forms.Button();
  149. this.txtDownloadStatus = new System.Windows.Forms.Label();
  150. this.linkWarnings = new System.Windows.Forms.LinkLabel();
  151. this.bitPref = new System.Windows.Forms.Label();
  152. this.goToDownloadsB = new System.Windows.Forms.Button();
  153. this.groupSystemTools = new System.Windows.Forms.Panel();
  154. this.cleanerTab = new System.Windows.Forms.TabPage();
  155. this.panel14 = new System.Windows.Forms.Panel();
  156. this.listCleanPreview = new Optimizer.MoonCheckList();
  157. this.panel13 = new System.Windows.Forms.Panel();
  158. this.analyzeDriveB = new System.Windows.Forms.Button();
  159. this.checkSelectAll = new System.Windows.Forms.LinkLabel();
  160. this.lblPretext = new System.Windows.Forms.Label();
  161. this.cleanDriveB = new System.Windows.Forms.Button();
  162. this.lblFootprint = new System.Windows.Forms.Label();
  163. this.panel1 = new System.Windows.Forms.Panel();
  164. this.bravePasswords = new Optimizer.MoonCheck();
  165. this.braveSession = new Optimizer.MoonCheck();
  166. this.braveHistory = new Optimizer.MoonCheck();
  167. this.braveCookies = new Optimizer.MoonCheck();
  168. this.braveCache = new Optimizer.MoonCheck();
  169. this.label9 = new System.Windows.Forms.Label();
  170. this.pictureBox4 = new System.Windows.Forms.PictureBox();
  171. this.label8 = new System.Windows.Forms.Label();
  172. this.pictureBox2 = new System.Windows.Forms.PictureBox();
  173. this.edgeSession = new Optimizer.MoonCheck();
  174. this.edgeHistory = new Optimizer.MoonCheck();
  175. this.edgeCookies = new Optimizer.MoonCheck();
  176. this.edgeCache = new Optimizer.MoonCheck();
  177. this.IECache = new Optimizer.MoonCheck();
  178. this.firefoxHistory = new Optimizer.MoonCheck();
  179. this.firefoxCookies = new Optimizer.MoonCheck();
  180. this.firefoxCache = new Optimizer.MoonCheck();
  181. this.chromePws = new Optimizer.MoonCheck();
  182. this.chromeSession = new Optimizer.MoonCheck();
  183. this.chromeHistory = new Optimizer.MoonCheck();
  184. this.chromeCookies = new Optimizer.MoonCheck();
  185. this.chromeCache = new Optimizer.MoonCheck();
  186. this.label7 = new System.Windows.Forms.Label();
  187. this.label6 = new System.Windows.Forms.Label();
  188. this.label5 = new System.Windows.Forms.Label();
  189. this.label4 = new System.Windows.Forms.Label();
  190. this.pictureBox11 = new System.Windows.Forms.PictureBox();
  191. this.pictureBox10 = new System.Windows.Forms.PictureBox();
  192. this.pictureBox9 = new System.Windows.Forms.PictureBox();
  193. this.pictureBox8 = new System.Windows.Forms.PictureBox();
  194. this.checkErrorReports = new Optimizer.MoonCheck();
  195. this.checkTemp = new Optimizer.MoonCheck();
  196. this.checkBin = new Optimizer.MoonCheck();
  197. this.checkMiniDumps = new Optimizer.MoonCheck();
  198. this.pingerTab = new System.Windows.Forms.TabPage();
  199. this.linkDNSv6A = new System.Windows.Forms.LinkLabel();
  200. this.linkDNSv4A = new System.Windows.Forms.LinkLabel();
  201. this.linkDNSv6 = new System.Windows.Forms.LinkLabel();
  202. this.linkDNSv4 = new System.Windows.Forms.LinkLabel();
  203. this.label3 = new System.Windows.Forms.Label();
  204. this.label1 = new System.Windows.Forms.Label();
  205. this.btnOpenNetwork = new System.Windows.Forms.Button();
  206. this.flushCacheB = new System.Windows.Forms.Button();
  207. this.btnExport = new System.Windows.Forms.Button();
  208. this.copyB = new System.Windows.Forms.Button();
  209. this.copyIPB = new System.Windows.Forms.Button();
  210. this.panel7 = new System.Windows.Forms.Panel();
  211. this.listPingResults = new Optimizer.MoonList();
  212. this.lblResults = new System.Windows.Forms.Label();
  213. this.btnShodan = new System.Windows.Forms.Button();
  214. this.btnPing = new System.Windows.Forms.Button();
  215. this.txtPingInput = new System.Windows.Forms.TextBox();
  216. this.lblPinger = new System.Windows.Forms.Label();
  217. this.pingerTitle = new System.Windows.Forms.Label();
  218. this.boxAdapter = new Optimizer.MoonSelect();
  219. this.boxDNS = new Optimizer.MoonSelect();
  220. this.hostsEditorTab = new System.Windows.Forms.TabPage();
  221. this.panel4 = new System.Windows.Forms.Panel();
  222. this.linkAdvancedEdit = new System.Windows.Forms.LinkLabel();
  223. this.linkRestoreDefault = new System.Windows.Forms.LinkLabel();
  224. this.lblLock = new System.Windows.Forms.Label();
  225. this.chkReadOnly = new Optimizer.MoonCheck();
  226. this.panelList = new System.Windows.Forms.Panel();
  227. this.listHostEntries = new Optimizer.MoonList();
  228. this.chkBlock = new Optimizer.MoonCheck();
  229. this.refreshHostsB = new System.Windows.Forms.Button();
  230. this.removeHostB = new System.Windows.Forms.Button();
  231. this.removeAllHostsB = new System.Windows.Forms.Button();
  232. this.addHostB = new System.Windows.Forms.Button();
  233. this.txtIP = new System.Windows.Forms.TextBox();
  234. this.txtDomain = new System.Windows.Forms.TextBox();
  235. this.lblDomain = new System.Windows.Forms.Label();
  236. this.lblIP = new System.Windows.Forms.Label();
  237. this.hostsTitle = new System.Windows.Forms.Label();
  238. this.linkLocate = new System.Windows.Forms.LinkLabel();
  239. this.registryFixerTab = new System.Windows.Forms.TabPage();
  240. this.panel2 = new System.Windows.Forms.Panel();
  241. this.regFixB = new System.Windows.Forms.Button();
  242. this.regLbl = new System.Windows.Forms.Label();
  243. this.checkRestartExplorer = new Optimizer.MoonCheck();
  244. this.checkRegistryEditor = new Optimizer.MoonCheck();
  245. this.checkEnableAll = new Optimizer.MoonCheck();
  246. this.checkContextMenu = new Optimizer.MoonCheck();
  247. this.checkTaskManager = new Optimizer.MoonCheck();
  248. this.checkCommandPrompt = new Optimizer.MoonCheck();
  249. this.checkFirewall = new Optimizer.MoonCheck();
  250. this.checkRunDialog = new Optimizer.MoonCheck();
  251. this.checkFolderOptions = new Optimizer.MoonCheck();
  252. this.checkControlPanel = new Optimizer.MoonCheck();
  253. this.registryTitle = new System.Windows.Forms.Label();
  254. this.indiciumTab = new System.Windows.Forms.TabPage();
  255. this.panel12 = new System.Windows.Forms.Panel();
  256. this.specsTree = new Optimizer.MoonTree();
  257. this.indiciumMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
  258. this.toolHWCopy = new System.Windows.Forms.ToolStripMenuItem();
  259. this.toolHWGoogle = new System.Windows.Forms.ToolStripMenuItem();
  260. this.toolHWDuck = new System.Windows.Forms.ToolStripMenuItem();
  261. this.panel11 = new System.Windows.Forms.Panel();
  262. this.btnCopyHW = new System.Windows.Forms.Button();
  263. this.btnSaveHW = new System.Windows.Forms.Button();
  264. this.hwDetailed = new Optimizer.ToggleCard();
  265. this.integratorTab = new System.Windows.Forms.TabPage();
  266. this.synapse = new Optimizer.MoonTabs();
  267. this.integratorInfoTab = new System.Windows.Forms.TabPage();
  268. this.integrator7 = new System.Windows.Forms.Label();
  269. this.integrator6 = new System.Windows.Forms.Label();
  270. this.integrator5 = new System.Windows.Forms.Label();
  271. this.integrator4 = new System.Windows.Forms.Label();
  272. this.integrator3 = new System.Windows.Forms.Label();
  273. this.integrator2 = new System.Windows.Forms.Label();
  274. this.integrator1 = new System.Windows.Forms.Label();
  275. this.tabPage8 = new System.Windows.Forms.TabPage();
  276. this.btnAddItem = new System.Windows.Forms.Button();
  277. this.itemnamegroup = new System.Windows.Forms.GroupBox();
  278. this.txtItemName = new System.Windows.Forms.TextBox();
  279. this.security = new System.Windows.Forms.GroupBox();
  280. this.checkShift = new Optimizer.MoonCheck();
  281. this.itemposition = new System.Windows.Forms.GroupBox();
  282. this.radioTop = new Optimizer.MoonRadio();
  283. this.radioMiddle = new Optimizer.MoonRadio();
  284. this.radioBottom = new Optimizer.MoonRadio();
  285. this.icontoaddgroup = new System.Windows.Forms.GroupBox();
  286. this.checkDefaultIcon = new Optimizer.MoonCheck();
  287. this.btnBrowseIcon = new System.Windows.Forms.Button();
  288. this.txtIcon = new System.Windows.Forms.TextBox();
  289. this.itemtoaddgroup = new System.Windows.Forms.GroupBox();
  290. this.btnBrowseItem = new System.Windows.Forms.Button();
  291. this.txtItem = new System.Windows.Forms.TextBox();
  292. this.itemtype = new System.Windows.Forms.GroupBox();
  293. this.radioCommand = new Optimizer.MoonRadio();
  294. this.radioProgram = new Optimizer.MoonRadio();
  295. this.radioFolder = new Optimizer.MoonRadio();
  296. this.radioLink = new Optimizer.MoonRadio();
  297. this.radioFile = new Optimizer.MoonRadio();
  298. this.addItemL = new System.Windows.Forms.Label();
  299. this.tabPage9 = new System.Windows.Forms.TabPage();
  300. this.panel5 = new System.Windows.Forms.Panel();
  301. this.listDesktopItems = new Optimizer.MoonList();
  302. this.refreshIIB = new System.Windows.Forms.Button();
  303. this.removeDIB = new System.Windows.Forms.Button();
  304. this.removeAllIIB = new System.Windows.Forms.Button();
  305. this.removeIntegratorItemsL = new System.Windows.Forms.Label();
  306. this.tabPage10 = new System.Windows.Forms.TabPage();
  307. this.WAB = new Optimizer.ToggleCard();
  308. this.AddCMDB = new Optimizer.ToggleCard();
  309. this.AddOwnerB = new Optimizer.ToggleCard();
  310. this.DSB = new Optimizer.ToggleCard();
  311. this.SSB = new Optimizer.ToggleCard();
  312. this.STB = new Optimizer.ToggleCard();
  313. this.PMB = new Optimizer.ToggleCard();
  314. this.readyMenusL = new System.Windows.Forms.Label();
  315. this.tabPage11 = new System.Windows.Forms.TabPage();
  316. this.panel6 = new System.Windows.Forms.Panel();
  317. this.listCustomCommands = new Optimizer.MoonList();
  318. this.removeCCB = new System.Windows.Forms.Button();
  319. this.refreshCCB = new System.Windows.Forms.Button();
  320. this.removeCCL = new System.Windows.Forms.Label();
  321. this.btnCreateCustomCommand = new System.Windows.Forms.Button();
  322. this.button48 = new System.Windows.Forms.Button();
  323. this.txtRunKeyword = new System.Windows.Forms.TextBox();
  324. this.ccKeywordL = new System.Windows.Forms.Label();
  325. this.txtRunFile = new System.Windows.Forms.TextBox();
  326. this.ccFileL = new System.Windows.Forms.Label();
  327. this.ccL = new System.Windows.Forms.Label();
  328. this.optionsTab = new System.Windows.Forms.TabPage();
  329. this.pictureBox3 = new System.Windows.Forms.PictureBox();
  330. this.linkLabel3 = new System.Windows.Forms.LinkLabel();
  331. this.pictureBox17 = new System.Windows.Forms.PictureBox();
  332. this.linkLabel2 = new System.Windows.Forms.LinkLabel();
  333. this.pictureBox14 = new System.Windows.Forms.PictureBox();
  334. this.pictureBox13 = new System.Windows.Forms.PictureBox();
  335. this.pictureBox12 = new System.Windows.Forms.PictureBox();
  336. this.linkLabel1 = new System.Windows.Forms.LinkLabel();
  337. this.pictureBox85 = new System.Windows.Forms.PictureBox();
  338. this.panel9 = new System.Windows.Forms.Panel();
  339. this.boxLang = new Optimizer.MoonSelect();
  340. this.picFlag = new System.Windows.Forms.PictureBox();
  341. this.panel8 = new System.Windows.Forms.Panel();
  342. this.rAmber = new System.Windows.Forms.RadioButton();
  343. this.rAmethyst = new System.Windows.Forms.RadioButton();
  344. this.rAzurite = new System.Windows.Forms.RadioButton();
  345. this.rRuby = new System.Windows.Forms.RadioButton();
  346. this.rJade = new System.Windows.Forms.RadioButton();
  347. this.rSilver = new System.Windows.Forms.RadioButton();
  348. this.languagesL = new System.Windows.Forms.Label();
  349. this.linkLabel5 = new System.Windows.Forms.LinkLabel();
  350. this.btnOpenConf = new System.Windows.Forms.Button();
  351. this.lblTroubleshoot = new System.Windows.Forms.Label();
  352. this.lblUpdating = new System.Windows.Forms.Label();
  353. this.btnViewLog = new System.Windows.Forms.Button();
  354. this.l2 = new System.Windows.Forms.LinkLabel();
  355. this.btnUpdate = new System.Windows.Forms.Button();
  356. this.btnResetConfig = new System.Windows.Forms.Button();
  357. this.lblTheming = new System.Windows.Forms.Label();
  358. this.quickAccessToggle = new Optimizer.ToggleCard();
  359. this.helpTipsToggle = new Optimizer.ToggleCard();
  360. this.imagesHw = new System.Windows.Forms.ImageList(this.components);
  361. this.defineCommandDialog = new System.Windows.Forms.OpenFileDialog();
  362. this.defineProgramDialog = new System.Windows.Forms.OpenFileDialog();
  363. this.defineFolderDialog = new System.Windows.Forms.FolderBrowserDialog();
  364. this.defineFileDialog = new System.Windows.Forms.OpenFileDialog();
  365. this.DefineProgramIconDialog = new System.Windows.Forms.OpenFileDialog();
  366. this.DefineFolderIconDialog = new System.Windows.Forms.OpenFileDialog();
  367. this.DefineURLIconDialog = new System.Windows.Forms.OpenFileDialog();
  368. this.DefineFileIconDialog = new System.Windows.Forms.OpenFileDialog();
  369. this.DefineCommandIconDialog = new System.Windows.Forms.OpenFileDialog();
  370. this.ExportDialog = new System.Windows.Forms.SaveFileDialog();
  371. this.launcherMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
  372. this.trayDownSpeed = new System.Windows.Forms.ToolStripMenuItem();
  373. this.trayUpSpeed = new System.Windows.Forms.ToolStripMenuItem();
  374. this.seperatorNetMon = new System.Windows.Forms.ToolStripSeparator();
  375. this.trayStartup = new System.Windows.Forms.ToolStripMenuItem();
  376. this.trayCleaner = new System.Windows.Forms.ToolStripMenuItem();
  377. this.trayPinger = new System.Windows.Forms.ToolStripMenuItem();
  378. this.trayHosts = new System.Windows.Forms.ToolStripMenuItem();
  379. this.trayAD = new System.Windows.Forms.ToolStripMenuItem();
  380. this.trayHW = new System.Windows.Forms.ToolStripMenuItem();
  381. this.trayRegistry = new System.Windows.Forms.ToolStripMenuItem();
  382. this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
  383. this.trayOptions = new System.Windows.Forms.ToolStripMenuItem();
  384. this.trayRestartExplorer = new System.Windows.Forms.ToolStripMenuItem();
  385. this.trayUnlocker = new System.Windows.Forms.ToolStripMenuItem();
  386. this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
  387. this.trayExit = new System.Windows.Forms.ToolStripMenuItem();
  388. this.launcherIcon = new System.Windows.Forms.NotifyIcon(this.components);
  389. this.helpBox = new Optimizer.MoonTip();
  390. this.tpanel.SuspendLayout();
  391. ((System.ComponentModel.ISupportInitialize)(this.picLab)).BeginInit();
  392. ((System.ComponentModel.ISupportInitialize)(this.picUpdate)).BeginInit();
  393. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  394. this.bpanel.SuspendLayout();
  395. this.tabCollection.SuspendLayout();
  396. this.universalTab.SuspendLayout();
  397. this.windows10Tab.SuspendLayout();
  398. this.panelWin11Tweaks.SuspendLayout();
  399. this.windows8Tab.SuspendLayout();
  400. this.modernAppsTab.SuspendLayout();
  401. this.panelModernAppsList.SuspendLayout();
  402. this.startupTab.SuspendLayout();
  403. this.panel3.SuspendLayout();
  404. this.appsTab.SuspendLayout();
  405. this.panel10.SuspendLayout();
  406. this.panelCommonApps.SuspendLayout();
  407. this.cleanerTab.SuspendLayout();
  408. this.panel14.SuspendLayout();
  409. this.panel13.SuspendLayout();
  410. this.panel1.SuspendLayout();
  411. ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit();
  412. ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
  413. ((System.ComponentModel.ISupportInitialize)(this.pictureBox11)).BeginInit();
  414. ((System.ComponentModel.ISupportInitialize)(this.pictureBox10)).BeginInit();
  415. ((System.ComponentModel.ISupportInitialize)(this.pictureBox9)).BeginInit();
  416. ((System.ComponentModel.ISupportInitialize)(this.pictureBox8)).BeginInit();
  417. this.pingerTab.SuspendLayout();
  418. this.panel7.SuspendLayout();
  419. this.hostsEditorTab.SuspendLayout();
  420. this.panel4.SuspendLayout();
  421. this.panelList.SuspendLayout();
  422. this.registryFixerTab.SuspendLayout();
  423. this.panel2.SuspendLayout();
  424. this.indiciumTab.SuspendLayout();
  425. this.panel12.SuspendLayout();
  426. this.indiciumMenu.SuspendLayout();
  427. this.panel11.SuspendLayout();
  428. this.integratorTab.SuspendLayout();
  429. this.synapse.SuspendLayout();
  430. this.integratorInfoTab.SuspendLayout();
  431. this.tabPage8.SuspendLayout();
  432. this.itemnamegroup.SuspendLayout();
  433. this.security.SuspendLayout();
  434. this.itemposition.SuspendLayout();
  435. this.icontoaddgroup.SuspendLayout();
  436. this.itemtoaddgroup.SuspendLayout();
  437. this.itemtype.SuspendLayout();
  438. this.tabPage9.SuspendLayout();
  439. this.panel5.SuspendLayout();
  440. this.tabPage10.SuspendLayout();
  441. this.tabPage11.SuspendLayout();
  442. this.panel6.SuspendLayout();
  443. this.optionsTab.SuspendLayout();
  444. ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
  445. ((System.ComponentModel.ISupportInitialize)(this.pictureBox17)).BeginInit();
  446. ((System.ComponentModel.ISupportInitialize)(this.pictureBox14)).BeginInit();
  447. ((System.ComponentModel.ISupportInitialize)(this.pictureBox13)).BeginInit();
  448. ((System.ComponentModel.ISupportInitialize)(this.pictureBox12)).BeginInit();
  449. ((System.ComponentModel.ISupportInitialize)(this.pictureBox85)).BeginInit();
  450. this.panel9.SuspendLayout();
  451. ((System.ComponentModel.ISupportInitialize)(this.picFlag)).BeginInit();
  452. this.panel8.SuspendLayout();
  453. this.launcherMenu.SuspendLayout();
  454. this.SuspendLayout();
  455. //
  456. // tpanel
  457. //
  458. this.tpanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  459. this.tpanel.Controls.Add(this.picLab);
  460. this.tpanel.Controls.Add(this.picUpdate);
  461. this.tpanel.Controls.Add(this.txtNetFw);
  462. this.tpanel.Controls.Add(this.txtBitness);
  463. this.tpanel.Controls.Add(this.txtOS);
  464. this.tpanel.Controls.Add(this.txtVersion);
  465. this.tpanel.Controls.Add(this.pictureBox1);
  466. this.tpanel.Controls.Add(this.label2);
  467. this.tpanel.Dock = System.Windows.Forms.DockStyle.Top;
  468. this.tpanel.Location = new System.Drawing.Point(0, 0);
  469. this.tpanel.Margin = new System.Windows.Forms.Padding(2);
  470. this.tpanel.Name = "tpanel";
  471. this.tpanel.Size = new System.Drawing.Size(1009, 64);
  472. this.tpanel.TabIndex = 1;
  473. //
  474. // picLab
  475. //
  476. this.picLab.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  477. this.picLab.Image = ((System.Drawing.Image)(resources.GetObject("picLab.Image")));
  478. this.picLab.Location = new System.Drawing.Point(963, 15);
  479. this.picLab.Name = "picLab";
  480. this.picLab.Size = new System.Drawing.Size(30, 30);
  481. this.picLab.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  482. this.picLab.TabIndex = 72;
  483. this.picLab.TabStop = false;
  484. this.picLab.Visible = false;
  485. //
  486. // picUpdate
  487. //
  488. this.picUpdate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  489. this.picUpdate.Cursor = System.Windows.Forms.Cursors.Hand;
  490. this.picUpdate.Image = ((System.Drawing.Image)(resources.GetObject("picUpdate.Image")));
  491. this.picUpdate.Location = new System.Drawing.Point(963, 15);
  492. this.picUpdate.Name = "picUpdate";
  493. this.picUpdate.Size = new System.Drawing.Size(30, 30);
  494. this.picUpdate.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  495. this.picUpdate.TabIndex = 71;
  496. this.picUpdate.TabStop = false;
  497. this.picUpdate.Visible = false;
  498. this.picUpdate.Click += new System.EventHandler(this.picUpdate_Click);
  499. //
  500. // txtNetFw
  501. //
  502. this.txtNetFw.AutoSize = true;
  503. this.txtNetFw.ForeColor = System.Drawing.Color.Silver;
  504. this.txtNetFw.Location = new System.Drawing.Point(188, 42);
  505. this.txtNetFw.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  506. this.txtNetFw.Name = "txtNetFw";
  507. this.txtNetFw.Size = new System.Drawing.Size(37, 15);
  508. this.txtNetFw.TabIndex = 70;
  509. this.txtNetFw.Text = "netfw";
  510. //
  511. // txtBitness
  512. //
  513. this.txtBitness.AutoSize = true;
  514. this.txtBitness.ForeColor = System.Drawing.Color.Silver;
  515. this.txtBitness.Location = new System.Drawing.Point(188, 24);
  516. this.txtBitness.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  517. this.txtBitness.Name = "txtBitness";
  518. this.txtBitness.Size = new System.Drawing.Size(44, 15);
  519. this.txtBitness.TabIndex = 4;
  520. this.txtBitness.Text = "bitness";
  521. //
  522. // txtOS
  523. //
  524. this.txtOS.AutoSize = true;
  525. this.txtOS.ForeColor = System.Drawing.Color.Silver;
  526. this.txtOS.Location = new System.Drawing.Point(188, 6);
  527. this.txtOS.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  528. this.txtOS.Name = "txtOS";
  529. this.txtOS.Size = new System.Drawing.Size(19, 15);
  530. this.txtOS.TabIndex = 3;
  531. this.txtOS.Text = "os";
  532. //
  533. // txtVersion
  534. //
  535. this.txtVersion.AutoSize = true;
  536. this.txtVersion.ForeColor = System.Drawing.Color.Silver;
  537. this.txtVersion.Location = new System.Drawing.Point(69, 37);
  538. this.txtVersion.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  539. this.txtVersion.Name = "txtVersion";
  540. this.txtVersion.Size = new System.Drawing.Size(77, 15);
  541. this.txtVersion.TabIndex = 1;
  542. this.txtVersion.Text = "Version: {VN}";
  543. //
  544. // pictureBox1
  545. //
  546. this.pictureBox1.Cursor = System.Windows.Forms.Cursors.Hand;
  547. this.pictureBox1.Image = global::Optimizer.Properties.Resources.logoAmethyst;
  548. this.pictureBox1.Location = new System.Drawing.Point(10, 10);
  549. this.pictureBox1.Margin = new System.Windows.Forms.Padding(2);
  550. this.pictureBox1.Name = "pictureBox1";
  551. this.pictureBox1.Size = new System.Drawing.Size(44, 44);
  552. this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  553. this.pictureBox1.TabIndex = 1;
  554. this.pictureBox1.TabStop = false;
  555. this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click);
  556. //
  557. // label2
  558. //
  559. this.label2.AutoSize = true;
  560. this.label2.Font = new System.Drawing.Font("Segoe UI Semibold", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  561. this.label2.ForeColor = System.Drawing.Color.White;
  562. this.label2.Location = new System.Drawing.Point(67, 7);
  563. this.label2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  564. this.label2.Name = "label2";
  565. this.label2.Size = new System.Drawing.Size(97, 25);
  566. this.label2.TabIndex = 2;
  567. this.label2.Text = "Optimizer";
  568. //
  569. // bpanel
  570. //
  571. this.bpanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  572. this.bpanel.Controls.Add(this.tabCollection);
  573. this.bpanel.Dock = System.Windows.Forms.DockStyle.Fill;
  574. this.bpanel.Location = new System.Drawing.Point(0, 64);
  575. this.bpanel.Margin = new System.Windows.Forms.Padding(2);
  576. this.bpanel.Name = "bpanel";
  577. this.bpanel.Size = new System.Drawing.Size(1009, 641);
  578. this.bpanel.TabIndex = 2;
  579. //
  580. // tabCollection
  581. //
  582. this.tabCollection.Controls.Add(this.universalTab);
  583. this.tabCollection.Controls.Add(this.windows10Tab);
  584. this.tabCollection.Controls.Add(this.windows8Tab);
  585. this.tabCollection.Controls.Add(this.modernAppsTab);
  586. this.tabCollection.Controls.Add(this.startupTab);
  587. this.tabCollection.Controls.Add(this.appsTab);
  588. this.tabCollection.Controls.Add(this.cleanerTab);
  589. this.tabCollection.Controls.Add(this.pingerTab);
  590. this.tabCollection.Controls.Add(this.hostsEditorTab);
  591. this.tabCollection.Controls.Add(this.registryFixerTab);
  592. this.tabCollection.Controls.Add(this.indiciumTab);
  593. this.tabCollection.Controls.Add(this.integratorTab);
  594. this.tabCollection.Controls.Add(this.optionsTab);
  595. this.tabCollection.Dock = System.Windows.Forms.DockStyle.Fill;
  596. this.tabCollection.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  597. this.tabCollection.Location = new System.Drawing.Point(0, 0);
  598. this.tabCollection.Margin = new System.Windows.Forms.Padding(2);
  599. this.tabCollection.Name = "tabCollection";
  600. this.tabCollection.Padding = new System.Drawing.Point(0, 0);
  601. this.tabCollection.SelectedIndex = 0;
  602. this.tabCollection.Size = new System.Drawing.Size(1007, 639);
  603. this.tabCollection.TabIndex = 0;
  604. this.tabCollection.SelectedIndexChanged += new System.EventHandler(this.aio_SelectedIndexChanged);
  605. //
  606. // universalTab
  607. //
  608. this.universalTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  609. this.universalTab.Controls.Add(this.chromeTelemetrySw);
  610. this.universalTab.Controls.Add(this.ffTelemetrySw);
  611. this.universalTab.Controls.Add(this.vsSw);
  612. this.universalTab.Controls.Add(this.reportingSw);
  613. this.universalTab.Controls.Add(this.systemRestoreSw);
  614. this.universalTab.Controls.Add(this.officeTelemetrySw);
  615. this.universalTab.Controls.Add(this.smartScreenSw);
  616. this.universalTab.Controls.Add(this.networkSw);
  617. this.universalTab.Controls.Add(this.telemetryTasksSw);
  618. this.universalTab.Controls.Add(this.defenderSw);
  619. this.universalTab.Controls.Add(this.homegroupSw);
  620. this.universalTab.Controls.Add(this.stickySw);
  621. this.universalTab.Controls.Add(this.compatSw);
  622. this.universalTab.Controls.Add(this.mediaSharingSw);
  623. this.universalTab.Controls.Add(this.printSw);
  624. this.universalTab.Controls.Add(this.superfetchSw);
  625. this.universalTab.Controls.Add(this.faxSw);
  626. this.universalTab.Controls.Add(this.performanceSw);
  627. this.universalTab.Location = new System.Drawing.Point(4, 25);
  628. this.universalTab.Margin = new System.Windows.Forms.Padding(2);
  629. this.universalTab.Name = "universalTab";
  630. this.universalTab.Padding = new System.Windows.Forms.Padding(2);
  631. this.universalTab.Size = new System.Drawing.Size(999, 610);
  632. this.universalTab.TabIndex = 0;
  633. this.universalTab.Text = "Universal";
  634. //
  635. // chromeTelemetrySw
  636. //
  637. this.chromeTelemetrySw.AccessibleName = "Disable Google Chrome Telemetry";
  638. this.chromeTelemetrySw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  639. this.chromeTelemetrySw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  640. this.chromeTelemetrySw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  641. this.chromeTelemetrySw.ForeColor = System.Drawing.Color.White;
  642. this.chromeTelemetrySw.LabelText = "Disable Google Chrome Telemetry";
  643. this.chromeTelemetrySw.Location = new System.Drawing.Point(21, 410);
  644. this.chromeTelemetrySw.Name = "chromeTelemetrySw";
  645. this.chromeTelemetrySw.Size = new System.Drawing.Size(490, 24);
  646. this.chromeTelemetrySw.TabIndex = 68;
  647. this.chromeTelemetrySw.Tag = "themeable";
  648. this.chromeTelemetrySw.ToggleChecked = false;
  649. //
  650. // ffTelemetrySw
  651. //
  652. this.ffTelemetrySw.AccessibleName = "Disable Mozilla Firefox Telemetry";
  653. this.ffTelemetrySw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  654. this.ffTelemetrySw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  655. this.ffTelemetrySw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  656. this.ffTelemetrySw.ForeColor = System.Drawing.Color.White;
  657. this.ffTelemetrySw.LabelText = "Disable Mozilla Firefox Telemetry";
  658. this.ffTelemetrySw.Location = new System.Drawing.Point(21, 373);
  659. this.ffTelemetrySw.Name = "ffTelemetrySw";
  660. this.ffTelemetrySw.Size = new System.Drawing.Size(490, 24);
  661. this.ffTelemetrySw.TabIndex = 67;
  662. this.ffTelemetrySw.Tag = "themeable";
  663. this.ffTelemetrySw.ToggleChecked = false;
  664. //
  665. // vsSw
  666. //
  667. this.vsSw.AccessibleName = "Disable Visual Studio Telemetry";
  668. this.vsSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  669. this.vsSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  670. this.vsSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  671. this.vsSw.ForeColor = System.Drawing.Color.White;
  672. this.vsSw.LabelText = "Disable Visual Studio Telemetry";
  673. this.vsSw.Location = new System.Drawing.Point(21, 336);
  674. this.vsSw.Name = "vsSw";
  675. this.vsSw.Size = new System.Drawing.Size(490, 24);
  676. this.vsSw.TabIndex = 66;
  677. this.vsSw.Tag = "themeable";
  678. this.vsSw.ToggleChecked = false;
  679. //
  680. // reportingSw
  681. //
  682. this.reportingSw.AccessibleName = "Disable Error Reporting";
  683. this.reportingSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  684. this.reportingSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  685. this.reportingSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  686. this.reportingSw.ForeColor = System.Drawing.Color.White;
  687. this.reportingSw.LabelText = "Disable Error Reporting";
  688. this.reportingSw.Location = new System.Drawing.Point(21, 162);
  689. this.reportingSw.Name = "reportingSw";
  690. this.reportingSw.Size = new System.Drawing.Size(414, 24);
  691. this.reportingSw.TabIndex = 65;
  692. this.reportingSw.Tag = "themeable";
  693. this.reportingSw.ToggleChecked = false;
  694. //
  695. // systemRestoreSw
  696. //
  697. this.systemRestoreSw.AccessibleName = "Disable System Restore";
  698. this.systemRestoreSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  699. this.systemRestoreSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  700. this.systemRestoreSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  701. this.systemRestoreSw.ForeColor = System.Drawing.Color.White;
  702. this.systemRestoreSw.LabelText = "Disable System Restore";
  703. this.systemRestoreSw.Location = new System.Drawing.Point(21, 126);
  704. this.systemRestoreSw.Name = "systemRestoreSw";
  705. this.systemRestoreSw.Size = new System.Drawing.Size(414, 24);
  706. this.systemRestoreSw.TabIndex = 64;
  707. this.systemRestoreSw.Tag = "themeable";
  708. this.systemRestoreSw.ToggleChecked = false;
  709. //
  710. // officeTelemetrySw
  711. //
  712. this.officeTelemetrySw.AccessibleName = "Disable Office 2016 Telemetry";
  713. this.officeTelemetrySw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  714. this.officeTelemetrySw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  715. this.officeTelemetrySw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  716. this.officeTelemetrySw.ForeColor = System.Drawing.Color.White;
  717. this.officeTelemetrySw.LabelText = "Disable Office 2016 Telemetry";
  718. this.officeTelemetrySw.Location = new System.Drawing.Point(21, 298);
  719. this.officeTelemetrySw.Name = "officeTelemetrySw";
  720. this.officeTelemetrySw.Size = new System.Drawing.Size(490, 24);
  721. this.officeTelemetrySw.TabIndex = 63;
  722. this.officeTelemetrySw.Tag = "themeable";
  723. this.officeTelemetrySw.ToggleChecked = false;
  724. //
  725. // smartScreenSw
  726. //
  727. this.smartScreenSw.AccessibleName = "Disable SmartScreen";
  728. this.smartScreenSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  729. this.smartScreenSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  730. this.smartScreenSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  731. this.smartScreenSw.ForeColor = System.Drawing.Color.White;
  732. this.smartScreenSw.LabelText = "Disable SmartScreen";
  733. this.smartScreenSw.Location = new System.Drawing.Point(21, 90);
  734. this.smartScreenSw.Name = "smartScreenSw";
  735. this.smartScreenSw.Size = new System.Drawing.Size(414, 24);
  736. this.smartScreenSw.TabIndex = 62;
  737. this.smartScreenSw.Tag = "themeable";
  738. this.smartScreenSw.ToggleChecked = false;
  739. //
  740. // networkSw
  741. //
  742. this.networkSw.AccessibleName = "Disable Network Throttling";
  743. this.networkSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  744. this.networkSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  745. this.networkSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  746. this.networkSw.ForeColor = System.Drawing.Color.White;
  747. this.networkSw.LabelText = "Disable Network Throttling";
  748. this.networkSw.Location = new System.Drawing.Point(21, 54);
  749. this.networkSw.Name = "networkSw";
  750. this.networkSw.Size = new System.Drawing.Size(414, 24);
  751. this.networkSw.TabIndex = 61;
  752. this.networkSw.Tag = "themeable";
  753. this.networkSw.ToggleChecked = false;
  754. //
  755. // telemetryTasksSw
  756. //
  757. this.telemetryTasksSw.AccessibleName = "Disable Telemetry Tasks";
  758. this.telemetryTasksSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  759. this.telemetryTasksSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  760. this.telemetryTasksSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  761. this.telemetryTasksSw.ForeColor = System.Drawing.Color.White;
  762. this.telemetryTasksSw.LabelText = "Disable Telemetry Tasks";
  763. this.telemetryTasksSw.Location = new System.Drawing.Point(21, 198);
  764. this.telemetryTasksSw.Name = "telemetryTasksSw";
  765. this.telemetryTasksSw.Size = new System.Drawing.Size(414, 24);
  766. this.telemetryTasksSw.TabIndex = 60;
  767. this.telemetryTasksSw.Tag = "themeable";
  768. this.telemetryTasksSw.ToggleChecked = false;
  769. //
  770. // defenderSw
  771. //
  772. this.defenderSw.AccessibleName = "Disable Windows Defender";
  773. this.defenderSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  774. this.defenderSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  775. this.defenderSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  776. this.defenderSw.ForeColor = System.Drawing.Color.White;
  777. this.defenderSw.LabelText = "Disable Windows Defender";
  778. this.defenderSw.Location = new System.Drawing.Point(457, 234);
  779. this.defenderSw.Name = "defenderSw";
  780. this.defenderSw.Size = new System.Drawing.Size(414, 24);
  781. this.defenderSw.TabIndex = 59;
  782. this.defenderSw.Tag = "themeable";
  783. this.defenderSw.ToggleChecked = false;
  784. //
  785. // homegroupSw
  786. //
  787. this.homegroupSw.AccessibleName = "Disable HomeGroup";
  788. this.homegroupSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  789. this.homegroupSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  790. this.homegroupSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  791. this.homegroupSw.ForeColor = System.Drawing.Color.White;
  792. this.homegroupSw.LabelText = "Disable HomeGroup";
  793. this.homegroupSw.Location = new System.Drawing.Point(457, 162);
  794. this.homegroupSw.Name = "homegroupSw";
  795. this.homegroupSw.Size = new System.Drawing.Size(414, 24);
  796. this.homegroupSw.TabIndex = 58;
  797. this.homegroupSw.Tag = "themeable";
  798. this.homegroupSw.ToggleChecked = false;
  799. //
  800. // stickySw
  801. //
  802. this.stickySw.AccessibleName = "Disable Sticky Keys";
  803. this.stickySw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  804. this.stickySw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  805. this.stickySw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  806. this.stickySw.ForeColor = System.Drawing.Color.White;
  807. this.stickySw.LabelText = "Disable Sticky Keys";
  808. this.stickySw.Location = new System.Drawing.Point(457, 126);
  809. this.stickySw.Name = "stickySw";
  810. this.stickySw.Size = new System.Drawing.Size(414, 24);
  811. this.stickySw.TabIndex = 57;
  812. this.stickySw.Tag = "themeable";
  813. this.stickySw.ToggleChecked = false;
  814. //
  815. // compatSw
  816. //
  817. this.compatSw.AccessibleName = "Disable Compatibility Assistant";
  818. this.compatSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  819. this.compatSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  820. this.compatSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  821. this.compatSw.ForeColor = System.Drawing.Color.White;
  822. this.compatSw.LabelText = "Disable Compatibility Assistant";
  823. this.compatSw.Location = new System.Drawing.Point(21, 234);
  824. this.compatSw.Name = "compatSw";
  825. this.compatSw.Size = new System.Drawing.Size(414, 24);
  826. this.compatSw.TabIndex = 56;
  827. this.compatSw.Tag = "themeable";
  828. this.compatSw.ToggleChecked = false;
  829. //
  830. // mediaSharingSw
  831. //
  832. this.mediaSharingSw.AccessibleName = "Disable Media Player Sharing";
  833. this.mediaSharingSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  834. this.mediaSharingSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  835. this.mediaSharingSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  836. this.mediaSharingSw.ForeColor = System.Drawing.Color.White;
  837. this.mediaSharingSw.LabelText = "Disable Media Player Sharing";
  838. this.mediaSharingSw.Location = new System.Drawing.Point(457, 90);
  839. this.mediaSharingSw.Name = "mediaSharingSw";
  840. this.mediaSharingSw.Size = new System.Drawing.Size(414, 24);
  841. this.mediaSharingSw.TabIndex = 55;
  842. this.mediaSharingSw.Tag = "themeable";
  843. this.mediaSharingSw.ToggleChecked = false;
  844. //
  845. // printSw
  846. //
  847. this.printSw.AccessibleName = "Disable Print Service";
  848. this.printSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  849. this.printSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  850. this.printSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  851. this.printSw.ForeColor = System.Drawing.Color.White;
  852. this.printSw.LabelText = "Disable Print Service";
  853. this.printSw.Location = new System.Drawing.Point(457, 18);
  854. this.printSw.Name = "printSw";
  855. this.printSw.Size = new System.Drawing.Size(414, 24);
  856. this.printSw.TabIndex = 54;
  857. this.printSw.Tag = "themeable";
  858. this.printSw.ToggleChecked = false;
  859. //
  860. // superfetchSw
  861. //
  862. this.superfetchSw.AccessibleName = "Disable Superfetch";
  863. this.superfetchSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  864. this.superfetchSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  865. this.superfetchSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  866. this.superfetchSw.ForeColor = System.Drawing.Color.White;
  867. this.superfetchSw.LabelText = "Disable Superfetch";
  868. this.superfetchSw.Location = new System.Drawing.Point(457, 198);
  869. this.superfetchSw.Name = "superfetchSw";
  870. this.superfetchSw.Size = new System.Drawing.Size(414, 24);
  871. this.superfetchSw.TabIndex = 53;
  872. this.superfetchSw.Tag = "themeable";
  873. this.superfetchSw.ToggleChecked = false;
  874. //
  875. // faxSw
  876. //
  877. this.faxSw.AccessibleName = "Disable Fax Service";
  878. this.faxSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  879. this.faxSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  880. this.faxSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  881. this.faxSw.ForeColor = System.Drawing.Color.White;
  882. this.faxSw.LabelText = "Disable Fax Service";
  883. this.faxSw.Location = new System.Drawing.Point(457, 54);
  884. this.faxSw.Name = "faxSw";
  885. this.faxSw.Size = new System.Drawing.Size(414, 24);
  886. this.faxSw.TabIndex = 52;
  887. this.faxSw.Tag = "themeable";
  888. this.faxSw.ToggleChecked = false;
  889. //
  890. // performanceSw
  891. //
  892. this.performanceSw.AccessibleName = "Enable Performance Tweaks";
  893. this.performanceSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  894. this.performanceSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  895. this.performanceSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  896. this.performanceSw.ForeColor = System.Drawing.Color.White;
  897. this.performanceSw.LabelText = "Enable Performance Tweaks";
  898. this.performanceSw.Location = new System.Drawing.Point(21, 18);
  899. this.performanceSw.Name = "performanceSw";
  900. this.performanceSw.Size = new System.Drawing.Size(414, 24);
  901. this.performanceSw.TabIndex = 51;
  902. this.performanceSw.Tag = "themeable";
  903. this.performanceSw.ToggleChecked = false;
  904. //
  905. // windows10Tab
  906. //
  907. this.windows10Tab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  908. this.windows10Tab.Controls.Add(this.gameModeSw);
  909. this.windows10Tab.Controls.Add(this.featuresSw);
  910. this.windows10Tab.Controls.Add(this.oldMixerSw);
  911. this.windows10Tab.Controls.Add(this.insiderSw);
  912. this.windows10Tab.Controls.Add(this.castSw);
  913. this.windows10Tab.Controls.Add(this.gameBarSw);
  914. this.windows10Tab.Controls.Add(this.sensorSw);
  915. this.windows10Tab.Controls.Add(this.ccSw);
  916. this.windows10Tab.Controls.Add(this.cortanaSw);
  917. this.windows10Tab.Controls.Add(this.privacySw);
  918. this.windows10Tab.Controls.Add(this.driversSw);
  919. this.windows10Tab.Controls.Add(this.telemetryServicesSw);
  920. this.windows10Tab.Controls.Add(this.autoUpdatesSw);
  921. this.windows10Tab.Controls.Add(this.tpmSw);
  922. this.windows10Tab.Controls.Add(this.xboxSw);
  923. this.windows10Tab.Controls.Add(this.inkSw);
  924. this.windows10Tab.Controls.Add(this.spellSw);
  925. this.windows10Tab.Controls.Add(this.longPathsSw);
  926. this.windows10Tab.Controls.Add(this.uODSw);
  927. this.windows10Tab.Controls.Add(this.peopleSw);
  928. this.windows10Tab.Controls.Add(this.oldExplorerSw);
  929. this.windows10Tab.Controls.Add(this.adsSw);
  930. this.windows10Tab.Controls.Add(this.panelWin11Tweaks);
  931. this.windows10Tab.Location = new System.Drawing.Point(4, 25);
  932. this.windows10Tab.Margin = new System.Windows.Forms.Padding(2);
  933. this.windows10Tab.Name = "windows10Tab";
  934. this.windows10Tab.Padding = new System.Windows.Forms.Padding(2);
  935. this.windows10Tab.Size = new System.Drawing.Size(999, 610);
  936. this.windows10Tab.TabIndex = 1;
  937. this.windows10Tab.Text = "Windows 10";
  938. //
  939. // gameModeSw
  940. //
  941. this.gameModeSw.AccessibleName = "Enable Gaming Mode";
  942. this.gameModeSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  943. this.gameModeSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  944. this.gameModeSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  945. this.gameModeSw.ForeColor = System.Drawing.Color.White;
  946. this.gameModeSw.LabelText = "Enable Gaming Mode";
  947. this.gameModeSw.Location = new System.Drawing.Point(21, 378);
  948. this.gameModeSw.Name = "gameModeSw";
  949. this.gameModeSw.Size = new System.Drawing.Size(414, 24);
  950. this.gameModeSw.TabIndex = 105;
  951. this.gameModeSw.Tag = "themeable";
  952. this.gameModeSw.ToggleChecked = false;
  953. //
  954. // featuresSw
  955. //
  956. this.featuresSw.AccessibleName = "Disable Feature Updates";
  957. this.featuresSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  958. this.featuresSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  959. this.featuresSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  960. this.featuresSw.ForeColor = System.Drawing.Color.White;
  961. this.featuresSw.LabelText = "Disable Feature Updates";
  962. this.featuresSw.Location = new System.Drawing.Point(21, 342);
  963. this.featuresSw.Name = "featuresSw";
  964. this.featuresSw.Size = new System.Drawing.Size(414, 24);
  965. this.featuresSw.TabIndex = 104;
  966. this.featuresSw.Tag = "themeable";
  967. this.featuresSw.ToggleChecked = false;
  968. //
  969. // oldMixerSw
  970. //
  971. this.oldMixerSw.AccessibleName = "Enable Classic Volume Mixer";
  972. this.oldMixerSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  973. this.oldMixerSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  974. this.oldMixerSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  975. this.oldMixerSw.ForeColor = System.Drawing.Color.White;
  976. this.oldMixerSw.LabelText = "Enable Classic Volume Mixer";
  977. this.oldMixerSw.Location = new System.Drawing.Point(444, 378);
  978. this.oldMixerSw.Name = "oldMixerSw";
  979. this.oldMixerSw.Size = new System.Drawing.Size(414, 24);
  980. this.oldMixerSw.TabIndex = 103;
  981. this.oldMixerSw.Tag = "themeable";
  982. this.oldMixerSw.ToggleChecked = false;
  983. //
  984. // insiderSw
  985. //
  986. this.insiderSw.AccessibleName = "Disable Insider Service";
  987. this.insiderSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  988. this.insiderSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  989. this.insiderSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  990. this.insiderSw.ForeColor = System.Drawing.Color.White;
  991. this.insiderSw.LabelText = "Disable Insider Service";
  992. this.insiderSw.Location = new System.Drawing.Point(444, 342);
  993. this.insiderSw.Name = "insiderSw";
  994. this.insiderSw.Size = new System.Drawing.Size(414, 24);
  995. this.insiderSw.TabIndex = 102;
  996. this.insiderSw.Tag = "themeable";
  997. this.insiderSw.ToggleChecked = false;
  998. //
  999. // castSw
  1000. //
  1001. this.castSw.AccessibleName = "Remove Cast to Device";
  1002. this.castSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1003. this.castSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1004. this.castSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1005. this.castSw.ForeColor = System.Drawing.Color.White;
  1006. this.castSw.LabelText = "Remove Cast to Device";
  1007. this.castSw.Location = new System.Drawing.Point(444, 270);
  1008. this.castSw.Name = "castSw";
  1009. this.castSw.Size = new System.Drawing.Size(414, 24);
  1010. this.castSw.TabIndex = 101;
  1011. this.castSw.Tag = "themeable";
  1012. this.castSw.ToggleChecked = false;
  1013. //
  1014. // gameBarSw
  1015. //
  1016. this.gameBarSw.AccessibleName = "Disable Game Bar";
  1017. this.gameBarSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1018. this.gameBarSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1019. this.gameBarSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1020. this.gameBarSw.ForeColor = System.Drawing.Color.White;
  1021. this.gameBarSw.LabelText = "Disable Game Bar";
  1022. this.gameBarSw.Location = new System.Drawing.Point(444, 306);
  1023. this.gameBarSw.Name = "gameBarSw";
  1024. this.gameBarSw.Size = new System.Drawing.Size(414, 24);
  1025. this.gameBarSw.TabIndex = 100;
  1026. this.gameBarSw.Tag = "themeable";
  1027. this.gameBarSw.ToggleChecked = false;
  1028. //
  1029. // sensorSw
  1030. //
  1031. this.sensorSw.AccessibleName = "Disable Sensor Services";
  1032. this.sensorSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1033. this.sensorSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1034. this.sensorSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1035. this.sensorSw.ForeColor = System.Drawing.Color.White;
  1036. this.sensorSw.LabelText = "Disable Sensor Services";
  1037. this.sensorSw.Location = new System.Drawing.Point(444, 234);
  1038. this.sensorSw.Name = "sensorSw";
  1039. this.sensorSw.Size = new System.Drawing.Size(414, 24);
  1040. this.sensorSw.TabIndex = 99;
  1041. this.sensorSw.Tag = "themeable";
  1042. this.sensorSw.ToggleChecked = false;
  1043. //
  1044. // ccSw
  1045. //
  1046. this.ccSw.AccessibleName = "Disable Cloud Clipboard";
  1047. this.ccSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1048. this.ccSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1049. this.ccSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1050. this.ccSw.ForeColor = System.Drawing.Color.White;
  1051. this.ccSw.LabelText = "Disable Cloud Clipboard";
  1052. this.ccSw.Location = new System.Drawing.Point(444, 162);
  1053. this.ccSw.Name = "ccSw";
  1054. this.ccSw.Size = new System.Drawing.Size(414, 24);
  1055. this.ccSw.TabIndex = 98;
  1056. this.ccSw.Tag = "themeable";
  1057. this.ccSw.ToggleChecked = false;
  1058. //
  1059. // cortanaSw
  1060. //
  1061. this.cortanaSw.AccessibleName = "Disable Cortana";
  1062. this.cortanaSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1063. this.cortanaSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1064. this.cortanaSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1065. this.cortanaSw.ForeColor = System.Drawing.Color.White;
  1066. this.cortanaSw.LabelText = "Disable Cortana";
  1067. this.cortanaSw.Location = new System.Drawing.Point(444, 198);
  1068. this.cortanaSw.Name = "cortanaSw";
  1069. this.cortanaSw.Size = new System.Drawing.Size(414, 24);
  1070. this.cortanaSw.TabIndex = 97;
  1071. this.cortanaSw.Tag = "themeable";
  1072. this.cortanaSw.ToggleChecked = false;
  1073. //
  1074. // privacySw
  1075. //
  1076. this.privacySw.AccessibleName = "Enhance Privacy";
  1077. this.privacySw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1078. this.privacySw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1079. this.privacySw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1080. this.privacySw.ForeColor = System.Drawing.Color.White;
  1081. this.privacySw.LabelText = "Enhance Privacy";
  1082. this.privacySw.Location = new System.Drawing.Point(444, 126);
  1083. this.privacySw.Name = "privacySw";
  1084. this.privacySw.Size = new System.Drawing.Size(414, 24);
  1085. this.privacySw.TabIndex = 96;
  1086. this.privacySw.Tag = "themeable";
  1087. this.privacySw.ToggleChecked = false;
  1088. //
  1089. // driversSw
  1090. //
  1091. this.driversSw.AccessibleName = "Exclude Drivers from Update";
  1092. this.driversSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1093. this.driversSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1094. this.driversSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1095. this.driversSw.ForeColor = System.Drawing.Color.White;
  1096. this.driversSw.LabelText = "Exclude Drivers from Update";
  1097. this.driversSw.Location = new System.Drawing.Point(444, 54);
  1098. this.driversSw.Name = "driversSw";
  1099. this.driversSw.Size = new System.Drawing.Size(414, 24);
  1100. this.driversSw.TabIndex = 95;
  1101. this.driversSw.Tag = "themeable";
  1102. this.driversSw.ToggleChecked = false;
  1103. //
  1104. // telemetryServicesSw
  1105. //
  1106. this.telemetryServicesSw.AccessibleName = "Disable Telemetry Services";
  1107. this.telemetryServicesSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1108. this.telemetryServicesSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1109. this.telemetryServicesSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1110. this.telemetryServicesSw.ForeColor = System.Drawing.Color.White;
  1111. this.telemetryServicesSw.LabelText = "Disable Telemetry Services";
  1112. this.telemetryServicesSw.Location = new System.Drawing.Point(444, 90);
  1113. this.telemetryServicesSw.Name = "telemetryServicesSw";
  1114. this.telemetryServicesSw.Size = new System.Drawing.Size(414, 24);
  1115. this.telemetryServicesSw.TabIndex = 94;
  1116. this.telemetryServicesSw.Tag = "themeable";
  1117. this.telemetryServicesSw.ToggleChecked = false;
  1118. //
  1119. // autoUpdatesSw
  1120. //
  1121. this.autoUpdatesSw.AccessibleName = "Disable Automatic Updates";
  1122. this.autoUpdatesSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1123. this.autoUpdatesSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1124. this.autoUpdatesSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1125. this.autoUpdatesSw.ForeColor = System.Drawing.Color.White;
  1126. this.autoUpdatesSw.LabelText = "Disable Automatic Updates";
  1127. this.autoUpdatesSw.Location = new System.Drawing.Point(444, 18);
  1128. this.autoUpdatesSw.Name = "autoUpdatesSw";
  1129. this.autoUpdatesSw.Size = new System.Drawing.Size(414, 24);
  1130. this.autoUpdatesSw.TabIndex = 93;
  1131. this.autoUpdatesSw.Tag = "themeable";
  1132. this.autoUpdatesSw.ToggleChecked = false;
  1133. //
  1134. // tpmSw
  1135. //
  1136. this.tpmSw.AccessibleName = "Disable TPM 2.0 Check";
  1137. this.tpmSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1138. this.tpmSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1139. this.tpmSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1140. this.tpmSw.ForeColor = System.Drawing.Color.White;
  1141. this.tpmSw.LabelText = "Disable TPM 2.0 Check";
  1142. this.tpmSw.Location = new System.Drawing.Point(21, 306);
  1143. this.tpmSw.Name = "tpmSw";
  1144. this.tpmSw.Size = new System.Drawing.Size(414, 24);
  1145. this.tpmSw.TabIndex = 92;
  1146. this.tpmSw.Tag = "themeable";
  1147. this.tpmSw.ToggleChecked = false;
  1148. //
  1149. // xboxSw
  1150. //
  1151. this.xboxSw.AccessibleName = "Disable Xbox Live";
  1152. this.xboxSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1153. this.xboxSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1154. this.xboxSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1155. this.xboxSw.ForeColor = System.Drawing.Color.White;
  1156. this.xboxSw.LabelText = "Disable Xbox Live";
  1157. this.xboxSw.Location = new System.Drawing.Point(21, 270);
  1158. this.xboxSw.Name = "xboxSw";
  1159. this.xboxSw.Size = new System.Drawing.Size(414, 24);
  1160. this.xboxSw.TabIndex = 90;
  1161. this.xboxSw.Tag = "themeable";
  1162. this.xboxSw.ToggleChecked = false;
  1163. //
  1164. // inkSw
  1165. //
  1166. this.inkSw.AccessibleName = "Disable Windows Ink";
  1167. this.inkSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1168. this.inkSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1169. this.inkSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1170. this.inkSw.ForeColor = System.Drawing.Color.White;
  1171. this.inkSw.LabelText = "Disable Windows Ink";
  1172. this.inkSw.Location = new System.Drawing.Point(21, 198);
  1173. this.inkSw.Name = "inkSw";
  1174. this.inkSw.Size = new System.Drawing.Size(414, 24);
  1175. this.inkSw.TabIndex = 89;
  1176. this.inkSw.Tag = "themeable";
  1177. this.inkSw.ToggleChecked = false;
  1178. //
  1179. // spellSw
  1180. //
  1181. this.spellSw.AccessibleName = "Disable Spell Checking";
  1182. this.spellSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1183. this.spellSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1184. this.spellSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1185. this.spellSw.ForeColor = System.Drawing.Color.White;
  1186. this.spellSw.LabelText = "Disable Spell Checking";
  1187. this.spellSw.Location = new System.Drawing.Point(21, 234);
  1188. this.spellSw.Name = "spellSw";
  1189. this.spellSw.Size = new System.Drawing.Size(414, 24);
  1190. this.spellSw.TabIndex = 88;
  1191. this.spellSw.Tag = "themeable";
  1192. this.spellSw.ToggleChecked = false;
  1193. //
  1194. // longPathsSw
  1195. //
  1196. this.longPathsSw.AccessibleName = "Enable Long Paths";
  1197. this.longPathsSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1198. this.longPathsSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1199. this.longPathsSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1200. this.longPathsSw.ForeColor = System.Drawing.Color.White;
  1201. this.longPathsSw.LabelText = "Enable Long Paths";
  1202. this.longPathsSw.Location = new System.Drawing.Point(21, 162);
  1203. this.longPathsSw.Name = "longPathsSw";
  1204. this.longPathsSw.Size = new System.Drawing.Size(414, 24);
  1205. this.longPathsSw.TabIndex = 87;
  1206. this.longPathsSw.Tag = "themeable";
  1207. this.longPathsSw.ToggleChecked = false;
  1208. //
  1209. // uODSw
  1210. //
  1211. this.uODSw.AccessibleName = "Uninstall OneDrive";
  1212. this.uODSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1213. this.uODSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1214. this.uODSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1215. this.uODSw.ForeColor = System.Drawing.Color.White;
  1216. this.uODSw.LabelText = "Uninstall OneDrive";
  1217. this.uODSw.Location = new System.Drawing.Point(21, 90);
  1218. this.uODSw.Name = "uODSw";
  1219. this.uODSw.Size = new System.Drawing.Size(414, 24);
  1220. this.uODSw.TabIndex = 86;
  1221. this.uODSw.Tag = "themeable";
  1222. this.uODSw.ToggleChecked = false;
  1223. //
  1224. // peopleSw
  1225. //
  1226. this.peopleSw.AccessibleName = "Disable My People";
  1227. this.peopleSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1228. this.peopleSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1229. this.peopleSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1230. this.peopleSw.ForeColor = System.Drawing.Color.White;
  1231. this.peopleSw.LabelText = "Disable My People";
  1232. this.peopleSw.Location = new System.Drawing.Point(21, 126);
  1233. this.peopleSw.Name = "peopleSw";
  1234. this.peopleSw.Size = new System.Drawing.Size(414, 24);
  1235. this.peopleSw.TabIndex = 85;
  1236. this.peopleSw.Tag = "themeable";
  1237. this.peopleSw.ToggleChecked = false;
  1238. //
  1239. // oldExplorerSw
  1240. //
  1241. this.oldExplorerSw.AccessibleName = "Restore Classic Windows Explorer";
  1242. this.oldExplorerSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1243. this.oldExplorerSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1244. this.oldExplorerSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1245. this.oldExplorerSw.ForeColor = System.Drawing.Color.White;
  1246. this.oldExplorerSw.LabelText = "Restore Classic Windows Explorer";
  1247. this.oldExplorerSw.Location = new System.Drawing.Point(21, 18);
  1248. this.oldExplorerSw.Name = "oldExplorerSw";
  1249. this.oldExplorerSw.Size = new System.Drawing.Size(414, 24);
  1250. this.oldExplorerSw.TabIndex = 83;
  1251. this.oldExplorerSw.Tag = "themeable";
  1252. this.oldExplorerSw.ToggleChecked = false;
  1253. //
  1254. // adsSw
  1255. //
  1256. this.adsSw.AccessibleName = "Disable Start Menu Ads";
  1257. this.adsSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1258. this.adsSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1259. this.adsSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1260. this.adsSw.ForeColor = System.Drawing.Color.White;
  1261. this.adsSw.LabelText = "Disable Start Menu Ads";
  1262. this.adsSw.Location = new System.Drawing.Point(21, 54);
  1263. this.adsSw.Name = "adsSw";
  1264. this.adsSw.Size = new System.Drawing.Size(414, 24);
  1265. this.adsSw.TabIndex = 82;
  1266. this.adsSw.Tag = "themeable";
  1267. this.adsSw.ToggleChecked = false;
  1268. //
  1269. // panelWin11Tweaks
  1270. //
  1271. this.panelWin11Tweaks.Controls.Add(this.compactModeSw);
  1272. this.panelWin11Tweaks.Controls.Add(this.classicRibbonSw);
  1273. this.panelWin11Tweaks.Controls.Add(this.snapAssistSw);
  1274. this.panelWin11Tweaks.Controls.Add(this.widgetsSw);
  1275. this.panelWin11Tweaks.Controls.Add(this.leftTaskbarSw);
  1276. this.panelWin11Tweaks.Controls.Add(this.classicContextSw);
  1277. this.panelWin11Tweaks.Controls.Add(this.chatSw);
  1278. this.panelWin11Tweaks.Controls.Add(this.smallerTaskbarSw);
  1279. this.panelWin11Tweaks.Location = new System.Drawing.Point(7, 423);
  1280. this.panelWin11Tweaks.Name = "panelWin11Tweaks";
  1281. this.panelWin11Tweaks.Size = new System.Drawing.Size(985, 181);
  1282. this.panelWin11Tweaks.TabIndex = 80;
  1283. this.panelWin11Tweaks.Visible = false;
  1284. //
  1285. // compactModeSw
  1286. //
  1287. this.compactModeSw.AccessibleName = "Enable Compact Mode in Explorer";
  1288. this.compactModeSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1289. this.compactModeSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1290. this.compactModeSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1291. this.compactModeSw.ForeColor = System.Drawing.Color.White;
  1292. this.compactModeSw.LabelText = "Enable Compact Mode in Explorer";
  1293. this.compactModeSw.Location = new System.Drawing.Point(437, 123);
  1294. this.compactModeSw.Name = "compactModeSw";
  1295. this.compactModeSw.Size = new System.Drawing.Size(414, 24);
  1296. this.compactModeSw.TabIndex = 112;
  1297. this.compactModeSw.Tag = "themeable";
  1298. this.compactModeSw.ToggleChecked = false;
  1299. //
  1300. // classicRibbonSw
  1301. //
  1302. this.classicRibbonSw.AccessibleName = "Enable Classic Ribbon in Explorer";
  1303. this.classicRibbonSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1304. this.classicRibbonSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1305. this.classicRibbonSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1306. this.classicRibbonSw.ForeColor = System.Drawing.Color.White;
  1307. this.classicRibbonSw.LabelText = "Enable Classic Ribbon in Explorer";
  1308. this.classicRibbonSw.Location = new System.Drawing.Point(437, 51);
  1309. this.classicRibbonSw.Name = "classicRibbonSw";
  1310. this.classicRibbonSw.Size = new System.Drawing.Size(414, 24);
  1311. this.classicRibbonSw.TabIndex = 111;
  1312. this.classicRibbonSw.Tag = "themeable";
  1313. this.classicRibbonSw.ToggleChecked = false;
  1314. //
  1315. // snapAssistSw
  1316. //
  1317. this.snapAssistSw.AccessibleName = "Disable Snap Assist";
  1318. this.snapAssistSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1319. this.snapAssistSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1320. this.snapAssistSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1321. this.snapAssistSw.ForeColor = System.Drawing.Color.White;
  1322. this.snapAssistSw.LabelText = "Disable Snap Assist";
  1323. this.snapAssistSw.Location = new System.Drawing.Point(14, 51);
  1324. this.snapAssistSw.Name = "snapAssistSw";
  1325. this.snapAssistSw.Size = new System.Drawing.Size(414, 24);
  1326. this.snapAssistSw.TabIndex = 106;
  1327. this.snapAssistSw.Tag = "themeable";
  1328. this.snapAssistSw.ToggleChecked = false;
  1329. //
  1330. // widgetsSw
  1331. //
  1332. this.widgetsSw.AccessibleName = "Disable Widgets";
  1333. this.widgetsSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1334. this.widgetsSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1335. this.widgetsSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1336. this.widgetsSw.ForeColor = System.Drawing.Color.White;
  1337. this.widgetsSw.LabelText = "Disable Widgets";
  1338. this.widgetsSw.Location = new System.Drawing.Point(14, 87);
  1339. this.widgetsSw.Name = "widgetsSw";
  1340. this.widgetsSw.Size = new System.Drawing.Size(414, 24);
  1341. this.widgetsSw.TabIndex = 108;
  1342. this.widgetsSw.Tag = "themeable";
  1343. this.widgetsSw.ToggleChecked = false;
  1344. //
  1345. // leftTaskbarSw
  1346. //
  1347. this.leftTaskbarSw.AccessibleName = "Align Taskbar to Left";
  1348. this.leftTaskbarSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1349. this.leftTaskbarSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1350. this.leftTaskbarSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1351. this.leftTaskbarSw.ForeColor = System.Drawing.Color.White;
  1352. this.leftTaskbarSw.LabelText = "Align Taskbar to Left";
  1353. this.leftTaskbarSw.Location = new System.Drawing.Point(14, 15);
  1354. this.leftTaskbarSw.Name = "leftTaskbarSw";
  1355. this.leftTaskbarSw.Size = new System.Drawing.Size(414, 24);
  1356. this.leftTaskbarSw.TabIndex = 105;
  1357. this.leftTaskbarSw.Tag = "themeable";
  1358. this.leftTaskbarSw.ToggleChecked = false;
  1359. //
  1360. // classicContextSw
  1361. //
  1362. this.classicContextSw.AccessibleName = "Enable Classic Right-Click Menu";
  1363. this.classicContextSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1364. this.classicContextSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1365. this.classicContextSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1366. this.classicContextSw.ForeColor = System.Drawing.Color.White;
  1367. this.classicContextSw.LabelText = "Enable Classic Right-Click Menu";
  1368. this.classicContextSw.Location = new System.Drawing.Point(437, 87);
  1369. this.classicContextSw.Name = "classicContextSw";
  1370. this.classicContextSw.Size = new System.Drawing.Size(414, 24);
  1371. this.classicContextSw.TabIndex = 110;
  1372. this.classicContextSw.Tag = "themeable";
  1373. this.classicContextSw.ToggleChecked = false;
  1374. //
  1375. // chatSw
  1376. //
  1377. this.chatSw.AccessibleName = "Disable Chat";
  1378. this.chatSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1379. this.chatSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1380. this.chatSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1381. this.chatSw.ForeColor = System.Drawing.Color.White;
  1382. this.chatSw.LabelText = "Disable Chat";
  1383. this.chatSw.Location = new System.Drawing.Point(14, 123);
  1384. this.chatSw.Name = "chatSw";
  1385. this.chatSw.Size = new System.Drawing.Size(414, 24);
  1386. this.chatSw.TabIndex = 107;
  1387. this.chatSw.Tag = "themeable";
  1388. this.chatSw.ToggleChecked = false;
  1389. //
  1390. // smallerTaskbarSw
  1391. //
  1392. this.smallerTaskbarSw.AccessibleName = "Make Taskbar Smaller";
  1393. this.smallerTaskbarSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1394. this.smallerTaskbarSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1395. this.smallerTaskbarSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1396. this.smallerTaskbarSw.ForeColor = System.Drawing.Color.White;
  1397. this.smallerTaskbarSw.LabelText = "Make Taskbar Smaller";
  1398. this.smallerTaskbarSw.Location = new System.Drawing.Point(437, 15);
  1399. this.smallerTaskbarSw.Name = "smallerTaskbarSw";
  1400. this.smallerTaskbarSw.Size = new System.Drawing.Size(414, 24);
  1401. this.smallerTaskbarSw.TabIndex = 109;
  1402. this.smallerTaskbarSw.Tag = "themeable";
  1403. this.smallerTaskbarSw.ToggleChecked = false;
  1404. //
  1405. // windows8Tab
  1406. //
  1407. this.windows8Tab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1408. this.windows8Tab.Controls.Add(this.disableOneDriveSw);
  1409. this.windows8Tab.Location = new System.Drawing.Point(4, 25);
  1410. this.windows8Tab.Margin = new System.Windows.Forms.Padding(2);
  1411. this.windows8Tab.Name = "windows8Tab";
  1412. this.windows8Tab.Padding = new System.Windows.Forms.Padding(2);
  1413. this.windows8Tab.Size = new System.Drawing.Size(999, 610);
  1414. this.windows8Tab.TabIndex = 2;
  1415. this.windows8Tab.Text = "Windows 8.1";
  1416. //
  1417. // disableOneDriveSw
  1418. //
  1419. this.disableOneDriveSw.AccessibleName = "Disable OneDrive";
  1420. this.disableOneDriveSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  1421. this.disableOneDriveSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1422. this.disableOneDriveSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1423. this.disableOneDriveSw.ForeColor = System.Drawing.Color.White;
  1424. this.disableOneDriveSw.LabelText = "Disable OneDrive";
  1425. this.disableOneDriveSw.Location = new System.Drawing.Point(21, 18);
  1426. this.disableOneDriveSw.Name = "disableOneDriveSw";
  1427. this.disableOneDriveSw.Size = new System.Drawing.Size(500, 24);
  1428. this.disableOneDriveSw.TabIndex = 84;
  1429. this.disableOneDriveSw.Tag = "themeable";
  1430. this.disableOneDriveSw.ToggleChecked = false;
  1431. //
  1432. // modernAppsTab
  1433. //
  1434. this.modernAppsTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1435. this.modernAppsTab.Controls.Add(this.chkOnlyRemovable);
  1436. this.modernAppsTab.Controls.Add(this.chkSelectAllModernApps);
  1437. this.modernAppsTab.Controls.Add(this.uninstallModernAppsButton);
  1438. this.modernAppsTab.Controls.Add(this.refreshModernAppsButton);
  1439. this.modernAppsTab.Controls.Add(this.txtModernAppsTitle);
  1440. this.modernAppsTab.Controls.Add(this.panelModernAppsList);
  1441. this.modernAppsTab.Location = new System.Drawing.Point(4, 25);
  1442. this.modernAppsTab.Name = "modernAppsTab";
  1443. this.modernAppsTab.Padding = new System.Windows.Forms.Padding(3);
  1444. this.modernAppsTab.Size = new System.Drawing.Size(999, 610);
  1445. this.modernAppsTab.TabIndex = 11;
  1446. this.modernAppsTab.Text = "UWP Apps";
  1447. //
  1448. // chkOnlyRemovable
  1449. //
  1450. this.chkOnlyRemovable.AutoSize = true;
  1451. this.chkOnlyRemovable.Font = new System.Drawing.Font("Segoe UI Semibold", 12F);
  1452. this.chkOnlyRemovable.ForeColor = System.Drawing.Color.White;
  1453. this.chkOnlyRemovable.Location = new System.Drawing.Point(503, 140);
  1454. this.chkOnlyRemovable.Margin = new System.Windows.Forms.Padding(2);
  1455. this.chkOnlyRemovable.Name = "chkOnlyRemovable";
  1456. this.chkOnlyRemovable.Size = new System.Drawing.Size(170, 25);
  1457. this.chkOnlyRemovable.TabIndex = 53;
  1458. this.chkOnlyRemovable.Text = "Only uninstall-ables";
  1459. this.chkOnlyRemovable.UseVisualStyleBackColor = true;
  1460. this.chkOnlyRemovable.CheckedChanged += new System.EventHandler(this.chkOnlyRemovable_CheckedChanged);
  1461. //
  1462. // chkSelectAllModernApps
  1463. //
  1464. this.chkSelectAllModernApps.AutoSize = true;
  1465. this.chkSelectAllModernApps.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1466. this.chkSelectAllModernApps.ForeColor = System.Drawing.Color.White;
  1467. this.chkSelectAllModernApps.Location = new System.Drawing.Point(503, 111);
  1468. this.chkSelectAllModernApps.Margin = new System.Windows.Forms.Padding(2);
  1469. this.chkSelectAllModernApps.Name = "chkSelectAllModernApps";
  1470. this.chkSelectAllModernApps.Size = new System.Drawing.Size(94, 25);
  1471. this.chkSelectAllModernApps.TabIndex = 52;
  1472. this.chkSelectAllModernApps.Text = "Select all";
  1473. this.chkSelectAllModernApps.UseVisualStyleBackColor = true;
  1474. this.chkSelectAllModernApps.CheckedChanged += new System.EventHandler(this.chkSelectAllModernApps_CheckedChanged);
  1475. //
  1476. // uninstallModernAppsButton
  1477. //
  1478. this.uninstallModernAppsButton.BackColor = System.Drawing.Color.DodgerBlue;
  1479. this.uninstallModernAppsButton.FlatAppearance.BorderSize = 0;
  1480. this.uninstallModernAppsButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  1481. this.uninstallModernAppsButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  1482. this.uninstallModernAppsButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1483. this.uninstallModernAppsButton.ForeColor = System.Drawing.Color.White;
  1484. this.uninstallModernAppsButton.Location = new System.Drawing.Point(503, 76);
  1485. this.uninstallModernAppsButton.Margin = new System.Windows.Forms.Padding(2);
  1486. this.uninstallModernAppsButton.Name = "uninstallModernAppsButton";
  1487. this.uninstallModernAppsButton.Size = new System.Drawing.Size(169, 31);
  1488. this.uninstallModernAppsButton.TabIndex = 50;
  1489. this.uninstallModernAppsButton.Text = "Uninstall";
  1490. this.uninstallModernAppsButton.UseVisualStyleBackColor = false;
  1491. this.uninstallModernAppsButton.Click += new System.EventHandler(this.button74_Click);
  1492. //
  1493. // refreshModernAppsButton
  1494. //
  1495. this.refreshModernAppsButton.BackColor = System.Drawing.Color.DodgerBlue;
  1496. this.refreshModernAppsButton.FlatAppearance.BorderSize = 0;
  1497. this.refreshModernAppsButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  1498. this.refreshModernAppsButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  1499. this.refreshModernAppsButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1500. this.refreshModernAppsButton.ForeColor = System.Drawing.Color.White;
  1501. this.refreshModernAppsButton.Location = new System.Drawing.Point(503, 41);
  1502. this.refreshModernAppsButton.Margin = new System.Windows.Forms.Padding(2);
  1503. this.refreshModernAppsButton.Name = "refreshModernAppsButton";
  1504. this.refreshModernAppsButton.Size = new System.Drawing.Size(169, 31);
  1505. this.refreshModernAppsButton.TabIndex = 49;
  1506. this.refreshModernAppsButton.Text = "Refresh";
  1507. this.refreshModernAppsButton.UseVisualStyleBackColor = false;
  1508. this.refreshModernAppsButton.Click += new System.EventHandler(this.button75_Click);
  1509. //
  1510. // txtModernAppsTitle
  1511. //
  1512. this.txtModernAppsTitle.AutoSize = true;
  1513. this.txtModernAppsTitle.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1514. this.txtModernAppsTitle.ForeColor = System.Drawing.Color.DodgerBlue;
  1515. this.txtModernAppsTitle.Location = new System.Drawing.Point(6, 10);
  1516. this.txtModernAppsTitle.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1517. this.txtModernAppsTitle.Name = "txtModernAppsTitle";
  1518. this.txtModernAppsTitle.Size = new System.Drawing.Size(291, 28);
  1519. this.txtModernAppsTitle.TabIndex = 47;
  1520. this.txtModernAppsTitle.Tag = "themeable";
  1521. this.txtModernAppsTitle.Text = "Uninstall unwanted UWP Apps";
  1522. //
  1523. // panelModernAppsList
  1524. //
  1525. this.panelModernAppsList.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  1526. | System.Windows.Forms.AnchorStyles.Left)));
  1527. this.panelModernAppsList.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1528. this.panelModernAppsList.Controls.Add(this.listModernApps);
  1529. this.panelModernAppsList.Location = new System.Drawing.Point(11, 41);
  1530. this.panelModernAppsList.Name = "panelModernAppsList";
  1531. this.panelModernAppsList.Size = new System.Drawing.Size(487, 449);
  1532. this.panelModernAppsList.TabIndex = 0;
  1533. //
  1534. // listModernApps
  1535. //
  1536. this.listModernApps.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1537. this.listModernApps.BorderStyle = System.Windows.Forms.BorderStyle.None;
  1538. this.listModernApps.CheckOnClick = true;
  1539. this.listModernApps.Dock = System.Windows.Forms.DockStyle.Fill;
  1540. this.listModernApps.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1541. this.listModernApps.ForeColor = System.Drawing.Color.White;
  1542. this.listModernApps.FormattingEnabled = true;
  1543. this.listModernApps.HorizontalScrollbar = true;
  1544. this.listModernApps.Location = new System.Drawing.Point(0, 0);
  1545. this.listModernApps.Name = "listModernApps";
  1546. this.listModernApps.Size = new System.Drawing.Size(485, 447);
  1547. this.listModernApps.Sorted = true;
  1548. this.listModernApps.TabIndex = 0;
  1549. //
  1550. // startupTab
  1551. //
  1552. this.startupTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1553. this.startupTab.Controls.Add(this.cancelBackup);
  1554. this.startupTab.Controls.Add(this.doBackup);
  1555. this.startupTab.Controls.Add(this.txtBackupTitle);
  1556. this.startupTab.Controls.Add(this.lblBackupTitle);
  1557. this.startupTab.Controls.Add(this.restoreStartupB);
  1558. this.startupTab.Controls.Add(this.backupStartupB);
  1559. this.startupTab.Controls.Add(this.findInRegB);
  1560. this.startupTab.Controls.Add(this.locateFileB);
  1561. this.startupTab.Controls.Add(this.refreshStartupB);
  1562. this.startupTab.Controls.Add(this.panel3);
  1563. this.startupTab.Controls.Add(this.removeStartupItemB);
  1564. this.startupTab.Controls.Add(this.startupTitle);
  1565. this.startupTab.Location = new System.Drawing.Point(4, 25);
  1566. this.startupTab.Margin = new System.Windows.Forms.Padding(2);
  1567. this.startupTab.Name = "startupTab";
  1568. this.startupTab.Size = new System.Drawing.Size(999, 610);
  1569. this.startupTab.TabIndex = 7;
  1570. this.startupTab.Text = "Startup";
  1571. //
  1572. // cancelBackup
  1573. //
  1574. this.cancelBackup.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  1575. this.cancelBackup.BackColor = System.Drawing.Color.DodgerBlue;
  1576. this.cancelBackup.FlatAppearance.BorderSize = 0;
  1577. this.cancelBackup.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  1578. this.cancelBackup.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  1579. this.cancelBackup.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1580. this.cancelBackup.ForeColor = System.Drawing.Color.White;
  1581. this.cancelBackup.Location = new System.Drawing.Point(106, 551);
  1582. this.cancelBackup.Margin = new System.Windows.Forms.Padding(2);
  1583. this.cancelBackup.Name = "cancelBackup";
  1584. this.cancelBackup.Size = new System.Drawing.Size(90, 25);
  1585. this.cancelBackup.TabIndex = 61;
  1586. this.cancelBackup.Text = "Cancel";
  1587. this.cancelBackup.UseVisualStyleBackColor = false;
  1588. this.cancelBackup.Visible = false;
  1589. this.cancelBackup.Click += new System.EventHandler(this.button14_Click);
  1590. //
  1591. // doBackup
  1592. //
  1593. this.doBackup.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  1594. this.doBackup.BackColor = System.Drawing.Color.DodgerBlue;
  1595. this.doBackup.FlatAppearance.BorderSize = 0;
  1596. this.doBackup.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  1597. this.doBackup.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  1598. this.doBackup.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1599. this.doBackup.ForeColor = System.Drawing.Color.White;
  1600. this.doBackup.Location = new System.Drawing.Point(12, 551);
  1601. this.doBackup.Margin = new System.Windows.Forms.Padding(2);
  1602. this.doBackup.Name = "doBackup";
  1603. this.doBackup.Size = new System.Drawing.Size(90, 25);
  1604. this.doBackup.TabIndex = 60;
  1605. this.doBackup.Text = "OK";
  1606. this.doBackup.UseVisualStyleBackColor = false;
  1607. this.doBackup.Visible = false;
  1608. this.doBackup.Click += new System.EventHandler(this.button13_Click);
  1609. //
  1610. // txtBackupTitle
  1611. //
  1612. this.txtBackupTitle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1613. this.txtBackupTitle.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1614. this.txtBackupTitle.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1615. this.txtBackupTitle.ForeColor = System.Drawing.Color.White;
  1616. this.txtBackupTitle.Location = new System.Drawing.Point(12, 522);
  1617. this.txtBackupTitle.Margin = new System.Windows.Forms.Padding(2);
  1618. this.txtBackupTitle.Name = "txtBackupTitle";
  1619. this.txtBackupTitle.Size = new System.Drawing.Size(323, 25);
  1620. this.txtBackupTitle.TabIndex = 58;
  1621. this.txtBackupTitle.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1622. this.txtBackupTitle.Visible = false;
  1623. //
  1624. // lblBackupTitle
  1625. //
  1626. this.lblBackupTitle.AutoSize = true;
  1627. this.lblBackupTitle.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1628. this.lblBackupTitle.ForeColor = System.Drawing.Color.Silver;
  1629. this.lblBackupTitle.Location = new System.Drawing.Point(8, 501);
  1630. this.lblBackupTitle.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1631. this.lblBackupTitle.Name = "lblBackupTitle";
  1632. this.lblBackupTitle.Size = new System.Drawing.Size(86, 19);
  1633. this.lblBackupTitle.TabIndex = 59;
  1634. this.lblBackupTitle.Tag = "";
  1635. this.lblBackupTitle.Text = "Backup title:";
  1636. this.lblBackupTitle.Visible = false;
  1637. //
  1638. // restoreStartupB
  1639. //
  1640. this.restoreStartupB.BackColor = System.Drawing.Color.DodgerBlue;
  1641. this.restoreStartupB.FlatAppearance.BorderSize = 0;
  1642. this.restoreStartupB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  1643. this.restoreStartupB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  1644. this.restoreStartupB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1645. this.restoreStartupB.ForeColor = System.Drawing.Color.White;
  1646. this.restoreStartupB.Location = new System.Drawing.Point(176, 502);
  1647. this.restoreStartupB.Margin = new System.Windows.Forms.Padding(2);
  1648. this.restoreStartupB.Name = "restoreStartupB";
  1649. this.restoreStartupB.Size = new System.Drawing.Size(160, 31);
  1650. this.restoreStartupB.TabIndex = 42;
  1651. this.restoreStartupB.Text = "Restore";
  1652. this.restoreStartupB.UseVisualStyleBackColor = false;
  1653. this.restoreStartupB.Click += new System.EventHandler(this.button12_Click);
  1654. //
  1655. // backupStartupB
  1656. //
  1657. this.backupStartupB.BackColor = System.Drawing.Color.DodgerBlue;
  1658. this.backupStartupB.FlatAppearance.BorderSize = 0;
  1659. this.backupStartupB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  1660. this.backupStartupB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  1661. this.backupStartupB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1662. this.backupStartupB.ForeColor = System.Drawing.Color.White;
  1663. this.backupStartupB.Location = new System.Drawing.Point(12, 502);
  1664. this.backupStartupB.Margin = new System.Windows.Forms.Padding(2);
  1665. this.backupStartupB.Name = "backupStartupB";
  1666. this.backupStartupB.Size = new System.Drawing.Size(160, 31);
  1667. this.backupStartupB.TabIndex = 41;
  1668. this.backupStartupB.Text = "Backup";
  1669. this.backupStartupB.UseVisualStyleBackColor = false;
  1670. this.backupStartupB.Click += new System.EventHandler(this.button11_Click);
  1671. //
  1672. // findInRegB
  1673. //
  1674. this.findInRegB.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  1675. this.findInRegB.BackColor = System.Drawing.Color.DodgerBlue;
  1676. this.findInRegB.FlatAppearance.BorderSize = 0;
  1677. this.findInRegB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  1678. this.findInRegB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  1679. this.findInRegB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1680. this.findInRegB.ForeColor = System.Drawing.Color.White;
  1681. this.findInRegB.Location = new System.Drawing.Point(656, 538);
  1682. this.findInRegB.Margin = new System.Windows.Forms.Padding(2);
  1683. this.findInRegB.Name = "findInRegB";
  1684. this.findInRegB.Size = new System.Drawing.Size(160, 31);
  1685. this.findInRegB.TabIndex = 40;
  1686. this.findInRegB.Text = "Find in Registry";
  1687. this.findInRegB.UseVisualStyleBackColor = false;
  1688. this.findInRegB.Click += new System.EventHandler(this.button64_Click);
  1689. //
  1690. // locateFileB
  1691. //
  1692. this.locateFileB.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  1693. this.locateFileB.BackColor = System.Drawing.Color.DodgerBlue;
  1694. this.locateFileB.FlatAppearance.BorderSize = 0;
  1695. this.locateFileB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  1696. this.locateFileB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  1697. this.locateFileB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1698. this.locateFileB.ForeColor = System.Drawing.Color.White;
  1699. this.locateFileB.Location = new System.Drawing.Point(820, 503);
  1700. this.locateFileB.Margin = new System.Windows.Forms.Padding(2);
  1701. this.locateFileB.Name = "locateFileB";
  1702. this.locateFileB.Size = new System.Drawing.Size(160, 31);
  1703. this.locateFileB.TabIndex = 39;
  1704. this.locateFileB.Text = "Locate file";
  1705. this.locateFileB.UseVisualStyleBackColor = false;
  1706. this.locateFileB.Click += new System.EventHandler(this.button31_Click);
  1707. //
  1708. // refreshStartupB
  1709. //
  1710. this.refreshStartupB.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  1711. this.refreshStartupB.BackColor = System.Drawing.Color.DodgerBlue;
  1712. this.refreshStartupB.FlatAppearance.BorderSize = 0;
  1713. this.refreshStartupB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  1714. this.refreshStartupB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  1715. this.refreshStartupB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1716. this.refreshStartupB.ForeColor = System.Drawing.Color.White;
  1717. this.refreshStartupB.Location = new System.Drawing.Point(820, 538);
  1718. this.refreshStartupB.Margin = new System.Windows.Forms.Padding(2);
  1719. this.refreshStartupB.Name = "refreshStartupB";
  1720. this.refreshStartupB.Size = new System.Drawing.Size(160, 31);
  1721. this.refreshStartupB.TabIndex = 38;
  1722. this.refreshStartupB.Text = "Refresh";
  1723. this.refreshStartupB.UseVisualStyleBackColor = false;
  1724. this.refreshStartupB.Click += new System.EventHandler(this.button37_Click);
  1725. //
  1726. // panel3
  1727. //
  1728. this.panel3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  1729. | System.Windows.Forms.AnchorStyles.Right)));
  1730. this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1731. this.panel3.Controls.Add(this.listStartupItems);
  1732. this.panel3.Location = new System.Drawing.Point(11, 40);
  1733. this.panel3.Margin = new System.Windows.Forms.Padding(2);
  1734. this.panel3.Name = "panel3";
  1735. this.panel3.Size = new System.Drawing.Size(969, 459);
  1736. this.panel3.TabIndex = 37;
  1737. //
  1738. // listStartupItems
  1739. //
  1740. this.listStartupItems.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1741. this.listStartupItems.BorderStyle = System.Windows.Forms.BorderStyle.None;
  1742. this.listStartupItems.CheckBoxes = true;
  1743. this.listStartupItems.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
  1744. this.columnHeader1,
  1745. this.columnHeader2,
  1746. this.columnHeader3});
  1747. this.listStartupItems.Dock = System.Windows.Forms.DockStyle.Fill;
  1748. this.listStartupItems.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1749. this.listStartupItems.ForeColor = System.Drawing.Color.MediumOrchid;
  1750. this.listStartupItems.FullRowSelect = true;
  1751. this.listStartupItems.HideSelection = false;
  1752. this.listStartupItems.Location = new System.Drawing.Point(0, 0);
  1753. this.listStartupItems.Margin = new System.Windows.Forms.Padding(2);
  1754. this.listStartupItems.MultiSelect = false;
  1755. this.listStartupItems.Name = "listStartupItems";
  1756. this.listStartupItems.ShowGroups = false;
  1757. this.listStartupItems.Size = new System.Drawing.Size(967, 457);
  1758. this.listStartupItems.TabIndex = 0;
  1759. this.listStartupItems.UseCompatibleStateImageBehavior = false;
  1760. this.listStartupItems.View = System.Windows.Forms.View.Details;
  1761. this.listStartupItems.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.listStartupItems_ColumnClick);
  1762. this.listStartupItems.ItemChecked += new System.Windows.Forms.ItemCheckedEventHandler(this.listStartupItems_ItemChecked);
  1763. //
  1764. // columnHeader1
  1765. //
  1766. this.columnHeader1.Text = "Name";
  1767. this.columnHeader1.Width = 194;
  1768. //
  1769. // columnHeader2
  1770. //
  1771. this.columnHeader2.Text = "Location";
  1772. this.columnHeader2.Width = 507;
  1773. //
  1774. // columnHeader3
  1775. //
  1776. this.columnHeader3.Text = "Type";
  1777. this.columnHeader3.Width = 134;
  1778. //
  1779. // removeStartupItemB
  1780. //
  1781. this.removeStartupItemB.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  1782. this.removeStartupItemB.BackColor = System.Drawing.Color.DodgerBlue;
  1783. this.removeStartupItemB.FlatAppearance.BorderSize = 0;
  1784. this.removeStartupItemB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  1785. this.removeStartupItemB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  1786. this.removeStartupItemB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1787. this.removeStartupItemB.ForeColor = System.Drawing.Color.White;
  1788. this.removeStartupItemB.Location = new System.Drawing.Point(656, 503);
  1789. this.removeStartupItemB.Margin = new System.Windows.Forms.Padding(2);
  1790. this.removeStartupItemB.Name = "removeStartupItemB";
  1791. this.removeStartupItemB.Size = new System.Drawing.Size(160, 31);
  1792. this.removeStartupItemB.TabIndex = 36;
  1793. this.removeStartupItemB.Text = "Delete";
  1794. this.removeStartupItemB.UseVisualStyleBackColor = false;
  1795. this.removeStartupItemB.Click += new System.EventHandler(this.button32_Click);
  1796. //
  1797. // startupTitle
  1798. //
  1799. this.startupTitle.AutoSize = true;
  1800. this.startupTitle.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1801. this.startupTitle.ForeColor = System.Drawing.Color.DodgerBlue;
  1802. this.startupTitle.Location = new System.Drawing.Point(6, 10);
  1803. this.startupTitle.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1804. this.startupTitle.Name = "startupTitle";
  1805. this.startupTitle.Size = new System.Drawing.Size(254, 28);
  1806. this.startupTitle.TabIndex = 3;
  1807. this.startupTitle.Tag = "themeable";
  1808. this.startupTitle.Text = "Choose your startup items";
  1809. //
  1810. // appsTab
  1811. //
  1812. this.appsTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  1813. this.appsTab.Controls.Add(this.txtFeedError);
  1814. this.appsTab.Controls.Add(this.lblVideoSound);
  1815. this.appsTab.Controls.Add(this.lblCoding);
  1816. this.appsTab.Controls.Add(this.lblSystemTools);
  1817. this.appsTab.Controls.Add(this.groupSoundVideo);
  1818. this.appsTab.Controls.Add(this.lblInternet);
  1819. this.appsTab.Controls.Add(this.groupCoding);
  1820. this.appsTab.Controls.Add(this.groupInternet);
  1821. this.appsTab.Controls.Add(this.panel10);
  1822. this.appsTab.Controls.Add(this.panelCommonApps);
  1823. this.appsTab.Controls.Add(this.groupSystemTools);
  1824. this.appsTab.Location = new System.Drawing.Point(4, 25);
  1825. this.appsTab.Name = "appsTab";
  1826. this.appsTab.Padding = new System.Windows.Forms.Padding(3);
  1827. this.appsTab.Size = new System.Drawing.Size(999, 610);
  1828. this.appsTab.TabIndex = 12;
  1829. this.appsTab.Text = "Apps";
  1830. //
  1831. // txtFeedError
  1832. //
  1833. this.txtFeedError.BackColor = System.Drawing.Color.Transparent;
  1834. this.txtFeedError.Dock = System.Windows.Forms.DockStyle.Fill;
  1835. this.txtFeedError.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1836. this.txtFeedError.ForeColor = System.Drawing.Color.Gold;
  1837. this.txtFeedError.Location = new System.Drawing.Point(3, 47);
  1838. this.txtFeedError.Name = "txtFeedError";
  1839. this.txtFeedError.Size = new System.Drawing.Size(993, 440);
  1840. this.txtFeedError.TabIndex = 171;
  1841. this.txtFeedError.Text = "No internet connection, try refreshing links again";
  1842. this.txtFeedError.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1843. this.txtFeedError.Visible = false;
  1844. //
  1845. // lblVideoSound
  1846. //
  1847. this.lblVideoSound.AutoSize = true;
  1848. this.lblVideoSound.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1849. this.lblVideoSound.ForeColor = System.Drawing.Color.Silver;
  1850. this.lblVideoSound.Location = new System.Drawing.Point(746, 46);
  1851. this.lblVideoSound.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1852. this.lblVideoSound.Name = "lblVideoSound";
  1853. this.lblVideoSound.Size = new System.Drawing.Size(88, 15);
  1854. this.lblVideoSound.TabIndex = 169;
  1855. this.lblVideoSound.Tag = "";
  1856. this.lblVideoSound.Text = "Video && Sound";
  1857. //
  1858. // lblCoding
  1859. //
  1860. this.lblCoding.AutoSize = true;
  1861. this.lblCoding.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1862. this.lblCoding.ForeColor = System.Drawing.Color.Silver;
  1863. this.lblCoding.Location = new System.Drawing.Point(514, 46);
  1864. this.lblCoding.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1865. this.lblCoding.Name = "lblCoding";
  1866. this.lblCoding.Size = new System.Drawing.Size(45, 15);
  1867. this.lblCoding.TabIndex = 168;
  1868. this.lblCoding.Tag = "";
  1869. this.lblCoding.Text = "Coding";
  1870. //
  1871. // lblSystemTools
  1872. //
  1873. this.lblSystemTools.AutoSize = true;
  1874. this.lblSystemTools.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1875. this.lblSystemTools.ForeColor = System.Drawing.Color.Silver;
  1876. this.lblSystemTools.Location = new System.Drawing.Point(11, 46);
  1877. this.lblSystemTools.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1878. this.lblSystemTools.Name = "lblSystemTools";
  1879. this.lblSystemTools.Size = new System.Drawing.Size(89, 15);
  1880. this.lblSystemTools.TabIndex = 162;
  1881. this.lblSystemTools.Tag = "";
  1882. this.lblSystemTools.Text = "System && Tools";
  1883. //
  1884. // groupSoundVideo
  1885. //
  1886. this.groupSoundVideo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  1887. | System.Windows.Forms.AnchorStyles.Left)));
  1888. this.groupSoundVideo.AutoScroll = true;
  1889. this.groupSoundVideo.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1890. this.groupSoundVideo.Location = new System.Drawing.Point(749, 64);
  1891. this.groupSoundVideo.Name = "groupSoundVideo";
  1892. this.groupSoundVideo.Size = new System.Drawing.Size(227, 418);
  1893. this.groupSoundVideo.TabIndex = 166;
  1894. //
  1895. // lblInternet
  1896. //
  1897. this.lblInternet.AutoSize = true;
  1898. this.lblInternet.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1899. this.lblInternet.ForeColor = System.Drawing.Color.Silver;
  1900. this.lblInternet.Location = new System.Drawing.Point(262, 46);
  1901. this.lblInternet.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1902. this.lblInternet.Name = "lblInternet";
  1903. this.lblInternet.Size = new System.Drawing.Size(49, 15);
  1904. this.lblInternet.TabIndex = 167;
  1905. this.lblInternet.Tag = "";
  1906. this.lblInternet.Text = "Internet";
  1907. //
  1908. // groupCoding
  1909. //
  1910. this.groupCoding.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  1911. | System.Windows.Forms.AnchorStyles.Left)));
  1912. this.groupCoding.AutoScroll = true;
  1913. this.groupCoding.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1914. this.groupCoding.Location = new System.Drawing.Point(517, 64);
  1915. this.groupCoding.Name = "groupCoding";
  1916. this.groupCoding.Size = new System.Drawing.Size(226, 418);
  1917. this.groupCoding.TabIndex = 165;
  1918. //
  1919. // groupInternet
  1920. //
  1921. this.groupInternet.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  1922. | System.Windows.Forms.AnchorStyles.Left)));
  1923. this.groupInternet.AutoScroll = true;
  1924. this.groupInternet.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1925. this.groupInternet.Location = new System.Drawing.Point(265, 64);
  1926. this.groupInternet.Name = "groupInternet";
  1927. this.groupInternet.Size = new System.Drawing.Size(246, 418);
  1928. this.groupInternet.TabIndex = 164;
  1929. //
  1930. // panel10
  1931. //
  1932. this.panel10.Controls.Add(this.appsTitle);
  1933. this.panel10.Controls.Add(this.btnGetFeed);
  1934. this.panel10.Dock = System.Windows.Forms.DockStyle.Top;
  1935. this.panel10.Location = new System.Drawing.Point(3, 3);
  1936. this.panel10.Name = "panel10";
  1937. this.panel10.Size = new System.Drawing.Size(993, 44);
  1938. this.panel10.TabIndex = 163;
  1939. //
  1940. // appsTitle
  1941. //
  1942. this.appsTitle.AutoSize = true;
  1943. this.appsTitle.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1944. this.appsTitle.ForeColor = System.Drawing.Color.DodgerBlue;
  1945. this.appsTitle.Location = new System.Drawing.Point(5, 7);
  1946. this.appsTitle.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1947. this.appsTitle.Name = "appsTitle";
  1948. this.appsTitle.Size = new System.Drawing.Size(365, 28);
  1949. this.appsTitle.TabIndex = 53;
  1950. this.appsTitle.Tag = "themeable";
  1951. this.appsTitle.Text = "Quickly download && install useful apps";
  1952. //
  1953. // btnGetFeed
  1954. //
  1955. this.btnGetFeed.BackColor = System.Drawing.Color.DodgerBlue;
  1956. this.btnGetFeed.FlatAppearance.BorderSize = 0;
  1957. this.btnGetFeed.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  1958. this.btnGetFeed.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  1959. this.btnGetFeed.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1960. this.btnGetFeed.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1961. this.btnGetFeed.ForeColor = System.Drawing.Color.White;
  1962. this.btnGetFeed.Location = new System.Drawing.Point(845, 7);
  1963. this.btnGetFeed.Margin = new System.Windows.Forms.Padding(2);
  1964. this.btnGetFeed.Name = "btnGetFeed";
  1965. this.btnGetFeed.Size = new System.Drawing.Size(144, 32);
  1966. this.btnGetFeed.TabIndex = 161;
  1967. this.btnGetFeed.Text = "Refresh links";
  1968. this.btnGetFeed.UseVisualStyleBackColor = false;
  1969. this.btnGetFeed.Click += new System.EventHandler(this.btnGetFeed_Click);
  1970. //
  1971. // panelCommonApps
  1972. //
  1973. this.panelCommonApps.Controls.Add(this.cAutoInstall);
  1974. this.panelCommonApps.Controls.Add(this.progressDownloader);
  1975. this.panelCommonApps.Controls.Add(this.c64);
  1976. this.panelCommonApps.Controls.Add(this.c32);
  1977. this.panelCommonApps.Controls.Add(this.btnDownloadApps);
  1978. this.panelCommonApps.Controls.Add(this.setDownDirLbl);
  1979. this.panelCommonApps.Controls.Add(this.txtDownloadFolder);
  1980. this.panelCommonApps.Controls.Add(this.changeDownDirB);
  1981. this.panelCommonApps.Controls.Add(this.txtDownloadStatus);
  1982. this.panelCommonApps.Controls.Add(this.linkWarnings);
  1983. this.panelCommonApps.Controls.Add(this.bitPref);
  1984. this.panelCommonApps.Controls.Add(this.goToDownloadsB);
  1985. this.panelCommonApps.Dock = System.Windows.Forms.DockStyle.Bottom;
  1986. this.panelCommonApps.Location = new System.Drawing.Point(3, 487);
  1987. this.panelCommonApps.Name = "panelCommonApps";
  1988. this.panelCommonApps.Size = new System.Drawing.Size(993, 120);
  1989. this.panelCommonApps.TabIndex = 162;
  1990. //
  1991. // cAutoInstall
  1992. //
  1993. this.cAutoInstall.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
  1994. this.cAutoInstall.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1995. this.cAutoInstall.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1996. this.cAutoInstall.Location = new System.Drawing.Point(620, 55);
  1997. this.cAutoInstall.Name = "cAutoInstall";
  1998. this.cAutoInstall.Size = new System.Drawing.Size(369, 24);
  1999. this.cAutoInstall.TabIndex = 107;
  2000. this.cAutoInstall.Text = "Install after downloading";
  2001. this.cAutoInstall.UseVisualStyleBackColor = true;
  2002. //
  2003. // progressDownloader
  2004. //
  2005. this.progressDownloader.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  2006. this.progressDownloader.Location = new System.Drawing.Point(8, 83);
  2007. this.progressDownloader.MarqueeAnimationSpeed = 15;
  2008. this.progressDownloader.Name = "progressDownloader";
  2009. this.progressDownloader.Size = new System.Drawing.Size(302, 10);
  2010. this.progressDownloader.TabIndex = 160;
  2011. //
  2012. // c64
  2013. //
  2014. this.c64.AutoSize = true;
  2015. this.c64.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2016. this.c64.Location = new System.Drawing.Point(373, 28);
  2017. this.c64.Name = "c64";
  2018. this.c64.Size = new System.Drawing.Size(72, 25);
  2019. this.c64.TabIndex = 75;
  2020. this.c64.TabStop = true;
  2021. this.c64.Text = "64-bit";
  2022. this.c64.UseVisualStyleBackColor = true;
  2023. //
  2024. // c32
  2025. //
  2026. this.c32.AutoSize = true;
  2027. this.c32.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2028. this.c32.Location = new System.Drawing.Point(448, 28);
  2029. this.c32.Name = "c32";
  2030. this.c32.Size = new System.Drawing.Size(72, 25);
  2031. this.c32.TabIndex = 76;
  2032. this.c32.TabStop = true;
  2033. this.c32.Text = "32-bit";
  2034. this.c32.UseVisualStyleBackColor = true;
  2035. //
  2036. // btnDownloadApps
  2037. //
  2038. this.btnDownloadApps.BackColor = System.Drawing.Color.DodgerBlue;
  2039. this.btnDownloadApps.FlatAppearance.BorderSize = 0;
  2040. this.btnDownloadApps.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2041. this.btnDownloadApps.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2042. this.btnDownloadApps.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2043. this.btnDownloadApps.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2044. this.btnDownloadApps.ForeColor = System.Drawing.Color.White;
  2045. this.btnDownloadApps.Location = new System.Drawing.Point(808, 82);
  2046. this.btnDownloadApps.Margin = new System.Windows.Forms.Padding(2);
  2047. this.btnDownloadApps.Name = "btnDownloadApps";
  2048. this.btnDownloadApps.Size = new System.Drawing.Size(183, 35);
  2049. this.btnDownloadApps.TabIndex = 50;
  2050. this.btnDownloadApps.Text = "Download";
  2051. this.btnDownloadApps.UseVisualStyleBackColor = false;
  2052. this.btnDownloadApps.Click += new System.EventHandler(this.btnDownloadApps_Click);
  2053. //
  2054. // setDownDirLbl
  2055. //
  2056. this.setDownDirLbl.AutoSize = true;
  2057. this.setDownDirLbl.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2058. this.setDownDirLbl.ForeColor = System.Drawing.Color.DodgerBlue;
  2059. this.setDownDirLbl.Location = new System.Drawing.Point(3, 4);
  2060. this.setDownDirLbl.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2061. this.setDownDirLbl.Name = "setDownDirLbl";
  2062. this.setDownDirLbl.Size = new System.Drawing.Size(160, 21);
  2063. this.setDownDirLbl.TabIndex = 69;
  2064. this.setDownDirLbl.Tag = "themeable";
  2065. this.setDownDirLbl.Text = "Set download folder";
  2066. //
  2067. // txtDownloadFolder
  2068. //
  2069. this.txtDownloadFolder.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(30)))), ((int)(((byte)(30)))));
  2070. this.txtDownloadFolder.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2071. this.txtDownloadFolder.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2072. this.txtDownloadFolder.ForeColor = System.Drawing.Color.Silver;
  2073. this.txtDownloadFolder.Location = new System.Drawing.Point(8, 30);
  2074. this.txtDownloadFolder.Name = "txtDownloadFolder";
  2075. this.txtDownloadFolder.Size = new System.Drawing.Size(302, 23);
  2076. this.txtDownloadFolder.TabIndex = 70;
  2077. this.txtDownloadFolder.TextChanged += new System.EventHandler(this.txtDownloadFolder_TextChanged);
  2078. //
  2079. // changeDownDirB
  2080. //
  2081. this.changeDownDirB.BackColor = System.Drawing.Color.DodgerBlue;
  2082. this.changeDownDirB.FlatAppearance.BorderSize = 0;
  2083. this.changeDownDirB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2084. this.changeDownDirB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2085. this.changeDownDirB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2086. this.changeDownDirB.ForeColor = System.Drawing.Color.White;
  2087. this.changeDownDirB.Location = new System.Drawing.Point(313, 30);
  2088. this.changeDownDirB.Margin = new System.Windows.Forms.Padding(2);
  2089. this.changeDownDirB.Name = "changeDownDirB";
  2090. this.changeDownDirB.Size = new System.Drawing.Size(30, 23);
  2091. this.changeDownDirB.TabIndex = 71;
  2092. this.changeDownDirB.Text = "...";
  2093. this.changeDownDirB.UseVisualStyleBackColor = false;
  2094. this.changeDownDirB.Click += new System.EventHandler(this.button5_Click);
  2095. //
  2096. // txtDownloadStatus
  2097. //
  2098. this.txtDownloadStatus.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  2099. this.txtDownloadStatus.AutoSize = true;
  2100. this.txtDownloadStatus.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2101. this.txtDownloadStatus.ForeColor = System.Drawing.Color.LightGray;
  2102. this.txtDownloadStatus.Location = new System.Drawing.Point(4, 58);
  2103. this.txtDownloadStatus.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2104. this.txtDownloadStatus.Name = "txtDownloadStatus";
  2105. this.txtDownloadStatus.Size = new System.Drawing.Size(32, 19);
  2106. this.txtDownloadStatus.TabIndex = 72;
  2107. this.txtDownloadStatus.Tag = "";
  2108. this.txtDownloadStatus.Text = "Idle";
  2109. //
  2110. // linkWarnings
  2111. //
  2112. this.linkWarnings.ActiveLinkColor = System.Drawing.Color.Gold;
  2113. this.linkWarnings.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  2114. this.linkWarnings.AutoSize = true;
  2115. this.linkWarnings.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2116. this.linkWarnings.ForeColor = System.Drawing.Color.Gold;
  2117. this.linkWarnings.LinkColor = System.Drawing.Color.Gold;
  2118. this.linkWarnings.Location = new System.Drawing.Point(4, 98);
  2119. this.linkWarnings.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2120. this.linkWarnings.Name = "linkWarnings";
  2121. this.linkWarnings.Size = new System.Drawing.Size(92, 19);
  2122. this.linkWarnings.TabIndex = 78;
  2123. this.linkWarnings.TabStop = true;
  2124. this.linkWarnings.Tag = "";
  2125. this.linkWarnings.Text = "See warnings";
  2126. this.linkWarnings.Visible = false;
  2127. this.linkWarnings.VisitedLinkColor = System.Drawing.Color.Gold;
  2128. this.linkWarnings.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
  2129. //
  2130. // bitPref
  2131. //
  2132. this.bitPref.AutoSize = true;
  2133. this.bitPref.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2134. this.bitPref.ForeColor = System.Drawing.Color.DodgerBlue;
  2135. this.bitPref.Location = new System.Drawing.Point(368, 5);
  2136. this.bitPref.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2137. this.bitPref.Name = "bitPref";
  2138. this.bitPref.Size = new System.Drawing.Size(143, 21);
  2139. this.bitPref.TabIndex = 74;
  2140. this.bitPref.Tag = "themeable";
  2141. this.bitPref.Text = "Set bit preference";
  2142. //
  2143. // goToDownloadsB
  2144. //
  2145. this.goToDownloadsB.BackColor = System.Drawing.Color.DodgerBlue;
  2146. this.goToDownloadsB.FlatAppearance.BorderSize = 0;
  2147. this.goToDownloadsB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2148. this.goToDownloadsB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2149. this.goToDownloadsB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2150. this.goToDownloadsB.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2151. this.goToDownloadsB.ForeColor = System.Drawing.Color.White;
  2152. this.goToDownloadsB.Location = new System.Drawing.Point(621, 82);
  2153. this.goToDownloadsB.Margin = new System.Windows.Forms.Padding(2);
  2154. this.goToDownloadsB.Name = "goToDownloadsB";
  2155. this.goToDownloadsB.Size = new System.Drawing.Size(183, 35);
  2156. this.goToDownloadsB.TabIndex = 77;
  2157. this.goToDownloadsB.Text = "Go to Downloads";
  2158. this.goToDownloadsB.UseVisualStyleBackColor = false;
  2159. this.goToDownloadsB.Click += new System.EventHandler(this.button6_Click);
  2160. //
  2161. // groupSystemTools
  2162. //
  2163. this.groupSystemTools.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  2164. | System.Windows.Forms.AnchorStyles.Left)));
  2165. this.groupSystemTools.AutoScroll = true;
  2166. this.groupSystemTools.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2167. this.groupSystemTools.Location = new System.Drawing.Point(13, 64);
  2168. this.groupSystemTools.Name = "groupSystemTools";
  2169. this.groupSystemTools.Size = new System.Drawing.Size(246, 418);
  2170. this.groupSystemTools.TabIndex = 162;
  2171. //
  2172. // cleanerTab
  2173. //
  2174. this.cleanerTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  2175. this.cleanerTab.Controls.Add(this.panel14);
  2176. this.cleanerTab.Controls.Add(this.panel13);
  2177. this.cleanerTab.Controls.Add(this.panel1);
  2178. this.cleanerTab.Location = new System.Drawing.Point(4, 25);
  2179. this.cleanerTab.Margin = new System.Windows.Forms.Padding(2);
  2180. this.cleanerTab.Name = "cleanerTab";
  2181. this.cleanerTab.Padding = new System.Windows.Forms.Padding(2);
  2182. this.cleanerTab.Size = new System.Drawing.Size(999, 610);
  2183. this.cleanerTab.TabIndex = 5;
  2184. this.cleanerTab.Text = "Cleaner";
  2185. //
  2186. // panel14
  2187. //
  2188. this.panel14.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2189. this.panel14.Controls.Add(this.listCleanPreview);
  2190. this.panel14.Dock = System.Windows.Forms.DockStyle.Fill;
  2191. this.panel14.Location = new System.Drawing.Point(221, 2);
  2192. this.panel14.Name = "panel14";
  2193. this.panel14.Size = new System.Drawing.Size(776, 545);
  2194. this.panel14.TabIndex = 51;
  2195. //
  2196. // listCleanPreview
  2197. //
  2198. this.listCleanPreview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  2199. this.listCleanPreview.BorderStyle = System.Windows.Forms.BorderStyle.None;
  2200. this.listCleanPreview.Dock = System.Windows.Forms.DockStyle.Fill;
  2201. this.listCleanPreview.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2202. this.listCleanPreview.ForeColor = System.Drawing.Color.Silver;
  2203. this.listCleanPreview.FormattingEnabled = true;
  2204. this.listCleanPreview.HorizontalScrollbar = true;
  2205. this.listCleanPreview.Location = new System.Drawing.Point(0, 0);
  2206. this.listCleanPreview.Name = "listCleanPreview";
  2207. this.listCleanPreview.Size = new System.Drawing.Size(774, 543);
  2208. this.listCleanPreview.TabIndex = 1;
  2209. //
  2210. // panel13
  2211. //
  2212. this.panel13.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2213. this.panel13.Controls.Add(this.analyzeDriveB);
  2214. this.panel13.Controls.Add(this.checkSelectAll);
  2215. this.panel13.Controls.Add(this.lblPretext);
  2216. this.panel13.Controls.Add(this.cleanDriveB);
  2217. this.panel13.Controls.Add(this.lblFootprint);
  2218. this.panel13.Dock = System.Windows.Forms.DockStyle.Bottom;
  2219. this.panel13.Location = new System.Drawing.Point(221, 547);
  2220. this.panel13.Name = "panel13";
  2221. this.panel13.Size = new System.Drawing.Size(776, 61);
  2222. this.panel13.TabIndex = 50;
  2223. //
  2224. // analyzeDriveB
  2225. //
  2226. this.analyzeDriveB.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  2227. this.analyzeDriveB.BackColor = System.Drawing.Color.DodgerBlue;
  2228. this.analyzeDriveB.FlatAppearance.BorderSize = 0;
  2229. this.analyzeDriveB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2230. this.analyzeDriveB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2231. this.analyzeDriveB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2232. this.analyzeDriveB.ForeColor = System.Drawing.Color.White;
  2233. this.analyzeDriveB.Location = new System.Drawing.Point(528, 26);
  2234. this.analyzeDriveB.Margin = new System.Windows.Forms.Padding(2);
  2235. this.analyzeDriveB.Name = "analyzeDriveB";
  2236. this.analyzeDriveB.Size = new System.Drawing.Size(120, 31);
  2237. this.analyzeDriveB.TabIndex = 89;
  2238. this.analyzeDriveB.Text = "Analyze";
  2239. this.analyzeDriveB.UseVisualStyleBackColor = false;
  2240. this.analyzeDriveB.Click += new System.EventHandler(this.analyzeDriveB_Click);
  2241. //
  2242. // checkSelectAll
  2243. //
  2244. this.checkSelectAll.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  2245. this.checkSelectAll.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2246. this.checkSelectAll.ForeColor = System.Drawing.Color.DodgerBlue;
  2247. this.checkSelectAll.LinkColor = System.Drawing.Color.DodgerBlue;
  2248. this.checkSelectAll.Location = new System.Drawing.Point(528, 1);
  2249. this.checkSelectAll.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2250. this.checkSelectAll.Name = "checkSelectAll";
  2251. this.checkSelectAll.Size = new System.Drawing.Size(247, 20);
  2252. this.checkSelectAll.TabIndex = 88;
  2253. this.checkSelectAll.TabStop = true;
  2254. this.checkSelectAll.Tag = "themeable";
  2255. this.checkSelectAll.Text = "Select all";
  2256. this.checkSelectAll.TextAlign = System.Drawing.ContentAlignment.TopRight;
  2257. this.checkSelectAll.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.checkSelectAll_LinkClicked);
  2258. //
  2259. // lblPretext
  2260. //
  2261. this.lblPretext.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  2262. this.lblPretext.AutoSize = true;
  2263. this.lblPretext.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2264. this.lblPretext.ForeColor = System.Drawing.Color.Silver;
  2265. this.lblPretext.Location = new System.Drawing.Point(2, 4);
  2266. this.lblPretext.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2267. this.lblPretext.Name = "lblPretext";
  2268. this.lblPretext.Size = new System.Drawing.Size(199, 21);
  2269. this.lblPretext.TabIndex = 49;
  2270. this.lblPretext.Tag = "";
  2271. this.lblPretext.Text = "Maximum size to be freed:";
  2272. this.lblPretext.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2273. //
  2274. // cleanDriveB
  2275. //
  2276. this.cleanDriveB.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  2277. this.cleanDriveB.BackColor = System.Drawing.Color.DodgerBlue;
  2278. this.cleanDriveB.FlatAppearance.BorderSize = 0;
  2279. this.cleanDriveB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2280. this.cleanDriveB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2281. this.cleanDriveB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2282. this.cleanDriveB.ForeColor = System.Drawing.Color.White;
  2283. this.cleanDriveB.Location = new System.Drawing.Point(652, 26);
  2284. this.cleanDriveB.Margin = new System.Windows.Forms.Padding(2);
  2285. this.cleanDriveB.Name = "cleanDriveB";
  2286. this.cleanDriveB.Size = new System.Drawing.Size(120, 31);
  2287. this.cleanDriveB.TabIndex = 34;
  2288. this.cleanDriveB.Text = "Clean";
  2289. this.cleanDriveB.UseVisualStyleBackColor = false;
  2290. this.cleanDriveB.Click += new System.EventHandler(this.cleanDriveB_Click);
  2291. //
  2292. // lblFootprint
  2293. //
  2294. this.lblFootprint.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  2295. this.lblFootprint.Font = new System.Drawing.Font("Segoe UI Semibold", 13F, ((System.Drawing.FontStyle)(((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic)
  2296. | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2297. this.lblFootprint.ForeColor = System.Drawing.Color.DodgerBlue;
  2298. this.lblFootprint.Location = new System.Drawing.Point(1, 26);
  2299. this.lblFootprint.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2300. this.lblFootprint.Name = "lblFootprint";
  2301. this.lblFootprint.Size = new System.Drawing.Size(197, 31);
  2302. this.lblFootprint.TabIndex = 48;
  2303. this.lblFootprint.Tag = "themeable";
  2304. this.lblFootprint.Text = "-";
  2305. this.lblFootprint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2306. //
  2307. // panel1
  2308. //
  2309. this.panel1.AutoScroll = true;
  2310. this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2311. this.panel1.Controls.Add(this.bravePasswords);
  2312. this.panel1.Controls.Add(this.braveSession);
  2313. this.panel1.Controls.Add(this.braveHistory);
  2314. this.panel1.Controls.Add(this.braveCookies);
  2315. this.panel1.Controls.Add(this.braveCache);
  2316. this.panel1.Controls.Add(this.label9);
  2317. this.panel1.Controls.Add(this.pictureBox4);
  2318. this.panel1.Controls.Add(this.label8);
  2319. this.panel1.Controls.Add(this.pictureBox2);
  2320. this.panel1.Controls.Add(this.edgeSession);
  2321. this.panel1.Controls.Add(this.edgeHistory);
  2322. this.panel1.Controls.Add(this.edgeCookies);
  2323. this.panel1.Controls.Add(this.edgeCache);
  2324. this.panel1.Controls.Add(this.IECache);
  2325. this.panel1.Controls.Add(this.firefoxHistory);
  2326. this.panel1.Controls.Add(this.firefoxCookies);
  2327. this.panel1.Controls.Add(this.firefoxCache);
  2328. this.panel1.Controls.Add(this.chromePws);
  2329. this.panel1.Controls.Add(this.chromeSession);
  2330. this.panel1.Controls.Add(this.chromeHistory);
  2331. this.panel1.Controls.Add(this.chromeCookies);
  2332. this.panel1.Controls.Add(this.chromeCache);
  2333. this.panel1.Controls.Add(this.label7);
  2334. this.panel1.Controls.Add(this.label6);
  2335. this.panel1.Controls.Add(this.label5);
  2336. this.panel1.Controls.Add(this.label4);
  2337. this.panel1.Controls.Add(this.pictureBox11);
  2338. this.panel1.Controls.Add(this.pictureBox10);
  2339. this.panel1.Controls.Add(this.pictureBox9);
  2340. this.panel1.Controls.Add(this.pictureBox8);
  2341. this.panel1.Controls.Add(this.checkErrorReports);
  2342. this.panel1.Controls.Add(this.checkTemp);
  2343. this.panel1.Controls.Add(this.checkBin);
  2344. this.panel1.Controls.Add(this.checkMiniDumps);
  2345. this.panel1.Dock = System.Windows.Forms.DockStyle.Left;
  2346. this.panel1.Location = new System.Drawing.Point(2, 2);
  2347. this.panel1.Margin = new System.Windows.Forms.Padding(2);
  2348. this.panel1.Name = "panel1";
  2349. this.panel1.Size = new System.Drawing.Size(219, 606);
  2350. this.panel1.TabIndex = 47;
  2351. //
  2352. // bravePasswords
  2353. //
  2354. this.bravePasswords.AutoSize = true;
  2355. this.bravePasswords.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2356. this.bravePasswords.ForeColor = System.Drawing.Color.White;
  2357. this.bravePasswords.Location = new System.Drawing.Point(9, 676);
  2358. this.bravePasswords.Margin = new System.Windows.Forms.Padding(2);
  2359. this.bravePasswords.Name = "bravePasswords";
  2360. this.bravePasswords.Size = new System.Drawing.Size(93, 23);
  2361. this.bravePasswords.TabIndex = 78;
  2362. this.bravePasswords.Text = "Passwords";
  2363. this.bravePasswords.UseVisualStyleBackColor = true;
  2364. //
  2365. // braveSession
  2366. //
  2367. this.braveSession.AutoSize = true;
  2368. this.braveSession.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2369. this.braveSession.ForeColor = System.Drawing.Color.White;
  2370. this.braveSession.Location = new System.Drawing.Point(9, 649);
  2371. this.braveSession.Margin = new System.Windows.Forms.Padding(2);
  2372. this.braveSession.Name = "braveSession";
  2373. this.braveSession.Size = new System.Drawing.Size(75, 23);
  2374. this.braveSession.TabIndex = 77;
  2375. this.braveSession.Text = "Session";
  2376. this.braveSession.UseVisualStyleBackColor = true;
  2377. //
  2378. // braveHistory
  2379. //
  2380. this.braveHistory.AutoSize = true;
  2381. this.braveHistory.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2382. this.braveHistory.ForeColor = System.Drawing.Color.White;
  2383. this.braveHistory.Location = new System.Drawing.Point(9, 622);
  2384. this.braveHistory.Margin = new System.Windows.Forms.Padding(2);
  2385. this.braveHistory.Name = "braveHistory";
  2386. this.braveHistory.Size = new System.Drawing.Size(74, 23);
  2387. this.braveHistory.TabIndex = 76;
  2388. this.braveHistory.Text = "History";
  2389. this.braveHistory.UseVisualStyleBackColor = true;
  2390. //
  2391. // braveCookies
  2392. //
  2393. this.braveCookies.AutoSize = true;
  2394. this.braveCookies.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2395. this.braveCookies.ForeColor = System.Drawing.Color.White;
  2396. this.braveCookies.Location = new System.Drawing.Point(9, 595);
  2397. this.braveCookies.Margin = new System.Windows.Forms.Padding(2);
  2398. this.braveCookies.Name = "braveCookies";
  2399. this.braveCookies.Size = new System.Drawing.Size(77, 23);
  2400. this.braveCookies.TabIndex = 75;
  2401. this.braveCookies.Text = "Cookies";
  2402. this.braveCookies.UseVisualStyleBackColor = true;
  2403. //
  2404. // braveCache
  2405. //
  2406. this.braveCache.AutoSize = true;
  2407. this.braveCache.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2408. this.braveCache.ForeColor = System.Drawing.Color.White;
  2409. this.braveCache.Location = new System.Drawing.Point(9, 568);
  2410. this.braveCache.Margin = new System.Windows.Forms.Padding(2);
  2411. this.braveCache.Name = "braveCache";
  2412. this.braveCache.Size = new System.Drawing.Size(66, 23);
  2413. this.braveCache.TabIndex = 74;
  2414. this.braveCache.Text = "Cache";
  2415. this.braveCache.UseVisualStyleBackColor = true;
  2416. //
  2417. // label9
  2418. //
  2419. this.label9.AutoSize = true;
  2420. this.label9.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2421. this.label9.ForeColor = System.Drawing.Color.DarkGray;
  2422. this.label9.Location = new System.Drawing.Point(30, 543);
  2423. this.label9.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2424. this.label9.Name = "label9";
  2425. this.label9.Size = new System.Drawing.Size(107, 20);
  2426. this.label9.TabIndex = 73;
  2427. this.label9.Tag = "";
  2428. this.label9.Text = "Brave Browser";
  2429. //
  2430. // pictureBox4
  2431. //
  2432. this.pictureBox4.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox4.Image")));
  2433. this.pictureBox4.Location = new System.Drawing.Point(7, 542);
  2434. this.pictureBox4.Name = "pictureBox4";
  2435. this.pictureBox4.Size = new System.Drawing.Size(20, 20);
  2436. this.pictureBox4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  2437. this.pictureBox4.TabIndex = 72;
  2438. this.pictureBox4.TabStop = false;
  2439. //
  2440. // label8
  2441. //
  2442. this.label8.AutoSize = true;
  2443. this.label8.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2444. this.label8.ForeColor = System.Drawing.Color.DarkGray;
  2445. this.label8.Location = new System.Drawing.Point(32, 12);
  2446. this.label8.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2447. this.label8.Name = "label8";
  2448. this.label8.Size = new System.Drawing.Size(71, 20);
  2449. this.label8.TabIndex = 71;
  2450. this.label8.Tag = "";
  2451. this.label8.Text = "Windows";
  2452. //
  2453. // pictureBox2
  2454. //
  2455. this.pictureBox2.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox2.Image")));
  2456. this.pictureBox2.Location = new System.Drawing.Point(7, 12);
  2457. this.pictureBox2.Name = "pictureBox2";
  2458. this.pictureBox2.Size = new System.Drawing.Size(20, 20);
  2459. this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  2460. this.pictureBox2.TabIndex = 70;
  2461. this.pictureBox2.TabStop = false;
  2462. //
  2463. // edgeSession
  2464. //
  2465. this.edgeSession.AutoSize = true;
  2466. this.edgeSession.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2467. this.edgeSession.ForeColor = System.Drawing.Color.White;
  2468. this.edgeSession.Location = new System.Drawing.Point(9, 516);
  2469. this.edgeSession.Margin = new System.Windows.Forms.Padding(2);
  2470. this.edgeSession.Name = "edgeSession";
  2471. this.edgeSession.Size = new System.Drawing.Size(75, 23);
  2472. this.edgeSession.TabIndex = 69;
  2473. this.edgeSession.Text = "Session";
  2474. this.edgeSession.UseVisualStyleBackColor = true;
  2475. //
  2476. // edgeHistory
  2477. //
  2478. this.edgeHistory.AutoSize = true;
  2479. this.edgeHistory.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2480. this.edgeHistory.ForeColor = System.Drawing.Color.White;
  2481. this.edgeHistory.Location = new System.Drawing.Point(9, 489);
  2482. this.edgeHistory.Margin = new System.Windows.Forms.Padding(2);
  2483. this.edgeHistory.Name = "edgeHistory";
  2484. this.edgeHistory.Size = new System.Drawing.Size(74, 23);
  2485. this.edgeHistory.TabIndex = 68;
  2486. this.edgeHistory.Text = "History";
  2487. this.edgeHistory.UseVisualStyleBackColor = true;
  2488. //
  2489. // edgeCookies
  2490. //
  2491. this.edgeCookies.AutoSize = true;
  2492. this.edgeCookies.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2493. this.edgeCookies.ForeColor = System.Drawing.Color.White;
  2494. this.edgeCookies.Location = new System.Drawing.Point(9, 462);
  2495. this.edgeCookies.Margin = new System.Windows.Forms.Padding(2);
  2496. this.edgeCookies.Name = "edgeCookies";
  2497. this.edgeCookies.Size = new System.Drawing.Size(77, 23);
  2498. this.edgeCookies.TabIndex = 67;
  2499. this.edgeCookies.Text = "Cookies";
  2500. this.edgeCookies.UseVisualStyleBackColor = true;
  2501. //
  2502. // edgeCache
  2503. //
  2504. this.edgeCache.AutoSize = true;
  2505. this.edgeCache.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2506. this.edgeCache.ForeColor = System.Drawing.Color.White;
  2507. this.edgeCache.Location = new System.Drawing.Point(9, 435);
  2508. this.edgeCache.Margin = new System.Windows.Forms.Padding(2);
  2509. this.edgeCache.Name = "edgeCache";
  2510. this.edgeCache.Size = new System.Drawing.Size(66, 23);
  2511. this.edgeCache.TabIndex = 66;
  2512. this.edgeCache.Text = "Cache";
  2513. this.edgeCache.UseVisualStyleBackColor = true;
  2514. //
  2515. // IECache
  2516. //
  2517. this.IECache.AutoSize = true;
  2518. this.IECache.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2519. this.IECache.ForeColor = System.Drawing.Color.White;
  2520. this.IECache.Location = new System.Drawing.Point(10, 725);
  2521. this.IECache.Margin = new System.Windows.Forms.Padding(2);
  2522. this.IECache.Name = "IECache";
  2523. this.IECache.Size = new System.Drawing.Size(66, 23);
  2524. this.IECache.TabIndex = 65;
  2525. this.IECache.Text = "Cache";
  2526. this.IECache.UseVisualStyleBackColor = true;
  2527. //
  2528. // firefoxHistory
  2529. //
  2530. this.firefoxHistory.AutoSize = true;
  2531. this.firefoxHistory.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2532. this.firefoxHistory.ForeColor = System.Drawing.Color.White;
  2533. this.firefoxHistory.Location = new System.Drawing.Point(9, 384);
  2534. this.firefoxHistory.Margin = new System.Windows.Forms.Padding(2);
  2535. this.firefoxHistory.Name = "firefoxHistory";
  2536. this.firefoxHistory.Size = new System.Drawing.Size(74, 23);
  2537. this.firefoxHistory.TabIndex = 64;
  2538. this.firefoxHistory.Text = "History";
  2539. this.firefoxHistory.UseVisualStyleBackColor = true;
  2540. //
  2541. // firefoxCookies
  2542. //
  2543. this.firefoxCookies.AutoSize = true;
  2544. this.firefoxCookies.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2545. this.firefoxCookies.ForeColor = System.Drawing.Color.White;
  2546. this.firefoxCookies.Location = new System.Drawing.Point(9, 357);
  2547. this.firefoxCookies.Margin = new System.Windows.Forms.Padding(2);
  2548. this.firefoxCookies.Name = "firefoxCookies";
  2549. this.firefoxCookies.Size = new System.Drawing.Size(77, 23);
  2550. this.firefoxCookies.TabIndex = 63;
  2551. this.firefoxCookies.Text = "Cookies";
  2552. this.firefoxCookies.UseVisualStyleBackColor = true;
  2553. //
  2554. // firefoxCache
  2555. //
  2556. this.firefoxCache.AutoSize = true;
  2557. this.firefoxCache.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2558. this.firefoxCache.ForeColor = System.Drawing.Color.White;
  2559. this.firefoxCache.Location = new System.Drawing.Point(9, 330);
  2560. this.firefoxCache.Margin = new System.Windows.Forms.Padding(2);
  2561. this.firefoxCache.Name = "firefoxCache";
  2562. this.firefoxCache.Size = new System.Drawing.Size(66, 23);
  2563. this.firefoxCache.TabIndex = 62;
  2564. this.firefoxCache.Text = "Cache";
  2565. this.firefoxCache.UseVisualStyleBackColor = true;
  2566. //
  2567. // chromePws
  2568. //
  2569. this.chromePws.AutoSize = true;
  2570. this.chromePws.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2571. this.chromePws.ForeColor = System.Drawing.Color.White;
  2572. this.chromePws.Location = new System.Drawing.Point(8, 278);
  2573. this.chromePws.Margin = new System.Windows.Forms.Padding(2);
  2574. this.chromePws.Name = "chromePws";
  2575. this.chromePws.Size = new System.Drawing.Size(93, 23);
  2576. this.chromePws.TabIndex = 61;
  2577. this.chromePws.Text = "Passwords";
  2578. this.chromePws.UseVisualStyleBackColor = true;
  2579. //
  2580. // chromeSession
  2581. //
  2582. this.chromeSession.AutoSize = true;
  2583. this.chromeSession.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2584. this.chromeSession.ForeColor = System.Drawing.Color.White;
  2585. this.chromeSession.Location = new System.Drawing.Point(8, 251);
  2586. this.chromeSession.Margin = new System.Windows.Forms.Padding(2);
  2587. this.chromeSession.Name = "chromeSession";
  2588. this.chromeSession.Size = new System.Drawing.Size(75, 23);
  2589. this.chromeSession.TabIndex = 60;
  2590. this.chromeSession.Text = "Session";
  2591. this.chromeSession.UseVisualStyleBackColor = true;
  2592. //
  2593. // chromeHistory
  2594. //
  2595. this.chromeHistory.AutoSize = true;
  2596. this.chromeHistory.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2597. this.chromeHistory.ForeColor = System.Drawing.Color.White;
  2598. this.chromeHistory.Location = new System.Drawing.Point(8, 224);
  2599. this.chromeHistory.Margin = new System.Windows.Forms.Padding(2);
  2600. this.chromeHistory.Name = "chromeHistory";
  2601. this.chromeHistory.Size = new System.Drawing.Size(74, 23);
  2602. this.chromeHistory.TabIndex = 59;
  2603. this.chromeHistory.Text = "History";
  2604. this.chromeHistory.UseVisualStyleBackColor = true;
  2605. //
  2606. // chromeCookies
  2607. //
  2608. this.chromeCookies.AutoSize = true;
  2609. this.chromeCookies.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2610. this.chromeCookies.ForeColor = System.Drawing.Color.White;
  2611. this.chromeCookies.Location = new System.Drawing.Point(8, 197);
  2612. this.chromeCookies.Margin = new System.Windows.Forms.Padding(2);
  2613. this.chromeCookies.Name = "chromeCookies";
  2614. this.chromeCookies.Size = new System.Drawing.Size(77, 23);
  2615. this.chromeCookies.TabIndex = 58;
  2616. this.chromeCookies.Text = "Cookies";
  2617. this.chromeCookies.UseVisualStyleBackColor = true;
  2618. //
  2619. // chromeCache
  2620. //
  2621. this.chromeCache.AutoSize = true;
  2622. this.chromeCache.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2623. this.chromeCache.ForeColor = System.Drawing.Color.White;
  2624. this.chromeCache.Location = new System.Drawing.Point(8, 170);
  2625. this.chromeCache.Margin = new System.Windows.Forms.Padding(2);
  2626. this.chromeCache.Name = "chromeCache";
  2627. this.chromeCache.Size = new System.Drawing.Size(66, 23);
  2628. this.chromeCache.TabIndex = 57;
  2629. this.chromeCache.Text = "Cache";
  2630. this.chromeCache.UseVisualStyleBackColor = true;
  2631. //
  2632. // label7
  2633. //
  2634. this.label7.AutoSize = true;
  2635. this.label7.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2636. this.label7.ForeColor = System.Drawing.Color.DarkGray;
  2637. this.label7.Location = new System.Drawing.Point(31, 410);
  2638. this.label7.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2639. this.label7.Name = "label7";
  2640. this.label7.Size = new System.Drawing.Size(112, 20);
  2641. this.label7.TabIndex = 56;
  2642. this.label7.Tag = "";
  2643. this.label7.Text = "Microsoft Edge";
  2644. //
  2645. // label6
  2646. //
  2647. this.label6.AutoSize = true;
  2648. this.label6.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2649. this.label6.ForeColor = System.Drawing.Color.DarkGray;
  2650. this.label6.Location = new System.Drawing.Point(33, 701);
  2651. this.label6.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2652. this.label6.Name = "label6";
  2653. this.label6.Size = new System.Drawing.Size(125, 20);
  2654. this.label6.TabIndex = 55;
  2655. this.label6.Tag = "";
  2656. this.label6.Text = "Internet Explorer";
  2657. //
  2658. // label5
  2659. //
  2660. this.label5.AutoSize = true;
  2661. this.label5.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2662. this.label5.ForeColor = System.Drawing.Color.DarkGray;
  2663. this.label5.Location = new System.Drawing.Point(30, 306);
  2664. this.label5.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2665. this.label5.Name = "label5";
  2666. this.label5.Size = new System.Drawing.Size(111, 20);
  2667. this.label5.TabIndex = 54;
  2668. this.label5.Tag = "";
  2669. this.label5.Text = "Mozilla Firefox";
  2670. //
  2671. // label4
  2672. //
  2673. this.label4.AutoSize = true;
  2674. this.label4.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2675. this.label4.ForeColor = System.Drawing.Color.DarkGray;
  2676. this.label4.Location = new System.Drawing.Point(31, 146);
  2677. this.label4.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2678. this.label4.Name = "label4";
  2679. this.label4.Size = new System.Drawing.Size(116, 20);
  2680. this.label4.TabIndex = 47;
  2681. this.label4.Tag = "";
  2682. this.label4.Text = "Google Chrome";
  2683. //
  2684. // pictureBox11
  2685. //
  2686. this.pictureBox11.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox11.Image")));
  2687. this.pictureBox11.Location = new System.Drawing.Point(9, 410);
  2688. this.pictureBox11.Name = "pictureBox11";
  2689. this.pictureBox11.Size = new System.Drawing.Size(20, 20);
  2690. this.pictureBox11.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  2691. this.pictureBox11.TabIndex = 53;
  2692. this.pictureBox11.TabStop = false;
  2693. //
  2694. // pictureBox10
  2695. //
  2696. this.pictureBox10.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox10.Image")));
  2697. this.pictureBox10.Location = new System.Drawing.Point(9, 700);
  2698. this.pictureBox10.Name = "pictureBox10";
  2699. this.pictureBox10.Size = new System.Drawing.Size(20, 20);
  2700. this.pictureBox10.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  2701. this.pictureBox10.TabIndex = 52;
  2702. this.pictureBox10.TabStop = false;
  2703. //
  2704. // pictureBox9
  2705. //
  2706. this.pictureBox9.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox9.Image")));
  2707. this.pictureBox9.Location = new System.Drawing.Point(7, 146);
  2708. this.pictureBox9.Name = "pictureBox9";
  2709. this.pictureBox9.Size = new System.Drawing.Size(20, 20);
  2710. this.pictureBox9.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  2711. this.pictureBox9.TabIndex = 51;
  2712. this.pictureBox9.TabStop = false;
  2713. //
  2714. // pictureBox8
  2715. //
  2716. this.pictureBox8.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox8.Image")));
  2717. this.pictureBox8.Location = new System.Drawing.Point(9, 306);
  2718. this.pictureBox8.Name = "pictureBox8";
  2719. this.pictureBox8.Size = new System.Drawing.Size(20, 20);
  2720. this.pictureBox8.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  2721. this.pictureBox8.TabIndex = 50;
  2722. this.pictureBox8.TabStop = false;
  2723. //
  2724. // checkErrorReports
  2725. //
  2726. this.checkErrorReports.AutoSize = true;
  2727. this.checkErrorReports.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2728. this.checkErrorReports.ForeColor = System.Drawing.Color.White;
  2729. this.checkErrorReports.Location = new System.Drawing.Point(8, 91);
  2730. this.checkErrorReports.Margin = new System.Windows.Forms.Padding(2);
  2731. this.checkErrorReports.Name = "checkErrorReports";
  2732. this.checkErrorReports.Size = new System.Drawing.Size(106, 23);
  2733. this.checkErrorReports.TabIndex = 44;
  2734. this.checkErrorReports.Text = "Error reports";
  2735. this.checkErrorReports.UseVisualStyleBackColor = true;
  2736. //
  2737. // checkTemp
  2738. //
  2739. this.checkTemp.AutoSize = true;
  2740. this.checkTemp.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2741. this.checkTemp.ForeColor = System.Drawing.Color.White;
  2742. this.checkTemp.Location = new System.Drawing.Point(8, 37);
  2743. this.checkTemp.Margin = new System.Windows.Forms.Padding(2);
  2744. this.checkTemp.Name = "checkTemp";
  2745. this.checkTemp.Size = new System.Drawing.Size(125, 23);
  2746. this.checkTemp.TabIndex = 36;
  2747. this.checkTemp.Text = "Temporary files";
  2748. this.checkTemp.UseVisualStyleBackColor = true;
  2749. //
  2750. // checkBin
  2751. //
  2752. this.checkBin.AutoSize = true;
  2753. this.checkBin.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2754. this.checkBin.ForeColor = System.Drawing.Color.White;
  2755. this.checkBin.Location = new System.Drawing.Point(8, 118);
  2756. this.checkBin.Margin = new System.Windows.Forms.Padding(2);
  2757. this.checkBin.Name = "checkBin";
  2758. this.checkBin.Size = new System.Drawing.Size(100, 23);
  2759. this.checkBin.TabIndex = 41;
  2760. this.checkBin.Text = "Recycle Bin";
  2761. this.checkBin.UseVisualStyleBackColor = true;
  2762. //
  2763. // checkMiniDumps
  2764. //
  2765. this.checkMiniDumps.AutoSize = true;
  2766. this.checkMiniDumps.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2767. this.checkMiniDumps.ForeColor = System.Drawing.Color.White;
  2768. this.checkMiniDumps.Location = new System.Drawing.Point(8, 64);
  2769. this.checkMiniDumps.Margin = new System.Windows.Forms.Padding(2);
  2770. this.checkMiniDumps.Name = "checkMiniDumps";
  2771. this.checkMiniDumps.Size = new System.Drawing.Size(140, 23);
  2772. this.checkMiniDumps.TabIndex = 39;
  2773. this.checkMiniDumps.Text = "BSOD Minidumps";
  2774. this.checkMiniDumps.UseVisualStyleBackColor = true;
  2775. //
  2776. // pingerTab
  2777. //
  2778. this.pingerTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  2779. this.pingerTab.Controls.Add(this.linkDNSv6A);
  2780. this.pingerTab.Controls.Add(this.linkDNSv4A);
  2781. this.pingerTab.Controls.Add(this.linkDNSv6);
  2782. this.pingerTab.Controls.Add(this.linkDNSv4);
  2783. this.pingerTab.Controls.Add(this.label3);
  2784. this.pingerTab.Controls.Add(this.label1);
  2785. this.pingerTab.Controls.Add(this.btnOpenNetwork);
  2786. this.pingerTab.Controls.Add(this.flushCacheB);
  2787. this.pingerTab.Controls.Add(this.btnExport);
  2788. this.pingerTab.Controls.Add(this.copyB);
  2789. this.pingerTab.Controls.Add(this.copyIPB);
  2790. this.pingerTab.Controls.Add(this.panel7);
  2791. this.pingerTab.Controls.Add(this.lblResults);
  2792. this.pingerTab.Controls.Add(this.btnShodan);
  2793. this.pingerTab.Controls.Add(this.btnPing);
  2794. this.pingerTab.Controls.Add(this.txtPingInput);
  2795. this.pingerTab.Controls.Add(this.lblPinger);
  2796. this.pingerTab.Controls.Add(this.pingerTitle);
  2797. this.pingerTab.Controls.Add(this.boxAdapter);
  2798. this.pingerTab.Controls.Add(this.boxDNS);
  2799. this.pingerTab.Location = new System.Drawing.Point(4, 25);
  2800. this.pingerTab.Name = "pingerTab";
  2801. this.pingerTab.Padding = new System.Windows.Forms.Padding(3);
  2802. this.pingerTab.Size = new System.Drawing.Size(999, 610);
  2803. this.pingerTab.TabIndex = 13;
  2804. this.pingerTab.Text = "Pinger";
  2805. //
  2806. // linkDNSv6A
  2807. //
  2808. this.linkDNSv6A.AutoSize = true;
  2809. this.linkDNSv6A.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2810. this.linkDNSv6A.ForeColor = System.Drawing.Color.DodgerBlue;
  2811. this.linkDNSv6A.LinkColor = System.Drawing.Color.DodgerBlue;
  2812. this.linkDNSv6A.Location = new System.Drawing.Point(585, 251);
  2813. this.linkDNSv6A.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2814. this.linkDNSv6A.Name = "linkDNSv6A";
  2815. this.linkDNSv6A.Size = new System.Drawing.Size(15, 20);
  2816. this.linkDNSv6A.TabIndex = 103;
  2817. this.linkDNSv6A.TabStop = true;
  2818. this.linkDNSv6A.Tag = "themeable";
  2819. this.linkDNSv6A.Text = "-";
  2820. //
  2821. // linkDNSv4A
  2822. //
  2823. this.linkDNSv4A.AutoSize = true;
  2824. this.linkDNSv4A.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2825. this.linkDNSv4A.ForeColor = System.Drawing.Color.DodgerBlue;
  2826. this.linkDNSv4A.LinkColor = System.Drawing.Color.DodgerBlue;
  2827. this.linkDNSv4A.Location = new System.Drawing.Point(584, 194);
  2828. this.linkDNSv4A.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2829. this.linkDNSv4A.Name = "linkDNSv4A";
  2830. this.linkDNSv4A.Size = new System.Drawing.Size(15, 20);
  2831. this.linkDNSv4A.TabIndex = 102;
  2832. this.linkDNSv4A.TabStop = true;
  2833. this.linkDNSv4A.Tag = "themeable";
  2834. this.linkDNSv4A.Text = "-";
  2835. //
  2836. // linkDNSv6
  2837. //
  2838. this.linkDNSv6.AutoSize = true;
  2839. this.linkDNSv6.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2840. this.linkDNSv6.ForeColor = System.Drawing.Color.DodgerBlue;
  2841. this.linkDNSv6.LinkColor = System.Drawing.Color.DodgerBlue;
  2842. this.linkDNSv6.Location = new System.Drawing.Point(585, 228);
  2843. this.linkDNSv6.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2844. this.linkDNSv6.Name = "linkDNSv6";
  2845. this.linkDNSv6.Size = new System.Drawing.Size(15, 20);
  2846. this.linkDNSv6.TabIndex = 101;
  2847. this.linkDNSv6.TabStop = true;
  2848. this.linkDNSv6.Tag = "themeable";
  2849. this.linkDNSv6.Text = "-";
  2850. //
  2851. // linkDNSv4
  2852. //
  2853. this.linkDNSv4.AutoSize = true;
  2854. this.linkDNSv4.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2855. this.linkDNSv4.ForeColor = System.Drawing.Color.DodgerBlue;
  2856. this.linkDNSv4.LinkColor = System.Drawing.Color.DodgerBlue;
  2857. this.linkDNSv4.Location = new System.Drawing.Point(585, 171);
  2858. this.linkDNSv4.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2859. this.linkDNSv4.Name = "linkDNSv4";
  2860. this.linkDNSv4.Size = new System.Drawing.Size(15, 20);
  2861. this.linkDNSv4.TabIndex = 100;
  2862. this.linkDNSv4.TabStop = true;
  2863. this.linkDNSv4.Tag = "themeable";
  2864. this.linkDNSv4.Text = "-";
  2865. //
  2866. // label3
  2867. //
  2868. this.label3.AutoSize = true;
  2869. this.label3.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2870. this.label3.ForeColor = System.Drawing.Color.Silver;
  2871. this.label3.Location = new System.Drawing.Point(503, 229);
  2872. this.label3.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2873. this.label3.Name = "label3";
  2874. this.label3.Size = new System.Drawing.Size(77, 20);
  2875. this.label3.TabIndex = 99;
  2876. this.label3.Tag = "";
  2877. this.label3.Text = "DNS IPv6:";
  2878. //
  2879. // label1
  2880. //
  2881. this.label1.AutoSize = true;
  2882. this.label1.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2883. this.label1.ForeColor = System.Drawing.Color.Silver;
  2884. this.label1.Location = new System.Drawing.Point(503, 172);
  2885. this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2886. this.label1.Name = "label1";
  2887. this.label1.Size = new System.Drawing.Size(78, 20);
  2888. this.label1.TabIndex = 98;
  2889. this.label1.Tag = "";
  2890. this.label1.Text = "DNS IPv4:";
  2891. //
  2892. // btnOpenNetwork
  2893. //
  2894. this.btnOpenNetwork.BackColor = System.Drawing.Color.DodgerBlue;
  2895. this.btnOpenNetwork.FlatAppearance.BorderSize = 0;
  2896. this.btnOpenNetwork.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2897. this.btnOpenNetwork.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2898. this.btnOpenNetwork.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2899. this.btnOpenNetwork.ForeColor = System.Drawing.Color.White;
  2900. this.btnOpenNetwork.Location = new System.Drawing.Point(507, 332);
  2901. this.btnOpenNetwork.Margin = new System.Windows.Forms.Padding(2);
  2902. this.btnOpenNetwork.Name = "btnOpenNetwork";
  2903. this.btnOpenNetwork.Size = new System.Drawing.Size(212, 29);
  2904. this.btnOpenNetwork.TabIndex = 92;
  2905. this.btnOpenNetwork.Text = "Open Network Connections";
  2906. this.btnOpenNetwork.UseVisualStyleBackColor = false;
  2907. this.btnOpenNetwork.Click += new System.EventHandler(this.btnOpenNetwork_Click);
  2908. //
  2909. // flushCacheB
  2910. //
  2911. this.flushCacheB.BackColor = System.Drawing.Color.DodgerBlue;
  2912. this.flushCacheB.FlatAppearance.BorderSize = 0;
  2913. this.flushCacheB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2914. this.flushCacheB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2915. this.flushCacheB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2916. this.flushCacheB.ForeColor = System.Drawing.Color.White;
  2917. this.flushCacheB.Location = new System.Drawing.Point(507, 299);
  2918. this.flushCacheB.Margin = new System.Windows.Forms.Padding(2);
  2919. this.flushCacheB.Name = "flushCacheB";
  2920. this.flushCacheB.Size = new System.Drawing.Size(212, 29);
  2921. this.flushCacheB.TabIndex = 84;
  2922. this.flushCacheB.Text = "Flush DNS cache";
  2923. this.flushCacheB.UseVisualStyleBackColor = false;
  2924. this.flushCacheB.Click += new System.EventHandler(this.button10_Click);
  2925. //
  2926. // btnExport
  2927. //
  2928. this.btnExport.BackColor = System.Drawing.Color.DodgerBlue;
  2929. this.btnExport.FlatAppearance.BorderSize = 0;
  2930. this.btnExport.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2931. this.btnExport.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2932. this.btnExport.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2933. this.btnExport.ForeColor = System.Drawing.Color.White;
  2934. this.btnExport.Location = new System.Drawing.Point(28, 494);
  2935. this.btnExport.Margin = new System.Windows.Forms.Padding(2);
  2936. this.btnExport.Name = "btnExport";
  2937. this.btnExport.Size = new System.Drawing.Size(107, 29);
  2938. this.btnExport.TabIndex = 83;
  2939. this.btnExport.Text = "Export...";
  2940. this.btnExport.UseVisualStyleBackColor = false;
  2941. this.btnExport.Click += new System.EventHandler(this.btnExport_Click);
  2942. //
  2943. // copyB
  2944. //
  2945. this.copyB.BackColor = System.Drawing.Color.DodgerBlue;
  2946. this.copyB.FlatAppearance.BorderSize = 0;
  2947. this.copyB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2948. this.copyB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2949. this.copyB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2950. this.copyB.ForeColor = System.Drawing.Color.White;
  2951. this.copyB.Location = new System.Drawing.Point(26, 151);
  2952. this.copyB.Margin = new System.Windows.Forms.Padding(2);
  2953. this.copyB.Name = "copyB";
  2954. this.copyB.Size = new System.Drawing.Size(185, 31);
  2955. this.copyB.TabIndex = 82;
  2956. this.copyB.Text = "Copy IP";
  2957. this.copyB.UseVisualStyleBackColor = false;
  2958. this.copyB.Click += new System.EventHandler(this.button9_Click);
  2959. //
  2960. // copyIPB
  2961. //
  2962. this.copyIPB.BackColor = System.Drawing.Color.DodgerBlue;
  2963. this.copyIPB.FlatAppearance.BorderSize = 0;
  2964. this.copyIPB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  2965. this.copyIPB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  2966. this.copyIPB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2967. this.copyIPB.ForeColor = System.Drawing.Color.White;
  2968. this.copyIPB.Location = new System.Drawing.Point(215, 151);
  2969. this.copyIPB.Margin = new System.Windows.Forms.Padding(2);
  2970. this.copyIPB.Name = "copyIPB";
  2971. this.copyIPB.Size = new System.Drawing.Size(185, 31);
  2972. this.copyIPB.TabIndex = 81;
  2973. this.copyIPB.Text = "Copy";
  2974. this.copyIPB.UseVisualStyleBackColor = false;
  2975. this.copyIPB.Click += new System.EventHandler(this.button7_Click);
  2976. //
  2977. // panel7
  2978. //
  2979. this.panel7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2980. this.panel7.Controls.Add(this.listPingResults);
  2981. this.panel7.Location = new System.Drawing.Point(28, 219);
  2982. this.panel7.Name = "panel7";
  2983. this.panel7.Size = new System.Drawing.Size(371, 270);
  2984. this.panel7.TabIndex = 80;
  2985. //
  2986. // listPingResults
  2987. //
  2988. this.listPingResults.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  2989. this.listPingResults.BorderStyle = System.Windows.Forms.BorderStyle.None;
  2990. this.listPingResults.Dock = System.Windows.Forms.DockStyle.Fill;
  2991. this.listPingResults.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawVariable;
  2992. this.listPingResults.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2993. this.listPingResults.ForeColor = System.Drawing.Color.White;
  2994. this.listPingResults.FormattingEnabled = true;
  2995. this.listPingResults.HorizontalScrollbar = true;
  2996. this.listPingResults.ItemHeight = 21;
  2997. this.listPingResults.Location = new System.Drawing.Point(0, 0);
  2998. this.listPingResults.Margin = new System.Windows.Forms.Padding(2);
  2999. this.listPingResults.Name = "listPingResults";
  3000. this.listPingResults.Size = new System.Drawing.Size(369, 268);
  3001. this.listPingResults.TabIndex = 79;
  3002. //
  3003. // lblResults
  3004. //
  3005. this.lblResults.AutoSize = true;
  3006. this.lblResults.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3007. this.lblResults.ForeColor = System.Drawing.Color.Silver;
  3008. this.lblResults.Location = new System.Drawing.Point(23, 195);
  3009. this.lblResults.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3010. this.lblResults.Name = "lblResults";
  3011. this.lblResults.Size = new System.Drawing.Size(54, 19);
  3012. this.lblResults.TabIndex = 60;
  3013. this.lblResults.Tag = "";
  3014. this.lblResults.Text = "Results";
  3015. //
  3016. // btnShodan
  3017. //
  3018. this.btnShodan.BackColor = System.Drawing.Color.DodgerBlue;
  3019. this.btnShodan.FlatAppearance.BorderSize = 0;
  3020. this.btnShodan.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3021. this.btnShodan.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3022. this.btnShodan.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3023. this.btnShodan.ForeColor = System.Drawing.Color.White;
  3024. this.btnShodan.Location = new System.Drawing.Point(26, 116);
  3025. this.btnShodan.Margin = new System.Windows.Forms.Padding(2);
  3026. this.btnShodan.Name = "btnShodan";
  3027. this.btnShodan.Size = new System.Drawing.Size(185, 31);
  3028. this.btnShodan.TabIndex = 59;
  3029. this.btnShodan.Text = "Check on SHODAN.io";
  3030. this.btnShodan.UseVisualStyleBackColor = false;
  3031. this.btnShodan.Click += new System.EventHandler(this.btnShodan_Click);
  3032. //
  3033. // btnPing
  3034. //
  3035. this.btnPing.BackColor = System.Drawing.Color.DodgerBlue;
  3036. this.btnPing.FlatAppearance.BorderSize = 0;
  3037. this.btnPing.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3038. this.btnPing.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3039. this.btnPing.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3040. this.btnPing.ForeColor = System.Drawing.Color.White;
  3041. this.btnPing.Location = new System.Drawing.Point(215, 116);
  3042. this.btnPing.Margin = new System.Windows.Forms.Padding(2);
  3043. this.btnPing.Name = "btnPing";
  3044. this.btnPing.Size = new System.Drawing.Size(185, 31);
  3045. this.btnPing.TabIndex = 58;
  3046. this.btnPing.Text = "Ping";
  3047. this.btnPing.UseVisualStyleBackColor = false;
  3048. this.btnPing.Click += new System.EventHandler(this.btnPing_Click);
  3049. //
  3050. // txtPingInput
  3051. //
  3052. this.txtPingInput.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3053. this.txtPingInput.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  3054. this.txtPingInput.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3055. this.txtPingInput.ForeColor = System.Drawing.Color.White;
  3056. this.txtPingInput.Location = new System.Drawing.Point(26, 83);
  3057. this.txtPingInput.Margin = new System.Windows.Forms.Padding(2);
  3058. this.txtPingInput.Name = "txtPingInput";
  3059. this.txtPingInput.Size = new System.Drawing.Size(374, 29);
  3060. this.txtPingInput.TabIndex = 56;
  3061. this.txtPingInput.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  3062. this.txtPingInput.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtPingInput_KeyDown);
  3063. //
  3064. // lblPinger
  3065. //
  3066. this.lblPinger.AutoSize = true;
  3067. this.lblPinger.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3068. this.lblPinger.ForeColor = System.Drawing.Color.Silver;
  3069. this.lblPinger.Location = new System.Drawing.Point(23, 60);
  3070. this.lblPinger.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3071. this.lblPinger.Name = "lblPinger";
  3072. this.lblPinger.Size = new System.Drawing.Size(122, 19);
  3073. this.lblPinger.TabIndex = 57;
  3074. this.lblPinger.Tag = "";
  3075. this.lblPinger.Text = "IP / Domain name";
  3076. //
  3077. // pingerTitle
  3078. //
  3079. this.pingerTitle.AutoSize = true;
  3080. this.pingerTitle.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3081. this.pingerTitle.ForeColor = System.Drawing.Color.DodgerBlue;
  3082. this.pingerTitle.Location = new System.Drawing.Point(6, 10);
  3083. this.pingerTitle.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3084. this.pingerTitle.Name = "pingerTitle";
  3085. this.pingerTitle.Size = new System.Drawing.Size(393, 28);
  3086. this.pingerTitle.TabIndex = 47;
  3087. this.pingerTitle.Tag = "themeable";
  3088. this.pingerTitle.Text = "Ping IP addresses and assess your latency";
  3089. //
  3090. // boxAdapter
  3091. //
  3092. this.boxAdapter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
  3093. this.boxAdapter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3094. this.boxAdapter.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  3095. this.boxAdapter.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3096. this.boxAdapter.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3097. this.boxAdapter.ForeColor = System.Drawing.Color.White;
  3098. this.boxAdapter.FormattingEnabled = true;
  3099. this.boxAdapter.Location = new System.Drawing.Point(504, 83);
  3100. this.boxAdapter.Name = "boxAdapter";
  3101. this.boxAdapter.Size = new System.Drawing.Size(414, 29);
  3102. this.boxAdapter.TabIndex = 97;
  3103. //
  3104. // boxDNS
  3105. //
  3106. this.boxDNS.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
  3107. this.boxDNS.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3108. this.boxDNS.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  3109. this.boxDNS.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3110. this.boxDNS.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3111. this.boxDNS.ForeColor = System.Drawing.Color.White;
  3112. this.boxDNS.FormattingEnabled = true;
  3113. this.boxDNS.Items.AddRange(new object[] {
  3114. "Automatic",
  3115. "Cloudflare DNS",
  3116. "Open DNS",
  3117. "Quad9 DNS",
  3118. "Google DNS",
  3119. "Alternate DNS",
  3120. "Adguard DNS",
  3121. "CleanBrowsing",
  3122. "CleanBrowsing (adult filter)"});
  3123. this.boxDNS.Location = new System.Drawing.Point(504, 118);
  3124. this.boxDNS.Name = "boxDNS";
  3125. this.boxDNS.Size = new System.Drawing.Size(414, 29);
  3126. this.boxDNS.TabIndex = 96;
  3127. //
  3128. // hostsEditorTab
  3129. //
  3130. this.hostsEditorTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3131. this.hostsEditorTab.Controls.Add(this.panel4);
  3132. this.hostsEditorTab.Controls.Add(this.hostsTitle);
  3133. this.hostsEditorTab.Controls.Add(this.linkLocate);
  3134. this.hostsEditorTab.Location = new System.Drawing.Point(4, 25);
  3135. this.hostsEditorTab.Margin = new System.Windows.Forms.Padding(2);
  3136. this.hostsEditorTab.Name = "hostsEditorTab";
  3137. this.hostsEditorTab.Padding = new System.Windows.Forms.Padding(2);
  3138. this.hostsEditorTab.Size = new System.Drawing.Size(999, 610);
  3139. this.hostsEditorTab.TabIndex = 9;
  3140. this.hostsEditorTab.Text = "Hosts";
  3141. //
  3142. // panel4
  3143. //
  3144. this.panel4.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  3145. | System.Windows.Forms.AnchorStyles.Left)
  3146. | System.Windows.Forms.AnchorStyles.Right)));
  3147. this.panel4.Controls.Add(this.linkAdvancedEdit);
  3148. this.panel4.Controls.Add(this.linkRestoreDefault);
  3149. this.panel4.Controls.Add(this.lblLock);
  3150. this.panel4.Controls.Add(this.chkReadOnly);
  3151. this.panel4.Controls.Add(this.panelList);
  3152. this.panel4.Controls.Add(this.chkBlock);
  3153. this.panel4.Controls.Add(this.refreshHostsB);
  3154. this.panel4.Controls.Add(this.removeHostB);
  3155. this.panel4.Controls.Add(this.removeAllHostsB);
  3156. this.panel4.Controls.Add(this.addHostB);
  3157. this.panel4.Controls.Add(this.txtIP);
  3158. this.panel4.Controls.Add(this.txtDomain);
  3159. this.panel4.Controls.Add(this.lblDomain);
  3160. this.panel4.Controls.Add(this.lblIP);
  3161. this.panel4.Location = new System.Drawing.Point(6, 70);
  3162. this.panel4.Margin = new System.Windows.Forms.Padding(2);
  3163. this.panel4.Name = "panel4";
  3164. this.panel4.Size = new System.Drawing.Size(987, 537);
  3165. this.panel4.TabIndex = 53;
  3166. //
  3167. // linkAdvancedEdit
  3168. //
  3169. this.linkAdvancedEdit.ActiveLinkColor = System.Drawing.Color.WhiteSmoke;
  3170. this.linkAdvancedEdit.AutoSize = true;
  3171. this.linkAdvancedEdit.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3172. this.linkAdvancedEdit.ForeColor = System.Drawing.Color.Silver;
  3173. this.linkAdvancedEdit.LinkColor = System.Drawing.Color.Silver;
  3174. this.linkAdvancedEdit.Location = new System.Drawing.Point(323, 338);
  3175. this.linkAdvancedEdit.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3176. this.linkAdvancedEdit.Name = "linkAdvancedEdit";
  3177. this.linkAdvancedEdit.Size = new System.Drawing.Size(132, 21);
  3178. this.linkAdvancedEdit.TabIndex = 49;
  3179. this.linkAdvancedEdit.TabStop = true;
  3180. this.linkAdvancedEdit.Tag = "";
  3181. this.linkAdvancedEdit.Text = "Advanced editor";
  3182. this.linkAdvancedEdit.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3183. this.linkAdvancedEdit.VisitedLinkColor = System.Drawing.Color.Silver;
  3184. this.linkAdvancedEdit.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel3_LinkClicked);
  3185. //
  3186. // linkRestoreDefault
  3187. //
  3188. this.linkRestoreDefault.ActiveLinkColor = System.Drawing.Color.WhiteSmoke;
  3189. this.linkRestoreDefault.AutoSize = true;
  3190. this.linkRestoreDefault.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3191. this.linkRestoreDefault.ForeColor = System.Drawing.Color.Silver;
  3192. this.linkRestoreDefault.LinkColor = System.Drawing.Color.Silver;
  3193. this.linkRestoreDefault.Location = new System.Drawing.Point(323, 369);
  3194. this.linkRestoreDefault.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3195. this.linkRestoreDefault.Name = "linkRestoreDefault";
  3196. this.linkRestoreDefault.Size = new System.Drawing.Size(123, 21);
  3197. this.linkRestoreDefault.TabIndex = 51;
  3198. this.linkRestoreDefault.TabStop = true;
  3199. this.linkRestoreDefault.Tag = "";
  3200. this.linkRestoreDefault.Text = "Restore default";
  3201. this.linkRestoreDefault.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  3202. this.linkRestoreDefault.VisitedLinkColor = System.Drawing.Color.Silver;
  3203. this.linkRestoreDefault.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel4_LinkClicked);
  3204. //
  3205. // lblLock
  3206. //
  3207. this.lblLock.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3208. this.lblLock.ForeColor = System.Drawing.Color.Silver;
  3209. this.lblLock.Location = new System.Drawing.Point(325, 182);
  3210. this.lblLock.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3211. this.lblLock.Name = "lblLock";
  3212. this.lblLock.Size = new System.Drawing.Size(315, 55);
  3213. this.lblLock.TabIndex = 62;
  3214. this.lblLock.Tag = "";
  3215. this.lblLock.Text = "Protect your HOSTS file by locking it.";
  3216. //
  3217. // chkReadOnly
  3218. //
  3219. this.chkReadOnly.AutoSize = true;
  3220. this.chkReadOnly.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3221. this.chkReadOnly.ForeColor = System.Drawing.Color.White;
  3222. this.chkReadOnly.Location = new System.Drawing.Point(329, 155);
  3223. this.chkReadOnly.Margin = new System.Windows.Forms.Padding(2);
  3224. this.chkReadOnly.Name = "chkReadOnly";
  3225. this.chkReadOnly.Size = new System.Drawing.Size(103, 25);
  3226. this.chkReadOnly.TabIndex = 61;
  3227. this.chkReadOnly.Text = "Read-only";
  3228. this.chkReadOnly.UseVisualStyleBackColor = true;
  3229. this.chkReadOnly.CheckedChanged += new System.EventHandler(this.chkReadOnly_CheckedChanged);
  3230. //
  3231. // panelList
  3232. //
  3233. this.panelList.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  3234. this.panelList.Controls.Add(this.listHostEntries);
  3235. this.panelList.Location = new System.Drawing.Point(5, 3);
  3236. this.panelList.Name = "panelList";
  3237. this.panelList.Size = new System.Drawing.Size(312, 388);
  3238. this.panelList.TabIndex = 60;
  3239. //
  3240. // listHostEntries
  3241. //
  3242. this.listHostEntries.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3243. this.listHostEntries.BorderStyle = System.Windows.Forms.BorderStyle.None;
  3244. this.listHostEntries.Dock = System.Windows.Forms.DockStyle.Fill;
  3245. this.listHostEntries.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawVariable;
  3246. this.listHostEntries.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3247. this.listHostEntries.ForeColor = System.Drawing.Color.White;
  3248. this.listHostEntries.FormattingEnabled = true;
  3249. this.listHostEntries.HorizontalScrollbar = true;
  3250. this.listHostEntries.ItemHeight = 21;
  3251. this.listHostEntries.Location = new System.Drawing.Point(0, 0);
  3252. this.listHostEntries.Margin = new System.Windows.Forms.Padding(2);
  3253. this.listHostEntries.Name = "listHostEntries";
  3254. this.listHostEntries.Size = new System.Drawing.Size(310, 386);
  3255. this.listHostEntries.TabIndex = 52;
  3256. //
  3257. // chkBlock
  3258. //
  3259. this.chkBlock.AutoSize = true;
  3260. this.chkBlock.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3261. this.chkBlock.ForeColor = System.Drawing.Color.White;
  3262. this.chkBlock.Location = new System.Drawing.Point(329, 110);
  3263. this.chkBlock.Margin = new System.Windows.Forms.Padding(2);
  3264. this.chkBlock.Name = "chkBlock";
  3265. this.chkBlock.Size = new System.Drawing.Size(69, 25);
  3266. this.chkBlock.TabIndex = 59;
  3267. this.chkBlock.Text = "Block";
  3268. this.chkBlock.UseVisualStyleBackColor = true;
  3269. this.chkBlock.CheckedChanged += new System.EventHandler(this.chkBlock_CheckedChanged);
  3270. //
  3271. // refreshHostsB
  3272. //
  3273. this.refreshHostsB.BackColor = System.Drawing.Color.DodgerBlue;
  3274. this.refreshHostsB.FlatAppearance.BorderSize = 0;
  3275. this.refreshHostsB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3276. this.refreshHostsB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3277. this.refreshHostsB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3278. this.refreshHostsB.ForeColor = System.Drawing.Color.White;
  3279. this.refreshHostsB.Location = new System.Drawing.Point(5, 395);
  3280. this.refreshHostsB.Margin = new System.Windows.Forms.Padding(2);
  3281. this.refreshHostsB.Name = "refreshHostsB";
  3282. this.refreshHostsB.Size = new System.Drawing.Size(152, 31);
  3283. this.refreshHostsB.TabIndex = 55;
  3284. this.refreshHostsB.Text = "Refresh";
  3285. this.refreshHostsB.UseVisualStyleBackColor = false;
  3286. this.refreshHostsB.Click += new System.EventHandler(this.button41_Click);
  3287. //
  3288. // removeHostB
  3289. //
  3290. this.removeHostB.BackColor = System.Drawing.Color.DodgerBlue;
  3291. this.removeHostB.FlatAppearance.BorderSize = 0;
  3292. this.removeHostB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3293. this.removeHostB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3294. this.removeHostB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3295. this.removeHostB.ForeColor = System.Drawing.Color.White;
  3296. this.removeHostB.Location = new System.Drawing.Point(161, 395);
  3297. this.removeHostB.Margin = new System.Windows.Forms.Padding(2);
  3298. this.removeHostB.Name = "removeHostB";
  3299. this.removeHostB.Size = new System.Drawing.Size(156, 31);
  3300. this.removeHostB.TabIndex = 54;
  3301. this.removeHostB.Text = "Delete";
  3302. this.removeHostB.UseVisualStyleBackColor = false;
  3303. this.removeHostB.Click += new System.EventHandler(this.button42_Click);
  3304. //
  3305. // removeAllHostsB
  3306. //
  3307. this.removeAllHostsB.BackColor = System.Drawing.Color.DodgerBlue;
  3308. this.removeAllHostsB.Enabled = false;
  3309. this.removeAllHostsB.FlatAppearance.BorderSize = 0;
  3310. this.removeAllHostsB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3311. this.removeAllHostsB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3312. this.removeAllHostsB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3313. this.removeAllHostsB.ForeColor = System.Drawing.Color.White;
  3314. this.removeAllHostsB.Location = new System.Drawing.Point(161, 430);
  3315. this.removeAllHostsB.Margin = new System.Windows.Forms.Padding(2);
  3316. this.removeAllHostsB.Name = "removeAllHostsB";
  3317. this.removeAllHostsB.Size = new System.Drawing.Size(156, 31);
  3318. this.removeAllHostsB.TabIndex = 53;
  3319. this.removeAllHostsB.Text = "Delete all";
  3320. this.removeAllHostsB.UseVisualStyleBackColor = false;
  3321. this.removeAllHostsB.Visible = false;
  3322. this.removeAllHostsB.Click += new System.EventHandler(this.button46_Click);
  3323. //
  3324. // addHostB
  3325. //
  3326. this.addHostB.BackColor = System.Drawing.Color.DodgerBlue;
  3327. this.addHostB.FlatAppearance.BorderSize = 0;
  3328. this.addHostB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3329. this.addHostB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3330. this.addHostB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3331. this.addHostB.ForeColor = System.Drawing.Color.White;
  3332. this.addHostB.Location = new System.Drawing.Point(551, 110);
  3333. this.addHostB.Margin = new System.Windows.Forms.Padding(2);
  3334. this.addHostB.Name = "addHostB";
  3335. this.addHostB.Size = new System.Drawing.Size(87, 31);
  3336. this.addHostB.TabIndex = 57;
  3337. this.addHostB.Text = "Add";
  3338. this.addHostB.UseVisualStyleBackColor = false;
  3339. this.addHostB.Click += new System.EventHandler(this.button47_Click);
  3340. //
  3341. // txtIP
  3342. //
  3343. this.txtIP.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3344. this.txtIP.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  3345. this.txtIP.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3346. this.txtIP.ForeColor = System.Drawing.Color.White;
  3347. this.txtIP.Location = new System.Drawing.Point(328, 23);
  3348. this.txtIP.Margin = new System.Windows.Forms.Padding(2);
  3349. this.txtIP.Name = "txtIP";
  3350. this.txtIP.Size = new System.Drawing.Size(310, 29);
  3351. this.txtIP.TabIndex = 0;
  3352. this.txtIP.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  3353. //
  3354. // txtDomain
  3355. //
  3356. this.txtDomain.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3357. this.txtDomain.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  3358. this.txtDomain.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3359. this.txtDomain.ForeColor = System.Drawing.Color.White;
  3360. this.txtDomain.Location = new System.Drawing.Point(328, 77);
  3361. this.txtDomain.Margin = new System.Windows.Forms.Padding(2);
  3362. this.txtDomain.Name = "txtDomain";
  3363. this.txtDomain.Size = new System.Drawing.Size(310, 29);
  3364. this.txtDomain.TabIndex = 1;
  3365. this.txtDomain.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  3366. //
  3367. // lblDomain
  3368. //
  3369. this.lblDomain.AutoSize = true;
  3370. this.lblDomain.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3371. this.lblDomain.ForeColor = System.Drawing.Color.DodgerBlue;
  3372. this.lblDomain.Location = new System.Drawing.Point(323, 54);
  3373. this.lblDomain.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3374. this.lblDomain.Name = "lblDomain";
  3375. this.lblDomain.Size = new System.Drawing.Size(66, 21);
  3376. this.lblDomain.TabIndex = 55;
  3377. this.lblDomain.Tag = "themeable";
  3378. this.lblDomain.Text = "Domain";
  3379. //
  3380. // lblIP
  3381. //
  3382. this.lblIP.AutoSize = true;
  3383. this.lblIP.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3384. this.lblIP.ForeColor = System.Drawing.Color.DodgerBlue;
  3385. this.lblIP.Location = new System.Drawing.Point(323, 0);
  3386. this.lblIP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3387. this.lblIP.Name = "lblIP";
  3388. this.lblIP.Size = new System.Drawing.Size(85, 21);
  3389. this.lblIP.TabIndex = 53;
  3390. this.lblIP.Tag = "themeable";
  3391. this.lblIP.Text = "IP address";
  3392. //
  3393. // hostsTitle
  3394. //
  3395. this.hostsTitle.AutoSize = true;
  3396. this.hostsTitle.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3397. this.hostsTitle.ForeColor = System.Drawing.Color.DodgerBlue;
  3398. this.hostsTitle.Location = new System.Drawing.Point(6, 10);
  3399. this.hostsTitle.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3400. this.hostsTitle.Name = "hostsTitle";
  3401. this.hostsTitle.Size = new System.Drawing.Size(182, 28);
  3402. this.hostsTitle.TabIndex = 3;
  3403. this.hostsTitle.Tag = "themeable";
  3404. this.hostsTitle.Text = "Edit your hosts file";
  3405. //
  3406. // linkLocate
  3407. //
  3408. this.linkLocate.ActiveLinkColor = System.Drawing.Color.WhiteSmoke;
  3409. this.linkLocate.AutoSize = true;
  3410. this.linkLocate.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3411. this.linkLocate.ForeColor = System.Drawing.Color.Silver;
  3412. this.linkLocate.LinkColor = System.Drawing.Color.Silver;
  3413. this.linkLocate.Location = new System.Drawing.Point(8, 38);
  3414. this.linkLocate.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3415. this.linkLocate.Name = "linkLocate";
  3416. this.linkLocate.Size = new System.Drawing.Size(59, 21);
  3417. this.linkLocate.TabIndex = 47;
  3418. this.linkLocate.TabStop = true;
  3419. this.linkLocate.Tag = "";
  3420. this.linkLocate.Text = "Locate";
  3421. this.linkLocate.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3422. this.linkLocate.VisitedLinkColor = System.Drawing.Color.Silver;
  3423. this.linkLocate.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel2_LinkClicked);
  3424. //
  3425. // registryFixerTab
  3426. //
  3427. this.registryFixerTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3428. this.registryFixerTab.Controls.Add(this.panel2);
  3429. this.registryFixerTab.Controls.Add(this.registryTitle);
  3430. this.registryFixerTab.Location = new System.Drawing.Point(4, 25);
  3431. this.registryFixerTab.Margin = new System.Windows.Forms.Padding(2);
  3432. this.registryFixerTab.Name = "registryFixerTab";
  3433. this.registryFixerTab.Padding = new System.Windows.Forms.Padding(2);
  3434. this.registryFixerTab.Size = new System.Drawing.Size(999, 610);
  3435. this.registryFixerTab.TabIndex = 8;
  3436. this.registryFixerTab.Text = "Registry";
  3437. //
  3438. // panel2
  3439. //
  3440. this.panel2.Controls.Add(this.regFixB);
  3441. this.panel2.Controls.Add(this.regLbl);
  3442. this.panel2.Controls.Add(this.checkRestartExplorer);
  3443. this.panel2.Controls.Add(this.checkRegistryEditor);
  3444. this.panel2.Controls.Add(this.checkEnableAll);
  3445. this.panel2.Controls.Add(this.checkContextMenu);
  3446. this.panel2.Controls.Add(this.checkTaskManager);
  3447. this.panel2.Controls.Add(this.checkCommandPrompt);
  3448. this.panel2.Controls.Add(this.checkFirewall);
  3449. this.panel2.Controls.Add(this.checkRunDialog);
  3450. this.panel2.Controls.Add(this.checkFolderOptions);
  3451. this.panel2.Controls.Add(this.checkControlPanel);
  3452. this.panel2.Location = new System.Drawing.Point(11, 40);
  3453. this.panel2.Margin = new System.Windows.Forms.Padding(2);
  3454. this.panel2.Name = "panel2";
  3455. this.panel2.Size = new System.Drawing.Size(755, 286);
  3456. this.panel2.TabIndex = 48;
  3457. //
  3458. // regFixB
  3459. //
  3460. this.regFixB.BackColor = System.Drawing.Color.DodgerBlue;
  3461. this.regFixB.FlatAppearance.BorderSize = 0;
  3462. this.regFixB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3463. this.regFixB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3464. this.regFixB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3465. this.regFixB.ForeColor = System.Drawing.Color.White;
  3466. this.regFixB.Location = new System.Drawing.Point(29, 252);
  3467. this.regFixB.Margin = new System.Windows.Forms.Padding(2);
  3468. this.regFixB.Name = "regFixB";
  3469. this.regFixB.Size = new System.Drawing.Size(108, 31);
  3470. this.regFixB.TabIndex = 49;
  3471. this.regFixB.Text = "Fix";
  3472. this.regFixB.UseVisualStyleBackColor = false;
  3473. this.regFixB.Click += new System.EventHandler(this.button33_Click);
  3474. //
  3475. // regLbl
  3476. //
  3477. this.regLbl.AutoSize = true;
  3478. this.regLbl.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3479. this.regLbl.ForeColor = System.Drawing.Color.Silver;
  3480. this.regLbl.Location = new System.Drawing.Point(94, 208);
  3481. this.regLbl.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3482. this.regLbl.Name = "regLbl";
  3483. this.regLbl.Size = new System.Drawing.Size(236, 21);
  3484. this.regLbl.TabIndex = 51;
  3485. this.regLbl.Tag = "";
  3486. this.regLbl.Text = "(some changes might need this)";
  3487. this.regLbl.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  3488. //
  3489. // checkRestartExplorer
  3490. //
  3491. this.checkRestartExplorer.AutoSize = true;
  3492. this.checkRestartExplorer.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3493. this.checkRestartExplorer.ForeColor = System.Drawing.Color.White;
  3494. this.checkRestartExplorer.Location = new System.Drawing.Point(29, 181);
  3495. this.checkRestartExplorer.Margin = new System.Windows.Forms.Padding(2);
  3496. this.checkRestartExplorer.Name = "checkRestartExplorer";
  3497. this.checkRestartExplorer.Size = new System.Drawing.Size(306, 25);
  3498. this.checkRestartExplorer.TabIndex = 50;
  3499. this.checkRestartExplorer.Tag = "";
  3500. this.checkRestartExplorer.Text = "Also restart Explorer to apply changes";
  3501. this.checkRestartExplorer.UseVisualStyleBackColor = true;
  3502. //
  3503. // checkRegistryEditor
  3504. //
  3505. this.checkRegistryEditor.AutoSize = true;
  3506. this.checkRegistryEditor.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3507. this.checkRegistryEditor.ForeColor = System.Drawing.Color.White;
  3508. this.checkRegistryEditor.Location = new System.Drawing.Point(291, 136);
  3509. this.checkRegistryEditor.Margin = new System.Windows.Forms.Padding(2);
  3510. this.checkRegistryEditor.Name = "checkRegistryEditor";
  3511. this.checkRegistryEditor.Size = new System.Drawing.Size(138, 25);
  3512. this.checkRegistryEditor.TabIndex = 38;
  3513. this.checkRegistryEditor.Text = "Registry Editor";
  3514. this.checkRegistryEditor.UseVisualStyleBackColor = true;
  3515. //
  3516. // checkEnableAll
  3517. //
  3518. this.checkEnableAll.AutoSize = true;
  3519. this.checkEnableAll.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3520. this.checkEnableAll.ForeColor = System.Drawing.Color.White;
  3521. this.checkEnableAll.Location = new System.Drawing.Point(29, 14);
  3522. this.checkEnableAll.Margin = new System.Windows.Forms.Padding(2);
  3523. this.checkEnableAll.Name = "checkEnableAll";
  3524. this.checkEnableAll.Size = new System.Drawing.Size(97, 25);
  3525. this.checkEnableAll.TabIndex = 35;
  3526. this.checkEnableAll.Tag = "";
  3527. this.checkEnableAll.Text = "Enable all";
  3528. this.checkEnableAll.UseVisualStyleBackColor = true;
  3529. this.checkEnableAll.CheckedChanged += new System.EventHandler(this.checkEnableAll_CheckedChanged);
  3530. //
  3531. // checkContextMenu
  3532. //
  3533. this.checkContextMenu.AutoSize = true;
  3534. this.checkContextMenu.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3535. this.checkContextMenu.ForeColor = System.Drawing.Color.White;
  3536. this.checkContextMenu.Location = new System.Drawing.Point(291, 75);
  3537. this.checkContextMenu.Margin = new System.Windows.Forms.Padding(2);
  3538. this.checkContextMenu.Name = "checkContextMenu";
  3539. this.checkContextMenu.Size = new System.Drawing.Size(151, 25);
  3540. this.checkContextMenu.TabIndex = 43;
  3541. this.checkContextMenu.Text = "Right Click menu";
  3542. this.checkContextMenu.UseVisualStyleBackColor = true;
  3543. //
  3544. // checkTaskManager
  3545. //
  3546. this.checkTaskManager.AutoSize = true;
  3547. this.checkTaskManager.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3548. this.checkTaskManager.ForeColor = System.Drawing.Color.White;
  3549. this.checkTaskManager.Location = new System.Drawing.Point(55, 45);
  3550. this.checkTaskManager.Margin = new System.Windows.Forms.Padding(2);
  3551. this.checkTaskManager.Name = "checkTaskManager";
  3552. this.checkTaskManager.Size = new System.Drawing.Size(128, 25);
  3553. this.checkTaskManager.TabIndex = 36;
  3554. this.checkTaskManager.Text = "Task Manager";
  3555. this.checkTaskManager.UseVisualStyleBackColor = true;
  3556. //
  3557. // checkCommandPrompt
  3558. //
  3559. this.checkCommandPrompt.AutoSize = true;
  3560. this.checkCommandPrompt.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3561. this.checkCommandPrompt.ForeColor = System.Drawing.Color.White;
  3562. this.checkCommandPrompt.Location = new System.Drawing.Point(55, 75);
  3563. this.checkCommandPrompt.Margin = new System.Windows.Forms.Padding(2);
  3564. this.checkCommandPrompt.Name = "checkCommandPrompt";
  3565. this.checkCommandPrompt.Size = new System.Drawing.Size(163, 25);
  3566. this.checkCommandPrompt.TabIndex = 42;
  3567. this.checkCommandPrompt.Text = "Command Prompt";
  3568. this.checkCommandPrompt.UseVisualStyleBackColor = true;
  3569. //
  3570. // checkFirewall
  3571. //
  3572. this.checkFirewall.AutoSize = true;
  3573. this.checkFirewall.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3574. this.checkFirewall.ForeColor = System.Drawing.Color.White;
  3575. this.checkFirewall.Location = new System.Drawing.Point(291, 106);
  3576. this.checkFirewall.Margin = new System.Windows.Forms.Padding(2);
  3577. this.checkFirewall.Name = "checkFirewall";
  3578. this.checkFirewall.Size = new System.Drawing.Size(155, 25);
  3579. this.checkFirewall.TabIndex = 37;
  3580. this.checkFirewall.Text = "Windows Firewall";
  3581. this.checkFirewall.UseVisualStyleBackColor = true;
  3582. //
  3583. // checkRunDialog
  3584. //
  3585. this.checkRunDialog.AutoSize = true;
  3586. this.checkRunDialog.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3587. this.checkRunDialog.ForeColor = System.Drawing.Color.White;
  3588. this.checkRunDialog.Location = new System.Drawing.Point(291, 45);
  3589. this.checkRunDialog.Margin = new System.Windows.Forms.Padding(2);
  3590. this.checkRunDialog.Name = "checkRunDialog";
  3591. this.checkRunDialog.Size = new System.Drawing.Size(108, 25);
  3592. this.checkRunDialog.TabIndex = 41;
  3593. this.checkRunDialog.Text = "Run Dialog";
  3594. this.checkRunDialog.UseVisualStyleBackColor = true;
  3595. //
  3596. // checkFolderOptions
  3597. //
  3598. this.checkFolderOptions.AutoSize = true;
  3599. this.checkFolderOptions.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3600. this.checkFolderOptions.ForeColor = System.Drawing.Color.White;
  3601. this.checkFolderOptions.Location = new System.Drawing.Point(55, 136);
  3602. this.checkFolderOptions.Margin = new System.Windows.Forms.Padding(2);
  3603. this.checkFolderOptions.Name = "checkFolderOptions";
  3604. this.checkFolderOptions.Size = new System.Drawing.Size(138, 25);
  3605. this.checkFolderOptions.TabIndex = 39;
  3606. this.checkFolderOptions.Text = "Folder Options";
  3607. this.checkFolderOptions.UseVisualStyleBackColor = true;
  3608. //
  3609. // checkControlPanel
  3610. //
  3611. this.checkControlPanel.AutoSize = true;
  3612. this.checkControlPanel.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3613. this.checkControlPanel.ForeColor = System.Drawing.Color.White;
  3614. this.checkControlPanel.Location = new System.Drawing.Point(55, 106);
  3615. this.checkControlPanel.Margin = new System.Windows.Forms.Padding(2);
  3616. this.checkControlPanel.Name = "checkControlPanel";
  3617. this.checkControlPanel.Size = new System.Drawing.Size(127, 25);
  3618. this.checkControlPanel.TabIndex = 40;
  3619. this.checkControlPanel.Text = "Control Panel";
  3620. this.checkControlPanel.UseVisualStyleBackColor = true;
  3621. //
  3622. // registryTitle
  3623. //
  3624. this.registryTitle.AutoSize = true;
  3625. this.registryTitle.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3626. this.registryTitle.ForeColor = System.Drawing.Color.DodgerBlue;
  3627. this.registryTitle.Location = new System.Drawing.Point(6, 10);
  3628. this.registryTitle.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3629. this.registryTitle.Name = "registryTitle";
  3630. this.registryTitle.Size = new System.Drawing.Size(260, 28);
  3631. this.registryTitle.TabIndex = 47;
  3632. this.registryTitle.Tag = "themeable";
  3633. this.registryTitle.Text = "Fix common registry issues";
  3634. //
  3635. // indiciumTab
  3636. //
  3637. this.indiciumTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3638. this.indiciumTab.Controls.Add(this.panel12);
  3639. this.indiciumTab.Controls.Add(this.panel11);
  3640. this.indiciumTab.Location = new System.Drawing.Point(4, 25);
  3641. this.indiciumTab.Name = "indiciumTab";
  3642. this.indiciumTab.Padding = new System.Windows.Forms.Padding(3);
  3643. this.indiciumTab.Size = new System.Drawing.Size(999, 610);
  3644. this.indiciumTab.TabIndex = 14;
  3645. this.indiciumTab.Text = "Hardware";
  3646. //
  3647. // panel12
  3648. //
  3649. this.panel12.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  3650. this.panel12.Controls.Add(this.specsTree);
  3651. this.panel12.Dock = System.Windows.Forms.DockStyle.Fill;
  3652. this.panel12.Location = new System.Drawing.Point(3, 38);
  3653. this.panel12.Name = "panel12";
  3654. this.panel12.Size = new System.Drawing.Size(993, 569);
  3655. this.panel12.TabIndex = 2;
  3656. //
  3657. // specsTree
  3658. //
  3659. this.specsTree.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3660. this.specsTree.BorderStyle = System.Windows.Forms.BorderStyle.None;
  3661. this.specsTree.ContextMenuStrip = this.indiciumMenu;
  3662. this.specsTree.Dock = System.Windows.Forms.DockStyle.Fill;
  3663. this.specsTree.DrawMode = System.Windows.Forms.TreeViewDrawMode.OwnerDrawAll;
  3664. this.specsTree.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3665. this.specsTree.ForeColor = System.Drawing.Color.White;
  3666. this.specsTree.Location = new System.Drawing.Point(0, 0);
  3667. this.specsTree.Name = "specsTree";
  3668. treeNode1.ImageIndex = 0;
  3669. treeNode1.Name = "cpu";
  3670. treeNode1.SelectedImageIndex = 0;
  3671. treeNode1.Text = "Processors";
  3672. treeNode2.ImageIndex = 1;
  3673. treeNode2.Name = "ram";
  3674. treeNode2.SelectedImageIndex = 1;
  3675. treeNode2.Text = "Memory";
  3676. treeNode3.ImageIndex = 2;
  3677. treeNode3.Name = "gpu";
  3678. treeNode3.SelectedImageIndex = 2;
  3679. treeNode3.Text = "Graphics";
  3680. treeNode4.ImageIndex = 3;
  3681. treeNode4.Name = "mobo";
  3682. treeNode4.SelectedImageIndex = 3;
  3683. treeNode4.Text = "Motherboard";
  3684. treeNode5.ImageIndex = 4;
  3685. treeNode5.Name = "disk";
  3686. treeNode5.SelectedImageIndex = 4;
  3687. treeNode5.Text = "Storage";
  3688. treeNode6.ImageIndex = 5;
  3689. treeNode6.Name = "inet";
  3690. treeNode6.SelectedImageIndex = 5;
  3691. treeNode6.Text = "Network Adapters";
  3692. treeNode7.ImageIndex = 6;
  3693. treeNode7.Name = "audio";
  3694. treeNode7.SelectedImageIndex = 6;
  3695. treeNode7.Text = "Audio";
  3696. treeNode8.ImageIndex = 7;
  3697. treeNode8.Name = "dev";
  3698. treeNode8.SelectedImageIndex = 7;
  3699. treeNode8.Text = "Peripherals";
  3700. this.specsTree.Nodes.AddRange(new System.Windows.Forms.TreeNode[] {
  3701. treeNode1,
  3702. treeNode2,
  3703. treeNode3,
  3704. treeNode4,
  3705. treeNode5,
  3706. treeNode6,
  3707. treeNode7,
  3708. treeNode8});
  3709. this.specsTree.Size = new System.Drawing.Size(991, 567);
  3710. this.specsTree.TabIndex = 0;
  3711. this.specsTree.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.specsTree_NodeMouseClick);
  3712. //
  3713. // indiciumMenu
  3714. //
  3715. this.indiciumMenu.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(10)))), ((int)(((byte)(10)))), ((int)(((byte)(10)))));
  3716. this.indiciumMenu.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3717. this.indiciumMenu.ImageScalingSize = new System.Drawing.Size(20, 20);
  3718. this.indiciumMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  3719. this.toolHWCopy,
  3720. this.toolHWGoogle,
  3721. this.toolHWDuck});
  3722. this.indiciumMenu.Name = "launcherMenu";
  3723. this.indiciumMenu.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
  3724. this.indiciumMenu.ShowImageMargin = false;
  3725. this.indiciumMenu.Size = new System.Drawing.Size(223, 76);
  3726. //
  3727. // toolHWCopy
  3728. //
  3729. this.toolHWCopy.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3730. this.toolHWCopy.ForeColor = System.Drawing.Color.White;
  3731. this.toolHWCopy.Name = "toolHWCopy";
  3732. this.toolHWCopy.Size = new System.Drawing.Size(222, 24);
  3733. this.toolHWCopy.Text = "Copy";
  3734. this.toolHWCopy.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal;
  3735. this.toolHWCopy.Click += new System.EventHandler(this.toolStripMenuItem1_Click);
  3736. //
  3737. // toolHWGoogle
  3738. //
  3739. this.toolHWGoogle.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3740. this.toolHWGoogle.ForeColor = System.Drawing.Color.White;
  3741. this.toolHWGoogle.Name = "toolHWGoogle";
  3742. this.toolHWGoogle.Size = new System.Drawing.Size(222, 24);
  3743. this.toolHWGoogle.Text = "Search with Google...";
  3744. this.toolHWGoogle.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal;
  3745. this.toolHWGoogle.Click += new System.EventHandler(this.toolStripMenuItem2_Click);
  3746. //
  3747. // toolHWDuck
  3748. //
  3749. this.toolHWDuck.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3750. this.toolHWDuck.ForeColor = System.Drawing.Color.White;
  3751. this.toolHWDuck.Name = "toolHWDuck";
  3752. this.toolHWDuck.Size = new System.Drawing.Size(222, 24);
  3753. this.toolHWDuck.Text = "Search with DuckDuckGo...";
  3754. this.toolHWDuck.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal;
  3755. this.toolHWDuck.Click += new System.EventHandler(this.toolStripMenuItem3_Click);
  3756. //
  3757. // panel11
  3758. //
  3759. this.panel11.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  3760. this.panel11.Controls.Add(this.btnCopyHW);
  3761. this.panel11.Controls.Add(this.btnSaveHW);
  3762. this.panel11.Controls.Add(this.hwDetailed);
  3763. this.panel11.Dock = System.Windows.Forms.DockStyle.Top;
  3764. this.panel11.Location = new System.Drawing.Point(3, 3);
  3765. this.panel11.Name = "panel11";
  3766. this.panel11.Size = new System.Drawing.Size(993, 35);
  3767. this.panel11.TabIndex = 1;
  3768. //
  3769. // btnCopyHW
  3770. //
  3771. this.btnCopyHW.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  3772. this.btnCopyHW.BackColor = System.Drawing.Color.DodgerBlue;
  3773. this.btnCopyHW.FlatAppearance.BorderSize = 0;
  3774. this.btnCopyHW.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3775. this.btnCopyHW.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3776. this.btnCopyHW.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3777. this.btnCopyHW.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3778. this.btnCopyHW.ForeColor = System.Drawing.Color.White;
  3779. this.btnCopyHW.Location = new System.Drawing.Point(841, 5);
  3780. this.btnCopyHW.Margin = new System.Windows.Forms.Padding(2);
  3781. this.btnCopyHW.Name = "btnCopyHW";
  3782. this.btnCopyHW.Size = new System.Drawing.Size(146, 24);
  3783. this.btnCopyHW.TabIndex = 163;
  3784. this.btnCopyHW.Text = "Copy";
  3785. this.btnCopyHW.UseVisualStyleBackColor = false;
  3786. this.btnCopyHW.Click += new System.EventHandler(this.btnCopyHW_Click);
  3787. //
  3788. // btnSaveHW
  3789. //
  3790. this.btnSaveHW.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  3791. this.btnSaveHW.BackColor = System.Drawing.Color.DodgerBlue;
  3792. this.btnSaveHW.FlatAppearance.BorderSize = 0;
  3793. this.btnSaveHW.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3794. this.btnSaveHW.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3795. this.btnSaveHW.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3796. this.btnSaveHW.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3797. this.btnSaveHW.ForeColor = System.Drawing.Color.White;
  3798. this.btnSaveHW.Location = new System.Drawing.Point(691, 5);
  3799. this.btnSaveHW.Margin = new System.Windows.Forms.Padding(2);
  3800. this.btnSaveHW.Name = "btnSaveHW";
  3801. this.btnSaveHW.Size = new System.Drawing.Size(146, 24);
  3802. this.btnSaveHW.TabIndex = 162;
  3803. this.btnSaveHW.Text = "Save";
  3804. this.btnSaveHW.UseVisualStyleBackColor = false;
  3805. this.btnSaveHW.Click += new System.EventHandler(this.btnSaveHW_Click);
  3806. //
  3807. // hwDetailed
  3808. //
  3809. this.hwDetailed.AccessibleName = "Detailed View";
  3810. this.hwDetailed.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  3811. this.hwDetailed.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3812. this.hwDetailed.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3813. this.hwDetailed.ForeColor = System.Drawing.Color.White;
  3814. this.hwDetailed.LabelText = "Detailed View";
  3815. this.hwDetailed.Location = new System.Drawing.Point(5, 4);
  3816. this.hwDetailed.Name = "hwDetailed";
  3817. this.hwDetailed.Size = new System.Drawing.Size(374, 24);
  3818. this.hwDetailed.TabIndex = 89;
  3819. this.hwDetailed.Tag = "themeable";
  3820. this.hwDetailed.ToggleChecked = true;
  3821. this.hwDetailed.ToggleClicked += new System.EventHandler(this.hwDetailed_ToggleClicked);
  3822. //
  3823. // integratorTab
  3824. //
  3825. this.integratorTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3826. this.integratorTab.Controls.Add(this.synapse);
  3827. this.integratorTab.Location = new System.Drawing.Point(4, 25);
  3828. this.integratorTab.Margin = new System.Windows.Forms.Padding(2);
  3829. this.integratorTab.Name = "integratorTab";
  3830. this.integratorTab.Padding = new System.Windows.Forms.Padding(2);
  3831. this.integratorTab.Size = new System.Drawing.Size(999, 610);
  3832. this.integratorTab.TabIndex = 10;
  3833. this.integratorTab.Text = "Integrator";
  3834. //
  3835. // synapse
  3836. //
  3837. this.synapse.Alignment = System.Windows.Forms.TabAlignment.Bottom;
  3838. this.synapse.Controls.Add(this.integratorInfoTab);
  3839. this.synapse.Controls.Add(this.tabPage8);
  3840. this.synapse.Controls.Add(this.tabPage9);
  3841. this.synapse.Controls.Add(this.tabPage10);
  3842. this.synapse.Controls.Add(this.tabPage11);
  3843. this.synapse.Dock = System.Windows.Forms.DockStyle.Fill;
  3844. this.synapse.Location = new System.Drawing.Point(2, 2);
  3845. this.synapse.Margin = new System.Windows.Forms.Padding(2);
  3846. this.synapse.Multiline = true;
  3847. this.synapse.Name = "synapse";
  3848. this.synapse.Padding = new System.Drawing.Point(0, 0);
  3849. this.synapse.SelectedIndex = 0;
  3850. this.synapse.Size = new System.Drawing.Size(995, 606);
  3851. this.synapse.TabIndex = 0;
  3852. //
  3853. // integratorInfoTab
  3854. //
  3855. this.integratorInfoTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3856. this.integratorInfoTab.Controls.Add(this.integrator7);
  3857. this.integratorInfoTab.Controls.Add(this.integrator6);
  3858. this.integratorInfoTab.Controls.Add(this.integrator5);
  3859. this.integratorInfoTab.Controls.Add(this.integrator4);
  3860. this.integratorInfoTab.Controls.Add(this.integrator3);
  3861. this.integratorInfoTab.Controls.Add(this.integrator2);
  3862. this.integratorInfoTab.Controls.Add(this.integrator1);
  3863. this.integratorInfoTab.Location = new System.Drawing.Point(4, 4);
  3864. this.integratorInfoTab.Margin = new System.Windows.Forms.Padding(2);
  3865. this.integratorInfoTab.Name = "integratorInfoTab";
  3866. this.integratorInfoTab.Padding = new System.Windows.Forms.Padding(2);
  3867. this.integratorInfoTab.Size = new System.Drawing.Size(987, 577);
  3868. this.integratorInfoTab.TabIndex = 0;
  3869. this.integratorInfoTab.Text = "Info";
  3870. //
  3871. // integrator7
  3872. //
  3873. this.integrator7.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3874. this.integrator7.ForeColor = System.Drawing.Color.Silver;
  3875. this.integrator7.Location = new System.Drawing.Point(6, 225);
  3876. this.integrator7.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3877. this.integrator7.Name = "integrator7";
  3878. this.integrator7.Size = new System.Drawing.Size(763, 309);
  3879. this.integrator7.TabIndex = 10;
  3880. this.integrator7.Tag = "";
  3881. this.integrator7.Text = resources.GetString("integrator7.Text");
  3882. //
  3883. // integrator6
  3884. //
  3885. this.integrator6.AutoSize = true;
  3886. this.integrator6.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3887. this.integrator6.ForeColor = System.Drawing.Color.Silver;
  3888. this.integrator6.Location = new System.Drawing.Point(38, 183);
  3889. this.integrator6.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3890. this.integrator6.Name = "integrator6";
  3891. this.integrator6.Size = new System.Drawing.Size(103, 21);
  3892. this.integrator6.TabIndex = 9;
  3893. this.integrator6.Tag = "";
  3894. this.integrator6.Text = "• Commands";
  3895. //
  3896. // integrator5
  3897. //
  3898. this.integrator5.AutoSize = true;
  3899. this.integrator5.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3900. this.integrator5.ForeColor = System.Drawing.Color.Silver;
  3901. this.integrator5.Location = new System.Drawing.Point(38, 158);
  3902. this.integrator5.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3903. this.integrator5.Name = "integrator5";
  3904. this.integrator5.Size = new System.Drawing.Size(133, 21);
  3905. this.integrator5.TabIndex = 8;
  3906. this.integrator5.Tag = "";
  3907. this.integrator5.Text = "• Any type of file";
  3908. //
  3909. // integrator4
  3910. //
  3911. this.integrator4.AutoSize = true;
  3912. this.integrator4.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3913. this.integrator4.ForeColor = System.Drawing.Color.Silver;
  3914. this.integrator4.Location = new System.Drawing.Point(38, 132);
  3915. this.integrator4.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3916. this.integrator4.Name = "integrator4";
  3917. this.integrator4.Size = new System.Drawing.Size(156, 21);
  3918. this.integrator4.TabIndex = 7;
  3919. this.integrator4.Tag = "";
  3920. this.integrator4.Text = "• Links to webpages";
  3921. //
  3922. // integrator3
  3923. //
  3924. this.integrator3.AutoSize = true;
  3925. this.integrator3.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3926. this.integrator3.ForeColor = System.Drawing.Color.Silver;
  3927. this.integrator3.Location = new System.Drawing.Point(38, 106);
  3928. this.integrator3.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3929. this.integrator3.Name = "integrator3";
  3930. this.integrator3.Size = new System.Drawing.Size(167, 21);
  3931. this.integrator3.TabIndex = 6;
  3932. this.integrator3.Tag = "";
  3933. this.integrator3.Text = "• Shortcuts to folders";
  3934. //
  3935. // integrator2
  3936. //
  3937. this.integrator2.AutoSize = true;
  3938. this.integrator2.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3939. this.integrator2.ForeColor = System.Drawing.Color.Silver;
  3940. this.integrator2.Location = new System.Drawing.Point(38, 81);
  3941. this.integrator2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3942. this.integrator2.Name = "integrator2";
  3943. this.integrator2.Size = new System.Drawing.Size(117, 21);
  3944. this.integrator2.TabIndex = 5;
  3945. this.integrator2.Tag = "";
  3946. this.integrator2.Text = "• Any program";
  3947. //
  3948. // integrator1
  3949. //
  3950. this.integrator1.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  3951. this.integrator1.ForeColor = System.Drawing.Color.Silver;
  3952. this.integrator1.Location = new System.Drawing.Point(6, 10);
  3953. this.integrator1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3954. this.integrator1.Name = "integrator1";
  3955. this.integrator1.Size = new System.Drawing.Size(811, 61);
  3956. this.integrator1.TabIndex = 4;
  3957. this.integrator1.Tag = "";
  3958. this.integrator1.Text = "Integrator is able to add fully-customized items in Desktop right-click menu:";
  3959. //
  3960. // tabPage8
  3961. //
  3962. this.tabPage8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  3963. this.tabPage8.Controls.Add(this.btnAddItem);
  3964. this.tabPage8.Controls.Add(this.itemnamegroup);
  3965. this.tabPage8.Controls.Add(this.security);
  3966. this.tabPage8.Controls.Add(this.itemposition);
  3967. this.tabPage8.Controls.Add(this.icontoaddgroup);
  3968. this.tabPage8.Controls.Add(this.itemtoaddgroup);
  3969. this.tabPage8.Controls.Add(this.itemtype);
  3970. this.tabPage8.Controls.Add(this.addItemL);
  3971. this.tabPage8.Location = new System.Drawing.Point(4, 4);
  3972. this.tabPage8.Margin = new System.Windows.Forms.Padding(2);
  3973. this.tabPage8.Name = "tabPage8";
  3974. this.tabPage8.Padding = new System.Windows.Forms.Padding(2);
  3975. this.tabPage8.Size = new System.Drawing.Size(987, 578);
  3976. this.tabPage8.TabIndex = 1;
  3977. this.tabPage8.Text = "Add/Modify";
  3978. //
  3979. // btnAddItem
  3980. //
  3981. this.btnAddItem.BackColor = System.Drawing.Color.DodgerBlue;
  3982. this.btnAddItem.FlatAppearance.BorderSize = 0;
  3983. this.btnAddItem.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  3984. this.btnAddItem.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  3985. this.btnAddItem.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3986. this.btnAddItem.ForeColor = System.Drawing.Color.White;
  3987. this.btnAddItem.Location = new System.Drawing.Point(465, 473);
  3988. this.btnAddItem.Margin = new System.Windows.Forms.Padding(2);
  3989. this.btnAddItem.Name = "btnAddItem";
  3990. this.btnAddItem.Size = new System.Drawing.Size(173, 31);
  3991. this.btnAddItem.TabIndex = 85;
  3992. this.btnAddItem.Text = "Add/Modify";
  3993. this.btnAddItem.UseVisualStyleBackColor = false;
  3994. this.btnAddItem.Click += new System.EventHandler(this.btnAddItem_Click);
  3995. //
  3996. // itemnamegroup
  3997. //
  3998. this.itemnamegroup.Controls.Add(this.txtItemName);
  3999. this.itemnamegroup.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4000. this.itemnamegroup.ForeColor = System.Drawing.Color.Silver;
  4001. this.itemnamegroup.Location = new System.Drawing.Point(11, 403);
  4002. this.itemnamegroup.Margin = new System.Windows.Forms.Padding(2);
  4003. this.itemnamegroup.Name = "itemnamegroup";
  4004. this.itemnamegroup.Padding = new System.Windows.Forms.Padding(2);
  4005. this.itemnamegroup.Size = new System.Drawing.Size(627, 66);
  4006. this.itemnamegroup.TabIndex = 84;
  4007. this.itemnamegroup.TabStop = false;
  4008. this.itemnamegroup.Text = "Item name in menu:";
  4009. //
  4010. // txtItemName
  4011. //
  4012. this.txtItemName.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  4013. this.txtItemName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4014. this.txtItemName.ForeColor = System.Drawing.Color.White;
  4015. this.txtItemName.Location = new System.Drawing.Point(11, 26);
  4016. this.txtItemName.Margin = new System.Windows.Forms.Padding(2);
  4017. this.txtItemName.Name = "txtItemName";
  4018. this.txtItemName.Size = new System.Drawing.Size(476, 29);
  4019. this.txtItemName.TabIndex = 82;
  4020. //
  4021. // security
  4022. //
  4023. this.security.Controls.Add(this.checkShift);
  4024. this.security.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4025. this.security.ForeColor = System.Drawing.Color.Silver;
  4026. this.security.Location = new System.Drawing.Point(11, 338);
  4027. this.security.Margin = new System.Windows.Forms.Padding(2);
  4028. this.security.Name = "security";
  4029. this.security.Padding = new System.Windows.Forms.Padding(2);
  4030. this.security.Size = new System.Drawing.Size(627, 61);
  4031. this.security.TabIndex = 83;
  4032. this.security.TabStop = false;
  4033. this.security.Text = "Security:";
  4034. //
  4035. // checkShift
  4036. //
  4037. this.checkShift.AutoSize = true;
  4038. this.checkShift.ForeColor = System.Drawing.Color.White;
  4039. this.checkShift.Location = new System.Drawing.Point(11, 26);
  4040. this.checkShift.Margin = new System.Windows.Forms.Padding(2);
  4041. this.checkShift.Name = "checkShift";
  4042. this.checkShift.Size = new System.Drawing.Size(300, 25);
  4043. this.checkShift.TabIndex = 83;
  4044. this.checkShift.Text = "Show only when SHIFT key is pressed";
  4045. this.checkShift.UseVisualStyleBackColor = true;
  4046. //
  4047. // itemposition
  4048. //
  4049. this.itemposition.Controls.Add(this.radioTop);
  4050. this.itemposition.Controls.Add(this.radioMiddle);
  4051. this.itemposition.Controls.Add(this.radioBottom);
  4052. this.itemposition.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4053. this.itemposition.ForeColor = System.Drawing.Color.Silver;
  4054. this.itemposition.Location = new System.Drawing.Point(11, 272);
  4055. this.itemposition.Margin = new System.Windows.Forms.Padding(2);
  4056. this.itemposition.Name = "itemposition";
  4057. this.itemposition.Padding = new System.Windows.Forms.Padding(2);
  4058. this.itemposition.Size = new System.Drawing.Size(627, 62);
  4059. this.itemposition.TabIndex = 82;
  4060. this.itemposition.TabStop = false;
  4061. this.itemposition.Text = "Item position:";
  4062. //
  4063. // radioTop
  4064. //
  4065. this.radioTop.AutoSize = true;
  4066. this.radioTop.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold);
  4067. this.radioTop.ForeColor = System.Drawing.Color.White;
  4068. this.radioTop.Location = new System.Drawing.Point(11, 26);
  4069. this.radioTop.Margin = new System.Windows.Forms.Padding(2);
  4070. this.radioTop.Name = "radioTop";
  4071. this.radioTop.Size = new System.Drawing.Size(55, 25);
  4072. this.radioTop.TabIndex = 83;
  4073. this.radioTop.Text = "Top";
  4074. this.radioTop.UseVisualStyleBackColor = true;
  4075. this.radioTop.CheckedChanged += new System.EventHandler(this.radioTop_CheckedChanged);
  4076. //
  4077. // radioMiddle
  4078. //
  4079. this.radioMiddle.AutoSize = true;
  4080. this.radioMiddle.ForeColor = System.Drawing.Color.White;
  4081. this.radioMiddle.Location = new System.Drawing.Point(131, 26);
  4082. this.radioMiddle.Margin = new System.Windows.Forms.Padding(2);
  4083. this.radioMiddle.Name = "radioMiddle";
  4084. this.radioMiddle.Size = new System.Drawing.Size(80, 25);
  4085. this.radioMiddle.TabIndex = 84;
  4086. this.radioMiddle.Text = "Middle";
  4087. this.radioMiddle.UseVisualStyleBackColor = true;
  4088. this.radioMiddle.CheckedChanged += new System.EventHandler(this.radioMiddle_CheckedChanged);
  4089. //
  4090. // radioBottom
  4091. //
  4092. this.radioBottom.AutoSize = true;
  4093. this.radioBottom.ForeColor = System.Drawing.Color.White;
  4094. this.radioBottom.Location = new System.Drawing.Point(277, 26);
  4095. this.radioBottom.Margin = new System.Windows.Forms.Padding(2);
  4096. this.radioBottom.Name = "radioBottom";
  4097. this.radioBottom.Size = new System.Drawing.Size(84, 25);
  4098. this.radioBottom.TabIndex = 85;
  4099. this.radioBottom.Text = "Bottom";
  4100. this.radioBottom.UseVisualStyleBackColor = true;
  4101. this.radioBottom.CheckedChanged += new System.EventHandler(this.radioBottom_CheckedChanged);
  4102. //
  4103. // icontoaddgroup
  4104. //
  4105. this.icontoaddgroup.Controls.Add(this.checkDefaultIcon);
  4106. this.icontoaddgroup.Controls.Add(this.btnBrowseIcon);
  4107. this.icontoaddgroup.Controls.Add(this.txtIcon);
  4108. this.icontoaddgroup.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4109. this.icontoaddgroup.ForeColor = System.Drawing.Color.Silver;
  4110. this.icontoaddgroup.Location = new System.Drawing.Point(11, 178);
  4111. this.icontoaddgroup.Margin = new System.Windows.Forms.Padding(2);
  4112. this.icontoaddgroup.Name = "icontoaddgroup";
  4113. this.icontoaddgroup.Padding = new System.Windows.Forms.Padding(2);
  4114. this.icontoaddgroup.Size = new System.Drawing.Size(627, 90);
  4115. this.icontoaddgroup.TabIndex = 81;
  4116. this.icontoaddgroup.TabStop = false;
  4117. this.icontoaddgroup.Text = "Icon to add:";
  4118. //
  4119. // checkDefaultIcon
  4120. //
  4121. this.checkDefaultIcon.AutoSize = true;
  4122. this.checkDefaultIcon.Font = new System.Drawing.Font("Segoe UI Semibold", 12F);
  4123. this.checkDefaultIcon.ForeColor = System.Drawing.Color.White;
  4124. this.checkDefaultIcon.Location = new System.Drawing.Point(11, 58);
  4125. this.checkDefaultIcon.Margin = new System.Windows.Forms.Padding(2);
  4126. this.checkDefaultIcon.Name = "checkDefaultIcon";
  4127. this.checkDefaultIcon.Size = new System.Drawing.Size(169, 25);
  4128. this.checkDefaultIcon.TabIndex = 82;
  4129. this.checkDefaultIcon.Text = "Use program\'s icon";
  4130. this.checkDefaultIcon.UseVisualStyleBackColor = true;
  4131. this.checkDefaultIcon.CheckedChanged += new System.EventHandler(this.checkDefaultIcon_CheckedChanged);
  4132. //
  4133. // btnBrowseIcon
  4134. //
  4135. this.btnBrowseIcon.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  4136. this.btnBrowseIcon.BackColor = System.Drawing.Color.DodgerBlue;
  4137. this.btnBrowseIcon.Enabled = false;
  4138. this.btnBrowseIcon.FlatAppearance.BorderSize = 0;
  4139. this.btnBrowseIcon.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  4140. this.btnBrowseIcon.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  4141. this.btnBrowseIcon.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  4142. this.btnBrowseIcon.ForeColor = System.Drawing.Color.White;
  4143. this.btnBrowseIcon.Location = new System.Drawing.Point(450, 26);
  4144. this.btnBrowseIcon.Margin = new System.Windows.Forms.Padding(2);
  4145. this.btnBrowseIcon.Name = "btnBrowseIcon";
  4146. this.btnBrowseIcon.Size = new System.Drawing.Size(36, 29);
  4147. this.btnBrowseIcon.TabIndex = 82;
  4148. this.btnBrowseIcon.Text = "...";
  4149. this.btnBrowseIcon.UseVisualStyleBackColor = false;
  4150. this.btnBrowseIcon.Click += new System.EventHandler(this.btnBrowseIcon_Click);
  4151. //
  4152. // txtIcon
  4153. //
  4154. this.txtIcon.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  4155. this.txtIcon.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4156. this.txtIcon.Enabled = false;
  4157. this.txtIcon.ForeColor = System.Drawing.Color.White;
  4158. this.txtIcon.Location = new System.Drawing.Point(11, 26);
  4159. this.txtIcon.Margin = new System.Windows.Forms.Padding(2);
  4160. this.txtIcon.Name = "txtIcon";
  4161. this.txtIcon.ReadOnly = true;
  4162. this.txtIcon.Size = new System.Drawing.Size(434, 29);
  4163. this.txtIcon.TabIndex = 81;
  4164. //
  4165. // itemtoaddgroup
  4166. //
  4167. this.itemtoaddgroup.Controls.Add(this.btnBrowseItem);
  4168. this.itemtoaddgroup.Controls.Add(this.txtItem);
  4169. this.itemtoaddgroup.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4170. this.itemtoaddgroup.ForeColor = System.Drawing.Color.Silver;
  4171. this.itemtoaddgroup.Location = new System.Drawing.Point(11, 107);
  4172. this.itemtoaddgroup.Margin = new System.Windows.Forms.Padding(2);
  4173. this.itemtoaddgroup.Name = "itemtoaddgroup";
  4174. this.itemtoaddgroup.Padding = new System.Windows.Forms.Padding(2);
  4175. this.itemtoaddgroup.Size = new System.Drawing.Size(627, 67);
  4176. this.itemtoaddgroup.TabIndex = 80;
  4177. this.itemtoaddgroup.TabStop = false;
  4178. this.itemtoaddgroup.Text = "Program to add:";
  4179. //
  4180. // btnBrowseItem
  4181. //
  4182. this.btnBrowseItem.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  4183. this.btnBrowseItem.BackColor = System.Drawing.Color.DodgerBlue;
  4184. this.btnBrowseItem.FlatAppearance.BorderSize = 0;
  4185. this.btnBrowseItem.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  4186. this.btnBrowseItem.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  4187. this.btnBrowseItem.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  4188. this.btnBrowseItem.ForeColor = System.Drawing.Color.White;
  4189. this.btnBrowseItem.Location = new System.Drawing.Point(449, 26);
  4190. this.btnBrowseItem.Margin = new System.Windows.Forms.Padding(2);
  4191. this.btnBrowseItem.Name = "btnBrowseItem";
  4192. this.btnBrowseItem.Size = new System.Drawing.Size(36, 29);
  4193. this.btnBrowseItem.TabIndex = 82;
  4194. this.btnBrowseItem.Text = "...";
  4195. this.btnBrowseItem.UseVisualStyleBackColor = false;
  4196. this.btnBrowseItem.Click += new System.EventHandler(this.btnBrowseItem_Click);
  4197. //
  4198. // txtItem
  4199. //
  4200. this.txtItem.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  4201. this.txtItem.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4202. this.txtItem.ForeColor = System.Drawing.Color.White;
  4203. this.txtItem.Location = new System.Drawing.Point(11, 26);
  4204. this.txtItem.Margin = new System.Windows.Forms.Padding(2);
  4205. this.txtItem.Name = "txtItem";
  4206. this.txtItem.ReadOnly = true;
  4207. this.txtItem.Size = new System.Drawing.Size(434, 29);
  4208. this.txtItem.TabIndex = 81;
  4209. //
  4210. // itemtype
  4211. //
  4212. this.itemtype.Controls.Add(this.radioCommand);
  4213. this.itemtype.Controls.Add(this.radioProgram);
  4214. this.itemtype.Controls.Add(this.radioFolder);
  4215. this.itemtype.Controls.Add(this.radioLink);
  4216. this.itemtype.Controls.Add(this.radioFile);
  4217. this.itemtype.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4218. this.itemtype.ForeColor = System.Drawing.Color.Silver;
  4219. this.itemtype.Location = new System.Drawing.Point(11, 40);
  4220. this.itemtype.Margin = new System.Windows.Forms.Padding(2);
  4221. this.itemtype.Name = "itemtype";
  4222. this.itemtype.Padding = new System.Windows.Forms.Padding(2);
  4223. this.itemtype.Size = new System.Drawing.Size(627, 63);
  4224. this.itemtype.TabIndex = 79;
  4225. this.itemtype.TabStop = false;
  4226. this.itemtype.Text = "Item Type:";
  4227. //
  4228. // radioCommand
  4229. //
  4230. this.radioCommand.AutoSize = true;
  4231. this.radioCommand.ForeColor = System.Drawing.Color.White;
  4232. this.radioCommand.Location = new System.Drawing.Point(481, 26);
  4233. this.radioCommand.Margin = new System.Windows.Forms.Padding(2);
  4234. this.radioCommand.Name = "radioCommand";
  4235. this.radioCommand.Size = new System.Drawing.Size(103, 25);
  4236. this.radioCommand.TabIndex = 84;
  4237. this.radioCommand.Text = "Command";
  4238. this.radioCommand.UseVisualStyleBackColor = true;
  4239. this.radioCommand.CheckedChanged += new System.EventHandler(this.radioCommand_CheckedChanged);
  4240. //
  4241. // radioProgram
  4242. //
  4243. this.radioProgram.AutoSize = true;
  4244. this.radioProgram.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold);
  4245. this.radioProgram.ForeColor = System.Drawing.Color.White;
  4246. this.radioProgram.Location = new System.Drawing.Point(11, 26);
  4247. this.radioProgram.Margin = new System.Windows.Forms.Padding(2);
  4248. this.radioProgram.Name = "radioProgram";
  4249. this.radioProgram.Size = new System.Drawing.Size(91, 25);
  4250. this.radioProgram.TabIndex = 80;
  4251. this.radioProgram.Text = "Program";
  4252. this.radioProgram.UseVisualStyleBackColor = true;
  4253. this.radioProgram.CheckedChanged += new System.EventHandler(this.radioProgram_CheckedChanged);
  4254. //
  4255. // radioFolder
  4256. //
  4257. this.radioFolder.AutoSize = true;
  4258. this.radioFolder.ForeColor = System.Drawing.Color.White;
  4259. this.radioFolder.Location = new System.Drawing.Point(139, 26);
  4260. this.radioFolder.Margin = new System.Windows.Forms.Padding(2);
  4261. this.radioFolder.Name = "radioFolder";
  4262. this.radioFolder.Size = new System.Drawing.Size(75, 25);
  4263. this.radioFolder.TabIndex = 81;
  4264. this.radioFolder.Text = "Folder";
  4265. this.radioFolder.UseVisualStyleBackColor = true;
  4266. this.radioFolder.CheckedChanged += new System.EventHandler(this.radioFolder_CheckedChanged);
  4267. //
  4268. // radioLink
  4269. //
  4270. this.radioLink.AutoSize = true;
  4271. this.radioLink.ForeColor = System.Drawing.Color.White;
  4272. this.radioLink.Location = new System.Drawing.Point(254, 26);
  4273. this.radioLink.Margin = new System.Windows.Forms.Padding(2);
  4274. this.radioLink.Name = "radioLink";
  4275. this.radioLink.Size = new System.Drawing.Size(57, 25);
  4276. this.radioLink.TabIndex = 82;
  4277. this.radioLink.Text = "Link";
  4278. this.radioLink.UseVisualStyleBackColor = true;
  4279. this.radioLink.CheckedChanged += new System.EventHandler(this.radioLink_CheckedChanged);
  4280. //
  4281. // radioFile
  4282. //
  4283. this.radioFile.AutoSize = true;
  4284. this.radioFile.ForeColor = System.Drawing.Color.White;
  4285. this.radioFile.Location = new System.Drawing.Point(371, 26);
  4286. this.radioFile.Margin = new System.Windows.Forms.Padding(2);
  4287. this.radioFile.Name = "radioFile";
  4288. this.radioFile.Size = new System.Drawing.Size(53, 25);
  4289. this.radioFile.TabIndex = 83;
  4290. this.radioFile.Text = "File";
  4291. this.radioFile.UseVisualStyleBackColor = true;
  4292. this.radioFile.CheckedChanged += new System.EventHandler(this.radioFile_CheckedChanged);
  4293. //
  4294. // addItemL
  4295. //
  4296. this.addItemL.AutoSize = true;
  4297. this.addItemL.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4298. this.addItemL.ForeColor = System.Drawing.Color.DodgerBlue;
  4299. this.addItemL.Location = new System.Drawing.Point(6, 10);
  4300. this.addItemL.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  4301. this.addItemL.Name = "addItemL";
  4302. this.addItemL.Size = new System.Drawing.Size(219, 28);
  4303. this.addItemL.TabIndex = 78;
  4304. this.addItemL.Tag = "themeable";
  4305. this.addItemL.Text = "Add or modify an item";
  4306. //
  4307. // tabPage9
  4308. //
  4309. this.tabPage9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  4310. this.tabPage9.Controls.Add(this.panel5);
  4311. this.tabPage9.Controls.Add(this.refreshIIB);
  4312. this.tabPage9.Controls.Add(this.removeDIB);
  4313. this.tabPage9.Controls.Add(this.removeAllIIB);
  4314. this.tabPage9.Controls.Add(this.removeIntegratorItemsL);
  4315. this.tabPage9.Location = new System.Drawing.Point(4, 4);
  4316. this.tabPage9.Margin = new System.Windows.Forms.Padding(2);
  4317. this.tabPage9.Name = "tabPage9";
  4318. this.tabPage9.Padding = new System.Windows.Forms.Padding(2);
  4319. this.tabPage9.Size = new System.Drawing.Size(987, 578);
  4320. this.tabPage9.TabIndex = 2;
  4321. this.tabPage9.Text = "Remove";
  4322. //
  4323. // panel5
  4324. //
  4325. this.panel5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4326. this.panel5.Controls.Add(this.listDesktopItems);
  4327. this.panel5.Location = new System.Drawing.Point(11, 44);
  4328. this.panel5.Margin = new System.Windows.Forms.Padding(2);
  4329. this.panel5.Name = "panel5";
  4330. this.panel5.Size = new System.Drawing.Size(293, 435);
  4331. this.panel5.TabIndex = 82;
  4332. //
  4333. // listDesktopItems
  4334. //
  4335. this.listDesktopItems.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  4336. this.listDesktopItems.BorderStyle = System.Windows.Forms.BorderStyle.None;
  4337. this.listDesktopItems.Dock = System.Windows.Forms.DockStyle.Fill;
  4338. this.listDesktopItems.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawVariable;
  4339. this.listDesktopItems.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4340. this.listDesktopItems.ForeColor = System.Drawing.Color.White;
  4341. this.listDesktopItems.FormattingEnabled = true;
  4342. this.listDesktopItems.HorizontalScrollbar = true;
  4343. this.listDesktopItems.ItemHeight = 21;
  4344. this.listDesktopItems.Location = new System.Drawing.Point(0, 0);
  4345. this.listDesktopItems.Margin = new System.Windows.Forms.Padding(2);
  4346. this.listDesktopItems.Name = "listDesktopItems";
  4347. this.listDesktopItems.Size = new System.Drawing.Size(291, 433);
  4348. this.listDesktopItems.TabIndex = 78;
  4349. //
  4350. // refreshIIB
  4351. //
  4352. this.refreshIIB.BackColor = System.Drawing.Color.DodgerBlue;
  4353. this.refreshIIB.FlatAppearance.BorderSize = 0;
  4354. this.refreshIIB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  4355. this.refreshIIB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  4356. this.refreshIIB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  4357. this.refreshIIB.ForeColor = System.Drawing.Color.White;
  4358. this.refreshIIB.Location = new System.Drawing.Point(308, 80);
  4359. this.refreshIIB.Margin = new System.Windows.Forms.Padding(2);
  4360. this.refreshIIB.Name = "refreshIIB";
  4361. this.refreshIIB.Size = new System.Drawing.Size(137, 31);
  4362. this.refreshIIB.TabIndex = 81;
  4363. this.refreshIIB.Text = "Refresh";
  4364. this.refreshIIB.UseVisualStyleBackColor = false;
  4365. this.refreshIIB.Click += new System.EventHandler(this.button60_Click);
  4366. //
  4367. // removeDIB
  4368. //
  4369. this.removeDIB.BackColor = System.Drawing.Color.DodgerBlue;
  4370. this.removeDIB.FlatAppearance.BorderSize = 0;
  4371. this.removeDIB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  4372. this.removeDIB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  4373. this.removeDIB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  4374. this.removeDIB.ForeColor = System.Drawing.Color.White;
  4375. this.removeDIB.Location = new System.Drawing.Point(308, 45);
  4376. this.removeDIB.Margin = new System.Windows.Forms.Padding(2);
  4377. this.removeDIB.Name = "removeDIB";
  4378. this.removeDIB.Size = new System.Drawing.Size(137, 31);
  4379. this.removeDIB.TabIndex = 80;
  4380. this.removeDIB.Text = "Delete";
  4381. this.removeDIB.UseVisualStyleBackColor = false;
  4382. this.removeDIB.Click += new System.EventHandler(this.button61_Click);
  4383. //
  4384. // removeAllIIB
  4385. //
  4386. this.removeAllIIB.BackColor = System.Drawing.Color.DodgerBlue;
  4387. this.removeAllIIB.FlatAppearance.BorderSize = 0;
  4388. this.removeAllIIB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  4389. this.removeAllIIB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  4390. this.removeAllIIB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  4391. this.removeAllIIB.ForeColor = System.Drawing.Color.White;
  4392. this.removeAllIIB.Location = new System.Drawing.Point(308, 115);
  4393. this.removeAllIIB.Margin = new System.Windows.Forms.Padding(2);
  4394. this.removeAllIIB.Name = "removeAllIIB";
  4395. this.removeAllIIB.Size = new System.Drawing.Size(137, 31);
  4396. this.removeAllIIB.TabIndex = 79;
  4397. this.removeAllIIB.Text = "Delete all";
  4398. this.removeAllIIB.UseVisualStyleBackColor = false;
  4399. this.removeAllIIB.Click += new System.EventHandler(this.button62_Click);
  4400. //
  4401. // removeIntegratorItemsL
  4402. //
  4403. this.removeIntegratorItemsL.AutoSize = true;
  4404. this.removeIntegratorItemsL.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4405. this.removeIntegratorItemsL.ForeColor = System.Drawing.Color.DodgerBlue;
  4406. this.removeIntegratorItemsL.Location = new System.Drawing.Point(6, 10);
  4407. this.removeIntegratorItemsL.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  4408. this.removeIntegratorItemsL.Name = "removeIntegratorItemsL";
  4409. this.removeIntegratorItemsL.Size = new System.Drawing.Size(300, 28);
  4410. this.removeIntegratorItemsL.TabIndex = 77;
  4411. this.removeIntegratorItemsL.Tag = "themeable";
  4412. this.removeIntegratorItemsL.Text = "Remove existing Desktop items";
  4413. //
  4414. // tabPage10
  4415. //
  4416. this.tabPage10.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  4417. this.tabPage10.Controls.Add(this.WAB);
  4418. this.tabPage10.Controls.Add(this.AddCMDB);
  4419. this.tabPage10.Controls.Add(this.AddOwnerB);
  4420. this.tabPage10.Controls.Add(this.DSB);
  4421. this.tabPage10.Controls.Add(this.SSB);
  4422. this.tabPage10.Controls.Add(this.STB);
  4423. this.tabPage10.Controls.Add(this.PMB);
  4424. this.tabPage10.Controls.Add(this.readyMenusL);
  4425. this.tabPage10.Location = new System.Drawing.Point(4, 4);
  4426. this.tabPage10.Margin = new System.Windows.Forms.Padding(2);
  4427. this.tabPage10.Name = "tabPage10";
  4428. this.tabPage10.Padding = new System.Windows.Forms.Padding(2);
  4429. this.tabPage10.Size = new System.Drawing.Size(987, 578);
  4430. this.tabPage10.TabIndex = 3;
  4431. this.tabPage10.Text = "Ready Menus";
  4432. //
  4433. // WAB
  4434. //
  4435. this.WAB.AccessibleName = "Add \"Windows Apps\"";
  4436. this.WAB.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  4437. this.WAB.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  4438. this.WAB.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4439. this.WAB.ForeColor = System.Drawing.Color.White;
  4440. this.WAB.LabelText = "Add \"Windows Apps\"";
  4441. this.WAB.Location = new System.Drawing.Point(32, 120);
  4442. this.WAB.Name = "WAB";
  4443. this.WAB.Size = new System.Drawing.Size(374, 24);
  4444. this.WAB.TabIndex = 95;
  4445. this.WAB.Tag = "themeable";
  4446. this.WAB.ToggleChecked = false;
  4447. //
  4448. // AddCMDB
  4449. //
  4450. this.AddCMDB.AccessibleName = "Add \"Open with CMD\"";
  4451. this.AddCMDB.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  4452. this.AddCMDB.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  4453. this.AddCMDB.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4454. this.AddCMDB.ForeColor = System.Drawing.Color.White;
  4455. this.AddCMDB.LabelText = "Add \"Open with CMD\"";
  4456. this.AddCMDB.Location = new System.Drawing.Point(32, 275);
  4457. this.AddCMDB.Name = "AddCMDB";
  4458. this.AddCMDB.Size = new System.Drawing.Size(374, 24);
  4459. this.AddCMDB.TabIndex = 94;
  4460. this.AddCMDB.Tag = "themeable";
  4461. this.AddCMDB.ToggleChecked = false;
  4462. //
  4463. // AddOwnerB
  4464. //
  4465. this.AddOwnerB.AccessibleName = "Add \"Take Ownership\"";
  4466. this.AddOwnerB.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  4467. this.AddOwnerB.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  4468. this.AddOwnerB.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4469. this.AddOwnerB.ForeColor = System.Drawing.Color.White;
  4470. this.AddOwnerB.LabelText = "Add \"Take Ownership\"";
  4471. this.AddOwnerB.Location = new System.Drawing.Point(32, 245);
  4472. this.AddOwnerB.Name = "AddOwnerB";
  4473. this.AddOwnerB.Size = new System.Drawing.Size(374, 24);
  4474. this.AddOwnerB.TabIndex = 93;
  4475. this.AddOwnerB.Tag = "themeable";
  4476. this.AddOwnerB.ToggleChecked = false;
  4477. //
  4478. // DSB
  4479. //
  4480. this.DSB.AccessibleName = "Add \"Desktop Shortcuts\"";
  4481. this.DSB.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  4482. this.DSB.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  4483. this.DSB.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4484. this.DSB.ForeColor = System.Drawing.Color.White;
  4485. this.DSB.LabelText = "Add \"Desktop Shortcuts\"";
  4486. this.DSB.Location = new System.Drawing.Point(32, 180);
  4487. this.DSB.Name = "DSB";
  4488. this.DSB.Size = new System.Drawing.Size(374, 24);
  4489. this.DSB.TabIndex = 92;
  4490. this.DSB.Tag = "themeable";
  4491. this.DSB.ToggleChecked = false;
  4492. //
  4493. // SSB
  4494. //
  4495. this.SSB.AccessibleName = "Add \"System Shortcuts\"";
  4496. this.SSB.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  4497. this.SSB.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  4498. this.SSB.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4499. this.SSB.ForeColor = System.Drawing.Color.White;
  4500. this.SSB.LabelText = "Add \"System Shortcuts\"";
  4501. this.SSB.Location = new System.Drawing.Point(32, 150);
  4502. this.SSB.Name = "SSB";
  4503. this.SSB.Size = new System.Drawing.Size(374, 24);
  4504. this.SSB.TabIndex = 91;
  4505. this.SSB.Tag = "themeable";
  4506. this.SSB.ToggleChecked = false;
  4507. //
  4508. // STB
  4509. //
  4510. this.STB.AccessibleName = "Add \"System Tools\"";
  4511. this.STB.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  4512. this.STB.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  4513. this.STB.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4514. this.STB.ForeColor = System.Drawing.Color.White;
  4515. this.STB.LabelText = "Add \"System Tools\"";
  4516. this.STB.Location = new System.Drawing.Point(32, 90);
  4517. this.STB.Name = "STB";
  4518. this.STB.Size = new System.Drawing.Size(374, 24);
  4519. this.STB.TabIndex = 90;
  4520. this.STB.Tag = "themeable";
  4521. this.STB.ToggleChecked = false;
  4522. //
  4523. // PMB
  4524. //
  4525. this.PMB.AccessibleName = "Add \"Power Menu\"";
  4526. this.PMB.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  4527. this.PMB.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  4528. this.PMB.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4529. this.PMB.ForeColor = System.Drawing.Color.White;
  4530. this.PMB.LabelText = "Add \"Power Menu\"";
  4531. this.PMB.Location = new System.Drawing.Point(32, 60);
  4532. this.PMB.Name = "PMB";
  4533. this.PMB.Size = new System.Drawing.Size(374, 24);
  4534. this.PMB.TabIndex = 89;
  4535. this.PMB.Tag = "themeable";
  4536. this.PMB.ToggleChecked = false;
  4537. //
  4538. // readyMenusL
  4539. //
  4540. this.readyMenusL.AutoSize = true;
  4541. this.readyMenusL.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4542. this.readyMenusL.ForeColor = System.Drawing.Color.DodgerBlue;
  4543. this.readyMenusL.Location = new System.Drawing.Point(6, 10);
  4544. this.readyMenusL.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  4545. this.readyMenusL.Name = "readyMenusL";
  4546. this.readyMenusL.Size = new System.Drawing.Size(232, 28);
  4547. this.readyMenusL.TabIndex = 76;
  4548. this.readyMenusL.Tag = "themeable";
  4549. this.readyMenusL.Text = "Add ready-made menus";
  4550. //
  4551. // tabPage11
  4552. //
  4553. this.tabPage11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  4554. this.tabPage11.Controls.Add(this.panel6);
  4555. this.tabPage11.Controls.Add(this.removeCCB);
  4556. this.tabPage11.Controls.Add(this.refreshCCB);
  4557. this.tabPage11.Controls.Add(this.removeCCL);
  4558. this.tabPage11.Controls.Add(this.btnCreateCustomCommand);
  4559. this.tabPage11.Controls.Add(this.button48);
  4560. this.tabPage11.Controls.Add(this.txtRunKeyword);
  4561. this.tabPage11.Controls.Add(this.ccKeywordL);
  4562. this.tabPage11.Controls.Add(this.txtRunFile);
  4563. this.tabPage11.Controls.Add(this.ccFileL);
  4564. this.tabPage11.Controls.Add(this.ccL);
  4565. this.tabPage11.Location = new System.Drawing.Point(4, 4);
  4566. this.tabPage11.Margin = new System.Windows.Forms.Padding(2);
  4567. this.tabPage11.Name = "tabPage11";
  4568. this.tabPage11.Padding = new System.Windows.Forms.Padding(2);
  4569. this.tabPage11.Size = new System.Drawing.Size(987, 578);
  4570. this.tabPage11.TabIndex = 4;
  4571. this.tabPage11.Text = "Run Dialog";
  4572. //
  4573. // panel6
  4574. //
  4575. this.panel6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4576. this.panel6.Controls.Add(this.listCustomCommands);
  4577. this.panel6.Location = new System.Drawing.Point(11, 210);
  4578. this.panel6.Margin = new System.Windows.Forms.Padding(2);
  4579. this.panel6.Name = "panel6";
  4580. this.panel6.Size = new System.Drawing.Size(271, 313);
  4581. this.panel6.TabIndex = 84;
  4582. //
  4583. // listCustomCommands
  4584. //
  4585. this.listCustomCommands.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  4586. this.listCustomCommands.BorderStyle = System.Windows.Forms.BorderStyle.None;
  4587. this.listCustomCommands.Dock = System.Windows.Forms.DockStyle.Fill;
  4588. this.listCustomCommands.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawVariable;
  4589. this.listCustomCommands.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4590. this.listCustomCommands.ForeColor = System.Drawing.Color.White;
  4591. this.listCustomCommands.FormattingEnabled = true;
  4592. this.listCustomCommands.HorizontalScrollbar = true;
  4593. this.listCustomCommands.ItemHeight = 21;
  4594. this.listCustomCommands.Location = new System.Drawing.Point(0, 0);
  4595. this.listCustomCommands.Margin = new System.Windows.Forms.Padding(2);
  4596. this.listCustomCommands.Name = "listCustomCommands";
  4597. this.listCustomCommands.Size = new System.Drawing.Size(269, 311);
  4598. this.listCustomCommands.TabIndex = 79;
  4599. //
  4600. // removeCCB
  4601. //
  4602. this.removeCCB.BackColor = System.Drawing.Color.DodgerBlue;
  4603. this.removeCCB.FlatAppearance.BorderSize = 0;
  4604. this.removeCCB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  4605. this.removeCCB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  4606. this.removeCCB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  4607. this.removeCCB.ForeColor = System.Drawing.Color.White;
  4608. this.removeCCB.Location = new System.Drawing.Point(286, 210);
  4609. this.removeCCB.Margin = new System.Windows.Forms.Padding(2);
  4610. this.removeCCB.Name = "removeCCB";
  4611. this.removeCCB.Size = new System.Drawing.Size(120, 27);
  4612. this.removeCCB.TabIndex = 82;
  4613. this.removeCCB.Text = "Delete";
  4614. this.removeCCB.UseVisualStyleBackColor = false;
  4615. this.removeCCB.Click += new System.EventHandler(this.button26_Click);
  4616. //
  4617. // refreshCCB
  4618. //
  4619. this.refreshCCB.BackColor = System.Drawing.Color.DodgerBlue;
  4620. this.refreshCCB.FlatAppearance.BorderSize = 0;
  4621. this.refreshCCB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  4622. this.refreshCCB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  4623. this.refreshCCB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  4624. this.refreshCCB.ForeColor = System.Drawing.Color.White;
  4625. this.refreshCCB.Location = new System.Drawing.Point(286, 241);
  4626. this.refreshCCB.Margin = new System.Windows.Forms.Padding(2);
  4627. this.refreshCCB.Name = "refreshCCB";
  4628. this.refreshCCB.Size = new System.Drawing.Size(120, 27);
  4629. this.refreshCCB.TabIndex = 81;
  4630. this.refreshCCB.Text = "Refresh";
  4631. this.refreshCCB.UseVisualStyleBackColor = false;
  4632. this.refreshCCB.Click += new System.EventHandler(this.button8_Click);
  4633. //
  4634. // removeCCL
  4635. //
  4636. this.removeCCL.AutoSize = true;
  4637. this.removeCCL.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4638. this.removeCCL.ForeColor = System.Drawing.Color.DodgerBlue;
  4639. this.removeCCL.Location = new System.Drawing.Point(6, 173);
  4640. this.removeCCL.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  4641. this.removeCCL.Name = "removeCCL";
  4642. this.removeCCL.Size = new System.Drawing.Size(254, 28);
  4643. this.removeCCL.TabIndex = 80;
  4644. this.removeCCL.Tag = "themeable";
  4645. this.removeCCL.Text = "Delete existing commands";
  4646. //
  4647. // btnCreateCustomCommand
  4648. //
  4649. this.btnCreateCustomCommand.BackColor = System.Drawing.Color.DodgerBlue;
  4650. this.btnCreateCustomCommand.FlatAppearance.BorderSize = 0;
  4651. this.btnCreateCustomCommand.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  4652. this.btnCreateCustomCommand.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  4653. this.btnCreateCustomCommand.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  4654. this.btnCreateCustomCommand.ForeColor = System.Drawing.Color.White;
  4655. this.btnCreateCustomCommand.Location = new System.Drawing.Point(299, 130);
  4656. this.btnCreateCustomCommand.Margin = new System.Windows.Forms.Padding(2);
  4657. this.btnCreateCustomCommand.Name = "btnCreateCustomCommand";
  4658. this.btnCreateCustomCommand.Size = new System.Drawing.Size(107, 29);
  4659. this.btnCreateCustomCommand.TabIndex = 60;
  4660. this.btnCreateCustomCommand.Text = "Create";
  4661. this.btnCreateCustomCommand.UseVisualStyleBackColor = false;
  4662. this.btnCreateCustomCommand.Click += new System.EventHandler(this.button50_Click);
  4663. //
  4664. // button48
  4665. //
  4666. this.button48.BackColor = System.Drawing.Color.DodgerBlue;
  4667. this.button48.FlatAppearance.BorderSize = 0;
  4668. this.button48.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  4669. this.button48.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  4670. this.button48.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  4671. this.button48.ForeColor = System.Drawing.Color.White;
  4672. this.button48.Location = new System.Drawing.Point(354, 75);
  4673. this.button48.Margin = new System.Windows.Forms.Padding(2);
  4674. this.button48.Name = "button48";
  4675. this.button48.Size = new System.Drawing.Size(52, 29);
  4676. this.button48.TabIndex = 58;
  4677. this.button48.Text = "...";
  4678. this.button48.UseVisualStyleBackColor = false;
  4679. this.button48.Click += new System.EventHandler(this.button48_Click);
  4680. //
  4681. // txtRunKeyword
  4682. //
  4683. this.txtRunKeyword.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  4684. this.txtRunKeyword.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4685. this.txtRunKeyword.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4686. this.txtRunKeyword.ForeColor = System.Drawing.Color.White;
  4687. this.txtRunKeyword.Location = new System.Drawing.Point(11, 130);
  4688. this.txtRunKeyword.Margin = new System.Windows.Forms.Padding(2);
  4689. this.txtRunKeyword.Name = "txtRunKeyword";
  4690. this.txtRunKeyword.Size = new System.Drawing.Size(284, 29);
  4691. this.txtRunKeyword.TabIndex = 9;
  4692. //
  4693. // ccKeywordL
  4694. //
  4695. this.ccKeywordL.AutoSize = true;
  4696. this.ccKeywordL.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4697. this.ccKeywordL.ForeColor = System.Drawing.Color.Silver;
  4698. this.ccKeywordL.Location = new System.Drawing.Point(7, 105);
  4699. this.ccKeywordL.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  4700. this.ccKeywordL.Name = "ccKeywordL";
  4701. this.ccKeywordL.Size = new System.Drawing.Size(79, 21);
  4702. this.ccKeywordL.TabIndex = 8;
  4703. this.ccKeywordL.Text = "Keyword:";
  4704. //
  4705. // txtRunFile
  4706. //
  4707. this.txtRunFile.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  4708. this.txtRunFile.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4709. this.txtRunFile.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4710. this.txtRunFile.ForeColor = System.Drawing.Color.White;
  4711. this.txtRunFile.Location = new System.Drawing.Point(11, 75);
  4712. this.txtRunFile.Margin = new System.Windows.Forms.Padding(2);
  4713. this.txtRunFile.Name = "txtRunFile";
  4714. this.txtRunFile.ReadOnly = true;
  4715. this.txtRunFile.Size = new System.Drawing.Size(339, 29);
  4716. this.txtRunFile.TabIndex = 7;
  4717. //
  4718. // ccFileL
  4719. //
  4720. this.ccFileL.AutoSize = true;
  4721. this.ccFileL.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4722. this.ccFileL.ForeColor = System.Drawing.Color.Silver;
  4723. this.ccFileL.Location = new System.Drawing.Point(7, 50);
  4724. this.ccFileL.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  4725. this.ccFileL.Name = "ccFileL";
  4726. this.ccFileL.Size = new System.Drawing.Size(102, 21);
  4727. this.ccFileL.TabIndex = 6;
  4728. this.ccFileL.Text = "File location:";
  4729. //
  4730. // ccL
  4731. //
  4732. this.ccL.AutoSize = true;
  4733. this.ccL.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4734. this.ccL.ForeColor = System.Drawing.Color.DodgerBlue;
  4735. this.ccL.Location = new System.Drawing.Point(6, 10);
  4736. this.ccL.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  4737. this.ccL.Name = "ccL";
  4738. this.ccL.Size = new System.Drawing.Size(298, 28);
  4739. this.ccL.TabIndex = 5;
  4740. this.ccL.Tag = "themeable";
  4741. this.ccL.Text = "Define your custom commands";
  4742. //
  4743. // optionsTab
  4744. //
  4745. this.optionsTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  4746. this.optionsTab.Controls.Add(this.pictureBox3);
  4747. this.optionsTab.Controls.Add(this.linkLabel3);
  4748. this.optionsTab.Controls.Add(this.pictureBox17);
  4749. this.optionsTab.Controls.Add(this.linkLabel2);
  4750. this.optionsTab.Controls.Add(this.pictureBox14);
  4751. this.optionsTab.Controls.Add(this.pictureBox13);
  4752. this.optionsTab.Controls.Add(this.pictureBox12);
  4753. this.optionsTab.Controls.Add(this.linkLabel1);
  4754. this.optionsTab.Controls.Add(this.pictureBox85);
  4755. this.optionsTab.Controls.Add(this.panel9);
  4756. this.optionsTab.Controls.Add(this.panel8);
  4757. this.optionsTab.Controls.Add(this.languagesL);
  4758. this.optionsTab.Controls.Add(this.linkLabel5);
  4759. this.optionsTab.Controls.Add(this.btnOpenConf);
  4760. this.optionsTab.Controls.Add(this.lblTroubleshoot);
  4761. this.optionsTab.Controls.Add(this.lblUpdating);
  4762. this.optionsTab.Controls.Add(this.btnViewLog);
  4763. this.optionsTab.Controls.Add(this.l2);
  4764. this.optionsTab.Controls.Add(this.btnUpdate);
  4765. this.optionsTab.Controls.Add(this.btnResetConfig);
  4766. this.optionsTab.Controls.Add(this.lblTheming);
  4767. this.optionsTab.Controls.Add(this.quickAccessToggle);
  4768. this.optionsTab.Controls.Add(this.helpTipsToggle);
  4769. this.optionsTab.Location = new System.Drawing.Point(4, 25);
  4770. this.optionsTab.Margin = new System.Windows.Forms.Padding(2);
  4771. this.optionsTab.Name = "optionsTab";
  4772. this.optionsTab.Padding = new System.Windows.Forms.Padding(2);
  4773. this.optionsTab.Size = new System.Drawing.Size(999, 610);
  4774. this.optionsTab.TabIndex = 6;
  4775. this.optionsTab.Text = "Options";
  4776. //
  4777. // pictureBox3
  4778. //
  4779. this.pictureBox3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  4780. this.pictureBox3.ErrorImage = null;
  4781. this.pictureBox3.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox3.Image")));
  4782. this.pictureBox3.Location = new System.Drawing.Point(957, 416);
  4783. this.pictureBox3.Name = "pictureBox3";
  4784. this.pictureBox3.Size = new System.Drawing.Size(32, 32);
  4785. this.pictureBox3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  4786. this.pictureBox3.TabIndex = 96;
  4787. this.pictureBox3.TabStop = false;
  4788. //
  4789. // linkLabel3
  4790. //
  4791. this.linkLabel3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  4792. this.linkLabel3.AutoSize = true;
  4793. this.linkLabel3.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4794. this.linkLabel3.ForeColor = System.Drawing.Color.DodgerBlue;
  4795. this.linkLabel3.LinkColor = System.Drawing.Color.DodgerBlue;
  4796. this.linkLabel3.Location = new System.Drawing.Point(831, 415);
  4797. this.linkLabel3.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  4798. this.linkLabel3.Name = "linkLabel3";
  4799. this.linkLabel3.Size = new System.Drawing.Size(121, 28);
  4800. this.linkLabel3.TabIndex = 95;
  4801. this.linkLabel3.TabStop = true;
  4802. this.linkLabel3.Tag = "themeable";
  4803. this.linkLabel3.Text = "Support me";
  4804. this.linkLabel3.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel3_LinkClicked_1);
  4805. //
  4806. // pictureBox17
  4807. //
  4808. this.pictureBox17.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  4809. this.pictureBox17.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox17.Image")));
  4810. this.pictureBox17.Location = new System.Drawing.Point(957, 492);
  4811. this.pictureBox17.Name = "pictureBox17";
  4812. this.pictureBox17.Size = new System.Drawing.Size(32, 32);
  4813. this.pictureBox17.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  4814. this.pictureBox17.TabIndex = 94;
  4815. this.pictureBox17.TabStop = false;
  4816. //
  4817. // linkLabel2
  4818. //
  4819. this.linkLabel2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  4820. this.linkLabel2.AutoSize = true;
  4821. this.linkLabel2.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4822. this.linkLabel2.ForeColor = System.Drawing.Color.DodgerBlue;
  4823. this.linkLabel2.LinkColor = System.Drawing.Color.DodgerBlue;
  4824. this.linkLabel2.Location = new System.Drawing.Point(822, 490);
  4825. this.linkLabel2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  4826. this.linkLabel2.Name = "linkLabel2";
  4827. this.linkLabel2.Size = new System.Drawing.Size(130, 28);
  4828. this.linkLabel2.TabIndex = 93;
  4829. this.linkLabel2.TabStop = true;
  4830. this.linkLabel2.Tag = "themeable";
  4831. this.linkLabel2.Text = "Open Source";
  4832. this.linkLabel2.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel2_LinkClicked_1);
  4833. //
  4834. // pictureBox14
  4835. //
  4836. this.pictureBox14.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  4837. this.pictureBox14.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox14.Image")));
  4838. this.pictureBox14.Location = new System.Drawing.Point(957, 568);
  4839. this.pictureBox14.Name = "pictureBox14";
  4840. this.pictureBox14.Size = new System.Drawing.Size(32, 32);
  4841. this.pictureBox14.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  4842. this.pictureBox14.TabIndex = 92;
  4843. this.pictureBox14.TabStop = false;
  4844. //
  4845. // pictureBox13
  4846. //
  4847. this.pictureBox13.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  4848. this.pictureBox13.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox13.Image")));
  4849. this.pictureBox13.Location = new System.Drawing.Point(957, 454);
  4850. this.pictureBox13.Name = "pictureBox13";
  4851. this.pictureBox13.Size = new System.Drawing.Size(32, 32);
  4852. this.pictureBox13.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  4853. this.pictureBox13.TabIndex = 91;
  4854. this.pictureBox13.TabStop = false;
  4855. //
  4856. // pictureBox12
  4857. //
  4858. this.pictureBox12.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  4859. this.pictureBox12.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox12.Image")));
  4860. this.pictureBox12.Location = new System.Drawing.Point(957, 530);
  4861. this.pictureBox12.Name = "pictureBox12";
  4862. this.pictureBox12.Size = new System.Drawing.Size(32, 32);
  4863. this.pictureBox12.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  4864. this.pictureBox12.TabIndex = 90;
  4865. this.pictureBox12.TabStop = false;
  4866. //
  4867. // linkLabel1
  4868. //
  4869. this.linkLabel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  4870. this.linkLabel1.AutoSize = true;
  4871. this.linkLabel1.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4872. this.linkLabel1.ForeColor = System.Drawing.Color.DodgerBlue;
  4873. this.linkLabel1.LinkColor = System.Drawing.Color.DodgerBlue;
  4874. this.linkLabel1.Location = new System.Drawing.Point(795, 529);
  4875. this.linkLabel1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  4876. this.linkLabel1.Name = "linkLabel1";
  4877. this.linkLabel1.Size = new System.Drawing.Size(158, 28);
  4878. this.linkLabel1.TabIndex = 89;
  4879. this.linkLabel1.TabStop = true;
  4880. this.linkLabel1.Tag = "themeable";
  4881. this.linkLabel1.Text = "Discord support";
  4882. this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked_1);
  4883. //
  4884. // pictureBox85
  4885. //
  4886. this.pictureBox85.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  4887. this.pictureBox85.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox85.Image")));
  4888. this.pictureBox85.Location = new System.Drawing.Point(958, 7);
  4889. this.pictureBox85.Name = "pictureBox85";
  4890. this.pictureBox85.Size = new System.Drawing.Size(32, 32);
  4891. this.pictureBox85.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  4892. this.pictureBox85.TabIndex = 74;
  4893. this.pictureBox85.TabStop = false;
  4894. //
  4895. // panel9
  4896. //
  4897. this.panel9.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  4898. this.panel9.Controls.Add(this.boxLang);
  4899. this.panel9.Controls.Add(this.picFlag);
  4900. this.panel9.Location = new System.Drawing.Point(649, 43);
  4901. this.panel9.Name = "panel9";
  4902. this.panel9.Size = new System.Drawing.Size(341, 113);
  4903. this.panel9.TabIndex = 73;
  4904. //
  4905. // boxLang
  4906. //
  4907. this.boxLang.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  4908. this.boxLang.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
  4909. this.boxLang.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  4910. this.boxLang.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  4911. this.boxLang.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  4912. this.boxLang.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4913. this.boxLang.ForeColor = System.Drawing.Color.White;
  4914. this.boxLang.FormattingEnabled = true;
  4915. this.boxLang.Items.AddRange(new object[] {
  4916. "English",
  4917. "русский",
  4918. "Ελληνικά",
  4919. "Deutsch",
  4920. "Italiano",
  4921. "Čeština",
  4922. "Türkçe",
  4923. "Español",
  4924. "Português",
  4925. "Français",
  4926. "Polski",
  4927. "简体中文",
  4928. "繁體中文",
  4929. "한국어",
  4930. "العربية",
  4931. "کوردی"});
  4932. this.boxLang.Location = new System.Drawing.Point(92, 3);
  4933. this.boxLang.Name = "boxLang";
  4934. this.boxLang.Size = new System.Drawing.Size(212, 29);
  4935. this.boxLang.TabIndex = 95;
  4936. this.boxLang.SelectedIndexChanged += new System.EventHandler(this.boxLang_SelectedIndexChanged);
  4937. //
  4938. // picFlag
  4939. //
  4940. this.picFlag.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  4941. this.picFlag.Image = global::Optimizer.Properties.Resources.united_kingdom;
  4942. this.picFlag.Location = new System.Drawing.Point(309, 9);
  4943. this.picFlag.Name = "picFlag";
  4944. this.picFlag.Size = new System.Drawing.Size(32, 19);
  4945. this.picFlag.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  4946. this.picFlag.TabIndex = 75;
  4947. this.picFlag.TabStop = false;
  4948. //
  4949. // panel8
  4950. //
  4951. this.panel8.Controls.Add(this.rAmber);
  4952. this.panel8.Controls.Add(this.rAmethyst);
  4953. this.panel8.Controls.Add(this.rAzurite);
  4954. this.panel8.Controls.Add(this.rRuby);
  4955. this.panel8.Controls.Add(this.rJade);
  4956. this.panel8.Controls.Add(this.rSilver);
  4957. this.panel8.Location = new System.Drawing.Point(21, 120);
  4958. this.panel8.Name = "panel8";
  4959. this.panel8.Size = new System.Drawing.Size(326, 118);
  4960. this.panel8.TabIndex = 72;
  4961. //
  4962. // rAmber
  4963. //
  4964. this.rAmber.AutoSize = true;
  4965. this.rAmber.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4966. this.rAmber.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(195)))), ((int)(((byte)(146)))), ((int)(((byte)(0)))));
  4967. this.rAmber.Location = new System.Drawing.Point(163, 11);
  4968. this.rAmber.Margin = new System.Windows.Forms.Padding(2);
  4969. this.rAmber.Name = "rAmber";
  4970. this.rAmber.Size = new System.Drawing.Size(78, 25);
  4971. this.rAmber.TabIndex = 52;
  4972. this.rAmber.Text = "Amber";
  4973. this.rAmber.UseVisualStyleBackColor = true;
  4974. this.rAmber.CheckedChanged += new System.EventHandler(this.radioCaramel_CheckedChanged);
  4975. //
  4976. // rAmethyst
  4977. //
  4978. this.rAmethyst.AutoSize = true;
  4979. this.rAmethyst.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  4980. this.rAmethyst.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(153)))), ((int)(((byte)(102)))), ((int)(((byte)(204)))));
  4981. this.rAmethyst.Location = new System.Drawing.Point(15, 11);
  4982. this.rAmethyst.Margin = new System.Windows.Forms.Padding(2);
  4983. this.rAmethyst.Name = "rAmethyst";
  4984. this.rAmethyst.Size = new System.Drawing.Size(98, 25);
  4985. this.rAmethyst.TabIndex = 48;
  4986. this.rAmethyst.Text = "Amethyst";
  4987. this.rAmethyst.UseVisualStyleBackColor = true;
  4988. this.rAmethyst.CheckedChanged += new System.EventHandler(this.radioZerg_CheckedChanged);
  4989. //
  4990. // rAzurite
  4991. //
  4992. this.rAzurite.AutoSize = true;
  4993. this.rAzurite.Font = new System.Drawing.Font("Segoe UI Semibold", 12F);
  4994. this.rAzurite.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(127)))), ((int)(((byte)(255)))));
  4995. this.rAzurite.Location = new System.Drawing.Point(15, 69);
  4996. this.rAzurite.Margin = new System.Windows.Forms.Padding(2);
  4997. this.rAzurite.Name = "rAzurite";
  4998. this.rAzurite.Size = new System.Drawing.Size(80, 25);
  4999. this.rAzurite.TabIndex = 49;
  5000. this.rAzurite.Text = "Azurite";
  5001. this.rAzurite.UseVisualStyleBackColor = true;
  5002. this.rAzurite.CheckedChanged += new System.EventHandler(this.radioOcean_CheckedChanged);
  5003. //
  5004. // rRuby
  5005. //
  5006. this.rRuby.AutoSize = true;
  5007. this.rRuby.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5008. this.rRuby.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(205)))), ((int)(((byte)(22)))), ((int)(((byte)(39)))));
  5009. this.rRuby.Location = new System.Drawing.Point(15, 40);
  5010. this.rRuby.Margin = new System.Windows.Forms.Padding(2);
  5011. this.rRuby.Name = "rRuby";
  5012. this.rRuby.Size = new System.Drawing.Size(65, 25);
  5013. this.rRuby.TabIndex = 50;
  5014. this.rRuby.Text = "Ruby";
  5015. this.rRuby.UseVisualStyleBackColor = true;
  5016. this.rRuby.CheckedChanged += new System.EventHandler(this.radioMagma_CheckedChanged);
  5017. //
  5018. // rJade
  5019. //
  5020. this.rJade.AutoSize = true;
  5021. this.rJade.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5022. this.rJade.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(175)))), ((int)(((byte)(105)))));
  5023. this.rJade.Location = new System.Drawing.Point(163, 40);
  5024. this.rJade.Margin = new System.Windows.Forms.Padding(2);
  5025. this.rJade.Name = "rJade";
  5026. this.rJade.Size = new System.Drawing.Size(61, 25);
  5027. this.rJade.TabIndex = 51;
  5028. this.rJade.Text = "Jade";
  5029. this.rJade.UseVisualStyleBackColor = true;
  5030. this.rJade.CheckedChanged += new System.EventHandler(this.radioLime_CheckedChanged);
  5031. //
  5032. // rSilver
  5033. //
  5034. this.rSilver.AutoSize = true;
  5035. this.rSilver.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5036. this.rSilver.ForeColor = System.Drawing.Color.Gray;
  5037. this.rSilver.Location = new System.Drawing.Point(163, 69);
  5038. this.rSilver.Margin = new System.Windows.Forms.Padding(2);
  5039. this.rSilver.Name = "rSilver";
  5040. this.rSilver.Size = new System.Drawing.Size(68, 25);
  5041. this.rSilver.TabIndex = 53;
  5042. this.rSilver.Text = "Silver";
  5043. this.rSilver.UseVisualStyleBackColor = true;
  5044. this.rSilver.CheckedChanged += new System.EventHandler(this.radioMinimal_CheckedChanged);
  5045. //
  5046. // languagesL
  5047. //
  5048. this.languagesL.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  5049. this.languagesL.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5050. this.languagesL.ForeColor = System.Drawing.Color.DodgerBlue;
  5051. this.languagesL.Location = new System.Drawing.Point(711, 6);
  5052. this.languagesL.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  5053. this.languagesL.Name = "languagesL";
  5054. this.languagesL.Size = new System.Drawing.Size(246, 28);
  5055. this.languagesL.TabIndex = 71;
  5056. this.languagesL.Tag = "themeable";
  5057. this.languagesL.Text = "Choose language";
  5058. this.languagesL.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  5059. //
  5060. // linkLabel5
  5061. //
  5062. this.linkLabel5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  5063. this.linkLabel5.AutoSize = true;
  5064. this.linkLabel5.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5065. this.linkLabel5.ForeColor = System.Drawing.Color.DodgerBlue;
  5066. this.linkLabel5.LinkColor = System.Drawing.Color.DodgerBlue;
  5067. this.linkLabel5.Location = new System.Drawing.Point(755, 568);
  5068. this.linkLabel5.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  5069. this.linkLabel5.Name = "linkLabel5";
  5070. this.linkLabel5.Size = new System.Drawing.Size(198, 28);
  5071. this.linkLabel5.TabIndex = 65;
  5072. this.linkLabel5.TabStop = true;
  5073. this.linkLabel5.Tag = "themeable";
  5074. this.linkLabel5.Text = "GNU GPL 3.0 license";
  5075. this.linkLabel5.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel5_LinkClicked);
  5076. //
  5077. // btnOpenConf
  5078. //
  5079. this.btnOpenConf.BackColor = System.Drawing.Color.DodgerBlue;
  5080. this.btnOpenConf.FlatAppearance.BorderSize = 0;
  5081. this.btnOpenConf.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  5082. this.btnOpenConf.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  5083. this.btnOpenConf.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  5084. this.btnOpenConf.ForeColor = System.Drawing.Color.White;
  5085. this.btnOpenConf.Location = new System.Drawing.Point(34, 425);
  5086. this.btnOpenConf.Margin = new System.Windows.Forms.Padding(2);
  5087. this.btnOpenConf.Name = "btnOpenConf";
  5088. this.btnOpenConf.Size = new System.Drawing.Size(197, 31);
  5089. this.btnOpenConf.TabIndex = 63;
  5090. this.btnOpenConf.Text = "Show config folder";
  5091. this.btnOpenConf.UseVisualStyleBackColor = false;
  5092. this.btnOpenConf.Click += new System.EventHandler(this.btnOpenConf_Click);
  5093. //
  5094. // lblTroubleshoot
  5095. //
  5096. this.lblTroubleshoot.AutoSize = true;
  5097. this.lblTroubleshoot.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5098. this.lblTroubleshoot.ForeColor = System.Drawing.Color.DodgerBlue;
  5099. this.lblTroubleshoot.Location = new System.Drawing.Point(17, 352);
  5100. this.lblTroubleshoot.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  5101. this.lblTroubleshoot.Name = "lblTroubleshoot";
  5102. this.lblTroubleshoot.Size = new System.Drawing.Size(131, 21);
  5103. this.lblTroubleshoot.TabIndex = 62;
  5104. this.lblTroubleshoot.Tag = "themeable";
  5105. this.lblTroubleshoot.Text = "Troubleshooting";
  5106. //
  5107. // lblUpdating
  5108. //
  5109. this.lblUpdating.AutoSize = true;
  5110. this.lblUpdating.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5111. this.lblUpdating.ForeColor = System.Drawing.Color.DodgerBlue;
  5112. this.lblUpdating.Location = new System.Drawing.Point(17, 256);
  5113. this.lblUpdating.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  5114. this.lblUpdating.Name = "lblUpdating";
  5115. this.lblUpdating.Size = new System.Drawing.Size(125, 21);
  5116. this.lblUpdating.TabIndex = 61;
  5117. this.lblUpdating.Tag = "themeable";
  5118. this.lblUpdating.Text = "Check && update";
  5119. //
  5120. // btnViewLog
  5121. //
  5122. this.btnViewLog.BackColor = System.Drawing.Color.DodgerBlue;
  5123. this.btnViewLog.FlatAppearance.BorderSize = 0;
  5124. this.btnViewLog.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  5125. this.btnViewLog.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  5126. this.btnViewLog.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  5127. this.btnViewLog.ForeColor = System.Drawing.Color.White;
  5128. this.btnViewLog.Location = new System.Drawing.Point(34, 390);
  5129. this.btnViewLog.Margin = new System.Windows.Forms.Padding(2);
  5130. this.btnViewLog.Name = "btnViewLog";
  5131. this.btnViewLog.Size = new System.Drawing.Size(197, 31);
  5132. this.btnViewLog.TabIndex = 60;
  5133. this.btnViewLog.Text = "View errors";
  5134. this.btnViewLog.UseVisualStyleBackColor = false;
  5135. this.btnViewLog.Click += new System.EventHandler(this.btnViewLog_Click);
  5136. //
  5137. // l2
  5138. //
  5139. this.l2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  5140. this.l2.AutoSize = true;
  5141. this.l2.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5142. this.l2.ForeColor = System.Drawing.Color.DodgerBlue;
  5143. this.l2.LinkColor = System.Drawing.Color.DodgerBlue;
  5144. this.l2.Location = new System.Drawing.Point(795, 453);
  5145. this.l2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  5146. this.l2.Name = "l2";
  5147. this.l2.Size = new System.Drawing.Size(157, 28);
  5148. this.l2.TabIndex = 59;
  5149. this.l2.TabStop = true;
  5150. this.l2.Tag = "themeable";
  5151. this.l2.Text = "deadmoon © ∞";
  5152. this.l2.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.l2_LinkClicked);
  5153. //
  5154. // btnUpdate
  5155. //
  5156. this.btnUpdate.BackColor = System.Drawing.Color.DodgerBlue;
  5157. this.btnUpdate.FlatAppearance.BorderSize = 0;
  5158. this.btnUpdate.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  5159. this.btnUpdate.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  5160. this.btnUpdate.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  5161. this.btnUpdate.ForeColor = System.Drawing.Color.White;
  5162. this.btnUpdate.Location = new System.Drawing.Point(34, 290);
  5163. this.btnUpdate.Margin = new System.Windows.Forms.Padding(2);
  5164. this.btnUpdate.Name = "btnUpdate";
  5165. this.btnUpdate.Size = new System.Drawing.Size(197, 31);
  5166. this.btnUpdate.TabIndex = 57;
  5167. this.btnUpdate.Text = "Check for update";
  5168. this.btnUpdate.UseVisualStyleBackColor = false;
  5169. this.btnUpdate.Click += new System.EventHandler(this.btnUpdate_Click);
  5170. //
  5171. // btnResetConfig
  5172. //
  5173. this.btnResetConfig.BackColor = System.Drawing.Color.DodgerBlue;
  5174. this.btnResetConfig.FlatAppearance.BorderColor = System.Drawing.Color.RoyalBlue;
  5175. this.btnResetConfig.FlatAppearance.BorderSize = 0;
  5176. this.btnResetConfig.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  5177. this.btnResetConfig.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  5178. this.btnResetConfig.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  5179. this.btnResetConfig.ForeColor = System.Drawing.Color.White;
  5180. this.btnResetConfig.Location = new System.Drawing.Point(34, 460);
  5181. this.btnResetConfig.Margin = new System.Windows.Forms.Padding(2);
  5182. this.btnResetConfig.Name = "btnResetConfig";
  5183. this.btnResetConfig.Size = new System.Drawing.Size(197, 31);
  5184. this.btnResetConfig.TabIndex = 56;
  5185. this.btnResetConfig.Text = "Reset configuration";
  5186. this.btnResetConfig.UseVisualStyleBackColor = false;
  5187. this.btnResetConfig.Click += new System.EventHandler(this.btnResetConfig_Click);
  5188. //
  5189. // lblTheming
  5190. //
  5191. this.lblTheming.AutoSize = true;
  5192. this.lblTheming.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5193. this.lblTheming.ForeColor = System.Drawing.Color.DodgerBlue;
  5194. this.lblTheming.Location = new System.Drawing.Point(17, 96);
  5195. this.lblTheming.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  5196. this.lblTheming.Name = "lblTheming";
  5197. this.lblTheming.Size = new System.Drawing.Size(153, 21);
  5198. this.lblTheming.TabIndex = 55;
  5199. this.lblTheming.Tag = "themeable";
  5200. this.lblTheming.Text = "Choose your theme";
  5201. //
  5202. // quickAccessToggle
  5203. //
  5204. this.quickAccessToggle.AccessibleName = "Show Quick Access Menu";
  5205. this.quickAccessToggle.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  5206. this.quickAccessToggle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  5207. this.quickAccessToggle.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5208. this.quickAccessToggle.ForeColor = System.Drawing.Color.White;
  5209. this.quickAccessToggle.LabelText = "Show Quick Access Menu";
  5210. this.quickAccessToggle.Location = new System.Drawing.Point(21, 18);
  5211. this.quickAccessToggle.Name = "quickAccessToggle";
  5212. this.quickAccessToggle.Size = new System.Drawing.Size(374, 24);
  5213. this.quickAccessToggle.TabIndex = 88;
  5214. this.quickAccessToggle.Tag = "themeable";
  5215. this.quickAccessToggle.ToggleChecked = false;
  5216. this.quickAccessToggle.ToggleClicked += new System.EventHandler(this.quickAccessToggle_ToggleClicked);
  5217. //
  5218. // helpTipsToggle
  5219. //
  5220. this.helpTipsToggle.AccessibleName = "Show Help Messages";
  5221. this.helpTipsToggle.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton;
  5222. this.helpTipsToggle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  5223. this.helpTipsToggle.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5224. this.helpTipsToggle.ForeColor = System.Drawing.Color.White;
  5225. this.helpTipsToggle.LabelText = "Show Help Messages";
  5226. this.helpTipsToggle.Location = new System.Drawing.Point(21, 54);
  5227. this.helpTipsToggle.Name = "helpTipsToggle";
  5228. this.helpTipsToggle.Size = new System.Drawing.Size(374, 24);
  5229. this.helpTipsToggle.TabIndex = 87;
  5230. this.helpTipsToggle.Tag = "themeable";
  5231. this.helpTipsToggle.ToggleChecked = false;
  5232. this.helpTipsToggle.ToggleClicked += new System.EventHandler(this.helpTipsToggle_ToggleClicked);
  5233. //
  5234. // imagesHw
  5235. //
  5236. this.imagesHw.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imagesHw.ImageStream")));
  5237. this.imagesHw.TransparentColor = System.Drawing.Color.Transparent;
  5238. this.imagesHw.Images.SetKeyName(0, "cpu.png");
  5239. this.imagesHw.Images.SetKeyName(1, "ram.png");
  5240. this.imagesHw.Images.SetKeyName(2, "gpu.png");
  5241. this.imagesHw.Images.SetKeyName(3, "mobo.png");
  5242. this.imagesHw.Images.SetKeyName(4, "1608923_hdd_o_icon.png");
  5243. this.imagesHw.Images.SetKeyName(5, "inet.png");
  5244. this.imagesHw.Images.SetKeyName(6, "audio.png");
  5245. this.imagesHw.Images.SetKeyName(7, "dev.png");
  5246. this.imagesHw.Images.SetKeyName(8, "os.png");
  5247. //
  5248. // defineCommandDialog
  5249. //
  5250. this.defineCommandDialog.Filter = "Executables [*.exe]|*.exe";
  5251. this.defineCommandDialog.Title = "Optimizer";
  5252. this.defineCommandDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.DefineCmd_FileOk);
  5253. //
  5254. // defineProgramDialog
  5255. //
  5256. this.defineProgramDialog.Filter = "Executables [*.exe]|*.exe";
  5257. this.defineProgramDialog.Title = "Optimizer";
  5258. this.defineProgramDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.DefineProgramDialog_FileOk);
  5259. //
  5260. // defineFolderDialog
  5261. //
  5262. this.defineFolderDialog.Description = "Optimizer";
  5263. //
  5264. // defineFileDialog
  5265. //
  5266. this.defineFileDialog.Filter = "All files [*.*]|*.*";
  5267. this.defineFileDialog.Title = "Optimizer";
  5268. this.defineFileDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.DefineFileDialog_FileOk);
  5269. //
  5270. // DefineProgramIconDialog
  5271. //
  5272. this.DefineProgramIconDialog.Filter = "Icon [*.ico]|*.ico|Executable [*.exe]|*.exe";
  5273. this.DefineProgramIconDialog.Title = "Optimizer";
  5274. this.DefineProgramIconDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.DefineProgramIconDialog_FileOk);
  5275. //
  5276. // DefineFolderIconDialog
  5277. //
  5278. this.DefineFolderIconDialog.Filter = "Icon [*.ico]|*.ico|Executable [*.exe]|*.exe";
  5279. this.DefineFolderIconDialog.Title = "Optimizer";
  5280. this.DefineFolderIconDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.DefineFolderIconDialog_FileOk);
  5281. //
  5282. // DefineURLIconDialog
  5283. //
  5284. this.DefineURLIconDialog.Filter = "Icon [*.ico]|*.ico|Executable [*.exe]|*.exe";
  5285. this.DefineURLIconDialog.Title = "Optimizer";
  5286. this.DefineURLIconDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.DefineURLIconDialog_FileOk);
  5287. //
  5288. // DefineFileIconDialog
  5289. //
  5290. this.DefineFileIconDialog.Filter = "Icon [*.ico]|*.ico|Executable [*.exe]|*.exe";
  5291. this.DefineFileIconDialog.Title = "Optimizer";
  5292. this.DefineFileIconDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.DefineFileIconDialog_FileOk);
  5293. //
  5294. // DefineCommandIconDialog
  5295. //
  5296. this.DefineCommandIconDialog.Filter = "Icon [*.ico]|*.ico|Executable [*.exe]|*.exe";
  5297. this.DefineCommandIconDialog.Title = "Optimizer";
  5298. this.DefineCommandIconDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.DefineCommandIconDialog_FileOk);
  5299. //
  5300. // ExportDialog
  5301. //
  5302. this.ExportDialog.Filter = "Text [*.txt]|*.txt";
  5303. this.ExportDialog.Title = "Optimizer";
  5304. //
  5305. // launcherMenu
  5306. //
  5307. this.launcherMenu.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(10)))), ((int)(((byte)(10)))), ((int)(((byte)(10)))));
  5308. this.launcherMenu.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5309. this.launcherMenu.ImageScalingSize = new System.Drawing.Size(20, 20);
  5310. this.launcherMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  5311. this.trayDownSpeed,
  5312. this.trayUpSpeed,
  5313. this.seperatorNetMon,
  5314. this.trayStartup,
  5315. this.trayCleaner,
  5316. this.trayPinger,
  5317. this.trayHosts,
  5318. this.trayAD,
  5319. this.trayHW,
  5320. this.trayRegistry,
  5321. this.toolStripSeparator1,
  5322. this.trayOptions,
  5323. this.trayRestartExplorer,
  5324. this.trayUnlocker,
  5325. this.toolStripSeparator2,
  5326. this.trayExit});
  5327. this.launcherMenu.Name = "launcherMenu";
  5328. this.launcherMenu.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
  5329. this.launcherMenu.Size = new System.Drawing.Size(221, 360);
  5330. //
  5331. // trayDownSpeed
  5332. //
  5333. this.trayDownSpeed.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5334. this.trayDownSpeed.ForeColor = System.Drawing.Color.White;
  5335. this.trayDownSpeed.Image = ((System.Drawing.Image)(resources.GetObject("trayDownSpeed.Image")));
  5336. this.trayDownSpeed.Name = "trayDownSpeed";
  5337. this.trayDownSpeed.Size = new System.Drawing.Size(220, 26);
  5338. this.trayDownSpeed.Text = "-";
  5339. this.trayDownSpeed.Visible = false;
  5340. //
  5341. // trayUpSpeed
  5342. //
  5343. this.trayUpSpeed.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5344. this.trayUpSpeed.ForeColor = System.Drawing.Color.White;
  5345. this.trayUpSpeed.Image = ((System.Drawing.Image)(resources.GetObject("trayUpSpeed.Image")));
  5346. this.trayUpSpeed.Name = "trayUpSpeed";
  5347. this.trayUpSpeed.Size = new System.Drawing.Size(220, 26);
  5348. this.trayUpSpeed.Text = "-";
  5349. this.trayUpSpeed.Visible = false;
  5350. //
  5351. // seperatorNetMon
  5352. //
  5353. this.seperatorNetMon.Name = "seperatorNetMon";
  5354. this.seperatorNetMon.Size = new System.Drawing.Size(217, 6);
  5355. this.seperatorNetMon.Visible = false;
  5356. //
  5357. // trayStartup
  5358. //
  5359. this.trayStartup.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5360. this.trayStartup.ForeColor = System.Drawing.Color.White;
  5361. this.trayStartup.Image = ((System.Drawing.Image)(resources.GetObject("trayStartup.Image")));
  5362. this.trayStartup.Name = "trayStartup";
  5363. this.trayStartup.Size = new System.Drawing.Size(220, 26);
  5364. this.trayStartup.Text = "Startup Manager";
  5365. this.trayStartup.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal;
  5366. this.trayStartup.Click += new System.EventHandler(this.startupItem_Click);
  5367. //
  5368. // trayCleaner
  5369. //
  5370. this.trayCleaner.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5371. this.trayCleaner.ForeColor = System.Drawing.Color.White;
  5372. this.trayCleaner.Image = ((System.Drawing.Image)(resources.GetObject("trayCleaner.Image")));
  5373. this.trayCleaner.Name = "trayCleaner";
  5374. this.trayCleaner.Size = new System.Drawing.Size(220, 26);
  5375. this.trayCleaner.Text = "PC Cleaner";
  5376. this.trayCleaner.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal;
  5377. this.trayCleaner.Click += new System.EventHandler(this.cleanerItem_Click);
  5378. //
  5379. // trayPinger
  5380. //
  5381. this.trayPinger.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5382. this.trayPinger.ForeColor = System.Drawing.Color.White;
  5383. this.trayPinger.Image = ((System.Drawing.Image)(resources.GetObject("trayPinger.Image")));
  5384. this.trayPinger.Name = "trayPinger";
  5385. this.trayPinger.Size = new System.Drawing.Size(220, 26);
  5386. this.trayPinger.Text = "Pinger Tool";
  5387. this.trayPinger.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal;
  5388. this.trayPinger.Click += new System.EventHandler(this.pingerItem_Click);
  5389. //
  5390. // trayHosts
  5391. //
  5392. this.trayHosts.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5393. this.trayHosts.ForeColor = System.Drawing.Color.White;
  5394. this.trayHosts.Image = ((System.Drawing.Image)(resources.GetObject("trayHosts.Image")));
  5395. this.trayHosts.Name = "trayHosts";
  5396. this.trayHosts.Size = new System.Drawing.Size(220, 26);
  5397. this.trayHosts.Text = "HOSTS Editor";
  5398. this.trayHosts.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal;
  5399. this.trayHosts.Click += new System.EventHandler(this.hostsItem_Click);
  5400. //
  5401. // trayAD
  5402. //
  5403. this.trayAD.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5404. this.trayAD.ForeColor = System.Drawing.Color.White;
  5405. this.trayAD.Image = ((System.Drawing.Image)(resources.GetObject("trayAD.Image")));
  5406. this.trayAD.Name = "trayAD";
  5407. this.trayAD.Size = new System.Drawing.Size(220, 26);
  5408. this.trayAD.Text = "Apps Downloader";
  5409. this.trayAD.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal;
  5410. this.trayAD.Click += new System.EventHandler(this.appsItem_Click);
  5411. //
  5412. // trayHW
  5413. //
  5414. this.trayHW.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5415. this.trayHW.ForeColor = System.Drawing.Color.White;
  5416. this.trayHW.Image = ((System.Drawing.Image)(resources.GetObject("trayHW.Image")));
  5417. this.trayHW.Name = "trayHW";
  5418. this.trayHW.Size = new System.Drawing.Size(220, 26);
  5419. this.trayHW.Text = "Hardware Information";
  5420. this.trayHW.Click += new System.EventHandler(this.trayHW_Click);
  5421. //
  5422. // trayRegistry
  5423. //
  5424. this.trayRegistry.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5425. this.trayRegistry.ForeColor = System.Drawing.Color.White;
  5426. this.trayRegistry.Image = ((System.Drawing.Image)(resources.GetObject("trayRegistry.Image")));
  5427. this.trayRegistry.Name = "trayRegistry";
  5428. this.trayRegistry.Size = new System.Drawing.Size(220, 26);
  5429. this.trayRegistry.Text = "Registry Repair";
  5430. this.trayRegistry.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal;
  5431. this.trayRegistry.Click += new System.EventHandler(this.trayRegistry_Click);
  5432. //
  5433. // toolStripSeparator1
  5434. //
  5435. this.toolStripSeparator1.BackColor = System.Drawing.Color.DodgerBlue;
  5436. this.toolStripSeparator1.ForeColor = System.Drawing.Color.White;
  5437. this.toolStripSeparator1.Name = "toolStripSeparator1";
  5438. this.toolStripSeparator1.Size = new System.Drawing.Size(217, 6);
  5439. this.toolStripSeparator1.Tag = "";
  5440. //
  5441. // trayOptions
  5442. //
  5443. this.trayOptions.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5444. this.trayOptions.ForeColor = System.Drawing.Color.White;
  5445. this.trayOptions.Image = ((System.Drawing.Image)(resources.GetObject("trayOptions.Image")));
  5446. this.trayOptions.Name = "trayOptions";
  5447. this.trayOptions.Size = new System.Drawing.Size(220, 26);
  5448. this.trayOptions.Text = "Options";
  5449. this.trayOptions.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal;
  5450. this.trayOptions.Click += new System.EventHandler(this.trayOptions_Click);
  5451. //
  5452. // trayRestartExplorer
  5453. //
  5454. this.trayRestartExplorer.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5455. this.trayRestartExplorer.ForeColor = System.Drawing.Color.White;
  5456. this.trayRestartExplorer.Image = ((System.Drawing.Image)(resources.GetObject("trayRestartExplorer.Image")));
  5457. this.trayRestartExplorer.Name = "trayRestartExplorer";
  5458. this.trayRestartExplorer.Size = new System.Drawing.Size(220, 26);
  5459. this.trayRestartExplorer.Text = "Restart Explorer";
  5460. this.trayRestartExplorer.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal;
  5461. this.trayRestartExplorer.Click += new System.EventHandler(this.restartExpolorerItem_Click);
  5462. //
  5463. // trayUnlocker
  5464. //
  5465. this.trayUnlocker.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold);
  5466. this.trayUnlocker.ForeColor = System.Drawing.Color.White;
  5467. this.trayUnlocker.Image = ((System.Drawing.Image)(resources.GetObject("trayUnlocker.Image")));
  5468. this.trayUnlocker.Name = "trayUnlocker";
  5469. this.trayUnlocker.Size = new System.Drawing.Size(220, 26);
  5470. this.trayUnlocker.Text = "Find Handles";
  5471. this.trayUnlocker.Click += new System.EventHandler(this.trayUnlocker_Click);
  5472. //
  5473. // toolStripSeparator2
  5474. //
  5475. this.toolStripSeparator2.Name = "toolStripSeparator2";
  5476. this.toolStripSeparator2.Size = new System.Drawing.Size(217, 6);
  5477. //
  5478. // trayExit
  5479. //
  5480. this.trayExit.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5481. this.trayExit.ForeColor = System.Drawing.Color.White;
  5482. this.trayExit.Image = ((System.Drawing.Image)(resources.GetObject("trayExit.Image")));
  5483. this.trayExit.Name = "trayExit";
  5484. this.trayExit.Size = new System.Drawing.Size(220, 26);
  5485. this.trayExit.Text = "Exit";
  5486. this.trayExit.Click += new System.EventHandler(this.exitItem_Click);
  5487. //
  5488. // launcherIcon
  5489. //
  5490. this.launcherIcon.ContextMenuStrip = this.launcherMenu;
  5491. this.launcherIcon.Icon = ((System.Drawing.Icon)(resources.GetObject("launcherIcon.Icon")));
  5492. this.launcherIcon.Text = "Optimizer";
  5493. this.launcherIcon.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.launcherIcon_MouseDoubleClick);
  5494. //
  5495. // helpBox
  5496. //
  5497. this.helpBox.AutoPopDelay = 90000;
  5498. this.helpBox.InitialDelay = 0;
  5499. this.helpBox.OwnerDraw = true;
  5500. this.helpBox.ReshowDelay = 0;
  5501. this.helpBox.ShowAlways = true;
  5502. this.helpBox.ToolTipIcon = System.Windows.Forms.ToolTipIcon.Info;
  5503. this.helpBox.UseAnimation = false;
  5504. this.helpBox.UseFading = false;
  5505. //
  5506. // MainForm
  5507. //
  5508. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  5509. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  5510. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  5511. this.ClientSize = new System.Drawing.Size(1009, 705);
  5512. this.Controls.Add(this.bpanel);
  5513. this.Controls.Add(this.tpanel);
  5514. this.DoubleBuffered = true;
  5515. this.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  5516. this.ForeColor = System.Drawing.Color.White;
  5517. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  5518. this.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  5519. this.MinimumSize = new System.Drawing.Size(1025, 744);
  5520. this.Name = "MainForm";
  5521. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  5522. this.Text = "Optimizer";
  5523. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Main_FormClosing);
  5524. this.Load += new System.EventHandler(this.Main_Load);
  5525. this.ResizeBegin += new System.EventHandler(this.MainForm_ResizeBegin);
  5526. this.ResizeEnd += new System.EventHandler(this.MainForm_ResizeEnd);
  5527. this.tpanel.ResumeLayout(false);
  5528. this.tpanel.PerformLayout();
  5529. ((System.ComponentModel.ISupportInitialize)(this.picLab)).EndInit();
  5530. ((System.ComponentModel.ISupportInitialize)(this.picUpdate)).EndInit();
  5531. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  5532. this.bpanel.ResumeLayout(false);
  5533. this.tabCollection.ResumeLayout(false);
  5534. this.universalTab.ResumeLayout(false);
  5535. this.windows10Tab.ResumeLayout(false);
  5536. this.panelWin11Tweaks.ResumeLayout(false);
  5537. this.windows8Tab.ResumeLayout(false);
  5538. this.modernAppsTab.ResumeLayout(false);
  5539. this.modernAppsTab.PerformLayout();
  5540. this.panelModernAppsList.ResumeLayout(false);
  5541. this.startupTab.ResumeLayout(false);
  5542. this.startupTab.PerformLayout();
  5543. this.panel3.ResumeLayout(false);
  5544. this.appsTab.ResumeLayout(false);
  5545. this.appsTab.PerformLayout();
  5546. this.panel10.ResumeLayout(false);
  5547. this.panel10.PerformLayout();
  5548. this.panelCommonApps.ResumeLayout(false);
  5549. this.panelCommonApps.PerformLayout();
  5550. this.cleanerTab.ResumeLayout(false);
  5551. this.panel14.ResumeLayout(false);
  5552. this.panel13.ResumeLayout(false);
  5553. this.panel13.PerformLayout();
  5554. this.panel1.ResumeLayout(false);
  5555. this.panel1.PerformLayout();
  5556. ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit();
  5557. ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
  5558. ((System.ComponentModel.ISupportInitialize)(this.pictureBox11)).EndInit();
  5559. ((System.ComponentModel.ISupportInitialize)(this.pictureBox10)).EndInit();
  5560. ((System.ComponentModel.ISupportInitialize)(this.pictureBox9)).EndInit();
  5561. ((System.ComponentModel.ISupportInitialize)(this.pictureBox8)).EndInit();
  5562. this.pingerTab.ResumeLayout(false);
  5563. this.pingerTab.PerformLayout();
  5564. this.panel7.ResumeLayout(false);
  5565. this.hostsEditorTab.ResumeLayout(false);
  5566. this.hostsEditorTab.PerformLayout();
  5567. this.panel4.ResumeLayout(false);
  5568. this.panel4.PerformLayout();
  5569. this.panelList.ResumeLayout(false);
  5570. this.registryFixerTab.ResumeLayout(false);
  5571. this.registryFixerTab.PerformLayout();
  5572. this.panel2.ResumeLayout(false);
  5573. this.panel2.PerformLayout();
  5574. this.indiciumTab.ResumeLayout(false);
  5575. this.panel12.ResumeLayout(false);
  5576. this.indiciumMenu.ResumeLayout(false);
  5577. this.panel11.ResumeLayout(false);
  5578. this.integratorTab.ResumeLayout(false);
  5579. this.synapse.ResumeLayout(false);
  5580. this.integratorInfoTab.ResumeLayout(false);
  5581. this.integratorInfoTab.PerformLayout();
  5582. this.tabPage8.ResumeLayout(false);
  5583. this.tabPage8.PerformLayout();
  5584. this.itemnamegroup.ResumeLayout(false);
  5585. this.itemnamegroup.PerformLayout();
  5586. this.security.ResumeLayout(false);
  5587. this.security.PerformLayout();
  5588. this.itemposition.ResumeLayout(false);
  5589. this.itemposition.PerformLayout();
  5590. this.icontoaddgroup.ResumeLayout(false);
  5591. this.icontoaddgroup.PerformLayout();
  5592. this.itemtoaddgroup.ResumeLayout(false);
  5593. this.itemtoaddgroup.PerformLayout();
  5594. this.itemtype.ResumeLayout(false);
  5595. this.itemtype.PerformLayout();
  5596. this.tabPage9.ResumeLayout(false);
  5597. this.tabPage9.PerformLayout();
  5598. this.panel5.ResumeLayout(false);
  5599. this.tabPage10.ResumeLayout(false);
  5600. this.tabPage10.PerformLayout();
  5601. this.tabPage11.ResumeLayout(false);
  5602. this.tabPage11.PerformLayout();
  5603. this.panel6.ResumeLayout(false);
  5604. this.optionsTab.ResumeLayout(false);
  5605. this.optionsTab.PerformLayout();
  5606. ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
  5607. ((System.ComponentModel.ISupportInitialize)(this.pictureBox17)).EndInit();
  5608. ((System.ComponentModel.ISupportInitialize)(this.pictureBox14)).EndInit();
  5609. ((System.ComponentModel.ISupportInitialize)(this.pictureBox13)).EndInit();
  5610. ((System.ComponentModel.ISupportInitialize)(this.pictureBox12)).EndInit();
  5611. ((System.ComponentModel.ISupportInitialize)(this.pictureBox85)).EndInit();
  5612. this.panel9.ResumeLayout(false);
  5613. ((System.ComponentModel.ISupportInitialize)(this.picFlag)).EndInit();
  5614. this.panel8.ResumeLayout(false);
  5615. this.panel8.PerformLayout();
  5616. this.launcherMenu.ResumeLayout(false);
  5617. this.ResumeLayout(false);
  5618. }
  5619. #endregion
  5620. private System.Windows.Forms.Panel tpanel;
  5621. private System.Windows.Forms.Label txtBitness;
  5622. private System.Windows.Forms.Label txtOS;
  5623. private System.Windows.Forms.Label txtVersion;
  5624. private System.Windows.Forms.PictureBox pictureBox1;
  5625. private System.Windows.Forms.Label label2;
  5626. private System.Windows.Forms.Panel bpanel;
  5627. private Optimizer.MoonTabs tabCollection;
  5628. private System.Windows.Forms.TabPage universalTab;
  5629. private System.Windows.Forms.TabPage windows10Tab;
  5630. private System.Windows.Forms.TabPage windows8Tab;
  5631. private System.Windows.Forms.TabPage cleanerTab;
  5632. private System.Windows.Forms.TabPage startupTab;
  5633. private System.Windows.Forms.Label startupTitle;
  5634. private System.Windows.Forms.Button removeStartupItemB;
  5635. private System.Windows.Forms.TabPage registryFixerTab;
  5636. private System.Windows.Forms.Label registryTitle;
  5637. private System.Windows.Forms.Button regFixB;
  5638. private System.Windows.Forms.Panel panel2;
  5639. private MoonCheck checkRegistryEditor;
  5640. private MoonCheck checkEnableAll;
  5641. private MoonCheck checkContextMenu;
  5642. private MoonCheck checkTaskManager;
  5643. private MoonCheck checkCommandPrompt;
  5644. private MoonCheck checkFirewall;
  5645. private MoonCheck checkRunDialog;
  5646. private MoonCheck checkFolderOptions;
  5647. private MoonCheck checkControlPanel;
  5648. private MoonCheck checkRestartExplorer;
  5649. private System.Windows.Forms.Panel panel3;
  5650. private System.Windows.Forms.Label regLbl;
  5651. private System.Windows.Forms.ListView listStartupItems;
  5652. private System.Windows.Forms.ColumnHeader columnHeader1;
  5653. private System.Windows.Forms.ColumnHeader columnHeader2;
  5654. private System.Windows.Forms.Button refreshStartupB;
  5655. private System.Windows.Forms.Button locateFileB;
  5656. private System.Windows.Forms.ColumnHeader columnHeader3;
  5657. private System.Windows.Forms.TabPage hostsEditorTab;
  5658. private System.Windows.Forms.Label hostsTitle;
  5659. private System.Windows.Forms.LinkLabel linkLocate;
  5660. private System.Windows.Forms.LinkLabel linkAdvancedEdit;
  5661. private System.Windows.Forms.LinkLabel linkRestoreDefault;
  5662. private MoonList listHostEntries;
  5663. private System.Windows.Forms.Panel panel4;
  5664. private System.Windows.Forms.Button removeAllHostsB;
  5665. private System.Windows.Forms.Button refreshHostsB;
  5666. private System.Windows.Forms.Button removeHostB;
  5667. private System.Windows.Forms.TextBox txtDomain;
  5668. private System.Windows.Forms.Label lblDomain;
  5669. private System.Windows.Forms.Label lblIP;
  5670. private System.Windows.Forms.Button addHostB;
  5671. private System.Windows.Forms.TextBox txtIP;
  5672. private System.Windows.Forms.TabPage integratorTab;
  5673. private Optimizer.MoonTabs synapse;
  5674. private System.Windows.Forms.TabPage integratorInfoTab;
  5675. private System.Windows.Forms.TabPage tabPage8;
  5676. private System.Windows.Forms.TabPage tabPage9;
  5677. private System.Windows.Forms.TabPage tabPage10;
  5678. private System.Windows.Forms.TabPage tabPage11;
  5679. private System.Windows.Forms.Label integrator7;
  5680. private System.Windows.Forms.Label integrator6;
  5681. private System.Windows.Forms.Label integrator5;
  5682. private System.Windows.Forms.Label integrator4;
  5683. private System.Windows.Forms.Label integrator3;
  5684. private System.Windows.Forms.Label integrator2;
  5685. private System.Windows.Forms.Label integrator1;
  5686. private System.Windows.Forms.Button button48;
  5687. private System.Windows.Forms.TextBox txtRunKeyword;
  5688. private System.Windows.Forms.Label ccKeywordL;
  5689. private System.Windows.Forms.TextBox txtRunFile;
  5690. private System.Windows.Forms.Label ccFileL;
  5691. private System.Windows.Forms.Label ccL;
  5692. private System.Windows.Forms.Button btnCreateCustomCommand;
  5693. internal System.Windows.Forms.OpenFileDialog defineCommandDialog;
  5694. private System.Windows.Forms.Label readyMenusL;
  5695. private MoonList listDesktopItems;
  5696. private System.Windows.Forms.Label removeIntegratorItemsL;
  5697. private System.Windows.Forms.Button refreshIIB;
  5698. private System.Windows.Forms.Button removeDIB;
  5699. private System.Windows.Forms.Button removeAllIIB;
  5700. private System.Windows.Forms.GroupBox itemtype;
  5701. private MoonRadio radioCommand;
  5702. private MoonRadio radioProgram;
  5703. private MoonRadio radioFile;
  5704. private MoonRadio radioFolder;
  5705. private MoonRadio radioLink;
  5706. private System.Windows.Forms.Label addItemL;
  5707. private System.Windows.Forms.GroupBox icontoaddgroup;
  5708. private MoonCheck checkDefaultIcon;
  5709. private System.Windows.Forms.Button btnBrowseIcon;
  5710. private System.Windows.Forms.TextBox txtIcon;
  5711. private System.Windows.Forms.GroupBox itemtoaddgroup;
  5712. private System.Windows.Forms.Button btnBrowseItem;
  5713. private System.Windows.Forms.TextBox txtItem;
  5714. private System.Windows.Forms.GroupBox security;
  5715. private MoonCheck checkShift;
  5716. private System.Windows.Forms.GroupBox itemposition;
  5717. private MoonRadio radioTop;
  5718. private MoonRadio radioMiddle;
  5719. private MoonRadio radioBottom;
  5720. private System.Windows.Forms.GroupBox itemnamegroup;
  5721. private System.Windows.Forms.TextBox txtItemName;
  5722. private System.Windows.Forms.Button btnAddItem;
  5723. internal System.Windows.Forms.OpenFileDialog defineProgramDialog;
  5724. internal System.Windows.Forms.FolderBrowserDialog defineFolderDialog;
  5725. internal System.Windows.Forms.OpenFileDialog defineFileDialog;
  5726. internal System.Windows.Forms.OpenFileDialog DefineProgramIconDialog;
  5727. internal System.Windows.Forms.OpenFileDialog DefineFolderIconDialog;
  5728. internal System.Windows.Forms.OpenFileDialog DefineURLIconDialog;
  5729. internal System.Windows.Forms.OpenFileDialog DefineFileIconDialog;
  5730. internal System.Windows.Forms.OpenFileDialog DefineCommandIconDialog;
  5731. private System.Windows.Forms.Button findInRegB;
  5732. private System.Windows.Forms.TabPage optionsTab;
  5733. private System.Windows.Forms.RadioButton rSilver;
  5734. private System.Windows.Forms.RadioButton rAmber;
  5735. private System.Windows.Forms.RadioButton rJade;
  5736. private System.Windows.Forms.RadioButton rRuby;
  5737. private System.Windows.Forms.RadioButton rAzurite;
  5738. private System.Windows.Forms.RadioButton rAmethyst;
  5739. private System.Windows.Forms.Label lblTheming;
  5740. private MoonList listCustomCommands;
  5741. private System.Windows.Forms.Label removeCCL;
  5742. private System.Windows.Forms.Button removeCCB;
  5743. private System.Windows.Forms.Button refreshCCB;
  5744. private System.Windows.Forms.Panel panel5;
  5745. private System.Windows.Forms.Panel panel6;
  5746. private System.Windows.Forms.Panel panelList;
  5747. private System.Windows.Forms.TabPage modernAppsTab;
  5748. private System.Windows.Forms.Label txtModernAppsTitle;
  5749. private System.Windows.Forms.Panel panelModernAppsList;
  5750. private MoonCheckList listModernApps;
  5751. private System.Windows.Forms.Button uninstallModernAppsButton;
  5752. private System.Windows.Forms.Button refreshModernAppsButton;
  5753. private MoonCheck chkSelectAllModernApps;
  5754. private System.Windows.Forms.Button btnResetConfig;
  5755. private System.Windows.Forms.Button btnUpdate;
  5756. private MoonCheck chkReadOnly;
  5757. private System.Windows.Forms.Label lblLock;
  5758. private MoonCheck chkBlock;
  5759. private System.Windows.Forms.TabPage appsTab;
  5760. private System.Windows.Forms.Button btnDownloadApps;
  5761. private System.Windows.Forms.Label appsTitle;
  5762. private System.Windows.Forms.Label setDownDirLbl;
  5763. private System.Windows.Forms.TextBox txtDownloadFolder;
  5764. private System.Windows.Forms.Button changeDownDirB;
  5765. private System.Windows.Forms.Label txtDownloadStatus;
  5766. private System.Windows.Forms.Label bitPref;
  5767. private MoonRadio c32;
  5768. private System.Windows.Forms.Button goToDownloadsB;
  5769. private System.Windows.Forms.LinkLabel linkWarnings;
  5770. private MoonCheck cAutoInstall;
  5771. private MoonCheck chkOnlyRemovable;
  5772. private MoonProgress progressDownloader;
  5773. private System.Windows.Forms.Button btnGetFeed;
  5774. private System.Windows.Forms.Panel panelCommonApps;
  5775. private System.Windows.Forms.LinkLabel l2;
  5776. private System.Windows.Forms.Panel groupSystemTools;
  5777. private System.Windows.Forms.Button btnViewLog;
  5778. private System.Windows.Forms.Label lblTroubleshoot;
  5779. private System.Windows.Forms.Label lblUpdating;
  5780. private System.Windows.Forms.Button btnOpenConf;
  5781. private System.Windows.Forms.TabPage pingerTab;
  5782. private System.Windows.Forms.Label pingerTitle;
  5783. private System.Windows.Forms.TextBox txtPingInput;
  5784. private System.Windows.Forms.Label lblPinger;
  5785. private System.Windows.Forms.Button btnPing;
  5786. private System.Windows.Forms.Button btnShodan;
  5787. private System.Windows.Forms.Label lblResults;
  5788. private MoonList listPingResults;
  5789. private System.Windows.Forms.Panel panel7;
  5790. private System.Windows.Forms.Button copyIPB;
  5791. private System.Windows.Forms.Button copyB;
  5792. private System.Windows.Forms.Button btnExport;
  5793. internal System.Windows.Forms.SaveFileDialog ExportDialog;
  5794. private System.Windows.Forms.ContextMenuStrip launcherMenu;
  5795. private System.Windows.Forms.NotifyIcon launcherIcon;
  5796. private System.Windows.Forms.ToolStripMenuItem trayStartup;
  5797. private System.Windows.Forms.ToolStripMenuItem trayCleaner;
  5798. private System.Windows.Forms.ToolStripMenuItem trayPinger;
  5799. private System.Windows.Forms.ToolStripMenuItem trayHosts;
  5800. private System.Windows.Forms.ToolStripMenuItem trayAD;
  5801. private System.Windows.Forms.ToolStripMenuItem trayExit;
  5802. private System.Windows.Forms.LinkLabel linkLabel5;
  5803. private System.Windows.Forms.ToolStripMenuItem trayRestartExplorer;
  5804. private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
  5805. private System.Windows.Forms.Button flushCacheB;
  5806. private MoonRadio c64;
  5807. private System.Windows.Forms.Panel panel10;
  5808. private Button backupStartupB;
  5809. private Button restoreStartupB;
  5810. private TextBox txtBackupTitle;
  5811. private Label lblBackupTitle;
  5812. private Button doBackup;
  5813. private Button cancelBackup;
  5814. private Label languagesL;
  5815. private Panel panel8;
  5816. private PictureBox pictureBox85;
  5817. private Panel panel9;
  5818. private PictureBox picFlag;
  5819. private MoonTip helpBox;
  5820. private Label txtNetFw;
  5821. private Panel groupCoding;
  5822. private Panel groupInternet;
  5823. private Panel groupSoundVideo;
  5824. private Label lblVideoSound;
  5825. private Label lblCoding;
  5826. private Label lblSystemTools;
  5827. private Label lblInternet;
  5828. private Button btnOpenNetwork;
  5829. private Panel panelWin11Tweaks;
  5830. private ToolStripMenuItem trayRegistry;
  5831. private ToolStripMenuItem trayOptions;
  5832. private Label txtFeedError;
  5833. private ToggleCard performanceSw;
  5834. private ToggleCard faxSw;
  5835. private ToggleCard homegroupSw;
  5836. private ToggleCard stickySw;
  5837. private ToggleCard compatSw;
  5838. private ToggleCard mediaSharingSw;
  5839. private ToggleCard printSw;
  5840. private ToggleCard superfetchSw;
  5841. private ToggleCard reportingSw;
  5842. private ToggleCard systemRestoreSw;
  5843. private ToggleCard officeTelemetrySw;
  5844. private ToggleCard smartScreenSw;
  5845. private ToggleCard networkSw;
  5846. private ToggleCard telemetryTasksSw;
  5847. private ToggleCard defenderSw;
  5848. private ToggleCard tpmSw;
  5849. private ToggleCard xboxSw;
  5850. private ToggleCard inkSw;
  5851. private ToggleCard spellSw;
  5852. private ToggleCard longPathsSw;
  5853. private ToggleCard uODSw;
  5854. private ToggleCard peopleSw;
  5855. private ToggleCard oldExplorerSw;
  5856. private ToggleCard adsSw;
  5857. private ToggleCard featuresSw;
  5858. private ToggleCard oldMixerSw;
  5859. private ToggleCard insiderSw;
  5860. private ToggleCard castSw;
  5861. private ToggleCard gameBarSw;
  5862. private ToggleCard sensorSw;
  5863. private ToggleCard ccSw;
  5864. private ToggleCard cortanaSw;
  5865. private ToggleCard privacySw;
  5866. private ToggleCard driversSw;
  5867. private ToggleCard telemetryServicesSw;
  5868. private ToggleCard autoUpdatesSw;
  5869. private ToggleCard classicRibbonSw;
  5870. private ToggleCard classicContextSw;
  5871. private ToggleCard smallerTaskbarSw;
  5872. private ToggleCard widgetsSw;
  5873. private ToggleCard chatSw;
  5874. private ToggleCard snapAssistSw;
  5875. private ToggleCard leftTaskbarSw;
  5876. private ToggleCard disableOneDriveSw;
  5877. private ToggleCard quickAccessToggle;
  5878. private ToggleCard helpTipsToggle;
  5879. private PictureBox picUpdate;
  5880. private TabPage indiciumTab;
  5881. private MoonTree specsTree;
  5882. private Panel panel12;
  5883. private Panel panel11;
  5884. private ImageList imagesHw;
  5885. private ToggleCard hwDetailed;
  5886. private ToolStripMenuItem trayHW;
  5887. private ContextMenuStrip indiciumMenu;
  5888. private ToolStripMenuItem toolHWCopy;
  5889. private ToolStripMenuItem toolHWGoogle;
  5890. private ToolStripMenuItem toolHWDuck;
  5891. private ToolStripSeparator toolStripSeparator2;
  5892. private ToolStripMenuItem trayDownSpeed;
  5893. private ToolStripSeparator seperatorNetMon;
  5894. private ToolStripMenuItem trayUpSpeed;
  5895. private ToggleCard vsSw;
  5896. private ToggleCard chromeTelemetrySw;
  5897. private ToggleCard ffTelemetrySw;
  5898. private LinkLabel linkLabel1;
  5899. private PictureBox pictureBox13;
  5900. private PictureBox pictureBox12;
  5901. private PictureBox pictureBox14;
  5902. private PictureBox picLab;
  5903. private PictureBox pictureBox17;
  5904. private LinkLabel linkLabel2;
  5905. private Button btnCopyHW;
  5906. private Button btnSaveHW;
  5907. private MoonSelect boxLang;
  5908. private Panel panel1;
  5909. private MoonCheck edgeSession;
  5910. private MoonCheck edgeHistory;
  5911. private Button cleanDriveB;
  5912. private Label lblFootprint;
  5913. private MoonCheck edgeCookies;
  5914. private Label lblPretext;
  5915. private MoonCheck edgeCache;
  5916. private MoonCheck IECache;
  5917. private MoonCheck firefoxHistory;
  5918. private MoonCheck firefoxCookies;
  5919. private MoonCheck firefoxCache;
  5920. private MoonCheck chromePws;
  5921. private MoonCheck chromeSession;
  5922. private MoonCheck chromeHistory;
  5923. private MoonCheck chromeCookies;
  5924. private MoonCheck chromeCache;
  5925. private Label label7;
  5926. private Label label6;
  5927. private Label label5;
  5928. private Label label4;
  5929. private PictureBox pictureBox11;
  5930. private PictureBox pictureBox10;
  5931. private PictureBox pictureBox9;
  5932. private PictureBox pictureBox8;
  5933. private MoonCheck checkErrorReports;
  5934. private MoonCheck checkTemp;
  5935. private MoonCheck checkBin;
  5936. private MoonCheck checkMiniDumps;
  5937. private PictureBox pictureBox2;
  5938. private Label label8;
  5939. private Panel panel13;
  5940. private Panel panel14;
  5941. private MoonCheckList listCleanPreview;
  5942. private LinkLabel checkSelectAll;
  5943. private Button analyzeDriveB;
  5944. private ToggleCard gameModeSw;
  5945. private PictureBox pictureBox3;
  5946. private LinkLabel linkLabel3;
  5947. private ToggleCard compactModeSw;
  5948. private MoonSelect boxDNS;
  5949. private MoonSelect boxAdapter;
  5950. private Label label3;
  5951. private Label label1;
  5952. private LinkLabel linkDNSv6;
  5953. private LinkLabel linkDNSv4;
  5954. private LinkLabel linkDNSv6A;
  5955. private LinkLabel linkDNSv4A;
  5956. private ToggleCard PMB;
  5957. private ToggleCard AddCMDB;
  5958. private ToggleCard AddOwnerB;
  5959. private ToggleCard DSB;
  5960. private ToggleCard SSB;
  5961. private ToggleCard STB;
  5962. private ToggleCard WAB;
  5963. private Label label9;
  5964. private PictureBox pictureBox4;
  5965. private MoonCheck bravePasswords;
  5966. private MoonCheck braveSession;
  5967. private MoonCheck braveHistory;
  5968. private MoonCheck braveCookies;
  5969. private MoonCheck braveCache;
  5970. private ToolStripMenuItem trayUnlocker;
  5971. }
  5972. }