2
0

MainForm.Designer.cs 360 KB

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