123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939 |
- namespace Optimizer
- {
- partial class MainForm
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- this.components = new System.ComponentModel.Container();
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
- this.tpanel = new System.Windows.Forms.Panel();
- this.txtBitness = new System.Windows.Forms.Label();
- this.txtOS = new System.Windows.Forms.Label();
- this.txtVersion = new System.Windows.Forms.Label();
- this.pictureBox1 = new System.Windows.Forms.PictureBox();
- this.label2 = new System.Windows.Forms.Label();
- this.bpanel = new System.Windows.Forms.Panel();
- this.tabCollection = new System.Windows.Forms.TabControl();
- this.universalTab = new System.Windows.Forms.TabPage();
- this.label36 = new System.Windows.Forms.Label();
- this.label37 = new System.Windows.Forms.Label();
- this.label38 = new System.Windows.Forms.Label();
- this.toggleSwitch38 = new Optimizer.ToggleSwitch();
- this.toggleSwitch36 = new Optimizer.ToggleSwitch();
- this.toggleSwitch33 = new Optimizer.ToggleSwitch();
- this.toggleSwitch32 = new Optimizer.ToggleSwitch();
- this.toggleSwitch12 = new Optimizer.ToggleSwitch();
- this.toggleSwitch11 = new Optimizer.ToggleSwitch();
- this.toggleSwitch10 = new Optimizer.ToggleSwitch();
- this.toggleSwitch9 = new Optimizer.ToggleSwitch();
- this.toggleSwitch8 = new Optimizer.ToggleSwitch();
- this.toggleSwitch6 = new Optimizer.ToggleSwitch();
- this.toggleSwitch5 = new Optimizer.ToggleSwitch();
- this.toggleSwitch4 = new Optimizer.ToggleSwitch();
- this.toggleSwitch1 = new Optimizer.ToggleSwitch();
- this.toggleSwitch3 = new Optimizer.ToggleSwitch();
- this.toggleSwitch2 = new Optimizer.ToggleSwitch();
- this.button39 = new System.Windows.Forms.Button();
- this.windowsXTab = new System.Windows.Forms.TabPage();
- this.label40 = new System.Windows.Forms.Label();
- this.label39 = new System.Windows.Forms.Label();
- this.label32 = new System.Windows.Forms.Label();
- this.label35 = new System.Windows.Forms.Label();
- this.label34 = new System.Windows.Forms.Label();
- this.label33 = new System.Windows.Forms.Label();
- this.toggleSwitch40 = new Optimizer.ToggleSwitch();
- this.toggleSwitch39 = new Optimizer.ToggleSwitch();
- this.toggleSwitch37 = new Optimizer.ToggleSwitch();
- this.toggleSwitch35 = new Optimizer.ToggleSwitch();
- this.toggleSwitch34 = new Optimizer.ToggleSwitch();
- this.toggleSwitch27 = new Optimizer.ToggleSwitch();
- this.toggleSwitch28 = new Optimizer.ToggleSwitch();
- this.toggleSwitch29 = new Optimizer.ToggleSwitch();
- this.toggleSwitch30 = new Optimizer.ToggleSwitch();
- this.toggleSwitch22 = new Optimizer.ToggleSwitch();
- this.toggleSwitch20 = new Optimizer.ToggleSwitch();
- this.toggleSwitch21 = new Optimizer.ToggleSwitch();
- this.toggleSwitch23 = new Optimizer.ToggleSwitch();
- this.toggleSwitch24 = new Optimizer.ToggleSwitch();
- this.toggleSwitch25 = new Optimizer.ToggleSwitch();
- this.toggleSwitch26 = new Optimizer.ToggleSwitch();
- this.toggleSwitch19 = new Optimizer.ToggleSwitch();
- this.toggleSwitch18 = new Optimizer.ToggleSwitch();
- this.toggleSwitch17 = new Optimizer.ToggleSwitch();
- this.toggleSwitch16 = new Optimizer.ToggleSwitch();
- this.toggleSwitch15 = new Optimizer.ToggleSwitch();
- this.toggleSwitch14 = new Optimizer.ToggleSwitch();
- this.toggleSwitch13 = new Optimizer.ToggleSwitch();
- this.button43 = new System.Windows.Forms.Button();
- this.button18 = new System.Windows.Forms.Button();
- this.windowsVIIITab = new System.Windows.Forms.TabPage();
- this.toggleSwitch31 = new Optimizer.ToggleSwitch();
- this.button44 = new System.Windows.Forms.Button();
- this.modernAppsTab = new System.Windows.Forms.TabPage();
- this.chkSelectAllModernApps = new System.Windows.Forms.CheckBox();
- this.label28 = new System.Windows.Forms.Label();
- this.button74 = new System.Windows.Forms.Button();
- this.button75 = new System.Windows.Forms.Button();
- this.label1 = new System.Windows.Forms.Label();
- this.panelModernAppsList = new System.Windows.Forms.Panel();
- this.listModernApps = new System.Windows.Forms.CheckedListBox();
- this.cleanerTab = new System.Windows.Forms.TabPage();
- this.cleaningpanel = new System.Windows.Forms.Panel();
- this.progress2 = new System.Windows.Forms.ProgressBar();
- this.label4 = new System.Windows.Forms.Label();
- this.label6 = new System.Windows.Forms.Label();
- this.panel1 = new System.Windows.Forms.Panel();
- this.checkErrorReports = new System.Windows.Forms.CheckBox();
- this.checkFileZilla = new System.Windows.Forms.CheckBox();
- this.checkSelectAll = new System.Windows.Forms.CheckBox();
- this.button20 = new System.Windows.Forms.Button();
- this.checkMediaCache = new System.Windows.Forms.CheckBox();
- this.checkTemp = new System.Windows.Forms.CheckBox();
- this.checkLogs = new System.Windows.Forms.CheckBox();
- this.checkUTorrent = new System.Windows.Forms.CheckBox();
- this.checkBin = new System.Windows.Forms.CheckBox();
- this.checkMiniDumps = new System.Windows.Forms.CheckBox();
- this.checkPrefetch = new System.Windows.Forms.CheckBox();
- this.startupTab = new System.Windows.Forms.TabPage();
- this.button64 = new System.Windows.Forms.Button();
- this.button31 = new System.Windows.Forms.Button();
- this.button37 = new System.Windows.Forms.Button();
- this.panel3 = new System.Windows.Forms.Panel();
- this.listStartupItems = new System.Windows.Forms.ListView();
- this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
- this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
- this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
- this.button32 = new System.Windows.Forms.Button();
- this.button22 = new System.Windows.Forms.Button();
- this.label5 = new System.Windows.Forms.Label();
- this.registryFixerTab = new System.Windows.Forms.TabPage();
- this.panel2 = new System.Windows.Forms.Panel();
- this.button33 = new System.Windows.Forms.Button();
- this.label8 = new System.Windows.Forms.Label();
- this.checkRestartExplorer = new System.Windows.Forms.CheckBox();
- this.checkRegistryEditor = new System.Windows.Forms.CheckBox();
- this.checkEnableAll = new System.Windows.Forms.CheckBox();
- this.checkContextMenu = new System.Windows.Forms.CheckBox();
- this.checkTaskManager = new System.Windows.Forms.CheckBox();
- this.checkCommandPrompt = new System.Windows.Forms.CheckBox();
- this.checkFirewall = new System.Windows.Forms.CheckBox();
- this.checkRunDialog = new System.Windows.Forms.CheckBox();
- this.checkFolderOptions = new System.Windows.Forms.CheckBox();
- this.checkControlPanel = new System.Windows.Forms.CheckBox();
- this.label7 = new System.Windows.Forms.Label();
- this.hostsEditorTab = new System.Windows.Forms.TabPage();
- this.panel4 = new System.Windows.Forms.Panel();
- this.label31 = new System.Windows.Forms.Label();
- this.label30 = new System.Windows.Forms.Label();
- this.button4 = new System.Windows.Forms.Button();
- this.button3 = new System.Windows.Forms.Button();
- this.button2 = new System.Windows.Forms.Button();
- this.button1 = new System.Windows.Forms.Button();
- this.label29 = new System.Windows.Forms.Label();
- this.chkReadOnly = new System.Windows.Forms.CheckBox();
- this.panelList = new System.Windows.Forms.Panel();
- this.listHostEntries = new System.Windows.Forms.ListBox();
- this.chkBlock = new System.Windows.Forms.CheckBox();
- this.button41 = new System.Windows.Forms.Button();
- this.button42 = new System.Windows.Forms.Button();
- this.button46 = new System.Windows.Forms.Button();
- this.button47 = new System.Windows.Forms.Button();
- this.txtIP = new System.Windows.Forms.TextBox();
- this.txtDomain = new System.Windows.Forms.TextBox();
- this.label12 = new System.Windows.Forms.Label();
- this.label11 = new System.Windows.Forms.Label();
- this.linkLabel4 = new System.Windows.Forms.LinkLabel();
- this.label10 = new System.Windows.Forms.Label();
- this.linkLabel3 = new System.Windows.Forms.LinkLabel();
- this.label9 = new System.Windows.Forms.Label();
- this.linkLabel2 = new System.Windows.Forms.LinkLabel();
- this.label3 = new System.Windows.Forms.Label();
- this.integratorTab = new System.Windows.Forms.TabPage();
- this.synapse = new System.Windows.Forms.TabControl();
- this.integratorInfoTab = new System.Windows.Forms.TabPage();
- this.label19 = new System.Windows.Forms.Label();
- this.label18 = new System.Windows.Forms.Label();
- this.label17 = new System.Windows.Forms.Label();
- this.label16 = new System.Windows.Forms.Label();
- this.label15 = new System.Windows.Forms.Label();
- this.label14 = new System.Windows.Forms.Label();
- this.label13 = new System.Windows.Forms.Label();
- this.tabPage8 = new System.Windows.Forms.TabPage();
- this.btnAddItem = new System.Windows.Forms.Button();
- this.itemnamegroup = new System.Windows.Forms.GroupBox();
- this.txtItemName = new System.Windows.Forms.TextBox();
- this.security = new System.Windows.Forms.GroupBox();
- this.checkShift = new System.Windows.Forms.CheckBox();
- this.itemposition = new System.Windows.Forms.GroupBox();
- this.radioTop = new System.Windows.Forms.RadioButton();
- this.radioMiddle = new System.Windows.Forms.RadioButton();
- this.radioBottom = new System.Windows.Forms.RadioButton();
- this.icontoaddgroup = new System.Windows.Forms.GroupBox();
- this.checkDefaultIcon = new System.Windows.Forms.CheckBox();
- this.btnBrowseIcon = new System.Windows.Forms.Button();
- this.txtIcon = new System.Windows.Forms.TextBox();
- this.itemtoaddgroup = new System.Windows.Forms.GroupBox();
- this.btnBrowseItem = new System.Windows.Forms.Button();
- this.txtItem = new System.Windows.Forms.TextBox();
- this.itemtype = new System.Windows.Forms.GroupBox();
- this.radioCommand = new System.Windows.Forms.RadioButton();
- this.radioProgram = new System.Windows.Forms.RadioButton();
- this.radioFolder = new System.Windows.Forms.RadioButton();
- this.radioFile = new System.Windows.Forms.RadioButton();
- this.radioLink = new System.Windows.Forms.RadioButton();
- this.label26 = new System.Windows.Forms.Label();
- this.tabPage9 = new System.Windows.Forms.TabPage();
- this.panel5 = new System.Windows.Forms.Panel();
- this.listDesktopItems = new System.Windows.Forms.ListBox();
- this.button60 = new System.Windows.Forms.Button();
- this.button61 = new System.Windows.Forms.Button();
- this.button62 = new System.Windows.Forms.Button();
- this.label25 = new System.Windows.Forms.Label();
- this.tabPage10 = new System.Windows.Forms.TabPage();
- this.button65 = new System.Windows.Forms.Button();
- this.button66 = new System.Windows.Forms.Button();
- this.label24 = new System.Windows.Forms.Label();
- this.button58 = new System.Windows.Forms.Button();
- this.button59 = new System.Windows.Forms.Button();
- this.button55 = new System.Windows.Forms.Button();
- this.button57 = new System.Windows.Forms.Button();
- this.button52 = new System.Windows.Forms.Button();
- this.button53 = new System.Windows.Forms.Button();
- this.button49 = new System.Windows.Forms.Button();
- this.button51 = new System.Windows.Forms.Button();
- this.button56 = new System.Windows.Forms.Button();
- this.button54 = new System.Windows.Forms.Button();
- this.tabPage11 = new System.Windows.Forms.TabPage();
- this.panel6 = new System.Windows.Forms.Panel();
- this.listCustomCommands = new System.Windows.Forms.ListBox();
- this.button26 = new System.Windows.Forms.Button();
- this.button8 = new System.Windows.Forms.Button();
- this.label23 = new System.Windows.Forms.Label();
- this.btnCreateCustomCommand = new System.Windows.Forms.Button();
- this.button48 = new System.Windows.Forms.Button();
- this.txtRunKeyword = new System.Windows.Forms.TextBox();
- this.label22 = new System.Windows.Forms.Label();
- this.txtRunFile = new System.Windows.Forms.TextBox();
- this.label21 = new System.Windows.Forms.Label();
- this.label20 = new System.Windows.Forms.Label();
- this.optionsTab = new System.Windows.Forms.TabPage();
- this.btnChangelog = new System.Windows.Forms.Button();
- this.btnUpdate = new System.Windows.Forms.Button();
- this.btnResetConfig = new System.Windows.Forms.Button();
- this.label27 = new System.Windows.Forms.Label();
- this.radioMinimal = new System.Windows.Forms.RadioButton();
- this.radioCaramel = new System.Windows.Forms.RadioButton();
- this.radioLime = new System.Windows.Forms.RadioButton();
- this.radioMagma = new System.Windows.Forms.RadioButton();
- this.radioOcean = new System.Windows.Forms.RadioButton();
- this.radioZerg = new System.Windows.Forms.RadioButton();
- this.defineCommandDialog = new System.Windows.Forms.OpenFileDialog();
- this.defineProgramDialog = new System.Windows.Forms.OpenFileDialog();
- this.defineFolderDialog = new System.Windows.Forms.FolderBrowserDialog();
- this.defineFileDialog = new System.Windows.Forms.OpenFileDialog();
- this.DefineProgramIconDialog = new System.Windows.Forms.OpenFileDialog();
- this.DefineFolderIconDialog = new System.Windows.Forms.OpenFileDialog();
- this.DefineURLIconDialog = new System.Windows.Forms.OpenFileDialog();
- this.DefineFileIconDialog = new System.Windows.Forms.OpenFileDialog();
- this.DefineCommandIconDialog = new System.Windows.Forms.OpenFileDialog();
- this.integratorTimer = new System.Windows.Forms.Timer(this.components);
- this.runDialogTime = new System.Windows.Forms.Timer(this.components);
- this.tpanel.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
- this.bpanel.SuspendLayout();
- this.tabCollection.SuspendLayout();
- this.universalTab.SuspendLayout();
- this.windowsXTab.SuspendLayout();
- this.windowsVIIITab.SuspendLayout();
- this.modernAppsTab.SuspendLayout();
- this.panelModernAppsList.SuspendLayout();
- this.cleanerTab.SuspendLayout();
- this.cleaningpanel.SuspendLayout();
- this.panel1.SuspendLayout();
- this.startupTab.SuspendLayout();
- this.panel3.SuspendLayout();
- this.registryFixerTab.SuspendLayout();
- this.panel2.SuspendLayout();
- this.hostsEditorTab.SuspendLayout();
- this.panel4.SuspendLayout();
- this.panelList.SuspendLayout();
- this.integratorTab.SuspendLayout();
- this.synapse.SuspendLayout();
- this.integratorInfoTab.SuspendLayout();
- this.tabPage8.SuspendLayout();
- this.itemnamegroup.SuspendLayout();
- this.security.SuspendLayout();
- this.itemposition.SuspendLayout();
- this.icontoaddgroup.SuspendLayout();
- this.itemtoaddgroup.SuspendLayout();
- this.itemtype.SuspendLayout();
- this.tabPage9.SuspendLayout();
- this.panel5.SuspendLayout();
- this.tabPage10.SuspendLayout();
- this.tabPage11.SuspendLayout();
- this.panel6.SuspendLayout();
- this.optionsTab.SuspendLayout();
- this.SuspendLayout();
- //
- // tpanel
- //
- this.tpanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.tpanel.Controls.Add(this.txtBitness);
- this.tpanel.Controls.Add(this.txtOS);
- this.tpanel.Controls.Add(this.txtVersion);
- this.tpanel.Controls.Add(this.pictureBox1);
- this.tpanel.Controls.Add(this.label2);
- this.tpanel.Dock = System.Windows.Forms.DockStyle.Top;
- this.tpanel.Location = new System.Drawing.Point(0, 0);
- this.tpanel.Margin = new System.Windows.Forms.Padding(2);
- this.tpanel.Name = "tpanel";
- this.tpanel.Size = new System.Drawing.Size(698, 64);
- this.tpanel.TabIndex = 1;
- //
- // txtBitness
- //
- this.txtBitness.AutoSize = true;
- this.txtBitness.ForeColor = System.Drawing.Color.Silver;
- this.txtBitness.Location = new System.Drawing.Point(188, 37);
- this.txtBitness.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.txtBitness.Name = "txtBitness";
- this.txtBitness.Size = new System.Drawing.Size(44, 15);
- this.txtBitness.TabIndex = 4;
- this.txtBitness.Text = "bitness";
- //
- // txtOS
- //
- this.txtOS.AutoSize = true;
- this.txtOS.ForeColor = System.Drawing.Color.Silver;
- this.txtOS.Location = new System.Drawing.Point(188, 21);
- this.txtOS.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.txtOS.Name = "txtOS";
- this.txtOS.Size = new System.Drawing.Size(19, 15);
- this.txtOS.TabIndex = 3;
- this.txtOS.Text = "os";
- //
- // txtVersion
- //
- this.txtVersion.AutoSize = true;
- this.txtVersion.ForeColor = System.Drawing.Color.Silver;
- this.txtVersion.Location = new System.Drawing.Point(69, 37);
- this.txtVersion.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.txtVersion.Name = "txtVersion";
- this.txtVersion.Size = new System.Drawing.Size(49, 15);
- this.txtVersion.TabIndex = 1;
- this.txtVersion.Text = "Version:";
- //
- // pictureBox1
- //
- this.pictureBox1.Cursor = System.Windows.Forms.Cursors.Hand;
- this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
- this.pictureBox1.Location = new System.Drawing.Point(10, 10);
- this.pictureBox1.Margin = new System.Windows.Forms.Padding(2);
- this.pictureBox1.Name = "pictureBox1";
- this.pictureBox1.Size = new System.Drawing.Size(44, 43);
- this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
- this.pictureBox1.TabIndex = 1;
- this.pictureBox1.TabStop = false;
- this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click);
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.Font = new System.Drawing.Font("Segoe UI Semibold", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label2.ForeColor = System.Drawing.Color.White;
- this.label2.Location = new System.Drawing.Point(67, 7);
- this.label2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(97, 25);
- this.label2.TabIndex = 2;
- this.label2.Text = "Optimizer";
- //
- // bpanel
- //
- this.bpanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.bpanel.Controls.Add(this.tabCollection);
- this.bpanel.Dock = System.Windows.Forms.DockStyle.Fill;
- this.bpanel.Location = new System.Drawing.Point(0, 64);
- this.bpanel.Margin = new System.Windows.Forms.Padding(2);
- this.bpanel.Name = "bpanel";
- this.bpanel.Size = new System.Drawing.Size(698, 543);
- this.bpanel.TabIndex = 2;
- //
- // tabCollection
- //
- this.tabCollection.Controls.Add(this.universalTab);
- this.tabCollection.Controls.Add(this.windowsXTab);
- this.tabCollection.Controls.Add(this.windowsVIIITab);
- this.tabCollection.Controls.Add(this.modernAppsTab);
- this.tabCollection.Controls.Add(this.cleanerTab);
- this.tabCollection.Controls.Add(this.startupTab);
- this.tabCollection.Controls.Add(this.registryFixerTab);
- this.tabCollection.Controls.Add(this.hostsEditorTab);
- this.tabCollection.Controls.Add(this.integratorTab);
- this.tabCollection.Controls.Add(this.optionsTab);
- this.tabCollection.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tabCollection.Location = new System.Drawing.Point(0, 0);
- this.tabCollection.Margin = new System.Windows.Forms.Padding(2);
- this.tabCollection.Name = "tabCollection";
- this.tabCollection.SelectedIndex = 0;
- this.tabCollection.Size = new System.Drawing.Size(696, 541);
- this.tabCollection.TabIndex = 0;
- this.tabCollection.SelectedIndexChanged += new System.EventHandler(this.aio_SelectedIndexChanged);
- //
- // universalTab
- //
- this.universalTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
- this.universalTab.Controls.Add(this.label36);
- this.universalTab.Controls.Add(this.label37);
- this.universalTab.Controls.Add(this.label38);
- this.universalTab.Controls.Add(this.toggleSwitch38);
- this.universalTab.Controls.Add(this.toggleSwitch36);
- this.universalTab.Controls.Add(this.toggleSwitch33);
- this.universalTab.Controls.Add(this.toggleSwitch32);
- this.universalTab.Controls.Add(this.toggleSwitch12);
- this.universalTab.Controls.Add(this.toggleSwitch11);
- this.universalTab.Controls.Add(this.toggleSwitch10);
- this.universalTab.Controls.Add(this.toggleSwitch9);
- this.universalTab.Controls.Add(this.toggleSwitch8);
- this.universalTab.Controls.Add(this.toggleSwitch6);
- this.universalTab.Controls.Add(this.toggleSwitch5);
- this.universalTab.Controls.Add(this.toggleSwitch4);
- this.universalTab.Controls.Add(this.toggleSwitch1);
- this.universalTab.Controls.Add(this.toggleSwitch3);
- this.universalTab.Controls.Add(this.toggleSwitch2);
- this.universalTab.Controls.Add(this.button39);
- this.universalTab.Location = new System.Drawing.Point(4, 24);
- this.universalTab.Margin = new System.Windows.Forms.Padding(2);
- this.universalTab.Name = "universalTab";
- this.universalTab.Padding = new System.Windows.Forms.Padding(2);
- this.universalTab.Size = new System.Drawing.Size(688, 513);
- this.universalTab.TabIndex = 0;
- this.universalTab.Text = "Universal";
- //
- // label36
- //
- this.label36.AutoSize = true;
- this.label36.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label36.ForeColor = System.Drawing.Color.Gold;
- this.label36.Location = new System.Drawing.Point(247, 488);
- this.label36.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label36.Name = "label36";
- this.label36.Size = new System.Drawing.Size(185, 21);
- this.label36.TabIndex = 67;
- this.label36.Tag = "";
- this.label36.Text = "if you use printers often";
- //
- // label37
- //
- this.label37.AutoSize = true;
- this.label37.Font = new System.Drawing.Font("Segoe UI", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label37.ForeColor = System.Drawing.Color.Gold;
- this.label37.Location = new System.Drawing.Point(80, 488);
- this.label37.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label37.Name = "label37";
- this.label37.Size = new System.Drawing.Size(168, 21);
- this.label37.TabIndex = 66;
- this.label37.Tag = "";
- this.label37.Text = "Disable Print Service";
- //
- // label38
- //
- this.label38.AutoSize = true;
- this.label38.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label38.ForeColor = System.Drawing.Color.Gold;
- this.label38.Location = new System.Drawing.Point(4, 488);
- this.label38.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label38.Name = "label38";
- this.label38.Size = new System.Drawing.Size(78, 21);
- this.label38.TabIndex = 65;
- this.label38.Tag = "";
- this.label38.Text = "• Do NOT";
- //
- // toggleSwitch38
- //
- this.toggleSwitch38.Location = new System.Drawing.Point(439, 89);
- this.toggleSwitch38.Margin = new System.Windows.Forms.Padding(2);
- this.toggleSwitch38.Name = "toggleSwitch38";
- this.toggleSwitch38.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch38.OffForeColor = System.Drawing.Color.White;
- this.toggleSwitch38.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch38.OnForeColor = System.Drawing.Color.White;
- this.toggleSwitch38.OnText = "Disable Sticky Keys";
- this.toggleSwitch38.Size = new System.Drawing.Size(208, 31);
- this.toggleSwitch38.TabIndex = 50;
- this.toggleSwitch38.Tag = "themeable";
- //
- // toggleSwitch36
- //
- this.toggleSwitch36.Location = new System.Drawing.Point(439, 53);
- this.toggleSwitch36.Margin = new System.Windows.Forms.Padding(2);
- this.toggleSwitch36.Name = "toggleSwitch36";
- this.toggleSwitch36.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch36.OffForeColor = System.Drawing.Color.White;
- this.toggleSwitch36.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch36.OnForeColor = System.Drawing.Color.White;
- this.toggleSwitch36.OnText = "Disable SmartScreen";
- this.toggleSwitch36.Size = new System.Drawing.Size(208, 31);
- this.toggleSwitch36.TabIndex = 49;
- this.toggleSwitch36.Tag = "themeable";
- //
- // toggleSwitch33
- //
- this.toggleSwitch33.Location = new System.Drawing.Point(227, 17);
- this.toggleSwitch33.Margin = new System.Windows.Forms.Padding(2);
- this.toggleSwitch33.Name = "toggleSwitch33";
- this.toggleSwitch33.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch33.OffForeColor = System.Drawing.Color.White;
- this.toggleSwitch33.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch33.OnForeColor = System.Drawing.Color.White;
- this.toggleSwitch33.OnText = "Disable Fax Service";
- this.toggleSwitch33.Size = new System.Drawing.Size(208, 31);
- this.toggleSwitch33.TabIndex = 48;
- this.toggleSwitch33.Tag = "themeable";
- //
- // toggleSwitch32
- //
- this.toggleSwitch32.Location = new System.Drawing.Point(439, 16);
- this.toggleSwitch32.Margin = new System.Windows.Forms.Padding(2);
- this.toggleSwitch32.Name = "toggleSwitch32";
- this.toggleSwitch32.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch32.OffForeColor = System.Drawing.Color.White;
- this.toggleSwitch32.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch32.OnForeColor = System.Drawing.Color.White;
- this.toggleSwitch32.OnText = "Disable Compatibility Assistant";
- this.toggleSwitch32.Size = new System.Drawing.Size(208, 31);
- this.toggleSwitch32.TabIndex = 47;
- this.toggleSwitch32.Tag = "themeable";
- //
- // toggleSwitch12
- //
- this.toggleSwitch12.Location = new System.Drawing.Point(227, 196);
- this.toggleSwitch12.Margin = new System.Windows.Forms.Padding(2);
- this.toggleSwitch12.Name = "toggleSwitch12";
- this.toggleSwitch12.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch12.OffForeColor = System.Drawing.Color.White;
- this.toggleSwitch12.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch12.OnForeColor = System.Drawing.Color.White;
- this.toggleSwitch12.OnText = "Disable Office 2016 Telemetry";
- this.toggleSwitch12.Size = new System.Drawing.Size(208, 31);
- this.toggleSwitch12.TabIndex = 46;
- this.toggleSwitch12.Tag = "themeable";
- //
- // toggleSwitch11
- //
- this.toggleSwitch11.Location = new System.Drawing.Point(227, 160);
- this.toggleSwitch11.Margin = new System.Windows.Forms.Padding(2);
- this.toggleSwitch11.Name = "toggleSwitch11";
- this.toggleSwitch11.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch11.OffForeColor = System.Drawing.Color.White;
- this.toggleSwitch11.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch11.OnForeColor = System.Drawing.Color.White;
- this.toggleSwitch11.OnText = "Disable Telemetry Tasks";
- this.toggleSwitch11.Size = new System.Drawing.Size(208, 31);
- this.toggleSwitch11.TabIndex = 45;
- this.toggleSwitch11.Tag = "themeable";
- //
- // toggleSwitch10
- //
- this.toggleSwitch10.Location = new System.Drawing.Point(227, 124);
- this.toggleSwitch10.Margin = new System.Windows.Forms.Padding(2);
- this.toggleSwitch10.Name = "toggleSwitch10";
- this.toggleSwitch10.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch10.OffForeColor = System.Drawing.Color.White;
- this.toggleSwitch10.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch10.OnForeColor = System.Drawing.Color.White;
- this.toggleSwitch10.OnText = "Disable Superfetch";
- this.toggleSwitch10.Size = new System.Drawing.Size(208, 31);
- this.toggleSwitch10.TabIndex = 44;
- this.toggleSwitch10.Tag = "themeable";
- //
- // toggleSwitch9
- //
- this.toggleSwitch9.Location = new System.Drawing.Point(227, 88);
- this.toggleSwitch9.Margin = new System.Windows.Forms.Padding(2);
- this.toggleSwitch9.Name = "toggleSwitch9";
- this.toggleSwitch9.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch9.OffForeColor = System.Drawing.Color.White;
- this.toggleSwitch9.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch9.OnForeColor = System.Drawing.Color.White;
- this.toggleSwitch9.OnText = "Disable HomeGroup";
- this.toggleSwitch9.Size = new System.Drawing.Size(208, 31);
- this.toggleSwitch9.TabIndex = 43;
- this.toggleSwitch9.Tag = "themeable";
- //
- // toggleSwitch8
- //
- this.toggleSwitch8.Location = new System.Drawing.Point(227, 52);
- this.toggleSwitch8.Margin = new System.Windows.Forms.Padding(2);
- this.toggleSwitch8.Name = "toggleSwitch8";
- this.toggleSwitch8.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch8.OffForeColor = System.Drawing.Color.White;
- this.toggleSwitch8.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch8.OnForeColor = System.Drawing.Color.White;
- this.toggleSwitch8.OnText = "Disable Error Reporting";
- this.toggleSwitch8.Size = new System.Drawing.Size(208, 31);
- this.toggleSwitch8.TabIndex = 42;
- this.toggleSwitch8.Tag = "themeable";
- //
- // toggleSwitch6
- //
- this.toggleSwitch6.Location = new System.Drawing.Point(14, 196);
- this.toggleSwitch6.Margin = new System.Windows.Forms.Padding(2);
- this.toggleSwitch6.Name = "toggleSwitch6";
- this.toggleSwitch6.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch6.OffForeColor = System.Drawing.Color.White;
- this.toggleSwitch6.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch6.OnForeColor = System.Drawing.Color.White;
- this.toggleSwitch6.OnText = "Disable Media Player Sharing";
- this.toggleSwitch6.Size = new System.Drawing.Size(208, 31);
- this.toggleSwitch6.TabIndex = 40;
- this.toggleSwitch6.Tag = "themeable";
- //
- // toggleSwitch5
- //
- this.toggleSwitch5.Location = new System.Drawing.Point(14, 160);
- this.toggleSwitch5.Margin = new System.Windows.Forms.Padding(2);
- this.toggleSwitch5.Name = "toggleSwitch5";
- this.toggleSwitch5.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch5.OffForeColor = System.Drawing.Color.White;
- this.toggleSwitch5.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch5.OnForeColor = System.Drawing.Color.White;
- this.toggleSwitch5.OnText = "Disable Print Service";
- this.toggleSwitch5.Size = new System.Drawing.Size(208, 31);
- this.toggleSwitch5.TabIndex = 39;
- this.toggleSwitch5.Tag = "themeable";
- //
- // toggleSwitch4
- //
- this.toggleSwitch4.Location = new System.Drawing.Point(14, 124);
- this.toggleSwitch4.Margin = new System.Windows.Forms.Padding(2);
- this.toggleSwitch4.Name = "toggleSwitch4";
- this.toggleSwitch4.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch4.OffForeColor = System.Drawing.Color.White;
- this.toggleSwitch4.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch4.OnForeColor = System.Drawing.Color.White;
- this.toggleSwitch4.OnText = "Disable System Restore";
- this.toggleSwitch4.Size = new System.Drawing.Size(208, 31);
- this.toggleSwitch4.TabIndex = 38;
- this.toggleSwitch4.Tag = "themeable";
- //
- // toggleSwitch1
- //
- this.toggleSwitch1.Location = new System.Drawing.Point(14, 16);
- this.toggleSwitch1.Margin = new System.Windows.Forms.Padding(2);
- this.toggleSwitch1.Name = "toggleSwitch1";
- this.toggleSwitch1.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch1.OffForeColor = System.Drawing.Color.White;
- this.toggleSwitch1.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch1.OnForeColor = System.Drawing.Color.White;
- this.toggleSwitch1.OnText = "Enable Performance Tweaks";
- this.toggleSwitch1.Size = new System.Drawing.Size(208, 31);
- this.toggleSwitch1.TabIndex = 37;
- this.toggleSwitch1.Tag = "themeable";
- //
- // toggleSwitch3
- //
- this.toggleSwitch3.Location = new System.Drawing.Point(14, 88);
- this.toggleSwitch3.Margin = new System.Windows.Forms.Padding(2);
- this.toggleSwitch3.Name = "toggleSwitch3";
- this.toggleSwitch3.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch3.OffForeColor = System.Drawing.Color.White;
- this.toggleSwitch3.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch3.OnForeColor = System.Drawing.Color.White;
- this.toggleSwitch3.OnText = "Disable Windows Defender";
- this.toggleSwitch3.Size = new System.Drawing.Size(208, 31);
- this.toggleSwitch3.TabIndex = 36;
- this.toggleSwitch3.Tag = "themeable";
- //
- // toggleSwitch2
- //
- this.toggleSwitch2.Location = new System.Drawing.Point(14, 52);
- this.toggleSwitch2.Margin = new System.Windows.Forms.Padding(2);
- this.toggleSwitch2.Name = "toggleSwitch2";
- this.toggleSwitch2.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch2.OffForeColor = System.Drawing.Color.White;
- this.toggleSwitch2.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch2.OnForeColor = System.Drawing.Color.White;
- this.toggleSwitch2.OnText = "Disable Network Throttling";
- this.toggleSwitch2.Size = new System.Drawing.Size(208, 31);
- this.toggleSwitch2.TabIndex = 35;
- this.toggleSwitch2.Tag = "themeable";
- //
- // button39
- //
- this.button39.BackColor = System.Drawing.Color.DodgerBlue;
- this.button39.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button39.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button39.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button39.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button39.ForeColor = System.Drawing.Color.White;
- this.button39.Location = new System.Drawing.Point(14, 246);
- this.button39.Margin = new System.Windows.Forms.Padding(2);
- this.button39.Name = "button39";
- this.button39.Size = new System.Drawing.Size(115, 31);
- this.button39.TabIndex = 30;
- this.button39.Text = "Apply && Restart";
- this.button39.UseVisualStyleBackColor = false;
- this.button39.Click += new System.EventHandler(this.button39_Click);
- //
- // windowsXTab
- //
- this.windowsXTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
- this.windowsXTab.Controls.Add(this.label40);
- this.windowsXTab.Controls.Add(this.label39);
- this.windowsXTab.Controls.Add(this.label32);
- this.windowsXTab.Controls.Add(this.label35);
- this.windowsXTab.Controls.Add(this.label34);
- this.windowsXTab.Controls.Add(this.label33);
- this.windowsXTab.Controls.Add(this.toggleSwitch40);
- this.windowsXTab.Controls.Add(this.toggleSwitch39);
- this.windowsXTab.Controls.Add(this.toggleSwitch37);
- this.windowsXTab.Controls.Add(this.toggleSwitch35);
- this.windowsXTab.Controls.Add(this.toggleSwitch34);
- this.windowsXTab.Controls.Add(this.toggleSwitch27);
- this.windowsXTab.Controls.Add(this.toggleSwitch28);
- this.windowsXTab.Controls.Add(this.toggleSwitch29);
- this.windowsXTab.Controls.Add(this.toggleSwitch30);
- this.windowsXTab.Controls.Add(this.toggleSwitch22);
- this.windowsXTab.Controls.Add(this.toggleSwitch20);
- this.windowsXTab.Controls.Add(this.toggleSwitch21);
- this.windowsXTab.Controls.Add(this.toggleSwitch23);
- this.windowsXTab.Controls.Add(this.toggleSwitch24);
- this.windowsXTab.Controls.Add(this.toggleSwitch25);
- this.windowsXTab.Controls.Add(this.toggleSwitch26);
- this.windowsXTab.Controls.Add(this.toggleSwitch19);
- this.windowsXTab.Controls.Add(this.toggleSwitch18);
- this.windowsXTab.Controls.Add(this.toggleSwitch17);
- this.windowsXTab.Controls.Add(this.toggleSwitch16);
- this.windowsXTab.Controls.Add(this.toggleSwitch15);
- this.windowsXTab.Controls.Add(this.toggleSwitch14);
- this.windowsXTab.Controls.Add(this.toggleSwitch13);
- this.windowsXTab.Controls.Add(this.button43);
- this.windowsXTab.Controls.Add(this.button18);
- this.windowsXTab.Location = new System.Drawing.Point(4, 24);
- this.windowsXTab.Margin = new System.Windows.Forms.Padding(2);
- this.windowsXTab.Name = "windowsXTab";
- this.windowsXTab.Padding = new System.Windows.Forms.Padding(2);
- this.windowsXTab.Size = new System.Drawing.Size(688, 513);
- this.windowsXTab.TabIndex = 1;
- this.windowsXTab.Text = "Windows 10";
- //
- // label40
- //
- this.label40.AutoSize = true;
- this.label40.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label40.ForeColor = System.Drawing.Color.Gold;
- this.label40.Location = new System.Drawing.Point(268, 467);
- this.label40.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label40.Name = "label40";
- this.label40.Size = new System.Drawing.Size(349, 21);
- this.label40.TabIndex = 67;
- this.label40.Tag = "";
- this.label40.Text = "if you\'re using Windows 10 build 1809 or newer";
- //
- // label39
- //
- this.label39.AutoSize = true;
- this.label39.Font = new System.Drawing.Font("Segoe UI", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label39.ForeColor = System.Drawing.Color.Gold;
- this.label39.Location = new System.Drawing.Point(80, 467);
- this.label39.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label39.Name = "label39";
- this.label39.Size = new System.Drawing.Size(191, 21);
- this.label39.TabIndex = 66;
- this.label39.Tag = "";
- this.label39.Text = "Disable Privacy Options";
- //
- // label32
- //
- this.label32.AutoSize = true;
- this.label32.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label32.ForeColor = System.Drawing.Color.Gold;
- this.label32.Location = new System.Drawing.Point(4, 467);
- this.label32.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label32.Name = "label32";
- this.label32.Size = new System.Drawing.Size(78, 21);
- this.label32.TabIndex = 65;
- this.label32.Tag = "";
- this.label32.Text = "• Do NOT";
- //
- // label35
- //
- this.label35.AutoSize = true;
- this.label35.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label35.ForeColor = System.Drawing.Color.Gold;
- this.label35.Location = new System.Drawing.Point(268, 488);
- this.label35.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label35.Name = "label35";
- this.label35.Size = new System.Drawing.Size(245, 21);
- this.label35.TabIndex = 64;
- this.label35.Tag = "";
- this.label35.Text = "if your device has touch support";
- //
- // label34
- //
- this.label34.AutoSize = true;
- this.label34.Font = new System.Drawing.Font("Segoe UI", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label34.ForeColor = System.Drawing.Color.Gold;
- this.label34.Location = new System.Drawing.Point(80, 488);
- this.label34.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label34.Name = "label34";
- this.label34.Size = new System.Drawing.Size(189, 21);
- this.label34.TabIndex = 63;
- this.label34.Tag = "";
- this.label34.Text = "Disable Sensor Services";
- //
- // label33
- //
- this.label33.AutoSize = true;
- this.label33.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label33.ForeColor = System.Drawing.Color.Gold;
- this.label33.Location = new System.Drawing.Point(4, 488);
- this.label33.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label33.Name = "label33";
- this.label33.Size = new System.Drawing.Size(78, 21);
- this.label33.TabIndex = 62;
- this.label33.Tag = "";
- this.label33.Text = "• Do NOT";
- //
- // toggleSwitch40
- //
- this.toggleSwitch40.Location = new System.Drawing.Point(227, 267);
- this.toggleSwitch40.Margin = new System.Windows.Forms.Padding(2);
- this.toggleSwitch40.Name = "toggleSwitch40";
- this.toggleSwitch40.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch40.OffForeColor = System.Drawing.Color.White;
- this.toggleSwitch40.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch40.OnForeColor = System.Drawing.Color.White;
- this.toggleSwitch40.OnText = "Remove Cast To Device";
- this.toggleSwitch40.Size = new System.Drawing.Size(208, 31);
- this.toggleSwitch40.TabIndex = 61;
- this.toggleSwitch40.Tag = "themeable";
- //
- // toggleSwitch39
- //
- this.toggleSwitch39.Location = new System.Drawing.Point(14, 267);
- this.toggleSwitch39.Margin = new System.Windows.Forms.Padding(2);
- this.toggleSwitch39.Name = "toggleSwitch39";
- this.toggleSwitch39.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch39.OffForeColor = System.Drawing.Color.White;
- this.toggleSwitch39.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch39.OnForeColor = System.Drawing.Color.White;
- this.toggleSwitch39.OnText = "Enable Long Paths";
- this.toggleSwitch39.Size = new System.Drawing.Size(208, 31);
- this.toggleSwitch39.TabIndex = 60;
- this.toggleSwitch39.Tag = "themeable";
- //
- // toggleSwitch37
- //
- this.toggleSwitch37.Location = new System.Drawing.Point(440, 232);
- this.toggleSwitch37.Margin = new System.Windows.Forms.Padding(2);
- this.toggleSwitch37.Name = "toggleSwitch37";
- this.toggleSwitch37.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch37.OffForeColor = System.Drawing.Color.White;
- this.toggleSwitch37.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch37.OnForeColor = System.Drawing.Color.White;
- this.toggleSwitch37.OnText = "Disable Cloud Clipboard";
- this.toggleSwitch37.Size = new System.Drawing.Size(208, 31);
- this.toggleSwitch37.TabIndex = 59;
- this.toggleSwitch37.Tag = "themeable";
- //
- // toggleSwitch35
- //
- this.toggleSwitch35.Location = new System.Drawing.Point(440, 196);
- this.toggleSwitch35.Margin = new System.Windows.Forms.Padding(2);
- this.toggleSwitch35.Name = "toggleSwitch35";
- this.toggleSwitch35.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch35.OffForeColor = System.Drawing.Color.White;
- this.toggleSwitch35.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch35.OnForeColor = System.Drawing.Color.White;
- this.toggleSwitch35.OnText = "Disable Feature Updates";
- this.toggleSwitch35.Size = new System.Drawing.Size(208, 31);
- this.toggleSwitch35.TabIndex = 58;
- this.toggleSwitch35.Tag = "themeable";
- //
- // toggleSwitch34
- //
- this.toggleSwitch34.Location = new System.Drawing.Point(440, 160);
- this.toggleSwitch34.Margin = new System.Windows.Forms.Padding(2);
- this.toggleSwitch34.Name = "toggleSwitch34";
- this.toggleSwitch34.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch34.OffForeColor = System.Drawing.Color.White;
- this.toggleSwitch34.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch34.OnForeColor = System.Drawing.Color.White;
- this.toggleSwitch34.OnText = "Disable Insider Service";
- this.toggleSwitch34.Size = new System.Drawing.Size(208, 31);
- this.toggleSwitch34.TabIndex = 57;
- this.toggleSwitch34.Tag = "themeable";
- //
- // toggleSwitch27
- //
- this.toggleSwitch27.Location = new System.Drawing.Point(14, 160);
- this.toggleSwitch27.Margin = new System.Windows.Forms.Padding(2);
- this.toggleSwitch27.Name = "toggleSwitch27";
- this.toggleSwitch27.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch27.OffForeColor = System.Drawing.Color.White;
- this.toggleSwitch27.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch27.OnForeColor = System.Drawing.Color.White;
- this.toggleSwitch27.OnText = "Enable Dark Theme";
- this.toggleSwitch27.Size = new System.Drawing.Size(208, 31);
- this.toggleSwitch27.TabIndex = 56;
- this.toggleSwitch27.Tag = "themeable";
- //
- // toggleSwitch28
- //
- this.toggleSwitch28.Location = new System.Drawing.Point(440, 52);
- this.toggleSwitch28.Margin = new System.Windows.Forms.Padding(2);
- this.toggleSwitch28.Name = "toggleSwitch28";
- this.toggleSwitch28.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch28.OffForeColor = System.Drawing.Color.White;
- this.toggleSwitch28.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch28.OnForeColor = System.Drawing.Color.White;
- this.toggleSwitch28.OnText = "Disable Spelling & Typing";
- this.toggleSwitch28.Size = new System.Drawing.Size(208, 31);
- this.toggleSwitch28.TabIndex = 55;
- this.toggleSwitch28.Tag = "themeable";
- //
- // toggleSwitch29
- //
- this.toggleSwitch29.Location = new System.Drawing.Point(440, 16);
- this.toggleSwitch29.Margin = new System.Windows.Forms.Padding(2);
- this.toggleSwitch29.Name = "toggleSwitch29";
- this.toggleSwitch29.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch29.OffForeColor = System.Drawing.Color.White;
- this.toggleSwitch29.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch29.OnForeColor = System.Drawing.Color.White;
- this.toggleSwitch29.OnText = "Disable Windows Ink";
- this.toggleSwitch29.Size = new System.Drawing.Size(208, 31);
- this.toggleSwitch29.TabIndex = 54;
- this.toggleSwitch29.Tag = "themeable";
- //
- // toggleSwitch30
- //
- this.toggleSwitch30.Location = new System.Drawing.Point(227, 52);
- this.toggleSwitch30.Margin = new System.Windows.Forms.Padding(2);
- this.toggleSwitch30.Name = "toggleSwitch30";
- this.toggleSwitch30.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch30.OffForeColor = System.Drawing.Color.White;
- this.toggleSwitch30.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch30.OnForeColor = System.Drawing.Color.White;
- this.toggleSwitch30.OnText = "Exclude Drivers from Updates";
- this.toggleSwitch30.Size = new System.Drawing.Size(208, 31);
- this.toggleSwitch30.TabIndex = 53;
- this.toggleSwitch30.Tag = "themeable";
- //
- // toggleSwitch22
- //
- this.toggleSwitch22.Location = new System.Drawing.Point(227, 160);
- this.toggleSwitch22.Margin = new System.Windows.Forms.Padding(2);
- this.toggleSwitch22.Name = "toggleSwitch22";
- this.toggleSwitch22.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch22.OffForeColor = System.Drawing.Color.White;
- this.toggleSwitch22.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch22.OnForeColor = System.Drawing.Color.White;
- this.toggleSwitch22.OnText = "Disable Silent App Install";
- this.toggleSwitch22.Size = new System.Drawing.Size(208, 31);
- this.toggleSwitch22.TabIndex = 52;
- this.toggleSwitch22.Tag = "themeable";
- //
- // toggleSwitch20
- //
- this.toggleSwitch20.Location = new System.Drawing.Point(227, 232);
- this.toggleSwitch20.Margin = new System.Windows.Forms.Padding(2);
- this.toggleSwitch20.Name = "toggleSwitch20";
- this.toggleSwitch20.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch20.OffForeColor = System.Drawing.Color.White;
- this.toggleSwitch20.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch20.OnForeColor = System.Drawing.Color.White;
- this.toggleSwitch20.OnText = "Disable Sensor Services";
- this.toggleSwitch20.Size = new System.Drawing.Size(208, 31);
- this.toggleSwitch20.TabIndex = 51;
- this.toggleSwitch20.Tag = "themeable";
- //
- // toggleSwitch21
- //
- this.toggleSwitch21.Location = new System.Drawing.Point(227, 124);
- this.toggleSwitch21.Margin = new System.Windows.Forms.Padding(2);
- this.toggleSwitch21.Name = "toggleSwitch21";
- this.toggleSwitch21.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch21.OffForeColor = System.Drawing.Color.White;
- this.toggleSwitch21.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch21.OnForeColor = System.Drawing.Color.White;
- this.toggleSwitch21.OnText = "Disable Privacy Options";
- this.toggleSwitch21.Size = new System.Drawing.Size(208, 31);
- this.toggleSwitch21.TabIndex = 50;
- this.toggleSwitch21.Tag = "themeable";
- //
- // toggleSwitch23
- //
- this.toggleSwitch23.Location = new System.Drawing.Point(227, 88);
- this.toggleSwitch23.Margin = new System.Windows.Forms.Padding(2);
- this.toggleSwitch23.Name = "toggleSwitch23";
- this.toggleSwitch23.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch23.OffForeColor = System.Drawing.Color.White;
- this.toggleSwitch23.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch23.OnForeColor = System.Drawing.Color.White;
- this.toggleSwitch23.OnText = "Disable Telemetry Services";
- this.toggleSwitch23.Size = new System.Drawing.Size(208, 31);
- this.toggleSwitch23.TabIndex = 48;
- this.toggleSwitch23.Tag = "themeable";
- //
- // toggleSwitch24
- //
- this.toggleSwitch24.Location = new System.Drawing.Point(227, 16);
- this.toggleSwitch24.Margin = new System.Windows.Forms.Padding(2);
- this.toggleSwitch24.Name = "toggleSwitch24";
- this.toggleSwitch24.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch24.OffForeColor = System.Drawing.Color.White;
- this.toggleSwitch24.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch24.OnForeColor = System.Drawing.Color.White;
- this.toggleSwitch24.OnText = "Disable Automatic Updates";
- this.toggleSwitch24.Size = new System.Drawing.Size(208, 31);
- this.toggleSwitch24.TabIndex = 47;
- this.toggleSwitch24.Tag = "themeable";
- //
- // toggleSwitch25
- //
- this.toggleSwitch25.Location = new System.Drawing.Point(14, 232);
- this.toggleSwitch25.Margin = new System.Windows.Forms.Padding(2);
- this.toggleSwitch25.Name = "toggleSwitch25";
- this.toggleSwitch25.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch25.OffForeColor = System.Drawing.Color.White;
- this.toggleSwitch25.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch25.OnForeColor = System.Drawing.Color.White;
- this.toggleSwitch25.OnText = "Disable My People";
- this.toggleSwitch25.Size = new System.Drawing.Size(208, 31);
- this.toggleSwitch25.TabIndex = 46;
- this.toggleSwitch25.Tag = "themeable";
- //
- // toggleSwitch26
- //
- this.toggleSwitch26.Location = new System.Drawing.Point(14, 124);
- this.toggleSwitch26.Margin = new System.Windows.Forms.Padding(2);
- this.toggleSwitch26.Name = "toggleSwitch26";
- this.toggleSwitch26.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch26.OffForeColor = System.Drawing.Color.White;
- this.toggleSwitch26.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch26.OnForeColor = System.Drawing.Color.White;
- this.toggleSwitch26.OnText = "Disable Start Menu Ads";
- this.toggleSwitch26.Size = new System.Drawing.Size(208, 31);
- this.toggleSwitch26.TabIndex = 45;
- this.toggleSwitch26.Tag = "themeable";
- //
- // toggleSwitch19
- //
- this.toggleSwitch19.Location = new System.Drawing.Point(14, 52);
- this.toggleSwitch19.Margin = new System.Windows.Forms.Padding(2);
- this.toggleSwitch19.Name = "toggleSwitch19";
- this.toggleSwitch19.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch19.OffForeColor = System.Drawing.Color.White;
- this.toggleSwitch19.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch19.OnForeColor = System.Drawing.Color.White;
- this.toggleSwitch19.OnText = "Enable Taskbar Color";
- this.toggleSwitch19.Size = new System.Drawing.Size(208, 31);
- this.toggleSwitch19.TabIndex = 44;
- this.toggleSwitch19.Tag = "themeable";
- //
- // toggleSwitch18
- //
- this.toggleSwitch18.Location = new System.Drawing.Point(14, 88);
- this.toggleSwitch18.Margin = new System.Windows.Forms.Padding(2);
- this.toggleSwitch18.Name = "toggleSwitch18";
- this.toggleSwitch18.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch18.OffForeColor = System.Drawing.Color.White;
- this.toggleSwitch18.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch18.OnForeColor = System.Drawing.Color.White;
- this.toggleSwitch18.OnText = "Disable Quick Access History";
- this.toggleSwitch18.Size = new System.Drawing.Size(208, 31);
- this.toggleSwitch18.TabIndex = 43;
- this.toggleSwitch18.Tag = "themeable";
- //
- // toggleSwitch17
- //
- this.toggleSwitch17.Location = new System.Drawing.Point(440, 88);
- this.toggleSwitch17.Margin = new System.Windows.Forms.Padding(2);
- this.toggleSwitch17.Name = "toggleSwitch17";
- this.toggleSwitch17.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch17.OffForeColor = System.Drawing.Color.White;
- this.toggleSwitch17.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch17.OnForeColor = System.Drawing.Color.White;
- this.toggleSwitch17.OnText = "Disable Xbox Live";
- this.toggleSwitch17.Size = new System.Drawing.Size(208, 31);
- this.toggleSwitch17.TabIndex = 42;
- this.toggleSwitch17.Tag = "themeable";
- //
- // toggleSwitch16
- //
- this.toggleSwitch16.Location = new System.Drawing.Point(227, 196);
- this.toggleSwitch16.Margin = new System.Windows.Forms.Padding(2);
- this.toggleSwitch16.Name = "toggleSwitch16";
- this.toggleSwitch16.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch16.OffForeColor = System.Drawing.Color.White;
- this.toggleSwitch16.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch16.OnForeColor = System.Drawing.Color.White;
- this.toggleSwitch16.OnText = "Disable Cortana";
- this.toggleSwitch16.Size = new System.Drawing.Size(208, 31);
- this.toggleSwitch16.TabIndex = 41;
- this.toggleSwitch16.Tag = "themeable";
- //
- // toggleSwitch15
- //
- this.toggleSwitch15.Location = new System.Drawing.Point(440, 124);
- this.toggleSwitch15.Margin = new System.Windows.Forms.Padding(2);
- this.toggleSwitch15.Name = "toggleSwitch15";
- this.toggleSwitch15.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch15.OffForeColor = System.Drawing.Color.White;
- this.toggleSwitch15.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch15.OnForeColor = System.Drawing.Color.White;
- this.toggleSwitch15.OnText = "Disable Game Bar";
- this.toggleSwitch15.Size = new System.Drawing.Size(208, 31);
- this.toggleSwitch15.TabIndex = 40;
- this.toggleSwitch15.Tag = "themeable";
- //
- // toggleSwitch14
- //
- this.toggleSwitch14.Location = new System.Drawing.Point(14, 196);
- this.toggleSwitch14.Margin = new System.Windows.Forms.Padding(2);
- this.toggleSwitch14.Name = "toggleSwitch14";
- this.toggleSwitch14.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch14.OffForeColor = System.Drawing.Color.White;
- this.toggleSwitch14.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch14.OnForeColor = System.Drawing.Color.White;
- this.toggleSwitch14.OnText = "Uninstall OneDrive";
- this.toggleSwitch14.Size = new System.Drawing.Size(208, 31);
- this.toggleSwitch14.TabIndex = 39;
- this.toggleSwitch14.Tag = "themeable";
- //
- // toggleSwitch13
- //
- this.toggleSwitch13.Location = new System.Drawing.Point(14, 16);
- this.toggleSwitch13.Margin = new System.Windows.Forms.Padding(2);
- this.toggleSwitch13.Name = "toggleSwitch13";
- this.toggleSwitch13.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch13.OffForeColor = System.Drawing.Color.White;
- this.toggleSwitch13.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch13.OnForeColor = System.Drawing.Color.White;
- this.toggleSwitch13.OnText = "Enable Legacy Volume Slider";
- this.toggleSwitch13.Size = new System.Drawing.Size(208, 31);
- this.toggleSwitch13.TabIndex = 38;
- this.toggleSwitch13.Tag = "themeable";
- //
- // button43
- //
- this.button43.BackColor = System.Drawing.Color.DodgerBlue;
- this.button43.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button43.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button43.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button43.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button43.ForeColor = System.Drawing.Color.White;
- this.button43.Location = new System.Drawing.Point(14, 317);
- this.button43.Margin = new System.Windows.Forms.Padding(2);
- this.button43.Name = "button43";
- this.button43.Size = new System.Drawing.Size(115, 31);
- this.button43.TabIndex = 31;
- this.button43.Text = "Apply && Restart";
- this.button43.UseVisualStyleBackColor = false;
- this.button43.Click += new System.EventHandler(this.button43_Click);
- //
- // button18
- //
- this.button18.BackColor = System.Drawing.Color.DodgerBlue;
- this.button18.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button18.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button18.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button18.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button18.ForeColor = System.Drawing.Color.White;
- this.button18.Location = new System.Drawing.Point(133, 317);
- this.button18.Margin = new System.Windows.Forms.Padding(2);
- this.button18.Name = "button18";
- this.button18.Size = new System.Drawing.Size(187, 31);
- this.button18.TabIndex = 14;
- this.button18.Text = "Change Edge Download Folder";
- this.button18.UseVisualStyleBackColor = false;
- this.button18.Click += new System.EventHandler(this.button18_Click);
- //
- // windowsVIIITab
- //
- this.windowsVIIITab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
- this.windowsVIIITab.Controls.Add(this.toggleSwitch31);
- this.windowsVIIITab.Controls.Add(this.button44);
- this.windowsVIIITab.Location = new System.Drawing.Point(4, 24);
- this.windowsVIIITab.Margin = new System.Windows.Forms.Padding(2);
- this.windowsVIIITab.Name = "windowsVIIITab";
- this.windowsVIIITab.Padding = new System.Windows.Forms.Padding(2);
- this.windowsVIIITab.Size = new System.Drawing.Size(688, 513);
- this.windowsVIIITab.TabIndex = 2;
- this.windowsVIIITab.Text = "Windows 8.1";
- //
- // toggleSwitch31
- //
- this.toggleSwitch31.Location = new System.Drawing.Point(14, 16);
- this.toggleSwitch31.Margin = new System.Windows.Forms.Padding(2);
- this.toggleSwitch31.Name = "toggleSwitch31";
- this.toggleSwitch31.OffFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch31.OffForeColor = System.Drawing.Color.White;
- this.toggleSwitch31.OnFont = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toggleSwitch31.OnForeColor = System.Drawing.Color.White;
- this.toggleSwitch31.OnText = "Disable OneDrive";
- this.toggleSwitch31.Size = new System.Drawing.Size(208, 31);
- this.toggleSwitch31.TabIndex = 46;
- this.toggleSwitch31.Tag = "themeable";
- //
- // button44
- //
- this.button44.BackColor = System.Drawing.Color.DodgerBlue;
- this.button44.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button44.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button44.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button44.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button44.ForeColor = System.Drawing.Color.White;
- this.button44.Location = new System.Drawing.Point(14, 65);
- this.button44.Margin = new System.Windows.Forms.Padding(2);
- this.button44.Name = "button44";
- this.button44.Size = new System.Drawing.Size(115, 31);
- this.button44.TabIndex = 32;
- this.button44.Text = "Apply && Restart";
- this.button44.UseVisualStyleBackColor = false;
- this.button44.Click += new System.EventHandler(this.button44_Click);
- //
- // modernAppsTab
- //
- this.modernAppsTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
- this.modernAppsTab.Controls.Add(this.chkSelectAllModernApps);
- this.modernAppsTab.Controls.Add(this.label28);
- this.modernAppsTab.Controls.Add(this.button74);
- this.modernAppsTab.Controls.Add(this.button75);
- this.modernAppsTab.Controls.Add(this.label1);
- this.modernAppsTab.Controls.Add(this.panelModernAppsList);
- this.modernAppsTab.Location = new System.Drawing.Point(4, 24);
- this.modernAppsTab.Name = "modernAppsTab";
- this.modernAppsTab.Padding = new System.Windows.Forms.Padding(3);
- this.modernAppsTab.Size = new System.Drawing.Size(688, 513);
- this.modernAppsTab.TabIndex = 11;
- this.modernAppsTab.Text = "UWP Apps";
- //
- // chkSelectAllModernApps
- //
- this.chkSelectAllModernApps.AutoSize = true;
- this.chkSelectAllModernApps.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.chkSelectAllModernApps.ForeColor = System.Drawing.Color.White;
- this.chkSelectAllModernApps.Location = new System.Drawing.Point(503, 111);
- this.chkSelectAllModernApps.Margin = new System.Windows.Forms.Padding(2);
- this.chkSelectAllModernApps.Name = "chkSelectAllModernApps";
- this.chkSelectAllModernApps.Size = new System.Drawing.Size(94, 25);
- this.chkSelectAllModernApps.TabIndex = 52;
- this.chkSelectAllModernApps.Text = "Select all";
- this.chkSelectAllModernApps.UseVisualStyleBackColor = true;
- this.chkSelectAllModernApps.CheckedChanged += new System.EventHandler(this.chkSelectAllModernApps_CheckedChanged);
- //
- // label28
- //
- this.label28.AutoSize = true;
- this.label28.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label28.ForeColor = System.Drawing.Color.Silver;
- this.label28.Location = new System.Drawing.Point(499, 158);
- this.label28.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label28.Name = "label28";
- this.label28.Size = new System.Drawing.Size(160, 231);
- this.label28.TabIndex = 51;
- this.label28.Tag = "";
- this.label28.Text = "IMPORTANT:\r\n\r\nIf you uninstall Store\r\nyou won\'t be able\r\nto install new apps!\r\n\r\n" +
- "Also, some apps\r\ncan\'t be uninstalled.\r\n\r\nLike Microsoft Edge,\r\nSettings, etc.";
- //
- // button74
- //
- this.button74.BackColor = System.Drawing.Color.DodgerBlue;
- this.button74.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button74.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button74.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button74.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button74.ForeColor = System.Drawing.Color.White;
- this.button74.Location = new System.Drawing.Point(503, 76);
- this.button74.Margin = new System.Windows.Forms.Padding(2);
- this.button74.Name = "button74";
- this.button74.Size = new System.Drawing.Size(169, 31);
- this.button74.TabIndex = 50;
- this.button74.Text = "Uninstall";
- this.button74.UseVisualStyleBackColor = false;
- this.button74.Click += new System.EventHandler(this.button74_Click);
- //
- // button75
- //
- this.button75.BackColor = System.Drawing.Color.DodgerBlue;
- this.button75.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button75.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button75.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button75.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button75.ForeColor = System.Drawing.Color.White;
- this.button75.Location = new System.Drawing.Point(503, 41);
- this.button75.Margin = new System.Windows.Forms.Padding(2);
- this.button75.Name = "button75";
- this.button75.Size = new System.Drawing.Size(169, 31);
- this.button75.TabIndex = 49;
- this.button75.Text = "Refresh";
- this.button75.UseVisualStyleBackColor = false;
- this.button75.Click += new System.EventHandler(this.button75_Click);
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label1.ForeColor = System.Drawing.Color.DodgerBlue;
- this.label1.Location = new System.Drawing.Point(6, 10);
- this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(291, 28);
- this.label1.TabIndex = 47;
- this.label1.Tag = "themeable";
- this.label1.Text = "Uninstall unwanted UWP Apps";
- //
- // panelModernAppsList
- //
- this.panelModernAppsList.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)));
- this.panelModernAppsList.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panelModernAppsList.Controls.Add(this.listModernApps);
- this.panelModernAppsList.Location = new System.Drawing.Point(11, 41);
- this.panelModernAppsList.Name = "panelModernAppsList";
- this.panelModernAppsList.Size = new System.Drawing.Size(487, 456);
- this.panelModernAppsList.TabIndex = 0;
- //
- // listModernApps
- //
- this.listModernApps.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
- this.listModernApps.BorderStyle = System.Windows.Forms.BorderStyle.None;
- this.listModernApps.CheckOnClick = true;
- this.listModernApps.Dock = System.Windows.Forms.DockStyle.Fill;
- this.listModernApps.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.listModernApps.ForeColor = System.Drawing.Color.White;
- this.listModernApps.FormattingEnabled = true;
- this.listModernApps.HorizontalScrollbar = true;
- this.listModernApps.Location = new System.Drawing.Point(0, 0);
- this.listModernApps.Name = "listModernApps";
- this.listModernApps.Size = new System.Drawing.Size(485, 454);
- this.listModernApps.Sorted = true;
- this.listModernApps.TabIndex = 0;
- //
- // cleanerTab
- //
- this.cleanerTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
- this.cleanerTab.Controls.Add(this.cleaningpanel);
- this.cleanerTab.Controls.Add(this.label6);
- this.cleanerTab.Controls.Add(this.panel1);
- this.cleanerTab.Location = new System.Drawing.Point(4, 24);
- this.cleanerTab.Margin = new System.Windows.Forms.Padding(2);
- this.cleanerTab.Name = "cleanerTab";
- this.cleanerTab.Padding = new System.Windows.Forms.Padding(2);
- this.cleanerTab.Size = new System.Drawing.Size(688, 513);
- this.cleanerTab.TabIndex = 5;
- this.cleanerTab.Text = "Cleaner";
- //
- // cleaningpanel
- //
- this.cleaningpanel.Controls.Add(this.progress2);
- this.cleaningpanel.Controls.Add(this.label4);
- this.cleaningpanel.Location = new System.Drawing.Point(11, 288);
- this.cleaningpanel.Margin = new System.Windows.Forms.Padding(2);
- this.cleaningpanel.Name = "cleaningpanel";
- this.cleaningpanel.Size = new System.Drawing.Size(511, 70);
- this.cleaningpanel.TabIndex = 47;
- //
- // progress2
- //
- this.progress2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
- this.progress2.Location = new System.Drawing.Point(29, 38);
- this.progress2.Margin = new System.Windows.Forms.Padding(2);
- this.progress2.MarqueeAnimationSpeed = 1;
- this.progress2.Name = "progress2";
- this.progress2.Size = new System.Drawing.Size(454, 11);
- this.progress2.TabIndex = 44;
- this.progress2.Visible = false;
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label4.ForeColor = System.Drawing.Color.DodgerBlue;
- this.label4.Location = new System.Drawing.Point(25, 13);
- this.label4.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(85, 21);
- this.label4.TabIndex = 45;
- this.label4.Tag = "themeable";
- this.label4.Text = "Cleaning...";
- this.label4.Visible = false;
- //
- // label6
- //
- this.label6.AutoSize = true;
- this.label6.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label6.ForeColor = System.Drawing.Color.DodgerBlue;
- this.label6.Location = new System.Drawing.Point(6, 10);
- this.label6.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(260, 28);
- this.label6.TabIndex = 46;
- this.label6.Tag = "themeable";
- this.label6.Text = "Clean up your system drive";
- //
- // panel1
- //
- this.panel1.Controls.Add(this.checkErrorReports);
- this.panel1.Controls.Add(this.checkFileZilla);
- this.panel1.Controls.Add(this.checkSelectAll);
- this.panel1.Controls.Add(this.button20);
- this.panel1.Controls.Add(this.checkMediaCache);
- this.panel1.Controls.Add(this.checkTemp);
- this.panel1.Controls.Add(this.checkLogs);
- this.panel1.Controls.Add(this.checkUTorrent);
- this.panel1.Controls.Add(this.checkBin);
- this.panel1.Controls.Add(this.checkMiniDumps);
- this.panel1.Controls.Add(this.checkPrefetch);
- this.panel1.Location = new System.Drawing.Point(11, 40);
- this.panel1.Margin = new System.Windows.Forms.Padding(2);
- this.panel1.Name = "panel1";
- this.panel1.Size = new System.Drawing.Size(511, 243);
- this.panel1.TabIndex = 45;
- //
- // checkErrorReports
- //
- this.checkErrorReports.AutoSize = true;
- this.checkErrorReports.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.checkErrorReports.ForeColor = System.Drawing.Color.White;
- this.checkErrorReports.Location = new System.Drawing.Point(55, 166);
- this.checkErrorReports.Margin = new System.Windows.Forms.Padding(2);
- this.checkErrorReports.Name = "checkErrorReports";
- this.checkErrorReports.Size = new System.Drawing.Size(123, 25);
- this.checkErrorReports.TabIndex = 44;
- this.checkErrorReports.Text = "Error reports";
- this.checkErrorReports.UseVisualStyleBackColor = true;
- //
- // checkFileZilla
- //
- this.checkFileZilla.AutoSize = true;
- this.checkFileZilla.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.checkFileZilla.ForeColor = System.Drawing.Color.White;
- this.checkFileZilla.Location = new System.Drawing.Point(256, 136);
- this.checkFileZilla.Margin = new System.Windows.Forms.Padding(2);
- this.checkFileZilla.Name = "checkFileZilla";
- this.checkFileZilla.Size = new System.Drawing.Size(191, 25);
- this.checkFileZilla.TabIndex = 38;
- this.checkFileZilla.Text = "FileZilla recent servers";
- this.checkFileZilla.UseVisualStyleBackColor = true;
- //
- // checkSelectAll
- //
- this.checkSelectAll.AutoSize = true;
- this.checkSelectAll.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.checkSelectAll.ForeColor = System.Drawing.Color.DodgerBlue;
- this.checkSelectAll.Location = new System.Drawing.Point(29, 14);
- this.checkSelectAll.Margin = new System.Windows.Forms.Padding(2);
- this.checkSelectAll.Name = "checkSelectAll";
- this.checkSelectAll.Size = new System.Drawing.Size(94, 25);
- this.checkSelectAll.TabIndex = 35;
- this.checkSelectAll.Tag = "themeable";
- this.checkSelectAll.Text = "Select all";
- this.checkSelectAll.UseVisualStyleBackColor = true;
- this.checkSelectAll.CheckedChanged += new System.EventHandler(this.checkSelectAll_CheckedChanged);
- //
- // button20
- //
- this.button20.BackColor = System.Drawing.Color.DodgerBlue;
- this.button20.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button20.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button20.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button20.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button20.ForeColor = System.Drawing.Color.White;
- this.button20.Location = new System.Drawing.Point(29, 210);
- this.button20.Margin = new System.Windows.Forms.Padding(2);
- this.button20.Name = "button20";
- this.button20.Size = new System.Drawing.Size(71, 31);
- this.button20.TabIndex = 34;
- this.button20.Text = "Clean";
- this.button20.UseVisualStyleBackColor = false;
- this.button20.Click += new System.EventHandler(this.button20_Click);
- //
- // checkMediaCache
- //
- this.checkMediaCache.AutoSize = true;
- this.checkMediaCache.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.checkMediaCache.ForeColor = System.Drawing.Color.White;
- this.checkMediaCache.Location = new System.Drawing.Point(256, 75);
- this.checkMediaCache.Margin = new System.Windows.Forms.Padding(2);
- this.checkMediaCache.Name = "checkMediaCache";
- this.checkMediaCache.Size = new System.Drawing.Size(176, 25);
- this.checkMediaCache.TabIndex = 43;
- this.checkMediaCache.Text = "Media Players cache";
- this.checkMediaCache.UseVisualStyleBackColor = true;
- //
- // checkTemp
- //
- this.checkTemp.AutoSize = true;
- this.checkTemp.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.checkTemp.ForeColor = System.Drawing.Color.White;
- this.checkTemp.Location = new System.Drawing.Point(55, 45);
- this.checkTemp.Margin = new System.Windows.Forms.Padding(2);
- this.checkTemp.Name = "checkTemp";
- this.checkTemp.Size = new System.Drawing.Size(142, 25);
- this.checkTemp.TabIndex = 36;
- this.checkTemp.Text = "Temporary files";
- this.checkTemp.UseVisualStyleBackColor = true;
- //
- // checkLogs
- //
- this.checkLogs.AutoSize = true;
- this.checkLogs.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.checkLogs.ForeColor = System.Drawing.Color.White;
- this.checkLogs.Location = new System.Drawing.Point(55, 75);
- this.checkLogs.Margin = new System.Windows.Forms.Padding(2);
- this.checkLogs.Name = "checkLogs";
- this.checkLogs.Size = new System.Drawing.Size(169, 25);
- this.checkLogs.TabIndex = 42;
- this.checkLogs.Text = "Windows + IIS logs";
- this.checkLogs.UseVisualStyleBackColor = true;
- //
- // checkUTorrent
- //
- this.checkUTorrent.AutoSize = true;
- this.checkUTorrent.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.checkUTorrent.ForeColor = System.Drawing.Color.White;
- this.checkUTorrent.Location = new System.Drawing.Point(256, 106);
- this.checkUTorrent.Margin = new System.Windows.Forms.Padding(2);
- this.checkUTorrent.Name = "checkUTorrent";
- this.checkUTorrent.Size = new System.Drawing.Size(137, 25);
- this.checkUTorrent.TabIndex = 37;
- this.checkUTorrent.Text = "uTorrent cache";
- this.checkUTorrent.UseVisualStyleBackColor = true;
- //
- // checkBin
- //
- this.checkBin.AutoSize = true;
- this.checkBin.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.checkBin.ForeColor = System.Drawing.Color.White;
- this.checkBin.Location = new System.Drawing.Point(256, 45);
- this.checkBin.Margin = new System.Windows.Forms.Padding(2);
- this.checkBin.Name = "checkBin";
- this.checkBin.Size = new System.Drawing.Size(162, 25);
- this.checkBin.TabIndex = 41;
- this.checkBin.Text = "Empty Recycle Bin";
- this.checkBin.UseVisualStyleBackColor = true;
- //
- // checkMiniDumps
- //
- this.checkMiniDumps.AutoSize = true;
- this.checkMiniDumps.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.checkMiniDumps.ForeColor = System.Drawing.Color.White;
- this.checkMiniDumps.Location = new System.Drawing.Point(55, 136);
- this.checkMiniDumps.Margin = new System.Windows.Forms.Padding(2);
- this.checkMiniDumps.Name = "checkMiniDumps";
- this.checkMiniDumps.Size = new System.Drawing.Size(157, 25);
- this.checkMiniDumps.TabIndex = 39;
- this.checkMiniDumps.Text = "BSOD Minidumps";
- this.checkMiniDumps.UseVisualStyleBackColor = true;
- //
- // checkPrefetch
- //
- this.checkPrefetch.AutoSize = true;
- this.checkPrefetch.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.checkPrefetch.ForeColor = System.Drawing.Color.White;
- this.checkPrefetch.Location = new System.Drawing.Point(55, 106);
- this.checkPrefetch.Margin = new System.Windows.Forms.Padding(2);
- this.checkPrefetch.Name = "checkPrefetch";
- this.checkPrefetch.Size = new System.Drawing.Size(137, 25);
- this.checkPrefetch.TabIndex = 40;
- this.checkPrefetch.Text = "Prefetch cache";
- this.checkPrefetch.UseVisualStyleBackColor = true;
- //
- // startupTab
- //
- this.startupTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
- this.startupTab.Controls.Add(this.button64);
- this.startupTab.Controls.Add(this.button31);
- this.startupTab.Controls.Add(this.button37);
- this.startupTab.Controls.Add(this.panel3);
- this.startupTab.Controls.Add(this.button32);
- this.startupTab.Controls.Add(this.button22);
- this.startupTab.Controls.Add(this.label5);
- this.startupTab.Location = new System.Drawing.Point(4, 24);
- this.startupTab.Margin = new System.Windows.Forms.Padding(2);
- this.startupTab.Name = "startupTab";
- this.startupTab.Size = new System.Drawing.Size(688, 513);
- this.startupTab.TabIndex = 7;
- this.startupTab.Text = "Startup";
- //
- // button64
- //
- this.button64.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.button64.BackColor = System.Drawing.Color.DodgerBlue;
- this.button64.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button64.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button64.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button64.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button64.ForeColor = System.Drawing.Color.White;
- this.button64.Location = new System.Drawing.Point(372, 479);
- this.button64.Margin = new System.Windows.Forms.Padding(2);
- this.button64.Name = "button64";
- this.button64.Size = new System.Drawing.Size(101, 31);
- this.button64.TabIndex = 40;
- this.button64.Text = "Find in Registry";
- this.button64.UseVisualStyleBackColor = false;
- this.button64.Click += new System.EventHandler(this.button64_Click);
- //
- // button31
- //
- this.button31.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.button31.BackColor = System.Drawing.Color.DodgerBlue;
- this.button31.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button31.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button31.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button31.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button31.ForeColor = System.Drawing.Color.White;
- this.button31.Location = new System.Drawing.Point(478, 479);
- this.button31.Margin = new System.Windows.Forms.Padding(2);
- this.button31.Name = "button31";
- this.button31.Size = new System.Drawing.Size(101, 31);
- this.button31.TabIndex = 39;
- this.button31.Text = "Locate file";
- this.button31.UseVisualStyleBackColor = false;
- this.button31.Click += new System.EventHandler(this.button31_Click);
- //
- // button37
- //
- this.button37.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.button37.BackColor = System.Drawing.Color.DodgerBlue;
- this.button37.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button37.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button37.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button37.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button37.ForeColor = System.Drawing.Color.White;
- this.button37.Location = new System.Drawing.Point(266, 479);
- this.button37.Margin = new System.Windows.Forms.Padding(2);
- this.button37.Name = "button37";
- this.button37.Size = new System.Drawing.Size(101, 31);
- this.button37.TabIndex = 38;
- this.button37.Text = "Refresh";
- this.button37.UseVisualStyleBackColor = false;
- this.button37.Click += new System.EventHandler(this.button37_Click);
- //
- // panel3
- //
- this.panel3.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panel3.Controls.Add(this.listStartupItems);
- this.panel3.Location = new System.Drawing.Point(11, 40);
- this.panel3.Margin = new System.Windows.Forms.Padding(2);
- this.panel3.Name = "panel3";
- this.panel3.Size = new System.Drawing.Size(673, 434);
- this.panel3.TabIndex = 37;
- //
- // listStartupItems
- //
- this.listStartupItems.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
- this.listStartupItems.BorderStyle = System.Windows.Forms.BorderStyle.None;
- this.listStartupItems.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
- this.columnHeader1,
- this.columnHeader2,
- this.columnHeader3});
- this.listStartupItems.Dock = System.Windows.Forms.DockStyle.Fill;
- this.listStartupItems.ForeColor = System.Drawing.Color.White;
- this.listStartupItems.FullRowSelect = true;
- this.listStartupItems.HideSelection = false;
- this.listStartupItems.Location = new System.Drawing.Point(0, 0);
- this.listStartupItems.Margin = new System.Windows.Forms.Padding(2);
- this.listStartupItems.MultiSelect = false;
- this.listStartupItems.Name = "listStartupItems";
- this.listStartupItems.ShowGroups = false;
- this.listStartupItems.Size = new System.Drawing.Size(671, 432);
- this.listStartupItems.TabIndex = 0;
- this.listStartupItems.UseCompatibleStateImageBehavior = false;
- this.listStartupItems.View = System.Windows.Forms.View.Details;
- this.listStartupItems.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.listStartupItems_ColumnClick);
- //
- // columnHeader1
- //
- this.columnHeader1.Text = "Name";
- this.columnHeader1.Width = 194;
- //
- // columnHeader2
- //
- this.columnHeader2.Text = "Location";
- this.columnHeader2.Width = 507;
- //
- // columnHeader3
- //
- this.columnHeader3.Text = "Type";
- this.columnHeader3.Width = 134;
- //
- // button32
- //
- this.button32.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.button32.BackColor = System.Drawing.Color.DodgerBlue;
- this.button32.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button32.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button32.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button32.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button32.ForeColor = System.Drawing.Color.White;
- this.button32.Location = new System.Drawing.Point(583, 479);
- this.button32.Margin = new System.Windows.Forms.Padding(2);
- this.button32.Name = "button32";
- this.button32.Size = new System.Drawing.Size(101, 31);
- this.button32.TabIndex = 36;
- this.button32.Text = "Remove";
- this.button32.UseVisualStyleBackColor = false;
- this.button32.Click += new System.EventHandler(this.button32_Click);
- //
- // button22
- //
- this.button22.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.button22.BackColor = System.Drawing.Color.DodgerBlue;
- this.button22.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button22.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button22.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button22.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button22.ForeColor = System.Drawing.Color.White;
- this.button22.Location = new System.Drawing.Point(161, 479);
- this.button22.Margin = new System.Windows.Forms.Padding(2);
- this.button22.Name = "button22";
- this.button22.Size = new System.Drawing.Size(101, 31);
- this.button22.TabIndex = 34;
- this.button22.Text = "Remove all";
- this.button22.UseVisualStyleBackColor = false;
- this.button22.Click += new System.EventHandler(this.button22_Click);
- //
- // label5
- //
- this.label5.AutoSize = true;
- this.label5.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label5.ForeColor = System.Drawing.Color.DodgerBlue;
- this.label5.Location = new System.Drawing.Point(6, 10);
- this.label5.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(254, 28);
- this.label5.TabIndex = 3;
- this.label5.Tag = "themeable";
- this.label5.Text = "Choose your startup items";
- //
- // registryFixerTab
- //
- this.registryFixerTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
- this.registryFixerTab.Controls.Add(this.panel2);
- this.registryFixerTab.Controls.Add(this.label7);
- this.registryFixerTab.Location = new System.Drawing.Point(4, 24);
- this.registryFixerTab.Margin = new System.Windows.Forms.Padding(2);
- this.registryFixerTab.Name = "registryFixerTab";
- this.registryFixerTab.Padding = new System.Windows.Forms.Padding(2);
- this.registryFixerTab.Size = new System.Drawing.Size(688, 513);
- this.registryFixerTab.TabIndex = 8;
- this.registryFixerTab.Text = "Registry";
- //
- // panel2
- //
- this.panel2.Controls.Add(this.button33);
- this.panel2.Controls.Add(this.label8);
- this.panel2.Controls.Add(this.checkRestartExplorer);
- this.panel2.Controls.Add(this.checkRegistryEditor);
- this.panel2.Controls.Add(this.checkEnableAll);
- this.panel2.Controls.Add(this.checkContextMenu);
- this.panel2.Controls.Add(this.checkTaskManager);
- this.panel2.Controls.Add(this.checkCommandPrompt);
- this.panel2.Controls.Add(this.checkFirewall);
- this.panel2.Controls.Add(this.checkRunDialog);
- this.panel2.Controls.Add(this.checkFolderOptions);
- this.panel2.Controls.Add(this.checkControlPanel);
- this.panel2.Location = new System.Drawing.Point(11, 40);
- this.panel2.Margin = new System.Windows.Forms.Padding(2);
- this.panel2.Name = "panel2";
- this.panel2.Size = new System.Drawing.Size(511, 286);
- this.panel2.TabIndex = 48;
- //
- // button33
- //
- this.button33.BackColor = System.Drawing.Color.DodgerBlue;
- this.button33.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button33.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button33.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button33.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button33.ForeColor = System.Drawing.Color.White;
- this.button33.Location = new System.Drawing.Point(29, 252);
- this.button33.Margin = new System.Windows.Forms.Padding(2);
- this.button33.Name = "button33";
- this.button33.Size = new System.Drawing.Size(71, 31);
- this.button33.TabIndex = 49;
- this.button33.Text = "Fix";
- this.button33.UseVisualStyleBackColor = false;
- this.button33.Click += new System.EventHandler(this.button33_Click);
- //
- // label8
- //
- this.label8.AutoSize = true;
- this.label8.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label8.ForeColor = System.Drawing.Color.Silver;
- this.label8.Location = new System.Drawing.Point(122, 202);
- this.label8.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label8.Name = "label8";
- this.label8.Size = new System.Drawing.Size(242, 21);
- this.label8.TabIndex = 51;
- this.label8.Tag = "";
- this.label8.Text = "(some changes might need this)";
- //
- // checkRestartExplorer
- //
- this.checkRestartExplorer.AutoSize = true;
- this.checkRestartExplorer.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.checkRestartExplorer.ForeColor = System.Drawing.Color.Silver;
- this.checkRestartExplorer.Location = new System.Drawing.Point(29, 175);
- this.checkRestartExplorer.Margin = new System.Windows.Forms.Padding(2);
- this.checkRestartExplorer.Name = "checkRestartExplorer";
- this.checkRestartExplorer.Size = new System.Drawing.Size(336, 25);
- this.checkRestartExplorer.TabIndex = 50;
- this.checkRestartExplorer.Tag = "";
- this.checkRestartExplorer.Text = "Also restart explorer.exe to apply changes";
- this.checkRestartExplorer.UseVisualStyleBackColor = true;
- //
- // checkRegistryEditor
- //
- this.checkRegistryEditor.AutoSize = true;
- this.checkRegistryEditor.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.checkRegistryEditor.ForeColor = System.Drawing.Color.White;
- this.checkRegistryEditor.Location = new System.Drawing.Point(256, 136);
- this.checkRegistryEditor.Margin = new System.Windows.Forms.Padding(2);
- this.checkRegistryEditor.Name = "checkRegistryEditor";
- this.checkRegistryEditor.Size = new System.Drawing.Size(138, 25);
- this.checkRegistryEditor.TabIndex = 38;
- this.checkRegistryEditor.Text = "Registry Editor";
- this.checkRegistryEditor.UseVisualStyleBackColor = true;
- //
- // checkEnableAll
- //
- this.checkEnableAll.AutoSize = true;
- this.checkEnableAll.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.checkEnableAll.ForeColor = System.Drawing.Color.DodgerBlue;
- this.checkEnableAll.Location = new System.Drawing.Point(29, 14);
- this.checkEnableAll.Margin = new System.Windows.Forms.Padding(2);
- this.checkEnableAll.Name = "checkEnableAll";
- this.checkEnableAll.Size = new System.Drawing.Size(97, 25);
- this.checkEnableAll.TabIndex = 35;
- this.checkEnableAll.Tag = "themeable";
- this.checkEnableAll.Text = "Enable all";
- this.checkEnableAll.UseVisualStyleBackColor = true;
- this.checkEnableAll.CheckedChanged += new System.EventHandler(this.checkEnableAll_CheckedChanged);
- //
- // checkContextMenu
- //
- this.checkContextMenu.AutoSize = true;
- this.checkContextMenu.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.checkContextMenu.ForeColor = System.Drawing.Color.White;
- this.checkContextMenu.Location = new System.Drawing.Point(256, 75);
- this.checkContextMenu.Margin = new System.Windows.Forms.Padding(2);
- this.checkContextMenu.Name = "checkContextMenu";
- this.checkContextMenu.Size = new System.Drawing.Size(151, 25);
- this.checkContextMenu.TabIndex = 43;
- this.checkContextMenu.Text = "Right Click menu";
- this.checkContextMenu.UseVisualStyleBackColor = true;
- //
- // checkTaskManager
- //
- this.checkTaskManager.AutoSize = true;
- this.checkTaskManager.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.checkTaskManager.ForeColor = System.Drawing.Color.White;
- this.checkTaskManager.Location = new System.Drawing.Point(55, 45);
- this.checkTaskManager.Margin = new System.Windows.Forms.Padding(2);
- this.checkTaskManager.Name = "checkTaskManager";
- this.checkTaskManager.Size = new System.Drawing.Size(128, 25);
- this.checkTaskManager.TabIndex = 36;
- this.checkTaskManager.Text = "Task Manager";
- this.checkTaskManager.UseVisualStyleBackColor = true;
- //
- // checkCommandPrompt
- //
- this.checkCommandPrompt.AutoSize = true;
- this.checkCommandPrompt.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.checkCommandPrompt.ForeColor = System.Drawing.Color.White;
- this.checkCommandPrompt.Location = new System.Drawing.Point(55, 75);
- this.checkCommandPrompt.Margin = new System.Windows.Forms.Padding(2);
- this.checkCommandPrompt.Name = "checkCommandPrompt";
- this.checkCommandPrompt.Size = new System.Drawing.Size(163, 25);
- this.checkCommandPrompt.TabIndex = 42;
- this.checkCommandPrompt.Text = "Command Prompt";
- this.checkCommandPrompt.UseVisualStyleBackColor = true;
- //
- // checkFirewall
- //
- this.checkFirewall.AutoSize = true;
- this.checkFirewall.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.checkFirewall.ForeColor = System.Drawing.Color.White;
- this.checkFirewall.Location = new System.Drawing.Point(256, 106);
- this.checkFirewall.Margin = new System.Windows.Forms.Padding(2);
- this.checkFirewall.Name = "checkFirewall";
- this.checkFirewall.Size = new System.Drawing.Size(155, 25);
- this.checkFirewall.TabIndex = 37;
- this.checkFirewall.Text = "Windows Firewall";
- this.checkFirewall.UseVisualStyleBackColor = true;
- //
- // checkRunDialog
- //
- this.checkRunDialog.AutoSize = true;
- this.checkRunDialog.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.checkRunDialog.ForeColor = System.Drawing.Color.White;
- this.checkRunDialog.Location = new System.Drawing.Point(256, 45);
- this.checkRunDialog.Margin = new System.Windows.Forms.Padding(2);
- this.checkRunDialog.Name = "checkRunDialog";
- this.checkRunDialog.Size = new System.Drawing.Size(108, 25);
- this.checkRunDialog.TabIndex = 41;
- this.checkRunDialog.Text = "Run Dialog";
- this.checkRunDialog.UseVisualStyleBackColor = true;
- //
- // checkFolderOptions
- //
- this.checkFolderOptions.AutoSize = true;
- this.checkFolderOptions.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.checkFolderOptions.ForeColor = System.Drawing.Color.White;
- this.checkFolderOptions.Location = new System.Drawing.Point(55, 136);
- this.checkFolderOptions.Margin = new System.Windows.Forms.Padding(2);
- this.checkFolderOptions.Name = "checkFolderOptions";
- this.checkFolderOptions.Size = new System.Drawing.Size(138, 25);
- this.checkFolderOptions.TabIndex = 39;
- this.checkFolderOptions.Text = "Folder Options";
- this.checkFolderOptions.UseVisualStyleBackColor = true;
- //
- // checkControlPanel
- //
- this.checkControlPanel.AutoSize = true;
- this.checkControlPanel.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.checkControlPanel.ForeColor = System.Drawing.Color.White;
- this.checkControlPanel.Location = new System.Drawing.Point(55, 106);
- this.checkControlPanel.Margin = new System.Windows.Forms.Padding(2);
- this.checkControlPanel.Name = "checkControlPanel";
- this.checkControlPanel.Size = new System.Drawing.Size(127, 25);
- this.checkControlPanel.TabIndex = 40;
- this.checkControlPanel.Text = "Control Panel";
- this.checkControlPanel.UseVisualStyleBackColor = true;
- //
- // label7
- //
- this.label7.AutoSize = true;
- this.label7.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label7.ForeColor = System.Drawing.Color.DodgerBlue;
- this.label7.Location = new System.Drawing.Point(6, 10);
- this.label7.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label7.Name = "label7";
- this.label7.Size = new System.Drawing.Size(260, 28);
- this.label7.TabIndex = 47;
- this.label7.Tag = "themeable";
- this.label7.Text = "Fix common registry issues";
- //
- // hostsEditorTab
- //
- this.hostsEditorTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
- this.hostsEditorTab.Controls.Add(this.panel4);
- this.hostsEditorTab.Controls.Add(this.linkLabel4);
- this.hostsEditorTab.Controls.Add(this.label10);
- this.hostsEditorTab.Controls.Add(this.linkLabel3);
- this.hostsEditorTab.Controls.Add(this.label9);
- this.hostsEditorTab.Controls.Add(this.linkLabel2);
- this.hostsEditorTab.Controls.Add(this.label3);
- this.hostsEditorTab.Location = new System.Drawing.Point(4, 24);
- this.hostsEditorTab.Margin = new System.Windows.Forms.Padding(2);
- this.hostsEditorTab.Name = "hostsEditorTab";
- this.hostsEditorTab.Padding = new System.Windows.Forms.Padding(2);
- this.hostsEditorTab.Size = new System.Drawing.Size(688, 513);
- this.hostsEditorTab.TabIndex = 9;
- this.hostsEditorTab.Text = "Hosts";
- //
- // panel4
- //
- this.panel4.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.panel4.Controls.Add(this.label31);
- this.panel4.Controls.Add(this.label30);
- this.panel4.Controls.Add(this.button4);
- this.panel4.Controls.Add(this.button3);
- this.panel4.Controls.Add(this.button2);
- this.panel4.Controls.Add(this.button1);
- this.panel4.Controls.Add(this.label29);
- this.panel4.Controls.Add(this.chkReadOnly);
- this.panel4.Controls.Add(this.panelList);
- this.panel4.Controls.Add(this.chkBlock);
- this.panel4.Controls.Add(this.button41);
- this.panel4.Controls.Add(this.button42);
- this.panel4.Controls.Add(this.button46);
- this.panel4.Controls.Add(this.button47);
- this.panel4.Controls.Add(this.txtIP);
- this.panel4.Controls.Add(this.txtDomain);
- this.panel4.Controls.Add(this.label12);
- this.panel4.Controls.Add(this.label11);
- this.panel4.Location = new System.Drawing.Point(6, 70);
- this.panel4.Margin = new System.Windows.Forms.Padding(2);
- this.panel4.Name = "panel4";
- this.panel4.Size = new System.Drawing.Size(677, 439);
- this.panel4.TabIndex = 53;
- //
- // label31
- //
- this.label31.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label31.ForeColor = System.Drawing.Color.Silver;
- this.label31.Location = new System.Drawing.Point(325, 279);
- this.label31.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label31.Name = "label31";
- this.label31.Size = new System.Drawing.Size(281, 25);
- this.label31.TabIndex = 68;
- this.label31.Tag = "";
- this.label31.Text = "(will delete your current config)";
- //
- // label30
- //
- this.label30.Font = new System.Drawing.Font("Segoe UI Semibold", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label30.ForeColor = System.Drawing.Color.DodgerBlue;
- this.label30.Location = new System.Drawing.Point(322, 254);
- this.label30.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label30.Name = "label30";
- this.label30.Size = new System.Drawing.Size(281, 25);
- this.label30.TabIndex = 67;
- this.label30.Tag = "themeable";
- this.label30.Text = "Pre-made adblocks";
- //
- // button4
- //
- this.button4.BackColor = System.Drawing.Color.DodgerBlue;
- this.button4.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button4.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button4.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button4.ForeColor = System.Drawing.Color.White;
- this.button4.Location = new System.Drawing.Point(485, 351);
- this.button4.Margin = new System.Windows.Forms.Padding(2);
- this.button4.Name = "button4";
- this.button4.Size = new System.Drawing.Size(153, 31);
- this.button4.TabIndex = 66;
- this.button4.Text = "Enable AdBlock Ultimate\r\n";
- this.button4.UseVisualStyleBackColor = false;
- this.button4.Click += new System.EventHandler(this.button4_Click);
- //
- // button3
- //
- this.button3.BackColor = System.Drawing.Color.DodgerBlue;
- this.button3.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button3.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button3.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button3.ForeColor = System.Drawing.Color.White;
- this.button3.Location = new System.Drawing.Point(485, 316);
- this.button3.Margin = new System.Windows.Forms.Padding(2);
- this.button3.Name = "button3";
- this.button3.Size = new System.Drawing.Size(153, 31);
- this.button3.TabIndex = 65;
- this.button3.Text = "Enable AdBlock + Porn";
- this.button3.UseVisualStyleBackColor = false;
- this.button3.Click += new System.EventHandler(this.button3_Click);
- //
- // button2
- //
- this.button2.BackColor = System.Drawing.Color.DodgerBlue;
- this.button2.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button2.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button2.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button2.ForeColor = System.Drawing.Color.White;
- this.button2.Location = new System.Drawing.Point(327, 351);
- this.button2.Margin = new System.Windows.Forms.Padding(2);
- this.button2.Name = "button2";
- this.button2.Size = new System.Drawing.Size(153, 31);
- this.button2.TabIndex = 64;
- this.button2.Text = "Enable AdBlock + Social";
- this.button2.UseVisualStyleBackColor = false;
- this.button2.Click += new System.EventHandler(this.button2_Click);
- //
- // button1
- //
- this.button1.BackColor = System.Drawing.Color.DodgerBlue;
- this.button1.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button1.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button1.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button1.ForeColor = System.Drawing.Color.White;
- this.button1.Location = new System.Drawing.Point(327, 316);
- this.button1.Margin = new System.Windows.Forms.Padding(2);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(153, 31);
- this.button1.TabIndex = 63;
- this.button1.Text = "Enable AdBlock Basic";
- this.button1.UseVisualStyleBackColor = false;
- this.button1.Click += new System.EventHandler(this.button1_Click);
- //
- // label29
- //
- this.label29.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label29.ForeColor = System.Drawing.Color.Silver;
- this.label29.Location = new System.Drawing.Point(323, 165);
- this.label29.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label29.Name = "label29";
- this.label29.Size = new System.Drawing.Size(281, 25);
- this.label29.TabIndex = 62;
- this.label29.Tag = "";
- this.label29.Text = "Protect your HOSTS file by locking it.";
- //
- // chkReadOnly
- //
- this.chkReadOnly.AutoSize = true;
- this.chkReadOnly.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.chkReadOnly.ForeColor = System.Drawing.Color.White;
- this.chkReadOnly.Location = new System.Drawing.Point(327, 192);
- this.chkReadOnly.Margin = new System.Windows.Forms.Padding(2);
- this.chkReadOnly.Name = "chkReadOnly";
- this.chkReadOnly.Size = new System.Drawing.Size(103, 25);
- this.chkReadOnly.TabIndex = 61;
- this.chkReadOnly.Text = "Read-only";
- this.chkReadOnly.UseVisualStyleBackColor = true;
- this.chkReadOnly.CheckedChanged += new System.EventHandler(this.chkReadOnly_CheckedChanged);
- //
- // panelList
- //
- this.panelList.Controls.Add(this.listHostEntries);
- this.panelList.Location = new System.Drawing.Point(5, 3);
- this.panelList.Name = "panelList";
- this.panelList.Size = new System.Drawing.Size(312, 388);
- this.panelList.TabIndex = 60;
- //
- // listHostEntries
- //
- this.listHostEntries.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
- this.listHostEntries.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.listHostEntries.Dock = System.Windows.Forms.DockStyle.Fill;
- this.listHostEntries.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.listHostEntries.ForeColor = System.Drawing.Color.White;
- this.listHostEntries.FormattingEnabled = true;
- this.listHostEntries.HorizontalScrollbar = true;
- this.listHostEntries.ItemHeight = 21;
- this.listHostEntries.Location = new System.Drawing.Point(0, 0);
- this.listHostEntries.Margin = new System.Windows.Forms.Padding(2);
- this.listHostEntries.Name = "listHostEntries";
- this.listHostEntries.Size = new System.Drawing.Size(312, 388);
- this.listHostEntries.TabIndex = 52;
- //
- // chkBlock
- //
- this.chkBlock.AutoSize = true;
- this.chkBlock.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.chkBlock.ForeColor = System.Drawing.Color.White;
- this.chkBlock.Location = new System.Drawing.Point(328, 110);
- this.chkBlock.Margin = new System.Windows.Forms.Padding(2);
- this.chkBlock.Name = "chkBlock";
- this.chkBlock.Size = new System.Drawing.Size(69, 25);
- this.chkBlock.TabIndex = 59;
- this.chkBlock.Text = "Block";
- this.chkBlock.UseVisualStyleBackColor = true;
- this.chkBlock.CheckedChanged += new System.EventHandler(this.chkBlock_CheckedChanged);
- //
- // button41
- //
- this.button41.BackColor = System.Drawing.Color.DodgerBlue;
- this.button41.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button41.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button41.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button41.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button41.ForeColor = System.Drawing.Color.White;
- this.button41.Location = new System.Drawing.Point(112, 394);
- this.button41.Margin = new System.Windows.Forms.Padding(2);
- this.button41.Name = "button41";
- this.button41.Size = new System.Drawing.Size(98, 31);
- this.button41.TabIndex = 55;
- this.button41.Text = "Refresh";
- this.button41.UseVisualStyleBackColor = false;
- this.button41.Click += new System.EventHandler(this.button41_Click);
- //
- // button42
- //
- this.button42.BackColor = System.Drawing.Color.DodgerBlue;
- this.button42.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button42.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button42.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button42.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button42.ForeColor = System.Drawing.Color.White;
- this.button42.Location = new System.Drawing.Point(213, 394);
- this.button42.Margin = new System.Windows.Forms.Padding(2);
- this.button42.Name = "button42";
- this.button42.Size = new System.Drawing.Size(104, 31);
- this.button42.TabIndex = 54;
- this.button42.Text = "Remove";
- this.button42.UseVisualStyleBackColor = false;
- this.button42.Click += new System.EventHandler(this.button42_Click);
- //
- // button46
- //
- this.button46.BackColor = System.Drawing.Color.DodgerBlue;
- this.button46.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button46.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button46.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button46.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button46.ForeColor = System.Drawing.Color.White;
- this.button46.Location = new System.Drawing.Point(5, 394);
- this.button46.Margin = new System.Windows.Forms.Padding(2);
- this.button46.Name = "button46";
- this.button46.Size = new System.Drawing.Size(104, 31);
- this.button46.TabIndex = 53;
- this.button46.Text = "Remove all";
- this.button46.UseVisualStyleBackColor = false;
- this.button46.Click += new System.EventHandler(this.button46_Click);
- //
- // button47
- //
- this.button47.BackColor = System.Drawing.Color.DodgerBlue;
- this.button47.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button47.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button47.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button47.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button47.ForeColor = System.Drawing.Color.White;
- this.button47.Location = new System.Drawing.Point(551, 110);
- this.button47.Margin = new System.Windows.Forms.Padding(2);
- this.button47.Name = "button47";
- this.button47.Size = new System.Drawing.Size(87, 31);
- this.button47.TabIndex = 57;
- this.button47.Text = "Add";
- this.button47.UseVisualStyleBackColor = false;
- this.button47.Click += new System.EventHandler(this.button47_Click);
- //
- // txtIP
- //
- this.txtIP.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
- this.txtIP.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.txtIP.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.txtIP.ForeColor = System.Drawing.Color.White;
- this.txtIP.Location = new System.Drawing.Point(328, 23);
- this.txtIP.Margin = new System.Windows.Forms.Padding(2);
- this.txtIP.Name = "txtIP";
- this.txtIP.Size = new System.Drawing.Size(310, 29);
- this.txtIP.TabIndex = 0;
- this.txtIP.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // txtDomain
- //
- this.txtDomain.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
- this.txtDomain.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.txtDomain.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.txtDomain.ForeColor = System.Drawing.Color.White;
- this.txtDomain.Location = new System.Drawing.Point(328, 77);
- this.txtDomain.Margin = new System.Windows.Forms.Padding(2);
- this.txtDomain.Name = "txtDomain";
- this.txtDomain.Size = new System.Drawing.Size(310, 29);
- this.txtDomain.TabIndex = 1;
- this.txtDomain.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // label12
- //
- this.label12.AutoSize = true;
- this.label12.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label12.ForeColor = System.Drawing.Color.DodgerBlue;
- this.label12.Location = new System.Drawing.Point(323, 54);
- this.label12.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label12.Name = "label12";
- this.label12.Size = new System.Drawing.Size(66, 21);
- this.label12.TabIndex = 55;
- this.label12.Tag = "themeable";
- this.label12.Text = "Domain";
- //
- // label11
- //
- this.label11.AutoSize = true;
- this.label11.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label11.ForeColor = System.Drawing.Color.DodgerBlue;
- this.label11.Location = new System.Drawing.Point(323, 0);
- this.label11.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label11.Name = "label11";
- this.label11.Size = new System.Drawing.Size(85, 21);
- this.label11.TabIndex = 53;
- this.label11.Tag = "themeable";
- this.label11.Text = "IP address";
- //
- // linkLabel4
- //
- this.linkLabel4.ActiveLinkColor = System.Drawing.Color.RoyalBlue;
- this.linkLabel4.AutoSize = true;
- this.linkLabel4.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.linkLabel4.LinkColor = System.Drawing.Color.Silver;
- this.linkLabel4.Location = new System.Drawing.Point(234, 38);
- this.linkLabel4.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.linkLabel4.Name = "linkLabel4";
- this.linkLabel4.Size = new System.Drawing.Size(123, 21);
- this.linkLabel4.TabIndex = 51;
- this.linkLabel4.TabStop = true;
- this.linkLabel4.Tag = "";
- this.linkLabel4.Text = "Restore default";
- this.linkLabel4.VisitedLinkColor = System.Drawing.Color.DodgerBlue;
- this.linkLabel4.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel4_LinkClicked);
- //
- // label10
- //
- this.label10.AutoSize = true;
- this.label10.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label10.Location = new System.Drawing.Point(215, 38);
- this.label10.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label10.Name = "label10";
- this.label10.Size = new System.Drawing.Size(18, 21);
- this.label10.TabIndex = 50;
- this.label10.Text = " |";
- //
- // linkLabel3
- //
- this.linkLabel3.ActiveLinkColor = System.Drawing.Color.RoyalBlue;
- this.linkLabel3.AutoSize = true;
- this.linkLabel3.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.linkLabel3.LinkColor = System.Drawing.Color.Silver;
- this.linkLabel3.Location = new System.Drawing.Point(84, 38);
- this.linkLabel3.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.linkLabel3.Name = "linkLabel3";
- this.linkLabel3.Size = new System.Drawing.Size(132, 21);
- this.linkLabel3.TabIndex = 49;
- this.linkLabel3.TabStop = true;
- this.linkLabel3.Tag = "";
- this.linkLabel3.Text = "Advanced editor";
- this.linkLabel3.VisitedLinkColor = System.Drawing.Color.DodgerBlue;
- this.linkLabel3.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel3_LinkClicked);
- //
- // label9
- //
- this.label9.AutoSize = true;
- this.label9.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label9.Location = new System.Drawing.Point(65, 38);
- this.label9.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label9.Name = "label9";
- this.label9.Size = new System.Drawing.Size(18, 21);
- this.label9.TabIndex = 48;
- this.label9.Text = " |";
- //
- // linkLabel2
- //
- this.linkLabel2.ActiveLinkColor = System.Drawing.Color.RoyalBlue;
- this.linkLabel2.AutoSize = true;
- this.linkLabel2.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.linkLabel2.LinkColor = System.Drawing.Color.Silver;
- this.linkLabel2.Location = new System.Drawing.Point(7, 38);
- this.linkLabel2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.linkLabel2.Name = "linkLabel2";
- this.linkLabel2.Size = new System.Drawing.Size(59, 21);
- this.linkLabel2.TabIndex = 47;
- this.linkLabel2.TabStop = true;
- this.linkLabel2.Tag = "";
- this.linkLabel2.Text = "Locate";
- this.linkLabel2.VisitedLinkColor = System.Drawing.Color.DodgerBlue;
- this.linkLabel2.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel2_LinkClicked);
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label3.ForeColor = System.Drawing.Color.DodgerBlue;
- this.label3.Location = new System.Drawing.Point(6, 10);
- this.label3.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(182, 28);
- this.label3.TabIndex = 3;
- this.label3.Tag = "themeable";
- this.label3.Text = "Edit your hosts file";
- //
- // integratorTab
- //
- this.integratorTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
- this.integratorTab.Controls.Add(this.synapse);
- this.integratorTab.Location = new System.Drawing.Point(4, 24);
- this.integratorTab.Margin = new System.Windows.Forms.Padding(2);
- this.integratorTab.Name = "integratorTab";
- this.integratorTab.Padding = new System.Windows.Forms.Padding(2);
- this.integratorTab.Size = new System.Drawing.Size(688, 513);
- this.integratorTab.TabIndex = 10;
- this.integratorTab.Text = "Integrator";
- //
- // synapse
- //
- this.synapse.Alignment = System.Windows.Forms.TabAlignment.Bottom;
- this.synapse.Controls.Add(this.integratorInfoTab);
- this.synapse.Controls.Add(this.tabPage8);
- this.synapse.Controls.Add(this.tabPage9);
- this.synapse.Controls.Add(this.tabPage10);
- this.synapse.Controls.Add(this.tabPage11);
- this.synapse.Dock = System.Windows.Forms.DockStyle.Fill;
- this.synapse.Location = new System.Drawing.Point(2, 2);
- this.synapse.Margin = new System.Windows.Forms.Padding(2);
- this.synapse.Multiline = true;
- this.synapse.Name = "synapse";
- this.synapse.SelectedIndex = 0;
- this.synapse.Size = new System.Drawing.Size(684, 509);
- this.synapse.TabIndex = 0;
- //
- // integratorInfoTab
- //
- this.integratorInfoTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
- this.integratorInfoTab.Controls.Add(this.label19);
- this.integratorInfoTab.Controls.Add(this.label18);
- this.integratorInfoTab.Controls.Add(this.label17);
- this.integratorInfoTab.Controls.Add(this.label16);
- this.integratorInfoTab.Controls.Add(this.label15);
- this.integratorInfoTab.Controls.Add(this.label14);
- this.integratorInfoTab.Controls.Add(this.label13);
- this.integratorInfoTab.Location = new System.Drawing.Point(4, 4);
- this.integratorInfoTab.Margin = new System.Windows.Forms.Padding(2);
- this.integratorInfoTab.Name = "integratorInfoTab";
- this.integratorInfoTab.Padding = new System.Windows.Forms.Padding(2);
- this.integratorInfoTab.Size = new System.Drawing.Size(676, 481);
- this.integratorInfoTab.TabIndex = 0;
- this.integratorInfoTab.Text = "Info";
- //
- // label19
- //
- this.label19.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label19.ForeColor = System.Drawing.Color.Silver;
- this.label19.Location = new System.Drawing.Point(6, 225);
- this.label19.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label19.Name = "label19";
- this.label19.Size = new System.Drawing.Size(501, 233);
- this.label19.TabIndex = 10;
- this.label19.Tag = "";
- this.label19.Text = resources.GetString("label19.Text");
- //
- // label18
- //
- this.label18.AutoSize = true;
- this.label18.Font = new System.Drawing.Font("Segoe UI Semibold", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label18.ForeColor = System.Drawing.Color.Silver;
- this.label18.Location = new System.Drawing.Point(38, 183);
- this.label18.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label18.Name = "label18";
- this.label18.Size = new System.Drawing.Size(122, 25);
- this.label18.TabIndex = 9;
- this.label18.Tag = "";
- this.label18.Text = "• Commands";
- //
- // label17
- //
- this.label17.AutoSize = true;
- this.label17.Font = new System.Drawing.Font("Segoe UI Semibold", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label17.ForeColor = System.Drawing.Color.Silver;
- this.label17.Location = new System.Drawing.Point(38, 158);
- this.label17.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label17.Name = "label17";
- this.label17.Size = new System.Drawing.Size(157, 25);
- this.label17.TabIndex = 8;
- this.label17.Tag = "";
- this.label17.Text = "• Any type of file";
- //
- // label16
- //
- this.label16.AutoSize = true;
- this.label16.Font = new System.Drawing.Font("Segoe UI Semibold", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label16.ForeColor = System.Drawing.Color.Silver;
- this.label16.Location = new System.Drawing.Point(38, 132);
- this.label16.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label16.Name = "label16";
- this.label16.Size = new System.Drawing.Size(181, 25);
- this.label16.TabIndex = 7;
- this.label16.Tag = "";
- this.label16.Text = "• Links to webpages";
- //
- // label15
- //
- this.label15.AutoSize = true;
- this.label15.Font = new System.Drawing.Font("Segoe UI Semibold", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label15.ForeColor = System.Drawing.Color.Silver;
- this.label15.Location = new System.Drawing.Point(38, 106);
- this.label15.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label15.Name = "label15";
- this.label15.Size = new System.Drawing.Size(194, 25);
- this.label15.TabIndex = 6;
- this.label15.Tag = "";
- this.label15.Text = "• Shortcuts to folders";
- //
- // label14
- //
- this.label14.AutoSize = true;
- this.label14.Font = new System.Drawing.Font("Segoe UI Semibold", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label14.ForeColor = System.Drawing.Color.Silver;
- this.label14.Location = new System.Drawing.Point(38, 81);
- this.label14.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label14.Name = "label14";
- this.label14.Size = new System.Drawing.Size(138, 25);
- this.label14.TabIndex = 5;
- this.label14.Tag = "";
- this.label14.Text = "• Any program";
- //
- // label13
- //
- this.label13.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label13.ForeColor = System.Drawing.Color.Silver;
- this.label13.Location = new System.Drawing.Point(6, 10);
- this.label13.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label13.Name = "label13";
- this.label13.Size = new System.Drawing.Size(412, 61);
- this.label13.TabIndex = 4;
- this.label13.Tag = "";
- this.label13.Text = "Integrator is able to add fully customized items in Desktop right-click menu:";
- //
- // tabPage8
- //
- this.tabPage8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
- this.tabPage8.Controls.Add(this.btnAddItem);
- this.tabPage8.Controls.Add(this.itemnamegroup);
- this.tabPage8.Controls.Add(this.security);
- this.tabPage8.Controls.Add(this.itemposition);
- this.tabPage8.Controls.Add(this.icontoaddgroup);
- this.tabPage8.Controls.Add(this.itemtoaddgroup);
- this.tabPage8.Controls.Add(this.itemtype);
- this.tabPage8.Controls.Add(this.label26);
- this.tabPage8.Location = new System.Drawing.Point(4, 4);
- this.tabPage8.Margin = new System.Windows.Forms.Padding(2);
- this.tabPage8.Name = "tabPage8";
- this.tabPage8.Padding = new System.Windows.Forms.Padding(2);
- this.tabPage8.Size = new System.Drawing.Size(676, 481);
- this.tabPage8.TabIndex = 1;
- this.tabPage8.Text = "Add/Modify";
- //
- // btnAddItem
- //
- this.btnAddItem.BackColor = System.Drawing.Color.DodgerBlue;
- this.btnAddItem.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.btnAddItem.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.btnAddItem.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.btnAddItem.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.btnAddItem.ForeColor = System.Drawing.Color.White;
- this.btnAddItem.Location = new System.Drawing.Point(512, 438);
- this.btnAddItem.Margin = new System.Windows.Forms.Padding(2);
- this.btnAddItem.Name = "btnAddItem";
- this.btnAddItem.Size = new System.Drawing.Size(98, 31);
- this.btnAddItem.TabIndex = 85;
- this.btnAddItem.Text = "Add/Modify";
- this.btnAddItem.UseVisualStyleBackColor = false;
- this.btnAddItem.Click += new System.EventHandler(this.btnAddItem_Click);
- //
- // itemnamegroup
- //
- this.itemnamegroup.Controls.Add(this.txtItemName);
- this.itemnamegroup.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.itemnamegroup.ForeColor = System.Drawing.Color.Silver;
- this.itemnamegroup.Location = new System.Drawing.Point(11, 403);
- this.itemnamegroup.Margin = new System.Windows.Forms.Padding(2);
- this.itemnamegroup.Name = "itemnamegroup";
- this.itemnamegroup.Padding = new System.Windows.Forms.Padding(2);
- this.itemnamegroup.Size = new System.Drawing.Size(497, 66);
- this.itemnamegroup.TabIndex = 84;
- this.itemnamegroup.TabStop = false;
- this.itemnamegroup.Text = "Item name in menu:";
- //
- // txtItemName
- //
- this.txtItemName.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
- this.txtItemName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.txtItemName.ForeColor = System.Drawing.Color.White;
- this.txtItemName.Location = new System.Drawing.Point(11, 26);
- this.txtItemName.Margin = new System.Windows.Forms.Padding(2);
- this.txtItemName.Name = "txtItemName";
- this.txtItemName.Size = new System.Drawing.Size(476, 29);
- this.txtItemName.TabIndex = 82;
- //
- // security
- //
- this.security.Controls.Add(this.checkShift);
- this.security.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.security.ForeColor = System.Drawing.Color.Silver;
- this.security.Location = new System.Drawing.Point(11, 338);
- this.security.Margin = new System.Windows.Forms.Padding(2);
- this.security.Name = "security";
- this.security.Padding = new System.Windows.Forms.Padding(2);
- this.security.Size = new System.Drawing.Size(497, 61);
- this.security.TabIndex = 83;
- this.security.TabStop = false;
- this.security.Text = "Security:";
- //
- // checkShift
- //
- this.checkShift.AutoSize = true;
- this.checkShift.ForeColor = System.Drawing.Color.White;
- this.checkShift.Location = new System.Drawing.Point(11, 26);
- this.checkShift.Margin = new System.Windows.Forms.Padding(2);
- this.checkShift.Name = "checkShift";
- this.checkShift.Size = new System.Drawing.Size(300, 25);
- this.checkShift.TabIndex = 83;
- this.checkShift.Text = "Show only when SHIFT key is pressed";
- this.checkShift.UseVisualStyleBackColor = true;
- //
- // itemposition
- //
- this.itemposition.Controls.Add(this.radioTop);
- this.itemposition.Controls.Add(this.radioMiddle);
- this.itemposition.Controls.Add(this.radioBottom);
- this.itemposition.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.itemposition.ForeColor = System.Drawing.Color.Silver;
- this.itemposition.Location = new System.Drawing.Point(11, 272);
- this.itemposition.Margin = new System.Windows.Forms.Padding(2);
- this.itemposition.Name = "itemposition";
- this.itemposition.Padding = new System.Windows.Forms.Padding(2);
- this.itemposition.Size = new System.Drawing.Size(497, 62);
- this.itemposition.TabIndex = 82;
- this.itemposition.TabStop = false;
- this.itemposition.Text = "Item position:";
- //
- // radioTop
- //
- this.radioTop.AutoSize = true;
- this.radioTop.Checked = true;
- this.radioTop.ForeColor = System.Drawing.Color.White;
- this.radioTop.Location = new System.Drawing.Point(11, 26);
- this.radioTop.Margin = new System.Windows.Forms.Padding(2);
- this.radioTop.Name = "radioTop";
- this.radioTop.Size = new System.Drawing.Size(55, 25);
- this.radioTop.TabIndex = 83;
- this.radioTop.TabStop = true;
- this.radioTop.Text = "Top";
- this.radioTop.UseVisualStyleBackColor = true;
- this.radioTop.CheckedChanged += new System.EventHandler(this.radioTop_CheckedChanged);
- //
- // radioMiddle
- //
- this.radioMiddle.AutoSize = true;
- this.radioMiddle.ForeColor = System.Drawing.Color.White;
- this.radioMiddle.Location = new System.Drawing.Point(69, 26);
- this.radioMiddle.Margin = new System.Windows.Forms.Padding(2);
- this.radioMiddle.Name = "radioMiddle";
- this.radioMiddle.Size = new System.Drawing.Size(80, 25);
- this.radioMiddle.TabIndex = 84;
- this.radioMiddle.Text = "Middle";
- this.radioMiddle.UseVisualStyleBackColor = true;
- this.radioMiddle.CheckedChanged += new System.EventHandler(this.radioMiddle_CheckedChanged);
- //
- // radioBottom
- //
- this.radioBottom.AutoSize = true;
- this.radioBottom.ForeColor = System.Drawing.Color.White;
- this.radioBottom.Location = new System.Drawing.Point(150, 26);
- this.radioBottom.Margin = new System.Windows.Forms.Padding(2);
- this.radioBottom.Name = "radioBottom";
- this.radioBottom.Size = new System.Drawing.Size(84, 25);
- this.radioBottom.TabIndex = 85;
- this.radioBottom.Text = "Bottom";
- this.radioBottom.UseVisualStyleBackColor = true;
- this.radioBottom.CheckedChanged += new System.EventHandler(this.radioBottom_CheckedChanged);
- //
- // icontoaddgroup
- //
- this.icontoaddgroup.Controls.Add(this.checkDefaultIcon);
- this.icontoaddgroup.Controls.Add(this.btnBrowseIcon);
- this.icontoaddgroup.Controls.Add(this.txtIcon);
- this.icontoaddgroup.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.icontoaddgroup.ForeColor = System.Drawing.Color.Silver;
- this.icontoaddgroup.Location = new System.Drawing.Point(11, 178);
- this.icontoaddgroup.Margin = new System.Windows.Forms.Padding(2);
- this.icontoaddgroup.Name = "icontoaddgroup";
- this.icontoaddgroup.Padding = new System.Windows.Forms.Padding(2);
- this.icontoaddgroup.Size = new System.Drawing.Size(497, 90);
- this.icontoaddgroup.TabIndex = 81;
- this.icontoaddgroup.TabStop = false;
- this.icontoaddgroup.Text = "Icon to add:";
- //
- // checkDefaultIcon
- //
- this.checkDefaultIcon.AutoSize = true;
- this.checkDefaultIcon.Checked = true;
- this.checkDefaultIcon.CheckState = System.Windows.Forms.CheckState.Checked;
- this.checkDefaultIcon.ForeColor = System.Drawing.Color.White;
- this.checkDefaultIcon.Location = new System.Drawing.Point(11, 58);
- this.checkDefaultIcon.Margin = new System.Windows.Forms.Padding(2);
- this.checkDefaultIcon.Name = "checkDefaultIcon";
- this.checkDefaultIcon.Size = new System.Drawing.Size(169, 25);
- this.checkDefaultIcon.TabIndex = 82;
- this.checkDefaultIcon.Text = "Use program\'s icon";
- this.checkDefaultIcon.UseVisualStyleBackColor = true;
- this.checkDefaultIcon.CheckedChanged += new System.EventHandler(this.checkDefaultIcon_CheckedChanged);
- //
- // btnBrowseIcon
- //
- this.btnBrowseIcon.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.btnBrowseIcon.BackColor = System.Drawing.Color.DodgerBlue;
- this.btnBrowseIcon.Enabled = false;
- this.btnBrowseIcon.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.btnBrowseIcon.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.btnBrowseIcon.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.btnBrowseIcon.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.btnBrowseIcon.ForeColor = System.Drawing.Color.White;
- this.btnBrowseIcon.Location = new System.Drawing.Point(450, 26);
- this.btnBrowseIcon.Margin = new System.Windows.Forms.Padding(2);
- this.btnBrowseIcon.Name = "btnBrowseIcon";
- this.btnBrowseIcon.Size = new System.Drawing.Size(36, 27);
- this.btnBrowseIcon.TabIndex = 82;
- this.btnBrowseIcon.Text = "...";
- this.btnBrowseIcon.UseVisualStyleBackColor = false;
- this.btnBrowseIcon.Click += new System.EventHandler(this.btnBrowseIcon_Click);
- //
- // txtIcon
- //
- this.txtIcon.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
- this.txtIcon.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.txtIcon.Enabled = false;
- this.txtIcon.ForeColor = System.Drawing.Color.White;
- this.txtIcon.Location = new System.Drawing.Point(11, 26);
- this.txtIcon.Margin = new System.Windows.Forms.Padding(2);
- this.txtIcon.Name = "txtIcon";
- this.txtIcon.ReadOnly = true;
- this.txtIcon.Size = new System.Drawing.Size(434, 29);
- this.txtIcon.TabIndex = 81;
- //
- // itemtoaddgroup
- //
- this.itemtoaddgroup.Controls.Add(this.btnBrowseItem);
- this.itemtoaddgroup.Controls.Add(this.txtItem);
- this.itemtoaddgroup.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.itemtoaddgroup.ForeColor = System.Drawing.Color.Silver;
- this.itemtoaddgroup.Location = new System.Drawing.Point(11, 107);
- this.itemtoaddgroup.Margin = new System.Windows.Forms.Padding(2);
- this.itemtoaddgroup.Name = "itemtoaddgroup";
- this.itemtoaddgroup.Padding = new System.Windows.Forms.Padding(2);
- this.itemtoaddgroup.Size = new System.Drawing.Size(497, 67);
- this.itemtoaddgroup.TabIndex = 80;
- this.itemtoaddgroup.TabStop = false;
- this.itemtoaddgroup.Text = "Program to add:";
- //
- // btnBrowseItem
- //
- this.btnBrowseItem.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.btnBrowseItem.BackColor = System.Drawing.Color.DodgerBlue;
- this.btnBrowseItem.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.btnBrowseItem.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.btnBrowseItem.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.btnBrowseItem.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.btnBrowseItem.ForeColor = System.Drawing.Color.White;
- this.btnBrowseItem.Location = new System.Drawing.Point(450, 26);
- this.btnBrowseItem.Margin = new System.Windows.Forms.Padding(2);
- this.btnBrowseItem.Name = "btnBrowseItem";
- this.btnBrowseItem.Size = new System.Drawing.Size(36, 27);
- this.btnBrowseItem.TabIndex = 82;
- this.btnBrowseItem.Text = "...";
- this.btnBrowseItem.UseVisualStyleBackColor = false;
- this.btnBrowseItem.Click += new System.EventHandler(this.btnBrowseItem_Click);
- //
- // txtItem
- //
- this.txtItem.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
- this.txtItem.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.txtItem.ForeColor = System.Drawing.Color.White;
- this.txtItem.Location = new System.Drawing.Point(11, 26);
- this.txtItem.Margin = new System.Windows.Forms.Padding(2);
- this.txtItem.Name = "txtItem";
- this.txtItem.ReadOnly = true;
- this.txtItem.Size = new System.Drawing.Size(434, 29);
- this.txtItem.TabIndex = 81;
- //
- // itemtype
- //
- this.itemtype.Controls.Add(this.radioCommand);
- this.itemtype.Controls.Add(this.radioProgram);
- this.itemtype.Controls.Add(this.radioFolder);
- this.itemtype.Controls.Add(this.radioFile);
- this.itemtype.Controls.Add(this.radioLink);
- this.itemtype.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.itemtype.ForeColor = System.Drawing.Color.Silver;
- this.itemtype.Location = new System.Drawing.Point(11, 40);
- this.itemtype.Margin = new System.Windows.Forms.Padding(2);
- this.itemtype.Name = "itemtype";
- this.itemtype.Padding = new System.Windows.Forms.Padding(2);
- this.itemtype.Size = new System.Drawing.Size(497, 63);
- this.itemtype.TabIndex = 79;
- this.itemtype.TabStop = false;
- this.itemtype.Text = "Item Type:";
- //
- // radioCommand
- //
- this.radioCommand.AutoSize = true;
- this.radioCommand.ForeColor = System.Drawing.Color.White;
- this.radioCommand.Location = new System.Drawing.Point(385, 26);
- this.radioCommand.Margin = new System.Windows.Forms.Padding(2);
- this.radioCommand.Name = "radioCommand";
- this.radioCommand.Size = new System.Drawing.Size(103, 25);
- this.radioCommand.TabIndex = 84;
- this.radioCommand.Text = "Command";
- this.radioCommand.UseVisualStyleBackColor = true;
- this.radioCommand.CheckedChanged += new System.EventHandler(this.radioCommand_CheckedChanged);
- //
- // radioProgram
- //
- this.radioProgram.AutoSize = true;
- this.radioProgram.Checked = true;
- this.radioProgram.ForeColor = System.Drawing.Color.White;
- this.radioProgram.Location = new System.Drawing.Point(11, 26);
- this.radioProgram.Margin = new System.Windows.Forms.Padding(2);
- this.radioProgram.Name = "radioProgram";
- this.radioProgram.Size = new System.Drawing.Size(91, 25);
- this.radioProgram.TabIndex = 80;
- this.radioProgram.TabStop = true;
- this.radioProgram.Text = "Program";
- this.radioProgram.UseVisualStyleBackColor = true;
- this.radioProgram.CheckedChanged += new System.EventHandler(this.radioProgram_CheckedChanged);
- //
- // radioFolder
- //
- this.radioFolder.AutoSize = true;
- this.radioFolder.ForeColor = System.Drawing.Color.White;
- this.radioFolder.Location = new System.Drawing.Point(105, 26);
- this.radioFolder.Margin = new System.Windows.Forms.Padding(2);
- this.radioFolder.Name = "radioFolder";
- this.radioFolder.Size = new System.Drawing.Size(75, 25);
- this.radioFolder.TabIndex = 81;
- this.radioFolder.Text = "Folder";
- this.radioFolder.UseVisualStyleBackColor = true;
- this.radioFolder.CheckedChanged += new System.EventHandler(this.radioFolder_CheckedChanged);
- //
- // radioFile
- //
- this.radioFile.AutoSize = true;
- this.radioFile.ForeColor = System.Drawing.Color.White;
- this.radioFile.Location = new System.Drawing.Point(242, 26);
- this.radioFile.Margin = new System.Windows.Forms.Padding(2);
- this.radioFile.Name = "radioFile";
- this.radioFile.Size = new System.Drawing.Size(140, 25);
- this.radioFile.TabIndex = 83;
- this.radioFile.Text = "Any type of file";
- this.radioFile.UseVisualStyleBackColor = true;
- this.radioFile.CheckedChanged += new System.EventHandler(this.radioFile_CheckedChanged);
- //
- // radioLink
- //
- this.radioLink.AutoSize = true;
- this.radioLink.ForeColor = System.Drawing.Color.White;
- this.radioLink.Location = new System.Drawing.Point(182, 26);
- this.radioLink.Margin = new System.Windows.Forms.Padding(2);
- this.radioLink.Name = "radioLink";
- this.radioLink.Size = new System.Drawing.Size(57, 25);
- this.radioLink.TabIndex = 82;
- this.radioLink.Text = "Link";
- this.radioLink.UseVisualStyleBackColor = true;
- this.radioLink.CheckedChanged += new System.EventHandler(this.radioLink_CheckedChanged);
- //
- // label26
- //
- this.label26.AutoSize = true;
- this.label26.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label26.ForeColor = System.Drawing.Color.DodgerBlue;
- this.label26.Location = new System.Drawing.Point(6, 10);
- this.label26.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label26.Name = "label26";
- this.label26.Size = new System.Drawing.Size(219, 28);
- this.label26.TabIndex = 78;
- this.label26.Tag = "themeable";
- this.label26.Text = "Add or modify an item";
- //
- // tabPage9
- //
- this.tabPage9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
- this.tabPage9.Controls.Add(this.panel5);
- this.tabPage9.Controls.Add(this.button60);
- this.tabPage9.Controls.Add(this.button61);
- this.tabPage9.Controls.Add(this.button62);
- this.tabPage9.Controls.Add(this.label25);
- this.tabPage9.Location = new System.Drawing.Point(4, 4);
- this.tabPage9.Margin = new System.Windows.Forms.Padding(2);
- this.tabPage9.Name = "tabPage9";
- this.tabPage9.Padding = new System.Windows.Forms.Padding(2);
- this.tabPage9.Size = new System.Drawing.Size(676, 481);
- this.tabPage9.TabIndex = 2;
- this.tabPage9.Text = "Remove";
- //
- // panel5
- //
- this.panel5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panel5.Controls.Add(this.listDesktopItems);
- this.panel5.Location = new System.Drawing.Point(11, 39);
- this.panel5.Margin = new System.Windows.Forms.Padding(2);
- this.panel5.Name = "panel5";
- this.panel5.Size = new System.Drawing.Size(293, 435);
- this.panel5.TabIndex = 82;
- //
- // listDesktopItems
- //
- this.listDesktopItems.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
- this.listDesktopItems.BorderStyle = System.Windows.Forms.BorderStyle.None;
- this.listDesktopItems.Dock = System.Windows.Forms.DockStyle.Fill;
- this.listDesktopItems.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.listDesktopItems.ForeColor = System.Drawing.Color.White;
- this.listDesktopItems.FormattingEnabled = true;
- this.listDesktopItems.HorizontalScrollbar = true;
- this.listDesktopItems.ItemHeight = 21;
- this.listDesktopItems.Location = new System.Drawing.Point(0, 0);
- this.listDesktopItems.Margin = new System.Windows.Forms.Padding(2);
- this.listDesktopItems.Name = "listDesktopItems";
- this.listDesktopItems.Size = new System.Drawing.Size(291, 433);
- this.listDesktopItems.TabIndex = 78;
- //
- // button60
- //
- this.button60.BackColor = System.Drawing.Color.DodgerBlue;
- this.button60.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button60.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button60.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button60.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button60.ForeColor = System.Drawing.Color.White;
- this.button60.Location = new System.Drawing.Point(308, 75);
- this.button60.Margin = new System.Windows.Forms.Padding(2);
- this.button60.Name = "button60";
- this.button60.Size = new System.Drawing.Size(94, 31);
- this.button60.TabIndex = 81;
- this.button60.Text = "Refresh";
- this.button60.UseVisualStyleBackColor = false;
- this.button60.Click += new System.EventHandler(this.button60_Click);
- //
- // button61
- //
- this.button61.BackColor = System.Drawing.Color.DodgerBlue;
- this.button61.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button61.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button61.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button61.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button61.ForeColor = System.Drawing.Color.White;
- this.button61.Location = new System.Drawing.Point(308, 40);
- this.button61.Margin = new System.Windows.Forms.Padding(2);
- this.button61.Name = "button61";
- this.button61.Size = new System.Drawing.Size(94, 31);
- this.button61.TabIndex = 80;
- this.button61.Text = "Remove";
- this.button61.UseVisualStyleBackColor = false;
- this.button61.Click += new System.EventHandler(this.button61_Click);
- //
- // button62
- //
- this.button62.BackColor = System.Drawing.Color.DodgerBlue;
- this.button62.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button62.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button62.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button62.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button62.ForeColor = System.Drawing.Color.White;
- this.button62.Location = new System.Drawing.Point(308, 110);
- this.button62.Margin = new System.Windows.Forms.Padding(2);
- this.button62.Name = "button62";
- this.button62.Size = new System.Drawing.Size(94, 31);
- this.button62.TabIndex = 79;
- this.button62.Text = "Remove all";
- this.button62.UseVisualStyleBackColor = false;
- this.button62.Click += new System.EventHandler(this.button62_Click);
- //
- // label25
- //
- this.label25.AutoSize = true;
- this.label25.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label25.ForeColor = System.Drawing.Color.DodgerBlue;
- this.label25.Location = new System.Drawing.Point(6, 10);
- this.label25.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label25.Name = "label25";
- this.label25.Size = new System.Drawing.Size(300, 28);
- this.label25.TabIndex = 77;
- this.label25.Tag = "themeable";
- this.label25.Text = "Remove existing Desktop items";
- //
- // tabPage10
- //
- this.tabPage10.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
- this.tabPage10.Controls.Add(this.button65);
- this.tabPage10.Controls.Add(this.button66);
- this.tabPage10.Controls.Add(this.label24);
- this.tabPage10.Controls.Add(this.button58);
- this.tabPage10.Controls.Add(this.button59);
- this.tabPage10.Controls.Add(this.button55);
- this.tabPage10.Controls.Add(this.button57);
- this.tabPage10.Controls.Add(this.button52);
- this.tabPage10.Controls.Add(this.button53);
- this.tabPage10.Controls.Add(this.button49);
- this.tabPage10.Controls.Add(this.button51);
- this.tabPage10.Controls.Add(this.button56);
- this.tabPage10.Controls.Add(this.button54);
- this.tabPage10.Location = new System.Drawing.Point(4, 4);
- this.tabPage10.Margin = new System.Windows.Forms.Padding(2);
- this.tabPage10.Name = "tabPage10";
- this.tabPage10.Padding = new System.Windows.Forms.Padding(2);
- this.tabPage10.Size = new System.Drawing.Size(676, 481);
- this.tabPage10.TabIndex = 3;
- this.tabPage10.Text = "Ready Menus";
- //
- // button65
- //
- this.button65.BackColor = System.Drawing.Color.DodgerBlue;
- this.button65.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button65.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button65.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button65.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button65.ForeColor = System.Drawing.Color.White;
- this.button65.Location = new System.Drawing.Point(11, 276);
- this.button65.Margin = new System.Windows.Forms.Padding(2);
- this.button65.Name = "button65";
- this.button65.Size = new System.Drawing.Size(186, 31);
- this.button65.TabIndex = 78;
- this.button65.Text = "Remove \"Take Ownership\"";
- this.button65.UseVisualStyleBackColor = false;
- this.button65.Click += new System.EventHandler(this.button65_Click);
- //
- // button66
- //
- this.button66.BackColor = System.Drawing.Color.DodgerBlue;
- this.button66.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button66.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button66.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button66.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button66.ForeColor = System.Drawing.Color.White;
- this.button66.Location = new System.Drawing.Point(11, 240);
- this.button66.Margin = new System.Windows.Forms.Padding(2);
- this.button66.Name = "button66";
- this.button66.Size = new System.Drawing.Size(186, 31);
- this.button66.TabIndex = 77;
- this.button66.Text = "Add \"Take Ownership\"";
- this.button66.UseVisualStyleBackColor = false;
- this.button66.Click += new System.EventHandler(this.button66_Click);
- //
- // label24
- //
- this.label24.AutoSize = true;
- this.label24.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label24.ForeColor = System.Drawing.Color.DodgerBlue;
- this.label24.Location = new System.Drawing.Point(6, 10);
- this.label24.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label24.Name = "label24";
- this.label24.Size = new System.Drawing.Size(232, 28);
- this.label24.TabIndex = 76;
- this.label24.Tag = "themeable";
- this.label24.Text = "Add ready-made menus";
- //
- // button58
- //
- this.button58.BackColor = System.Drawing.Color.DodgerBlue;
- this.button58.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button58.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button58.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button58.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button58.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button58.ForeColor = System.Drawing.Color.White;
- this.button58.Location = new System.Drawing.Point(202, 48);
- this.button58.Margin = new System.Windows.Forms.Padding(2);
- this.button58.Name = "button58";
- this.button58.Size = new System.Drawing.Size(30, 31);
- this.button58.TabIndex = 75;
- this.button58.Text = "?";
- this.button58.UseVisualStyleBackColor = false;
- this.button58.Click += new System.EventHandler(this.button58_Click);
- //
- // button59
- //
- this.button59.BackColor = System.Drawing.Color.DodgerBlue;
- this.button59.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button59.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button59.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button59.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button59.ForeColor = System.Drawing.Color.White;
- this.button59.Location = new System.Drawing.Point(11, 48);
- this.button59.Margin = new System.Windows.Forms.Padding(2);
- this.button59.Name = "button59";
- this.button59.Size = new System.Drawing.Size(186, 31);
- this.button59.TabIndex = 74;
- this.button59.Text = "Add \"Power Menu\"";
- this.button59.UseVisualStyleBackColor = false;
- this.button59.Click += new System.EventHandler(this.button59_Click);
- //
- // button55
- //
- this.button55.BackColor = System.Drawing.Color.DodgerBlue;
- this.button55.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button55.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button55.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button55.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button55.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button55.ForeColor = System.Drawing.Color.White;
- this.button55.Location = new System.Drawing.Point(202, 192);
- this.button55.Margin = new System.Windows.Forms.Padding(2);
- this.button55.Name = "button55";
- this.button55.Size = new System.Drawing.Size(30, 31);
- this.button55.TabIndex = 73;
- this.button55.Text = "?";
- this.button55.UseVisualStyleBackColor = false;
- this.button55.Click += new System.EventHandler(this.button55_Click);
- //
- // button57
- //
- this.button57.BackColor = System.Drawing.Color.DodgerBlue;
- this.button57.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button57.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button57.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button57.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button57.ForeColor = System.Drawing.Color.White;
- this.button57.Location = new System.Drawing.Point(11, 192);
- this.button57.Margin = new System.Windows.Forms.Padding(2);
- this.button57.Name = "button57";
- this.button57.Size = new System.Drawing.Size(186, 31);
- this.button57.TabIndex = 72;
- this.button57.Text = "Add \"Desktop Shortcuts\"";
- this.button57.UseVisualStyleBackColor = false;
- this.button57.Click += new System.EventHandler(this.button57_Click);
- //
- // button52
- //
- this.button52.BackColor = System.Drawing.Color.DodgerBlue;
- this.button52.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button52.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button52.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button52.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button52.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button52.ForeColor = System.Drawing.Color.White;
- this.button52.Location = new System.Drawing.Point(202, 120);
- this.button52.Margin = new System.Windows.Forms.Padding(2);
- this.button52.Name = "button52";
- this.button52.Size = new System.Drawing.Size(30, 31);
- this.button52.TabIndex = 71;
- this.button52.Text = "?";
- this.button52.UseVisualStyleBackColor = false;
- this.button52.Click += new System.EventHandler(this.button52_Click);
- //
- // button53
- //
- this.button53.BackColor = System.Drawing.Color.DodgerBlue;
- this.button53.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button53.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button53.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button53.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button53.ForeColor = System.Drawing.Color.White;
- this.button53.Location = new System.Drawing.Point(11, 84);
- this.button53.Margin = new System.Windows.Forms.Padding(2);
- this.button53.Name = "button53";
- this.button53.Size = new System.Drawing.Size(186, 31);
- this.button53.TabIndex = 70;
- this.button53.Text = "Add \"System Tools\"";
- this.button53.UseVisualStyleBackColor = false;
- this.button53.Click += new System.EventHandler(this.button53_Click);
- //
- // button49
- //
- this.button49.BackColor = System.Drawing.Color.DodgerBlue;
- this.button49.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button49.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button49.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button49.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button49.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button49.ForeColor = System.Drawing.Color.White;
- this.button49.Location = new System.Drawing.Point(202, 156);
- this.button49.Margin = new System.Windows.Forms.Padding(2);
- this.button49.Name = "button49";
- this.button49.Size = new System.Drawing.Size(30, 31);
- this.button49.TabIndex = 69;
- this.button49.Text = "?";
- this.button49.UseVisualStyleBackColor = false;
- this.button49.Click += new System.EventHandler(this.button49_Click);
- //
- // button51
- //
- this.button51.BackColor = System.Drawing.Color.DodgerBlue;
- this.button51.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button51.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button51.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button51.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button51.ForeColor = System.Drawing.Color.White;
- this.button51.Location = new System.Drawing.Point(11, 156);
- this.button51.Margin = new System.Windows.Forms.Padding(2);
- this.button51.Name = "button51";
- this.button51.Size = new System.Drawing.Size(186, 31);
- this.button51.TabIndex = 68;
- this.button51.Text = "Add \"System Shortcuts\"";
- this.button51.UseVisualStyleBackColor = false;
- this.button51.Click += new System.EventHandler(this.button51_Click);
- //
- // button56
- //
- this.button56.BackColor = System.Drawing.Color.DodgerBlue;
- this.button56.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button56.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button56.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button56.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button56.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button56.ForeColor = System.Drawing.Color.White;
- this.button56.Location = new System.Drawing.Point(202, 84);
- this.button56.Margin = new System.Windows.Forms.Padding(2);
- this.button56.Name = "button56";
- this.button56.Size = new System.Drawing.Size(30, 31);
- this.button56.TabIndex = 67;
- this.button56.Text = "?";
- this.button56.UseVisualStyleBackColor = false;
- this.button56.Click += new System.EventHandler(this.button56_Click);
- //
- // button54
- //
- this.button54.BackColor = System.Drawing.Color.DodgerBlue;
- this.button54.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button54.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button54.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button54.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button54.ForeColor = System.Drawing.Color.White;
- this.button54.Location = new System.Drawing.Point(11, 120);
- this.button54.Margin = new System.Windows.Forms.Padding(2);
- this.button54.Name = "button54";
- this.button54.Size = new System.Drawing.Size(186, 31);
- this.button54.TabIndex = 65;
- this.button54.Text = "Add \"Windows Apps\"";
- this.button54.UseVisualStyleBackColor = false;
- this.button54.Click += new System.EventHandler(this.button54_Click);
- //
- // tabPage11
- //
- this.tabPage11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
- this.tabPage11.Controls.Add(this.panel6);
- this.tabPage11.Controls.Add(this.button26);
- this.tabPage11.Controls.Add(this.button8);
- this.tabPage11.Controls.Add(this.label23);
- this.tabPage11.Controls.Add(this.btnCreateCustomCommand);
- this.tabPage11.Controls.Add(this.button48);
- this.tabPage11.Controls.Add(this.txtRunKeyword);
- this.tabPage11.Controls.Add(this.label22);
- this.tabPage11.Controls.Add(this.txtRunFile);
- this.tabPage11.Controls.Add(this.label21);
- this.tabPage11.Controls.Add(this.label20);
- this.tabPage11.Location = new System.Drawing.Point(4, 4);
- this.tabPage11.Margin = new System.Windows.Forms.Padding(2);
- this.tabPage11.Name = "tabPage11";
- this.tabPage11.Padding = new System.Windows.Forms.Padding(2);
- this.tabPage11.Size = new System.Drawing.Size(676, 481);
- this.tabPage11.TabIndex = 4;
- this.tabPage11.Text = "Run Dialog";
- //
- // panel6
- //
- this.panel6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panel6.Controls.Add(this.listCustomCommands);
- this.panel6.Location = new System.Drawing.Point(11, 210);
- this.panel6.Margin = new System.Windows.Forms.Padding(2);
- this.panel6.Name = "panel6";
- this.panel6.Size = new System.Drawing.Size(271, 263);
- this.panel6.TabIndex = 84;
- //
- // listCustomCommands
- //
- this.listCustomCommands.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
- this.listCustomCommands.BorderStyle = System.Windows.Forms.BorderStyle.None;
- this.listCustomCommands.Dock = System.Windows.Forms.DockStyle.Fill;
- this.listCustomCommands.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.listCustomCommands.ForeColor = System.Drawing.Color.White;
- this.listCustomCommands.FormattingEnabled = true;
- this.listCustomCommands.HorizontalScrollbar = true;
- this.listCustomCommands.ItemHeight = 21;
- this.listCustomCommands.Location = new System.Drawing.Point(0, 0);
- this.listCustomCommands.Margin = new System.Windows.Forms.Padding(2);
- this.listCustomCommands.Name = "listCustomCommands";
- this.listCustomCommands.Size = new System.Drawing.Size(269, 261);
- this.listCustomCommands.TabIndex = 79;
- //
- // button26
- //
- this.button26.BackColor = System.Drawing.Color.DodgerBlue;
- this.button26.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button26.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button26.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button26.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button26.ForeColor = System.Drawing.Color.White;
- this.button26.Location = new System.Drawing.Point(286, 210);
- this.button26.Margin = new System.Windows.Forms.Padding(2);
- this.button26.Name = "button26";
- this.button26.Size = new System.Drawing.Size(66, 27);
- this.button26.TabIndex = 82;
- this.button26.Text = "Remove";
- this.button26.UseVisualStyleBackColor = false;
- this.button26.Click += new System.EventHandler(this.button26_Click);
- //
- // button8
- //
- this.button8.BackColor = System.Drawing.Color.DodgerBlue;
- this.button8.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button8.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button8.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button8.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button8.ForeColor = System.Drawing.Color.White;
- this.button8.Location = new System.Drawing.Point(286, 241);
- this.button8.Margin = new System.Windows.Forms.Padding(2);
- this.button8.Name = "button8";
- this.button8.Size = new System.Drawing.Size(66, 27);
- this.button8.TabIndex = 81;
- this.button8.Text = "Refresh";
- this.button8.UseVisualStyleBackColor = false;
- this.button8.Click += new System.EventHandler(this.button8_Click);
- //
- // label23
- //
- this.label23.AutoSize = true;
- this.label23.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label23.ForeColor = System.Drawing.Color.DodgerBlue;
- this.label23.Location = new System.Drawing.Point(6, 173);
- this.label23.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label23.Name = "label23";
- this.label23.Size = new System.Drawing.Size(268, 28);
- this.label23.TabIndex = 80;
- this.label23.Tag = "themeable";
- this.label23.Text = "Remove existing commands";
- //
- // btnCreateCustomCommand
- //
- this.btnCreateCustomCommand.BackColor = System.Drawing.Color.DodgerBlue;
- this.btnCreateCustomCommand.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.btnCreateCustomCommand.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.btnCreateCustomCommand.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.btnCreateCustomCommand.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.btnCreateCustomCommand.ForeColor = System.Drawing.Color.White;
- this.btnCreateCustomCommand.Location = new System.Drawing.Point(299, 130);
- this.btnCreateCustomCommand.Margin = new System.Windows.Forms.Padding(2);
- this.btnCreateCustomCommand.Name = "btnCreateCustomCommand";
- this.btnCreateCustomCommand.Size = new System.Drawing.Size(53, 29);
- this.btnCreateCustomCommand.TabIndex = 60;
- this.btnCreateCustomCommand.Text = "Create";
- this.btnCreateCustomCommand.UseVisualStyleBackColor = false;
- this.btnCreateCustomCommand.Click += new System.EventHandler(this.button50_Click);
- //
- // button48
- //
- this.button48.BackColor = System.Drawing.Color.DodgerBlue;
- this.button48.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button48.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button48.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button48.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button48.ForeColor = System.Drawing.Color.White;
- this.button48.Location = new System.Drawing.Point(320, 75);
- this.button48.Margin = new System.Windows.Forms.Padding(2);
- this.button48.Name = "button48";
- this.button48.Size = new System.Drawing.Size(32, 29);
- this.button48.TabIndex = 58;
- this.button48.Text = "...";
- this.button48.UseVisualStyleBackColor = false;
- this.button48.Click += new System.EventHandler(this.button48_Click);
- //
- // txtRunKeyword
- //
- this.txtRunKeyword.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
- this.txtRunKeyword.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.txtRunKeyword.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.txtRunKeyword.ForeColor = System.Drawing.Color.White;
- this.txtRunKeyword.Location = new System.Drawing.Point(11, 130);
- this.txtRunKeyword.Margin = new System.Windows.Forms.Padding(2);
- this.txtRunKeyword.Name = "txtRunKeyword";
- this.txtRunKeyword.Size = new System.Drawing.Size(284, 29);
- this.txtRunKeyword.TabIndex = 9;
- //
- // label22
- //
- this.label22.AutoSize = true;
- this.label22.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label22.ForeColor = System.Drawing.Color.White;
- this.label22.Location = new System.Drawing.Point(7, 105);
- this.label22.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label22.Name = "label22";
- this.label22.Size = new System.Drawing.Size(79, 21);
- this.label22.TabIndex = 8;
- this.label22.Text = "Keyword:";
- //
- // txtRunFile
- //
- this.txtRunFile.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
- this.txtRunFile.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.txtRunFile.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.txtRunFile.ForeColor = System.Drawing.Color.White;
- this.txtRunFile.Location = new System.Drawing.Point(11, 75);
- this.txtRunFile.Margin = new System.Windows.Forms.Padding(2);
- this.txtRunFile.Name = "txtRunFile";
- this.txtRunFile.ReadOnly = true;
- this.txtRunFile.Size = new System.Drawing.Size(305, 29);
- this.txtRunFile.TabIndex = 7;
- //
- // label21
- //
- this.label21.AutoSize = true;
- this.label21.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label21.ForeColor = System.Drawing.Color.White;
- this.label21.Location = new System.Drawing.Point(7, 50);
- this.label21.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label21.Name = "label21";
- this.label21.Size = new System.Drawing.Size(102, 21);
- this.label21.TabIndex = 6;
- this.label21.Text = "File location:";
- //
- // label20
- //
- this.label20.AutoSize = true;
- this.label20.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label20.ForeColor = System.Drawing.Color.DodgerBlue;
- this.label20.Location = new System.Drawing.Point(6, 10);
- this.label20.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label20.Name = "label20";
- this.label20.Size = new System.Drawing.Size(298, 28);
- this.label20.TabIndex = 5;
- this.label20.Tag = "themeable";
- this.label20.Text = "Define your custom commands";
- //
- // optionsTab
- //
- this.optionsTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
- this.optionsTab.Controls.Add(this.btnChangelog);
- this.optionsTab.Controls.Add(this.btnUpdate);
- this.optionsTab.Controls.Add(this.btnResetConfig);
- this.optionsTab.Controls.Add(this.label27);
- this.optionsTab.Controls.Add(this.radioMinimal);
- this.optionsTab.Controls.Add(this.radioCaramel);
- this.optionsTab.Controls.Add(this.radioLime);
- this.optionsTab.Controls.Add(this.radioMagma);
- this.optionsTab.Controls.Add(this.radioOcean);
- this.optionsTab.Controls.Add(this.radioZerg);
- this.optionsTab.Location = new System.Drawing.Point(4, 24);
- this.optionsTab.Margin = new System.Windows.Forms.Padding(2);
- this.optionsTab.Name = "optionsTab";
- this.optionsTab.Padding = new System.Windows.Forms.Padding(2);
- this.optionsTab.Size = new System.Drawing.Size(688, 513);
- this.optionsTab.TabIndex = 6;
- this.optionsTab.Text = "Options";
- //
- // btnChangelog
- //
- this.btnChangelog.BackColor = System.Drawing.Color.DodgerBlue;
- this.btnChangelog.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.btnChangelog.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.btnChangelog.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.btnChangelog.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.btnChangelog.ForeColor = System.Drawing.Color.White;
- this.btnChangelog.Location = new System.Drawing.Point(11, 199);
- this.btnChangelog.Margin = new System.Windows.Forms.Padding(2);
- this.btnChangelog.Name = "btnChangelog";
- this.btnChangelog.Size = new System.Drawing.Size(155, 31);
- this.btnChangelog.TabIndex = 58;
- this.btnChangelog.Text = "View changes";
- this.btnChangelog.UseVisualStyleBackColor = false;
- this.btnChangelog.Click += new System.EventHandler(this.btnChangelog_Click);
- //
- // btnUpdate
- //
- this.btnUpdate.BackColor = System.Drawing.Color.DodgerBlue;
- this.btnUpdate.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.btnUpdate.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.btnUpdate.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.btnUpdate.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.btnUpdate.ForeColor = System.Drawing.Color.White;
- this.btnUpdate.Location = new System.Drawing.Point(11, 164);
- this.btnUpdate.Margin = new System.Windows.Forms.Padding(2);
- this.btnUpdate.Name = "btnUpdate";
- this.btnUpdate.Size = new System.Drawing.Size(155, 31);
- this.btnUpdate.TabIndex = 57;
- this.btnUpdate.Text = "Check for update";
- this.btnUpdate.UseVisualStyleBackColor = false;
- this.btnUpdate.Click += new System.EventHandler(this.btnUpdate_Click);
- //
- // btnResetConfig
- //
- this.btnResetConfig.BackColor = System.Drawing.Color.DodgerBlue;
- this.btnResetConfig.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.btnResetConfig.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.btnResetConfig.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.btnResetConfig.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.btnResetConfig.ForeColor = System.Drawing.Color.White;
- this.btnResetConfig.Location = new System.Drawing.Point(11, 234);
- this.btnResetConfig.Margin = new System.Windows.Forms.Padding(2);
- this.btnResetConfig.Name = "btnResetConfig";
- this.btnResetConfig.Size = new System.Drawing.Size(155, 31);
- this.btnResetConfig.TabIndex = 56;
- this.btnResetConfig.Text = "Reset configuration";
- this.btnResetConfig.UseVisualStyleBackColor = false;
- this.btnResetConfig.Click += new System.EventHandler(this.btnResetConfig_Click);
- //
- // label27
- //
- this.label27.AutoSize = true;
- this.label27.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label27.ForeColor = System.Drawing.Color.DodgerBlue;
- this.label27.Location = new System.Drawing.Point(6, 10);
- this.label27.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label27.Name = "label27";
- this.label27.Size = new System.Drawing.Size(192, 28);
- this.label27.TabIndex = 55;
- this.label27.Tag = "themeable";
- this.label27.Text = "Choose your theme";
- //
- // radioMinimal
- //
- this.radioMinimal.AutoSize = true;
- this.radioMinimal.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.radioMinimal.ForeColor = System.Drawing.Color.Gray;
- this.radioMinimal.Location = new System.Drawing.Point(119, 111);
- this.radioMinimal.Margin = new System.Windows.Forms.Padding(2);
- this.radioMinimal.Name = "radioMinimal";
- this.radioMinimal.Size = new System.Drawing.Size(86, 25);
- this.radioMinimal.TabIndex = 53;
- this.radioMinimal.Text = "Minimal";
- this.radioMinimal.UseVisualStyleBackColor = true;
- this.radioMinimal.CheckedChanged += new System.EventHandler(this.radioMinimal_CheckedChanged);
- //
- // radioCaramel
- //
- this.radioCaramel.AutoSize = true;
- this.radioCaramel.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.radioCaramel.ForeColor = System.Drawing.Color.DarkOrange;
- this.radioCaramel.Location = new System.Drawing.Point(119, 50);
- this.radioCaramel.Margin = new System.Windows.Forms.Padding(2);
- this.radioCaramel.Name = "radioCaramel";
- this.radioCaramel.Size = new System.Drawing.Size(87, 25);
- this.radioCaramel.TabIndex = 52;
- this.radioCaramel.Text = "Caramel";
- this.radioCaramel.UseVisualStyleBackColor = true;
- this.radioCaramel.CheckedChanged += new System.EventHandler(this.radioCaramel_CheckedChanged);
- //
- // radioLime
- //
- this.radioLime.AutoSize = true;
- this.radioLime.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.radioLime.ForeColor = System.Drawing.Color.LimeGreen;
- this.radioLime.Location = new System.Drawing.Point(119, 81);
- this.radioLime.Margin = new System.Windows.Forms.Padding(2);
- this.radioLime.Name = "radioLime";
- this.radioLime.Size = new System.Drawing.Size(63, 25);
- this.radioLime.TabIndex = 51;
- this.radioLime.Text = "Lime";
- this.radioLime.UseVisualStyleBackColor = true;
- this.radioLime.CheckedChanged += new System.EventHandler(this.radioLime_CheckedChanged);
- //
- // radioMagma
- //
- this.radioMagma.AutoSize = true;
- this.radioMagma.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.radioMagma.ForeColor = System.Drawing.Color.Tomato;
- this.radioMagma.Location = new System.Drawing.Point(26, 81);
- this.radioMagma.Margin = new System.Windows.Forms.Padding(2);
- this.radioMagma.Name = "radioMagma";
- this.radioMagma.Size = new System.Drawing.Size(83, 25);
- this.radioMagma.TabIndex = 50;
- this.radioMagma.Text = "Magma";
- this.radioMagma.UseVisualStyleBackColor = true;
- this.radioMagma.CheckedChanged += new System.EventHandler(this.radioMagma_CheckedChanged);
- //
- // radioOcean
- //
- this.radioOcean.AutoSize = true;
- this.radioOcean.Checked = true;
- this.radioOcean.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.radioOcean.ForeColor = System.Drawing.Color.DodgerBlue;
- this.radioOcean.Location = new System.Drawing.Point(26, 50);
- this.radioOcean.Margin = new System.Windows.Forms.Padding(2);
- this.radioOcean.Name = "radioOcean";
- this.radioOcean.Size = new System.Drawing.Size(74, 25);
- this.radioOcean.TabIndex = 49;
- this.radioOcean.TabStop = true;
- this.radioOcean.Text = "Ocean";
- this.radioOcean.UseVisualStyleBackColor = true;
- this.radioOcean.CheckedChanged += new System.EventHandler(this.radioOcean_CheckedChanged);
- //
- // radioZerg
- //
- this.radioZerg.AutoSize = true;
- this.radioZerg.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.radioZerg.ForeColor = System.Drawing.Color.MediumOrchid;
- this.radioZerg.Location = new System.Drawing.Point(26, 111);
- this.radioZerg.Margin = new System.Windows.Forms.Padding(2);
- this.radioZerg.Name = "radioZerg";
- this.radioZerg.Size = new System.Drawing.Size(62, 25);
- this.radioZerg.TabIndex = 48;
- this.radioZerg.Text = "Zerg";
- this.radioZerg.UseVisualStyleBackColor = true;
- this.radioZerg.CheckedChanged += new System.EventHandler(this.radioZerg_CheckedChanged);
- //
- // defineCommandDialog
- //
- this.defineCommandDialog.Filter = "Executables [*.exe]|*.exe";
- this.defineCommandDialog.Title = "Optimizer | Select a file...";
- this.defineCommandDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.DefineCmd_FileOk);
- //
- // defineProgramDialog
- //
- this.defineProgramDialog.Filter = "Executables [*.exe]|*.exe";
- this.defineProgramDialog.Title = "Optimizer | Select a file...";
- this.defineProgramDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.DefineProgramDialog_FileOk);
- //
- // defineFolderDialog
- //
- this.defineFolderDialog.Description = "Optimizer | Select a folder...";
- //
- // defineFileDialog
- //
- this.defineFileDialog.Filter = "All files [*.*]|*.*";
- this.defineFileDialog.Title = "Optimizer | Select a file...";
- this.defineFileDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.DefineFileDialog_FileOk);
- //
- // DefineProgramIconDialog
- //
- this.DefineProgramIconDialog.Filter = "Icon [*.ico]|*.ico|Executable [*.exe]|*.exe";
- this.DefineProgramIconDialog.Title = "Optimizer | Select an icon or program...";
- this.DefineProgramIconDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.DefineProgramIconDialog_FileOk);
- //
- // DefineFolderIconDialog
- //
- this.DefineFolderIconDialog.Filter = "Icon [*.ico]|*.ico|Executable [*.exe]|*.exe";
- this.DefineFolderIconDialog.Title = "Optimizer | Select an icon or program...";
- this.DefineFolderIconDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.DefineFolderIconDialog_FileOk);
- //
- // DefineURLIconDialog
- //
- this.DefineURLIconDialog.Filter = "Icon [*.ico]|*.ico|Executable [*.exe]|*.exe";
- this.DefineURLIconDialog.Title = "Optimizer | Select an icon or program...";
- this.DefineURLIconDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.DefineURLIconDialog_FileOk);
- //
- // DefineFileIconDialog
- //
- this.DefineFileIconDialog.Filter = "Icon [*.ico]|*.ico|Executable [*.exe]|*.exe";
- this.DefineFileIconDialog.Title = "Optimizer | Select a file...";
- this.DefineFileIconDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.DefineFileIconDialog_FileOk);
- //
- // DefineCommandIconDialog
- //
- this.DefineCommandIconDialog.Filter = "Icon [*.ico]|*.ico|Executable [*.exe]|*.exe";
- this.DefineCommandIconDialog.Title = "Optimizer | Select an icon or program...";
- this.DefineCommandIconDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.DefineCommandIconDialog_FileOk);
- //
- // integratorTimer
- //
- this.integratorTimer.Interval = 5;
- this.integratorTimer.Tick += new System.EventHandler(this.integratorTimer_Tick);
- //
- // runDialogTime
- //
- this.runDialogTime.Interval = 5;
- this.runDialogTime.Tick += new System.EventHandler(this.runDialogTimer_Tick);
- //
- // MainForm
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
- this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
- this.ClientSize = new System.Drawing.Size(698, 607);
- this.Controls.Add(this.bpanel);
- this.Controls.Add(this.tpanel);
- this.DoubleBuffered = true;
- this.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.ForeColor = System.Drawing.Color.White;
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
- this.Name = "MainForm";
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
- this.Text = "Optimizer";
- this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Main_FormClosing);
- this.Load += new System.EventHandler(this.Main_Load);
- this.tpanel.ResumeLayout(false);
- this.tpanel.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
- this.bpanel.ResumeLayout(false);
- this.tabCollection.ResumeLayout(false);
- this.universalTab.ResumeLayout(false);
- this.universalTab.PerformLayout();
- this.windowsXTab.ResumeLayout(false);
- this.windowsXTab.PerformLayout();
- this.windowsVIIITab.ResumeLayout(false);
- this.modernAppsTab.ResumeLayout(false);
- this.modernAppsTab.PerformLayout();
- this.panelModernAppsList.ResumeLayout(false);
- this.cleanerTab.ResumeLayout(false);
- this.cleanerTab.PerformLayout();
- this.cleaningpanel.ResumeLayout(false);
- this.cleaningpanel.PerformLayout();
- this.panel1.ResumeLayout(false);
- this.panel1.PerformLayout();
- this.startupTab.ResumeLayout(false);
- this.startupTab.PerformLayout();
- this.panel3.ResumeLayout(false);
- this.registryFixerTab.ResumeLayout(false);
- this.registryFixerTab.PerformLayout();
- this.panel2.ResumeLayout(false);
- this.panel2.PerformLayout();
- this.hostsEditorTab.ResumeLayout(false);
- this.hostsEditorTab.PerformLayout();
- this.panel4.ResumeLayout(false);
- this.panel4.PerformLayout();
- this.panelList.ResumeLayout(false);
- this.integratorTab.ResumeLayout(false);
- this.synapse.ResumeLayout(false);
- this.integratorInfoTab.ResumeLayout(false);
- this.integratorInfoTab.PerformLayout();
- this.tabPage8.ResumeLayout(false);
- this.tabPage8.PerformLayout();
- this.itemnamegroup.ResumeLayout(false);
- this.itemnamegroup.PerformLayout();
- this.security.ResumeLayout(false);
- this.security.PerformLayout();
- this.itemposition.ResumeLayout(false);
- this.itemposition.PerformLayout();
- this.icontoaddgroup.ResumeLayout(false);
- this.icontoaddgroup.PerformLayout();
- this.itemtoaddgroup.ResumeLayout(false);
- this.itemtoaddgroup.PerformLayout();
- this.itemtype.ResumeLayout(false);
- this.itemtype.PerformLayout();
- this.tabPage9.ResumeLayout(false);
- this.tabPage9.PerformLayout();
- this.panel5.ResumeLayout(false);
- this.tabPage10.ResumeLayout(false);
- this.tabPage10.PerformLayout();
- this.tabPage11.ResumeLayout(false);
- this.tabPage11.PerformLayout();
- this.panel6.ResumeLayout(false);
- this.optionsTab.ResumeLayout(false);
- this.optionsTab.PerformLayout();
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.Panel tpanel;
- private System.Windows.Forms.Label txtBitness;
- private System.Windows.Forms.Label txtOS;
- private System.Windows.Forms.Label txtVersion;
- private System.Windows.Forms.PictureBox pictureBox1;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.Panel bpanel;
- private System.Windows.Forms.TabControl tabCollection;
- private System.Windows.Forms.TabPage universalTab;
- private System.Windows.Forms.Button button39;
- private System.Windows.Forms.TabPage windowsXTab;
- private System.Windows.Forms.Button button43;
- private System.Windows.Forms.Button button18;
- private System.Windows.Forms.TabPage windowsVIIITab;
- private System.Windows.Forms.Button button44;
- private System.Windows.Forms.TabPage cleanerTab;
- private System.Windows.Forms.CheckBox checkTemp;
- private System.Windows.Forms.CheckBox checkSelectAll;
- private System.Windows.Forms.Button button20;
- private System.Windows.Forms.CheckBox checkMediaCache;
- private System.Windows.Forms.CheckBox checkLogs;
- private System.Windows.Forms.CheckBox checkBin;
- private System.Windows.Forms.CheckBox checkPrefetch;
- private System.Windows.Forms.CheckBox checkMiniDumps;
- private System.Windows.Forms.CheckBox checkFileZilla;
- private System.Windows.Forms.CheckBox checkUTorrent;
- private System.Windows.Forms.Panel panel1;
- private System.Windows.Forms.Label label4;
- private System.Windows.Forms.ProgressBar progress2;
- private System.Windows.Forms.TabPage startupTab;
- private System.Windows.Forms.Label label5;
- private System.Windows.Forms.Button button32;
- private System.Windows.Forms.Button button22;
- private System.Windows.Forms.Label label6;
- private System.Windows.Forms.TabPage registryFixerTab;
- private System.Windows.Forms.Label label7;
- private System.Windows.Forms.Button button33;
- private System.Windows.Forms.Panel panel2;
- private System.Windows.Forms.CheckBox checkRegistryEditor;
- private System.Windows.Forms.CheckBox checkEnableAll;
- private System.Windows.Forms.CheckBox checkContextMenu;
- private System.Windows.Forms.CheckBox checkTaskManager;
- private System.Windows.Forms.CheckBox checkCommandPrompt;
- private System.Windows.Forms.CheckBox checkFirewall;
- private System.Windows.Forms.CheckBox checkRunDialog;
- private System.Windows.Forms.CheckBox checkFolderOptions;
- private System.Windows.Forms.CheckBox checkControlPanel;
- private System.Windows.Forms.CheckBox checkRestartExplorer;
- private System.Windows.Forms.Panel panel3;
- private System.Windows.Forms.Label label8;
- private System.Windows.Forms.ListView listStartupItems;
- private System.Windows.Forms.ColumnHeader columnHeader1;
- private System.Windows.Forms.ColumnHeader columnHeader2;
- private System.Windows.Forms.Button button37;
- private System.Windows.Forms.Button button31;
- private System.Windows.Forms.ColumnHeader columnHeader3;
- private System.Windows.Forms.TabPage hostsEditorTab;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.LinkLabel linkLabel2;
- private System.Windows.Forms.LinkLabel linkLabel3;
- private System.Windows.Forms.Label label9;
- private System.Windows.Forms.LinkLabel linkLabel4;
- private System.Windows.Forms.Label label10;
- private System.Windows.Forms.ListBox listHostEntries;
- private System.Windows.Forms.Panel panel4;
- private System.Windows.Forms.Button button46;
- private System.Windows.Forms.Button button41;
- private System.Windows.Forms.Button button42;
- private System.Windows.Forms.TextBox txtDomain;
- private System.Windows.Forms.Label label12;
- private System.Windows.Forms.Label label11;
- private System.Windows.Forms.Button button47;
- private System.Windows.Forms.TextBox txtIP;
- private System.Windows.Forms.CheckBox checkErrorReports;
- private System.Windows.Forms.Panel cleaningpanel;
- private System.Windows.Forms.TabPage integratorTab;
- private System.Windows.Forms.TabControl synapse;
- private System.Windows.Forms.TabPage integratorInfoTab;
- private System.Windows.Forms.TabPage tabPage8;
- private System.Windows.Forms.TabPage tabPage9;
- private System.Windows.Forms.TabPage tabPage10;
- private System.Windows.Forms.TabPage tabPage11;
- private System.Windows.Forms.Label label19;
- private System.Windows.Forms.Label label18;
- private System.Windows.Forms.Label label17;
- private System.Windows.Forms.Label label16;
- private System.Windows.Forms.Label label15;
- private System.Windows.Forms.Label label14;
- private System.Windows.Forms.Label label13;
- private System.Windows.Forms.Button button48;
- private System.Windows.Forms.TextBox txtRunKeyword;
- private System.Windows.Forms.Label label22;
- private System.Windows.Forms.TextBox txtRunFile;
- private System.Windows.Forms.Label label21;
- private System.Windows.Forms.Label label20;
- private System.Windows.Forms.Button btnCreateCustomCommand;
- internal System.Windows.Forms.OpenFileDialog defineCommandDialog;
- private System.Windows.Forms.Button button58;
- private System.Windows.Forms.Button button59;
- private System.Windows.Forms.Button button55;
- private System.Windows.Forms.Button button57;
- private System.Windows.Forms.Button button52;
- private System.Windows.Forms.Button button53;
- private System.Windows.Forms.Button button49;
- private System.Windows.Forms.Button button51;
- private System.Windows.Forms.Button button56;
- private System.Windows.Forms.Button button54;
- private System.Windows.Forms.Label label24;
- private System.Windows.Forms.ListBox listDesktopItems;
- private System.Windows.Forms.Label label25;
- private System.Windows.Forms.Button button60;
- private System.Windows.Forms.Button button61;
- private System.Windows.Forms.Button button62;
- private System.Windows.Forms.GroupBox itemtype;
- private System.Windows.Forms.RadioButton radioCommand;
- private System.Windows.Forms.RadioButton radioProgram;
- private System.Windows.Forms.RadioButton radioFile;
- private System.Windows.Forms.RadioButton radioFolder;
- private System.Windows.Forms.RadioButton radioLink;
- private System.Windows.Forms.Label label26;
- private System.Windows.Forms.GroupBox icontoaddgroup;
- private System.Windows.Forms.CheckBox checkDefaultIcon;
- private System.Windows.Forms.Button btnBrowseIcon;
- private System.Windows.Forms.TextBox txtIcon;
- private System.Windows.Forms.GroupBox itemtoaddgroup;
- private System.Windows.Forms.Button btnBrowseItem;
- private System.Windows.Forms.TextBox txtItem;
- private System.Windows.Forms.GroupBox security;
- private System.Windows.Forms.CheckBox checkShift;
- private System.Windows.Forms.GroupBox itemposition;
- private System.Windows.Forms.RadioButton radioTop;
- private System.Windows.Forms.RadioButton radioMiddle;
- private System.Windows.Forms.RadioButton radioBottom;
- private System.Windows.Forms.GroupBox itemnamegroup;
- private System.Windows.Forms.TextBox txtItemName;
- private System.Windows.Forms.Button btnAddItem;
- internal System.Windows.Forms.OpenFileDialog defineProgramDialog;
- internal System.Windows.Forms.FolderBrowserDialog defineFolderDialog;
- internal System.Windows.Forms.OpenFileDialog defineFileDialog;
- internal System.Windows.Forms.OpenFileDialog DefineProgramIconDialog;
- internal System.Windows.Forms.OpenFileDialog DefineFolderIconDialog;
- internal System.Windows.Forms.OpenFileDialog DefineURLIconDialog;
- internal System.Windows.Forms.OpenFileDialog DefineFileIconDialog;
- internal System.Windows.Forms.OpenFileDialog DefineCommandIconDialog;
- private System.Windows.Forms.Timer integratorTimer;
- private System.Windows.Forms.Timer runDialogTime;
- private System.Windows.Forms.Button button64;
- private System.Windows.Forms.Button button65;
- private System.Windows.Forms.Button button66;
- private System.Windows.Forms.TabPage optionsTab;
- private System.Windows.Forms.RadioButton radioMinimal;
- private System.Windows.Forms.RadioButton radioCaramel;
- private System.Windows.Forms.RadioButton radioLime;
- private System.Windows.Forms.RadioButton radioMagma;
- private System.Windows.Forms.RadioButton radioOcean;
- private System.Windows.Forms.RadioButton radioZerg;
- private System.Windows.Forms.Label label27;
- private System.Windows.Forms.ListBox listCustomCommands;
- private System.Windows.Forms.Label label23;
- private System.Windows.Forms.Button button26;
- private System.Windows.Forms.Button button8;
- private System.Windows.Forms.Panel panel5;
- private System.Windows.Forms.Panel panel6;
- private System.Windows.Forms.Panel panelList;
- private System.Windows.Forms.TabPage modernAppsTab;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Panel panelModernAppsList;
- private System.Windows.Forms.CheckedListBox listModernApps;
- private System.Windows.Forms.Button button74;
- private System.Windows.Forms.Button button75;
- private System.Windows.Forms.Label label28;
- private System.Windows.Forms.CheckBox chkSelectAllModernApps;
- private ToggleSwitch toggleSwitch1;
- private ToggleSwitch toggleSwitch3;
- private ToggleSwitch toggleSwitch2;
- private ToggleSwitch toggleSwitch6;
- private ToggleSwitch toggleSwitch5;
- private ToggleSwitch toggleSwitch4;
- private ToggleSwitch toggleSwitch12;
- private ToggleSwitch toggleSwitch11;
- private ToggleSwitch toggleSwitch10;
- private ToggleSwitch toggleSwitch9;
- private ToggleSwitch toggleSwitch8;
- private ToggleSwitch toggleSwitch13;
- private ToggleSwitch toggleSwitch15;
- private ToggleSwitch toggleSwitch14;
- private ToggleSwitch toggleSwitch20;
- private ToggleSwitch toggleSwitch21;
- private ToggleSwitch toggleSwitch23;
- private ToggleSwitch toggleSwitch24;
- private ToggleSwitch toggleSwitch25;
- private ToggleSwitch toggleSwitch26;
- private ToggleSwitch toggleSwitch19;
- private ToggleSwitch toggleSwitch18;
- private ToggleSwitch toggleSwitch17;
- private ToggleSwitch toggleSwitch16;
- private ToggleSwitch toggleSwitch27;
- private ToggleSwitch toggleSwitch28;
- private ToggleSwitch toggleSwitch29;
- private ToggleSwitch toggleSwitch30;
- private ToggleSwitch toggleSwitch22;
- private System.Windows.Forms.Button btnResetConfig;
- private ToggleSwitch toggleSwitch31;
- private ToggleSwitch toggleSwitch32;
- private System.Windows.Forms.Button btnUpdate;
- private System.Windows.Forms.Button btnChangelog;
- private ToggleSwitch toggleSwitch33;
- private ToggleSwitch toggleSwitch34;
- private ToggleSwitch toggleSwitch35;
- private ToggleSwitch toggleSwitch36;
- private System.Windows.Forms.CheckBox chkReadOnly;
- private System.Windows.Forms.Label label29;
- private ToggleSwitch toggleSwitch37;
- private ToggleSwitch toggleSwitch38;
- private ToggleSwitch toggleSwitch39;
- private System.Windows.Forms.CheckBox chkBlock;
- private ToggleSwitch toggleSwitch40;
- private System.Windows.Forms.Button button1;
- private System.Windows.Forms.Label label31;
- private System.Windows.Forms.Label label30;
- private System.Windows.Forms.Button button4;
- private System.Windows.Forms.Button button3;
- private System.Windows.Forms.Button button2;
- private System.Windows.Forms.Label label33;
- private System.Windows.Forms.Label label35;
- private System.Windows.Forms.Label label34;
- private System.Windows.Forms.Label label36;
- private System.Windows.Forms.Label label37;
- private System.Windows.Forms.Label label38;
- private System.Windows.Forms.Label label40;
- private System.Windows.Forms.Label label39;
- private System.Windows.Forms.Label label32;
- }
- }
|