123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456 |
- 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.bittxt = new System.Windows.Forms.Label();
- this.ostxt = new System.Windows.Forms.Label();
- this.label1 = 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.aio = new System.Windows.Forms.TabControl();
- this.universaltab = new System.Windows.Forms.TabPage();
- this.button34 = new System.Windows.Forms.Button();
- this.button6 = new System.Windows.Forms.Button();
- this.button5 = new System.Windows.Forms.Button();
- this.button4 = new System.Windows.Forms.Button();
- this.button39 = new System.Windows.Forms.Button();
- this.button17 = new System.Windows.Forms.Button();
- this.button16 = new System.Windows.Forms.Button();
- this.button15 = new System.Windows.Forms.Button();
- this.button14 = new System.Windows.Forms.Button();
- this.button13 = new System.Windows.Forms.Button();
- this.button10 = new System.Windows.Forms.Button();
- this.button2 = new System.Windows.Forms.Button();
- this.button1 = new System.Windows.Forms.Button();
- this.button3 = new System.Windows.Forms.Button();
- this.tab10 = new System.Windows.Forms.TabPage();
- this.button68 = new System.Windows.Forms.Button();
- this.button67 = new System.Windows.Forms.Button();
- this.button7 = new System.Windows.Forms.Button();
- this.button63 = new System.Windows.Forms.Button();
- this.button40 = new System.Windows.Forms.Button();
- this.button11 = new System.Windows.Forms.Button();
- this.button43 = new System.Windows.Forms.Button();
- this.button30 = new System.Windows.Forms.Button();
- this.button29 = new System.Windows.Forms.Button();
- this.button28 = new System.Windows.Forms.Button();
- this.button27 = new System.Windows.Forms.Button();
- this.button25 = new System.Windows.Forms.Button();
- this.button24 = new System.Windows.Forms.Button();
- this.button23 = new System.Windows.Forms.Button();
- this.button21 = new System.Windows.Forms.Button();
- this.button18 = new System.Windows.Forms.Button();
- this.button9 = new System.Windows.Forms.Button();
- this.tab8 = new System.Windows.Forms.TabPage();
- this.button12 = new System.Windows.Forms.Button();
- this.button44 = new System.Windows.Forms.Button();
- this.button35 = new System.Windows.Forms.Button();
- this.button36 = new System.Windows.Forms.Button();
- this.tab7 = new System.Windows.Forms.TabPage();
- this.button19 = new System.Windows.Forms.Button();
- this.button45 = new System.Windows.Forms.Button();
- this.button38 = new System.Windows.Forms.Button();
- this.tabPage3 = 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.errorreports = new System.Windows.Forms.CheckBox();
- this.ftpservers = new System.Windows.Forms.CheckBox();
- this.selectall = new System.Windows.Forms.CheckBox();
- this.button20 = new System.Windows.Forms.Button();
- this.mediaplayercache = new System.Windows.Forms.CheckBox();
- this.tempfiles = new System.Windows.Forms.CheckBox();
- this.logfiles = new System.Windows.Forms.CheckBox();
- this.utorrentcache = new System.Windows.Forms.CheckBox();
- this.emptytrash = new System.Windows.Forms.CheckBox();
- this.bsoddumps = new System.Windows.Forms.CheckBox();
- this.prefetchcache = new System.Windows.Forms.CheckBox();
- this.tabPage4 = 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.tabPage5 = 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.restartexplorer = new System.Windows.Forms.CheckBox();
- this.regeditor = new System.Windows.Forms.CheckBox();
- this.enableall = new System.Windows.Forms.CheckBox();
- this.rightmenu = new System.Windows.Forms.CheckBox();
- this.taskmgr = new System.Windows.Forms.CheckBox();
- this.cmdp = new System.Windows.Forms.CheckBox();
- this.wfirewall = new System.Windows.Forms.CheckBox();
- this.rundialog = new System.Windows.Forms.CheckBox();
- this.foldero = new System.Windows.Forms.CheckBox();
- this.controlp = new System.Windows.Forms.CheckBox();
- this.label7 = new System.Windows.Forms.Label();
- this.tabPage1 = new System.Windows.Forms.TabPage();
- this.panel4 = new System.Windows.Forms.Panel();
- 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.hl = new System.Windows.Forms.ListBox();
- 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.tabPage6 = new System.Windows.Forms.TabPage();
- this.synapse = new System.Windows.Forms.TabControl();
- this.tabPage7 = 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.addmodifybtn = new System.Windows.Forms.Button();
- this.itemnamegroup = new System.Windows.Forms.GroupBox();
- this.itemname = new System.Windows.Forms.TextBox();
- this.security = new System.Windows.Forms.GroupBox();
- this.shiftkey = new System.Windows.Forms.CheckBox();
- this.itemposition = new System.Windows.Forms.GroupBox();
- this.topposition = new System.Windows.Forms.RadioButton();
- this.midposition = new System.Windows.Forms.RadioButton();
- this.botposition = new System.Windows.Forms.RadioButton();
- this.icontoaddgroup = new System.Windows.Forms.GroupBox();
- this.defaulticon = new System.Windows.Forms.CheckBox();
- this.browseicon = new System.Windows.Forms.Button();
- this.icontoadd = new System.Windows.Forms.TextBox();
- this.itemtoaddgroup = new System.Windows.Forms.GroupBox();
- this.browseitem = new System.Windows.Forms.Button();
- this.itemtoadd = new System.Windows.Forms.TextBox();
- this.itemtype = new System.Windows.Forms.GroupBox();
- this.typecmd = new System.Windows.Forms.RadioButton();
- this.typeprogram = new System.Windows.Forms.RadioButton();
- this.typefolder = new System.Windows.Forms.RadioButton();
- this.typefile = new System.Windows.Forms.RadioButton();
- this.typeurl = 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.button50 = new System.Windows.Forms.Button();
- this.button48 = new System.Windows.Forms.Button();
- this.runkey = new System.Windows.Forms.TextBox();
- this.label22 = new System.Windows.Forms.Label();
- this.runfile = new System.Windows.Forms.TextBox();
- this.label21 = new System.Windows.Forms.Label();
- this.label20 = new System.Windows.Forms.Label();
- this.tabPage2 = new System.Windows.Forms.TabPage();
- this.label27 = new System.Windows.Forms.Label();
- this.minimaltheme = new System.Windows.Forms.RadioButton();
- this.carameltheme = new System.Windows.Forms.RadioButton();
- this.limetheme = new System.Windows.Forms.RadioButton();
- this.magmatheme = new System.Windows.Forms.RadioButton();
- this.oceantheme = new System.Windows.Forms.RadioButton();
- this.zergtheme = new System.Windows.Forms.RadioButton();
- this.DefineCmdDialog = 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.SynapseValidator = new System.Windows.Forms.Timer(this.components);
- this.iRunValidator = new System.Windows.Forms.Timer(this.components);
- this.tpanel.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
- this.bpanel.SuspendLayout();
- this.aio.SuspendLayout();
- this.universaltab.SuspendLayout();
- this.tab10.SuspendLayout();
- this.tab8.SuspendLayout();
- this.tab7.SuspendLayout();
- this.tabPage3.SuspendLayout();
- this.cleaningpanel.SuspendLayout();
- this.panel1.SuspendLayout();
- this.tabPage4.SuspendLayout();
- this.panel3.SuspendLayout();
- this.tabPage5.SuspendLayout();
- this.panel2.SuspendLayout();
- this.tabPage1.SuspendLayout();
- this.panel4.SuspendLayout();
- this.tabPage6.SuspendLayout();
- this.synapse.SuspendLayout();
- this.tabPage7.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.tabPage2.SuspendLayout();
- this.SuspendLayout();
- //
- // tpanel
- //
- this.tpanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.tpanel.Controls.Add(this.bittxt);
- this.tpanel.Controls.Add(this.ostxt);
- this.tpanel.Controls.Add(this.label1);
- 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(872, 80);
- this.tpanel.TabIndex = 1;
- //
- // bittxt
- //
- this.bittxt.AutoSize = true;
- this.bittxt.ForeColor = System.Drawing.Color.Silver;
- this.bittxt.Location = new System.Drawing.Point(235, 46);
- this.bittxt.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.bittxt.Name = "bittxt";
- this.bittxt.Size = new System.Drawing.Size(56, 20);
- this.bittxt.TabIndex = 4;
- this.bittxt.Text = "bitness";
- //
- // ostxt
- //
- this.ostxt.AutoSize = true;
- this.ostxt.ForeColor = System.Drawing.Color.Silver;
- this.ostxt.Location = new System.Drawing.Point(235, 26);
- this.ostxt.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.ostxt.Name = "ostxt";
- this.ostxt.Size = new System.Drawing.Size(24, 20);
- this.ostxt.TabIndex = 3;
- this.ostxt.Text = "os";
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.ForeColor = System.Drawing.Color.Silver;
- this.label1.Location = new System.Drawing.Point(86, 46);
- this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(64, 20);
- this.label1.TabIndex = 1;
- this.label1.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(12, 12);
- this.pictureBox1.Margin = new System.Windows.Forms.Padding(2);
- this.pictureBox1.Name = "pictureBox1";
- this.pictureBox1.Size = new System.Drawing.Size(55, 54);
- 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(84, 9);
- this.label2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(122, 32);
- this.label2.TabIndex = 2;
- this.label2.Text = "Optimizer";
- //
- // bpanel
- //
- this.bpanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.bpanel.Controls.Add(this.aio);
- this.bpanel.Dock = System.Windows.Forms.DockStyle.Fill;
- this.bpanel.Location = new System.Drawing.Point(0, 80);
- this.bpanel.Margin = new System.Windows.Forms.Padding(2);
- this.bpanel.Name = "bpanel";
- this.bpanel.Size = new System.Drawing.Size(872, 670);
- this.bpanel.TabIndex = 2;
- //
- // aio
- //
- this.aio.Controls.Add(this.universaltab);
- this.aio.Controls.Add(this.tab10);
- this.aio.Controls.Add(this.tab8);
- this.aio.Controls.Add(this.tab7);
- this.aio.Controls.Add(this.tabPage3);
- this.aio.Controls.Add(this.tabPage4);
- this.aio.Controls.Add(this.tabPage5);
- this.aio.Controls.Add(this.tabPage1);
- this.aio.Controls.Add(this.tabPage6);
- this.aio.Controls.Add(this.tabPage2);
- this.aio.Dock = System.Windows.Forms.DockStyle.Fill;
- this.aio.Location = new System.Drawing.Point(0, 0);
- this.aio.Margin = new System.Windows.Forms.Padding(2);
- this.aio.Name = "aio";
- this.aio.SelectedIndex = 0;
- this.aio.Size = new System.Drawing.Size(870, 668);
- this.aio.TabIndex = 0;
- this.aio.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.button34);
- this.universaltab.Controls.Add(this.button6);
- this.universaltab.Controls.Add(this.button5);
- this.universaltab.Controls.Add(this.button4);
- this.universaltab.Controls.Add(this.button39);
- this.universaltab.Controls.Add(this.button17);
- this.universaltab.Controls.Add(this.button16);
- this.universaltab.Controls.Add(this.button15);
- this.universaltab.Controls.Add(this.button14);
- this.universaltab.Controls.Add(this.button13);
- this.universaltab.Controls.Add(this.button10);
- this.universaltab.Controls.Add(this.button2);
- this.universaltab.Controls.Add(this.button1);
- this.universaltab.Controls.Add(this.button3);
- this.universaltab.Location = new System.Drawing.Point(4, 29);
- 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(862, 635);
- this.universaltab.TabIndex = 0;
- this.universaltab.Text = "Universal";
- //
- // button34
- //
- this.button34.BackColor = System.Drawing.Color.DodgerBlue;
- this.button34.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button34.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button34.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button34.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button34.ForeColor = System.Drawing.Color.White;
- this.button34.Location = new System.Drawing.Point(18, 244);
- this.button34.Margin = new System.Windows.Forms.Padding(2);
- this.button34.Name = "button34";
- this.button34.Size = new System.Drawing.Size(234, 39);
- this.button34.TabIndex = 34;
- this.button34.Text = "Disable Media Player Sharing";
- this.button34.UseVisualStyleBackColor = false;
- this.button34.Click += new System.EventHandler(this.button34_Click);
- //
- // button6
- //
- this.button6.BackColor = System.Drawing.Color.DodgerBlue;
- this.button6.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button6.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button6.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button6.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button6.ForeColor = System.Drawing.Color.White;
- this.button6.Location = new System.Drawing.Point(18, 305);
- this.button6.Margin = new System.Windows.Forms.Padding(2);
- this.button6.Name = "button6";
- this.button6.Size = new System.Drawing.Size(118, 39);
- this.button6.TabIndex = 33;
- this.button6.Text = "Apply All";
- this.button6.UseVisualStyleBackColor = false;
- this.button6.Click += new System.EventHandler(this.button6_Click);
- //
- // button5
- //
- this.button5.BackColor = System.Drawing.Color.DodgerBlue;
- this.button5.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button5.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button5.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button5.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button5.ForeColor = System.Drawing.Color.White;
- this.button5.Location = new System.Drawing.Point(258, 244);
- this.button5.Margin = new System.Windows.Forms.Padding(2);
- this.button5.Name = "button5";
- this.button5.Size = new System.Drawing.Size(234, 39);
- this.button5.TabIndex = 32;
- this.button5.Text = "Disable Office Telemetry";
- this.button5.UseVisualStyleBackColor = false;
- this.button5.Click += new System.EventHandler(this.button5_Click);
- //
- // 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(258, 199);
- this.button4.Margin = new System.Windows.Forms.Padding(2);
- this.button4.Name = "button4";
- this.button4.Size = new System.Drawing.Size(234, 39);
- this.button4.TabIndex = 31;
- this.button4.Text = "Disable Telemetry Tasks";
- this.button4.UseVisualStyleBackColor = false;
- this.button4.Click += new System.EventHandler(this.button4_Click);
- //
- // 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(141, 305);
- this.button39.Margin = new System.Windows.Forms.Padding(2);
- this.button39.Name = "button39";
- this.button39.Size = new System.Drawing.Size(111, 39);
- this.button39.TabIndex = 30;
- this.button39.Text = "Restart";
- this.button39.UseVisualStyleBackColor = false;
- this.button39.Click += new System.EventHandler(this.button39_Click);
- //
- // button17
- //
- this.button17.BackColor = System.Drawing.Color.DodgerBlue;
- this.button17.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button17.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button17.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button17.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button17.ForeColor = System.Drawing.Color.White;
- this.button17.Location = new System.Drawing.Point(18, 154);
- this.button17.Margin = new System.Windows.Forms.Padding(2);
- this.button17.Name = "button17";
- this.button17.Size = new System.Drawing.Size(234, 39);
- this.button17.TabIndex = 28;
- this.button17.Text = "Disable System Restore";
- this.button17.UseVisualStyleBackColor = false;
- this.button17.Click += new System.EventHandler(this.button17_Click);
- //
- // button16
- //
- this.button16.BackColor = System.Drawing.Color.DodgerBlue;
- this.button16.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button16.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button16.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button16.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button16.ForeColor = System.Drawing.Color.White;
- this.button16.Location = new System.Drawing.Point(258, 64);
- this.button16.Margin = new System.Windows.Forms.Padding(2);
- this.button16.Name = "button16";
- this.button16.Size = new System.Drawing.Size(234, 39);
- this.button16.TabIndex = 27;
- this.button16.Text = "Disable Error Reporting";
- this.button16.UseVisualStyleBackColor = false;
- this.button16.Click += new System.EventHandler(this.button16_Click);
- //
- // button15
- //
- this.button15.BackColor = System.Drawing.Color.DodgerBlue;
- this.button15.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button15.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button15.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button15.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button15.ForeColor = System.Drawing.Color.White;
- this.button15.Location = new System.Drawing.Point(18, 199);
- this.button15.Margin = new System.Windows.Forms.Padding(2);
- this.button15.Name = "button15";
- this.button15.Size = new System.Drawing.Size(234, 39);
- this.button15.TabIndex = 26;
- this.button15.Text = "Disable Print Service";
- this.button15.UseVisualStyleBackColor = false;
- this.button15.Click += new System.EventHandler(this.button15_Click);
- //
- // button14
- //
- this.button14.BackColor = System.Drawing.Color.DodgerBlue;
- this.button14.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button14.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button14.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button14.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button14.ForeColor = System.Drawing.Color.White;
- this.button14.Location = new System.Drawing.Point(258, 154);
- this.button14.Margin = new System.Windows.Forms.Padding(2);
- this.button14.Name = "button14";
- this.button14.Size = new System.Drawing.Size(234, 39);
- this.button14.TabIndex = 25;
- this.button14.Text = "Disable Superfetch";
- this.button14.UseVisualStyleBackColor = false;
- this.button14.Click += new System.EventHandler(this.button14_Click);
- //
- // button13
- //
- this.button13.BackColor = System.Drawing.Color.DodgerBlue;
- this.button13.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button13.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button13.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button13.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button13.ForeColor = System.Drawing.Color.White;
- this.button13.Location = new System.Drawing.Point(258, 109);
- this.button13.Margin = new System.Windows.Forms.Padding(2);
- this.button13.Name = "button13";
- this.button13.Size = new System.Drawing.Size(234, 39);
- this.button13.TabIndex = 24;
- this.button13.Text = "Disable HomeGroup";
- this.button13.UseVisualStyleBackColor = false;
- this.button13.Click += new System.EventHandler(this.button13_Click);
- //
- // button10
- //
- this.button10.BackColor = System.Drawing.Color.DodgerBlue;
- this.button10.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button10.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button10.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button10.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button10.ForeColor = System.Drawing.Color.White;
- this.button10.Location = new System.Drawing.Point(258, 20);
- this.button10.Margin = new System.Windows.Forms.Padding(2);
- this.button10.Name = "button10";
- this.button10.Size = new System.Drawing.Size(234, 39);
- this.button10.TabIndex = 21;
- this.button10.Text = "Block Skype ads";
- this.button10.UseVisualStyleBackColor = false;
- this.button10.Click += new System.EventHandler(this.button10_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(18, 64);
- this.button2.Margin = new System.Windows.Forms.Padding(2);
- this.button2.Name = "button2";
- this.button2.Size = new System.Drawing.Size(234, 39);
- this.button2.TabIndex = 14;
- this.button2.Text = "Disable Network Throttling";
- 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(18, 109);
- this.button1.Margin = new System.Windows.Forms.Padding(2);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(234, 39);
- this.button1.TabIndex = 13;
- this.button1.Text = "Disable Windows Defender";
- this.button1.UseVisualStyleBackColor = false;
- this.button1.Click += new System.EventHandler(this.button1_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(18, 20);
- this.button3.Margin = new System.Windows.Forms.Padding(2);
- this.button3.Name = "button3";
- this.button3.Size = new System.Drawing.Size(234, 39);
- this.button3.TabIndex = 12;
- this.button3.Text = "Performance Tweaks";
- this.button3.UseVisualStyleBackColor = false;
- this.button3.Click += new System.EventHandler(this.button3_Click);
- //
- // tab10
- //
- this.tab10.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
- this.tab10.Controls.Add(this.button68);
- this.tab10.Controls.Add(this.button67);
- this.tab10.Controls.Add(this.button7);
- this.tab10.Controls.Add(this.button63);
- this.tab10.Controls.Add(this.button40);
- this.tab10.Controls.Add(this.button11);
- this.tab10.Controls.Add(this.button43);
- this.tab10.Controls.Add(this.button30);
- this.tab10.Controls.Add(this.button29);
- this.tab10.Controls.Add(this.button28);
- this.tab10.Controls.Add(this.button27);
- this.tab10.Controls.Add(this.button25);
- this.tab10.Controls.Add(this.button24);
- this.tab10.Controls.Add(this.button23);
- this.tab10.Controls.Add(this.button21);
- this.tab10.Controls.Add(this.button18);
- this.tab10.Controls.Add(this.button9);
- this.tab10.Location = new System.Drawing.Point(4, 29);
- this.tab10.Margin = new System.Windows.Forms.Padding(2);
- this.tab10.Name = "tab10";
- this.tab10.Padding = new System.Windows.Forms.Padding(2);
- this.tab10.Size = new System.Drawing.Size(862, 635);
- this.tab10.TabIndex = 1;
- this.tab10.Text = "Windows 10";
- //
- // button68
- //
- this.button68.BackColor = System.Drawing.Color.DodgerBlue;
- this.button68.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button68.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button68.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button68.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button68.ForeColor = System.Drawing.Color.White;
- this.button68.Location = new System.Drawing.Point(18, 291);
- this.button68.Margin = new System.Windows.Forms.Padding(2);
- this.button68.Name = "button68";
- this.button68.Size = new System.Drawing.Size(234, 39);
- this.button68.TabIndex = 39;
- this.button68.Text = "Disable Start Menu ads";
- this.button68.UseVisualStyleBackColor = false;
- this.button68.Click += new System.EventHandler(this.button68_Click);
- //
- // button67
- //
- this.button67.BackColor = System.Drawing.Color.DodgerBlue;
- this.button67.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button67.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button67.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button67.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button67.ForeColor = System.Drawing.Color.White;
- this.button67.Location = new System.Drawing.Point(258, 291);
- this.button67.Margin = new System.Windows.Forms.Padding(2);
- this.button67.Name = "button67";
- this.button67.Size = new System.Drawing.Size(234, 39);
- this.button67.TabIndex = 38;
- this.button67.Text = "Disable Silent App Install";
- this.button67.UseVisualStyleBackColor = false;
- this.button67.Click += new System.EventHandler(this.button67_Click);
- //
- // button7
- //
- this.button7.BackColor = System.Drawing.Color.DodgerBlue;
- this.button7.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button7.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button7.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button7.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button7.ForeColor = System.Drawing.Color.White;
- this.button7.Location = new System.Drawing.Point(18, 245);
- this.button7.Margin = new System.Windows.Forms.Padding(2);
- this.button7.Name = "button7";
- this.button7.Size = new System.Drawing.Size(234, 39);
- this.button7.TabIndex = 37;
- this.button7.Text = "Hide Sync Provider ads";
- this.button7.UseVisualStyleBackColor = false;
- this.button7.Click += new System.EventHandler(this.button7_Click);
- //
- // button63
- //
- this.button63.BackColor = System.Drawing.Color.DodgerBlue;
- this.button63.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button63.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button63.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button63.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button63.ForeColor = System.Drawing.Color.White;
- this.button63.Location = new System.Drawing.Point(18, 110);
- this.button63.Margin = new System.Windows.Forms.Padding(2);
- this.button63.Name = "button63";
- this.button63.Size = new System.Drawing.Size(234, 39);
- this.button63.TabIndex = 36;
- this.button63.Text = "Disable Game Bar";
- this.button63.UseVisualStyleBackColor = false;
- this.button63.Click += new System.EventHandler(this.button63_Click);
- //
- // button40
- //
- this.button40.BackColor = System.Drawing.Color.DodgerBlue;
- this.button40.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button40.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button40.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button40.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button40.ForeColor = System.Drawing.Color.White;
- this.button40.Location = new System.Drawing.Point(258, 245);
- this.button40.Margin = new System.Windows.Forms.Padding(2);
- this.button40.Name = "button40";
- this.button40.Size = new System.Drawing.Size(234, 39);
- this.button40.TabIndex = 35;
- this.button40.Text = "Disable Privacy Options";
- this.button40.UseVisualStyleBackColor = false;
- this.button40.Click += new System.EventHandler(this.button40_Click);
- //
- // button11
- //
- this.button11.BackColor = System.Drawing.Color.DodgerBlue;
- this.button11.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button11.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button11.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button11.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button11.ForeColor = System.Drawing.Color.White;
- this.button11.Location = new System.Drawing.Point(18, 398);
- this.button11.Margin = new System.Windows.Forms.Padding(2);
- this.button11.Name = "button11";
- this.button11.Size = new System.Drawing.Size(118, 39);
- this.button11.TabIndex = 34;
- this.button11.Text = "Apply All";
- this.button11.UseVisualStyleBackColor = false;
- this.button11.Click += new System.EventHandler(this.button11_Click);
- //
- // 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(141, 398);
- this.button43.Margin = new System.Windows.Forms.Padding(2);
- this.button43.Name = "button43";
- this.button43.Size = new System.Drawing.Size(111, 39);
- this.button43.TabIndex = 31;
- this.button43.Text = "Restart";
- this.button43.UseVisualStyleBackColor = false;
- this.button43.Click += new System.EventHandler(this.button43_Click);
- //
- // button30
- //
- this.button30.BackColor = System.Drawing.Color.DodgerBlue;
- this.button30.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button30.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button30.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button30.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button30.ForeColor = System.Drawing.Color.White;
- this.button30.Location = new System.Drawing.Point(258, 200);
- this.button30.Margin = new System.Windows.Forms.Padding(2);
- this.button30.Name = "button30";
- this.button30.Size = new System.Drawing.Size(234, 39);
- this.button30.TabIndex = 26;
- this.button30.Text = "Disable Sensor Services";
- this.button30.UseVisualStyleBackColor = false;
- this.button30.Click += new System.EventHandler(this.button30_Click);
- //
- // button29
- //
- this.button29.BackColor = System.Drawing.Color.DodgerBlue;
- this.button29.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button29.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button29.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button29.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button29.ForeColor = System.Drawing.Color.White;
- this.button29.Location = new System.Drawing.Point(18, 65);
- this.button29.Margin = new System.Windows.Forms.Padding(2);
- this.button29.Name = "button29";
- this.button29.Size = new System.Drawing.Size(234, 39);
- this.button29.TabIndex = 25;
- this.button29.Text = "Uninstall OneDrive";
- this.button29.UseVisualStyleBackColor = false;
- this.button29.Click += new System.EventHandler(this.button29_Click);
- //
- // button28
- //
- this.button28.BackColor = System.Drawing.Color.DodgerBlue;
- this.button28.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button28.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button28.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button28.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button28.ForeColor = System.Drawing.Color.White;
- this.button28.Location = new System.Drawing.Point(258, 20);
- this.button28.Margin = new System.Windows.Forms.Padding(2);
- this.button28.Name = "button28";
- this.button28.Size = new System.Drawing.Size(234, 39);
- this.button28.TabIndex = 24;
- this.button28.Text = "Disable Automatic Updates";
- this.button28.UseVisualStyleBackColor = false;
- this.button28.Click += new System.EventHandler(this.button28_Click);
- //
- // button27
- //
- this.button27.BackColor = System.Drawing.Color.DodgerBlue;
- this.button27.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button27.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button27.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button27.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button27.ForeColor = System.Drawing.Color.White;
- this.button27.Location = new System.Drawing.Point(258, 65);
- this.button27.Margin = new System.Windows.Forms.Padding(2);
- this.button27.Name = "button27";
- this.button27.Size = new System.Drawing.Size(234, 39);
- this.button27.TabIndex = 23;
- this.button27.Text = "Disable Diagnostics Tracking";
- this.button27.UseVisualStyleBackColor = false;
- this.button27.Click += new System.EventHandler(this.button27_Click);
- //
- // button25
- //
- this.button25.BackColor = System.Drawing.Color.DodgerBlue;
- this.button25.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button25.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button25.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button25.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button25.ForeColor = System.Drawing.Color.White;
- this.button25.Location = new System.Drawing.Point(258, 110);
- this.button25.Margin = new System.Windows.Forms.Padding(2);
- this.button25.Name = "button25";
- this.button25.Size = new System.Drawing.Size(234, 39);
- this.button25.TabIndex = 21;
- this.button25.Text = "Disable WAP Push";
- this.button25.UseVisualStyleBackColor = false;
- this.button25.Click += new System.EventHandler(this.button25_Click);
- //
- // button24
- //
- this.button24.BackColor = System.Drawing.Color.DodgerBlue;
- this.button24.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button24.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button24.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button24.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button24.ForeColor = System.Drawing.Color.White;
- this.button24.Location = new System.Drawing.Point(18, 155);
- this.button24.Margin = new System.Windows.Forms.Padding(2);
- this.button24.Name = "button24";
- this.button24.Size = new System.Drawing.Size(234, 39);
- this.button24.TabIndex = 20;
- this.button24.Text = "Disable Cortana";
- this.button24.UseVisualStyleBackColor = false;
- this.button24.Click += new System.EventHandler(this.button24_Click);
- //
- // button23
- //
- this.button23.BackColor = System.Drawing.Color.DodgerBlue;
- this.button23.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button23.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button23.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button23.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button23.ForeColor = System.Drawing.Color.White;
- this.button23.Location = new System.Drawing.Point(258, 155);
- this.button23.Margin = new System.Windows.Forms.Padding(2);
- this.button23.Name = "button23";
- this.button23.Size = new System.Drawing.Size(234, 39);
- this.button23.TabIndex = 19;
- this.button23.Text = "Disable Data Telemetry";
- this.button23.UseVisualStyleBackColor = false;
- this.button23.Click += new System.EventHandler(this.button23_Click);
- //
- // button21
- //
- this.button21.BackColor = System.Drawing.Color.DodgerBlue;
- this.button21.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button21.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button21.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button21.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button21.ForeColor = System.Drawing.Color.White;
- this.button21.Location = new System.Drawing.Point(18, 200);
- this.button21.Margin = new System.Windows.Forms.Padding(2);
- this.button21.Name = "button21";
- this.button21.Size = new System.Drawing.Size(234, 39);
- this.button21.TabIndex = 17;
- this.button21.Text = "Disable Xbox Live";
- this.button21.UseVisualStyleBackColor = false;
- this.button21.Click += new System.EventHandler(this.button21_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(18, 337);
- this.button18.Margin = new System.Windows.Forms.Padding(2);
- this.button18.Name = "button18";
- this.button18.Size = new System.Drawing.Size(234, 39);
- this.button18.TabIndex = 14;
- this.button18.Text = "Change Edge Download Folder";
- this.button18.UseVisualStyleBackColor = false;
- this.button18.Click += new System.EventHandler(this.button18_Click);
- //
- // button9
- //
- this.button9.BackColor = System.Drawing.Color.DodgerBlue;
- this.button9.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button9.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button9.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button9.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button9.ForeColor = System.Drawing.Color.White;
- this.button9.Location = new System.Drawing.Point(18, 20);
- this.button9.Margin = new System.Windows.Forms.Padding(2);
- this.button9.Name = "button9";
- this.button9.Size = new System.Drawing.Size(234, 39);
- this.button9.TabIndex = 13;
- this.button9.Text = "Restore Legacy Volume Slider";
- this.button9.UseVisualStyleBackColor = false;
- this.button9.Click += new System.EventHandler(this.button9_Click);
- //
- // tab8
- //
- this.tab8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
- this.tab8.Controls.Add(this.button12);
- this.tab8.Controls.Add(this.button44);
- this.tab8.Controls.Add(this.button35);
- this.tab8.Controls.Add(this.button36);
- this.tab8.Location = new System.Drawing.Point(4, 29);
- this.tab8.Margin = new System.Windows.Forms.Padding(2);
- this.tab8.Name = "tab8";
- this.tab8.Padding = new System.Windows.Forms.Padding(2);
- this.tab8.Size = new System.Drawing.Size(862, 635);
- this.tab8.TabIndex = 2;
- this.tab8.Text = "Windows 8.1";
- //
- // button12
- //
- this.button12.BackColor = System.Drawing.Color.DodgerBlue;
- this.button12.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button12.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button12.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button12.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button12.ForeColor = System.Drawing.Color.White;
- this.button12.Location = new System.Drawing.Point(18, 75);
- this.button12.Margin = new System.Windows.Forms.Padding(2);
- this.button12.Name = "button12";
- this.button12.Size = new System.Drawing.Size(118, 39);
- this.button12.TabIndex = 34;
- this.button12.Text = "Apply All";
- this.button12.UseVisualStyleBackColor = false;
- this.button12.Click += new System.EventHandler(this.button12_Click);
- //
- // 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(141, 75);
- this.button44.Margin = new System.Windows.Forms.Padding(2);
- this.button44.Name = "button44";
- this.button44.Size = new System.Drawing.Size(111, 39);
- this.button44.TabIndex = 32;
- this.button44.Text = "Restart";
- this.button44.UseVisualStyleBackColor = false;
- this.button44.Click += new System.EventHandler(this.button44_Click);
- //
- // button35
- //
- this.button35.BackColor = System.Drawing.Color.DodgerBlue;
- this.button35.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button35.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button35.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button35.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button35.ForeColor = System.Drawing.Color.White;
- this.button35.Location = new System.Drawing.Point(258, 20);
- this.button35.Margin = new System.Windows.Forms.Padding(2);
- this.button35.Name = "button35";
- this.button35.Size = new System.Drawing.Size(234, 39);
- this.button35.TabIndex = 27;
- this.button35.Text = "Remove Get Windows 10";
- this.button35.UseVisualStyleBackColor = false;
- this.button35.Click += new System.EventHandler(this.button35_Click);
- //
- // button36
- //
- this.button36.BackColor = System.Drawing.Color.DodgerBlue;
- this.button36.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button36.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button36.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button36.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button36.ForeColor = System.Drawing.Color.White;
- this.button36.Location = new System.Drawing.Point(18, 20);
- this.button36.Margin = new System.Windows.Forms.Padding(2);
- this.button36.Name = "button36";
- this.button36.Size = new System.Drawing.Size(234, 39);
- this.button36.TabIndex = 26;
- this.button36.Text = "Disable OneDrive";
- this.button36.UseVisualStyleBackColor = false;
- this.button36.Click += new System.EventHandler(this.button36_Click);
- //
- // tab7
- //
- this.tab7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
- this.tab7.Controls.Add(this.button19);
- this.tab7.Controls.Add(this.button45);
- this.tab7.Controls.Add(this.button38);
- this.tab7.Location = new System.Drawing.Point(4, 29);
- this.tab7.Margin = new System.Windows.Forms.Padding(2);
- this.tab7.Name = "tab7";
- this.tab7.Padding = new System.Windows.Forms.Padding(2);
- this.tab7.Size = new System.Drawing.Size(862, 635);
- this.tab7.TabIndex = 3;
- this.tab7.Text = "Windows 7";
- //
- // button19
- //
- this.button19.BackColor = System.Drawing.Color.DodgerBlue;
- this.button19.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button19.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button19.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button19.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button19.ForeColor = System.Drawing.Color.White;
- this.button19.Location = new System.Drawing.Point(18, 75);
- this.button19.Margin = new System.Windows.Forms.Padding(2);
- this.button19.Name = "button19";
- this.button19.Size = new System.Drawing.Size(118, 39);
- this.button19.TabIndex = 34;
- this.button19.Text = "Apply All";
- this.button19.UseVisualStyleBackColor = false;
- this.button19.Click += new System.EventHandler(this.button19_Click);
- //
- // button45
- //
- this.button45.BackColor = System.Drawing.Color.DodgerBlue;
- this.button45.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button45.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button45.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button45.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button45.ForeColor = System.Drawing.Color.White;
- this.button45.Location = new System.Drawing.Point(141, 75);
- this.button45.Margin = new System.Windows.Forms.Padding(2);
- this.button45.Name = "button45";
- this.button45.Size = new System.Drawing.Size(111, 39);
- this.button45.TabIndex = 32;
- this.button45.Text = "Restart";
- this.button45.UseVisualStyleBackColor = false;
- this.button45.Click += new System.EventHandler(this.button45_Click);
- //
- // button38
- //
- this.button38.BackColor = System.Drawing.Color.DodgerBlue;
- this.button38.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button38.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button38.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button38.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button38.ForeColor = System.Drawing.Color.White;
- this.button38.Location = new System.Drawing.Point(18, 20);
- this.button38.Margin = new System.Windows.Forms.Padding(2);
- this.button38.Name = "button38";
- this.button38.Size = new System.Drawing.Size(234, 39);
- this.button38.TabIndex = 30;
- this.button38.Text = "Remove Get Windows 10";
- this.button38.UseVisualStyleBackColor = false;
- this.button38.Click += new System.EventHandler(this.button38_Click);
- //
- // tabPage3
- //
- this.tabPage3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
- this.tabPage3.Controls.Add(this.cleaningpanel);
- this.tabPage3.Controls.Add(this.label6);
- this.tabPage3.Controls.Add(this.panel1);
- this.tabPage3.Location = new System.Drawing.Point(4, 29);
- this.tabPage3.Margin = new System.Windows.Forms.Padding(2);
- this.tabPage3.Name = "tabPage3";
- this.tabPage3.Padding = new System.Windows.Forms.Padding(2);
- this.tabPage3.Size = new System.Drawing.Size(862, 635);
- this.tabPage3.TabIndex = 5;
- this.tabPage3.Text = "PC Cleaner";
- //
- // cleaningpanel
- //
- this.cleaningpanel.Controls.Add(this.progress2);
- this.cleaningpanel.Controls.Add(this.label4);
- this.cleaningpanel.Location = new System.Drawing.Point(14, 360);
- this.cleaningpanel.Margin = new System.Windows.Forms.Padding(2);
- this.cleaningpanel.Name = "cleaningpanel";
- this.cleaningpanel.Size = new System.Drawing.Size(639, 88);
- 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(36, 48);
- this.progress2.Margin = new System.Windows.Forms.Padding(2);
- this.progress2.MarqueeAnimationSpeed = 1;
- this.progress2.Name = "progress2";
- this.progress2.Size = new System.Drawing.Size(568, 14);
- 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(31, 16);
- this.label4.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(106, 28);
- 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(8, 12);
- this.label6.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(325, 35);
- this.label6.TabIndex = 46;
- this.label6.Tag = "themeable";
- this.label6.Text = "Clean up your system drive";
- //
- // panel1
- //
- this.panel1.Controls.Add(this.errorreports);
- this.panel1.Controls.Add(this.ftpservers);
- this.panel1.Controls.Add(this.selectall);
- this.panel1.Controls.Add(this.button20);
- this.panel1.Controls.Add(this.mediaplayercache);
- this.panel1.Controls.Add(this.tempfiles);
- this.panel1.Controls.Add(this.logfiles);
- this.panel1.Controls.Add(this.utorrentcache);
- this.panel1.Controls.Add(this.emptytrash);
- this.panel1.Controls.Add(this.bsoddumps);
- this.panel1.Controls.Add(this.prefetchcache);
- this.panel1.Location = new System.Drawing.Point(14, 50);
- this.panel1.Margin = new System.Windows.Forms.Padding(2);
- this.panel1.Name = "panel1";
- this.panel1.Size = new System.Drawing.Size(639, 304);
- this.panel1.TabIndex = 45;
- //
- // errorreports
- //
- this.errorreports.AutoSize = true;
- this.errorreports.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.errorreports.ForeColor = System.Drawing.Color.White;
- this.errorreports.Location = new System.Drawing.Point(69, 208);
- this.errorreports.Margin = new System.Windows.Forms.Padding(2);
- this.errorreports.Name = "errorreports";
- this.errorreports.Size = new System.Drawing.Size(149, 32);
- this.errorreports.TabIndex = 44;
- this.errorreports.Text = "Error reports";
- this.errorreports.UseVisualStyleBackColor = true;
- //
- // ftpservers
- //
- this.ftpservers.AutoSize = true;
- this.ftpservers.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.ftpservers.ForeColor = System.Drawing.Color.White;
- this.ftpservers.Location = new System.Drawing.Point(320, 170);
- this.ftpservers.Margin = new System.Windows.Forms.Padding(2);
- this.ftpservers.Name = "ftpservers";
- this.ftpservers.Size = new System.Drawing.Size(236, 32);
- this.ftpservers.TabIndex = 38;
- this.ftpservers.Text = "FileZilla recent servers";
- this.ftpservers.UseVisualStyleBackColor = true;
- //
- // selectall
- //
- this.selectall.AutoSize = true;
- this.selectall.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.selectall.ForeColor = System.Drawing.Color.DodgerBlue;
- this.selectall.Location = new System.Drawing.Point(36, 18);
- this.selectall.Margin = new System.Windows.Forms.Padding(2);
- this.selectall.Name = "selectall";
- this.selectall.Size = new System.Drawing.Size(114, 32);
- this.selectall.TabIndex = 35;
- this.selectall.Tag = "themeable";
- this.selectall.Text = "Select all";
- this.selectall.UseVisualStyleBackColor = true;
- this.selectall.CheckedChanged += new System.EventHandler(this.selectall_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(36, 262);
- this.button20.Margin = new System.Windows.Forms.Padding(2);
- this.button20.Name = "button20";
- this.button20.Size = new System.Drawing.Size(89, 39);
- this.button20.TabIndex = 34;
- this.button20.Text = "Clean";
- this.button20.UseVisualStyleBackColor = false;
- this.button20.Click += new System.EventHandler(this.button20_Click);
- //
- // mediaplayercache
- //
- this.mediaplayercache.AutoSize = true;
- this.mediaplayercache.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.mediaplayercache.ForeColor = System.Drawing.Color.White;
- this.mediaplayercache.Location = new System.Drawing.Point(320, 94);
- this.mediaplayercache.Margin = new System.Windows.Forms.Padding(2);
- this.mediaplayercache.Name = "mediaplayercache";
- this.mediaplayercache.Size = new System.Drawing.Size(217, 32);
- this.mediaplayercache.TabIndex = 43;
- this.mediaplayercache.Text = "Media Players cache";
- this.mediaplayercache.UseVisualStyleBackColor = true;
- //
- // tempfiles
- //
- this.tempfiles.AutoSize = true;
- this.tempfiles.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.tempfiles.ForeColor = System.Drawing.Color.White;
- this.tempfiles.Location = new System.Drawing.Point(69, 56);
- this.tempfiles.Margin = new System.Windows.Forms.Padding(2);
- this.tempfiles.Name = "tempfiles";
- this.tempfiles.Size = new System.Drawing.Size(174, 32);
- this.tempfiles.TabIndex = 36;
- this.tempfiles.Text = "Temporary files";
- this.tempfiles.UseVisualStyleBackColor = true;
- //
- // logfiles
- //
- this.logfiles.AutoSize = true;
- this.logfiles.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.logfiles.ForeColor = System.Drawing.Color.White;
- this.logfiles.Location = new System.Drawing.Point(69, 94);
- this.logfiles.Margin = new System.Windows.Forms.Padding(2);
- this.logfiles.Name = "logfiles";
- this.logfiles.Size = new System.Drawing.Size(211, 32);
- this.logfiles.TabIndex = 42;
- this.logfiles.Text = "Windows + IIS logs";
- this.logfiles.UseVisualStyleBackColor = true;
- //
- // utorrentcache
- //
- this.utorrentcache.AutoSize = true;
- this.utorrentcache.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.utorrentcache.ForeColor = System.Drawing.Color.White;
- this.utorrentcache.Location = new System.Drawing.Point(320, 132);
- this.utorrentcache.Margin = new System.Windows.Forms.Padding(2);
- this.utorrentcache.Name = "utorrentcache";
- this.utorrentcache.Size = new System.Drawing.Size(168, 32);
- this.utorrentcache.TabIndex = 37;
- this.utorrentcache.Text = "uTorrent cache";
- this.utorrentcache.UseVisualStyleBackColor = true;
- //
- // emptytrash
- //
- this.emptytrash.AutoSize = true;
- this.emptytrash.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.emptytrash.ForeColor = System.Drawing.Color.White;
- this.emptytrash.Location = new System.Drawing.Point(320, 56);
- this.emptytrash.Margin = new System.Windows.Forms.Padding(2);
- this.emptytrash.Name = "emptytrash";
- this.emptytrash.Size = new System.Drawing.Size(198, 32);
- this.emptytrash.TabIndex = 41;
- this.emptytrash.Text = "Empty Recycle Bin";
- this.emptytrash.UseVisualStyleBackColor = true;
- //
- // bsoddumps
- //
- this.bsoddumps.AutoSize = true;
- this.bsoddumps.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.bsoddumps.ForeColor = System.Drawing.Color.White;
- this.bsoddumps.Location = new System.Drawing.Point(69, 170);
- this.bsoddumps.Margin = new System.Windows.Forms.Padding(2);
- this.bsoddumps.Name = "bsoddumps";
- this.bsoddumps.Size = new System.Drawing.Size(195, 32);
- this.bsoddumps.TabIndex = 39;
- this.bsoddumps.Text = "BSOD Minidumps";
- this.bsoddumps.UseVisualStyleBackColor = true;
- //
- // prefetchcache
- //
- this.prefetchcache.AutoSize = true;
- this.prefetchcache.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.prefetchcache.ForeColor = System.Drawing.Color.White;
- this.prefetchcache.Location = new System.Drawing.Point(69, 132);
- this.prefetchcache.Margin = new System.Windows.Forms.Padding(2);
- this.prefetchcache.Name = "prefetchcache";
- this.prefetchcache.Size = new System.Drawing.Size(167, 32);
- this.prefetchcache.TabIndex = 40;
- this.prefetchcache.Text = "Prefetch cache";
- this.prefetchcache.UseVisualStyleBackColor = true;
- //
- // tabPage4
- //
- this.tabPage4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
- this.tabPage4.Controls.Add(this.button64);
- this.tabPage4.Controls.Add(this.button31);
- this.tabPage4.Controls.Add(this.button37);
- this.tabPage4.Controls.Add(this.panel3);
- this.tabPage4.Controls.Add(this.button32);
- this.tabPage4.Controls.Add(this.button22);
- this.tabPage4.Controls.Add(this.label5);
- this.tabPage4.Location = new System.Drawing.Point(4, 29);
- this.tabPage4.Margin = new System.Windows.Forms.Padding(2);
- this.tabPage4.Name = "tabPage4";
- this.tabPage4.Size = new System.Drawing.Size(862, 635);
- this.tabPage4.TabIndex = 7;
- this.tabPage4.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(465, 589);
- this.button64.Margin = new System.Windows.Forms.Padding(2);
- this.button64.Name = "button64";
- this.button64.Size = new System.Drawing.Size(126, 39);
- 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(598, 589);
- this.button31.Margin = new System.Windows.Forms.Padding(2);
- this.button31.Name = "button31";
- this.button31.Size = new System.Drawing.Size(126, 39);
- 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(332, 589);
- this.button37.Margin = new System.Windows.Forms.Padding(2);
- this.button37.Name = "button37";
- this.button37.Size = new System.Drawing.Size(126, 39);
- 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.Controls.Add(this.listStartupItems);
- this.panel3.Location = new System.Drawing.Point(14, 50);
- this.panel3.Margin = new System.Windows.Forms.Padding(2);
- this.panel3.Name = "panel3";
- this.panel3.Size = new System.Drawing.Size(841, 532);
- 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.FixedSingle;
- 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.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(841, 532);
- 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(729, 589);
- this.button32.Margin = new System.Windows.Forms.Padding(2);
- this.button32.Name = "button32";
- this.button32.Size = new System.Drawing.Size(126, 39);
- 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(201, 589);
- this.button22.Margin = new System.Windows.Forms.Padding(2);
- this.button22.Name = "button22";
- this.button22.Size = new System.Drawing.Size(126, 39);
- 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(8, 12);
- this.label5.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(317, 35);
- this.label5.TabIndex = 3;
- this.label5.Tag = "themeable";
- this.label5.Text = "Choose your startup items";
- //
- // tabPage5
- //
- this.tabPage5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
- this.tabPage5.Controls.Add(this.panel2);
- this.tabPage5.Controls.Add(this.label7);
- this.tabPage5.Location = new System.Drawing.Point(4, 29);
- this.tabPage5.Margin = new System.Windows.Forms.Padding(2);
- this.tabPage5.Name = "tabPage5";
- this.tabPage5.Padding = new System.Windows.Forms.Padding(2);
- this.tabPage5.Size = new System.Drawing.Size(862, 635);
- this.tabPage5.TabIndex = 8;
- this.tabPage5.Text = "Registry";
- //
- // panel2
- //
- this.panel2.Controls.Add(this.button33);
- this.panel2.Controls.Add(this.label8);
- this.panel2.Controls.Add(this.restartexplorer);
- this.panel2.Controls.Add(this.regeditor);
- this.panel2.Controls.Add(this.enableall);
- this.panel2.Controls.Add(this.rightmenu);
- this.panel2.Controls.Add(this.taskmgr);
- this.panel2.Controls.Add(this.cmdp);
- this.panel2.Controls.Add(this.wfirewall);
- this.panel2.Controls.Add(this.rundialog);
- this.panel2.Controls.Add(this.foldero);
- this.panel2.Controls.Add(this.controlp);
- this.panel2.Location = new System.Drawing.Point(14, 50);
- this.panel2.Margin = new System.Windows.Forms.Padding(2);
- this.panel2.Name = "panel2";
- this.panel2.Size = new System.Drawing.Size(639, 358);
- 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(36, 315);
- this.button33.Margin = new System.Windows.Forms.Padding(2);
- this.button33.Name = "button33";
- this.button33.Size = new System.Drawing.Size(89, 39);
- 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.DodgerBlue;
- this.label8.Location = new System.Drawing.Point(142, 254);
- this.label8.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label8.Name = "label8";
- this.label8.Size = new System.Drawing.Size(308, 28);
- this.label8.TabIndex = 51;
- this.label8.Tag = "themeable";
- this.label8.Text = "(some changes might need this)";
- //
- // restartexplorer
- //
- this.restartexplorer.AutoSize = true;
- this.restartexplorer.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.restartexplorer.ForeColor = System.Drawing.Color.DodgerBlue;
- this.restartexplorer.Location = new System.Drawing.Point(36, 219);
- this.restartexplorer.Margin = new System.Windows.Forms.Padding(2);
- this.restartexplorer.Name = "restartexplorer";
- this.restartexplorer.Size = new System.Drawing.Size(415, 32);
- this.restartexplorer.TabIndex = 50;
- this.restartexplorer.Tag = "themeable";
- this.restartexplorer.Text = "Also restart explorer.exe to apply changes";
- this.restartexplorer.UseVisualStyleBackColor = true;
- //
- // regeditor
- //
- this.regeditor.AutoSize = true;
- this.regeditor.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.regeditor.ForeColor = System.Drawing.Color.White;
- this.regeditor.Location = new System.Drawing.Point(320, 170);
- this.regeditor.Margin = new System.Windows.Forms.Padding(2);
- this.regeditor.Name = "regeditor";
- this.regeditor.Size = new System.Drawing.Size(166, 32);
- this.regeditor.TabIndex = 38;
- this.regeditor.Text = "Registry Editor";
- this.regeditor.UseVisualStyleBackColor = true;
- //
- // enableall
- //
- this.enableall.AutoSize = true;
- this.enableall.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.enableall.ForeColor = System.Drawing.Color.DodgerBlue;
- this.enableall.Location = new System.Drawing.Point(36, 18);
- this.enableall.Margin = new System.Windows.Forms.Padding(2);
- this.enableall.Name = "enableall";
- this.enableall.Size = new System.Drawing.Size(120, 32);
- this.enableall.TabIndex = 35;
- this.enableall.Tag = "themeable";
- this.enableall.Text = "Enable all";
- this.enableall.UseVisualStyleBackColor = true;
- this.enableall.CheckedChanged += new System.EventHandler(this.enableall_CheckedChanged);
- //
- // rightmenu
- //
- this.rightmenu.AutoSize = true;
- this.rightmenu.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.rightmenu.ForeColor = System.Drawing.Color.White;
- this.rightmenu.Location = new System.Drawing.Point(320, 94);
- this.rightmenu.Margin = new System.Windows.Forms.Padding(2);
- this.rightmenu.Name = "rightmenu";
- this.rightmenu.Size = new System.Drawing.Size(189, 32);
- this.rightmenu.TabIndex = 43;
- this.rightmenu.Text = "Right Click menu";
- this.rightmenu.UseVisualStyleBackColor = true;
- //
- // taskmgr
- //
- this.taskmgr.AutoSize = true;
- this.taskmgr.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.taskmgr.ForeColor = System.Drawing.Color.White;
- this.taskmgr.Location = new System.Drawing.Point(69, 56);
- this.taskmgr.Margin = new System.Windows.Forms.Padding(2);
- this.taskmgr.Name = "taskmgr";
- this.taskmgr.Size = new System.Drawing.Size(159, 32);
- this.taskmgr.TabIndex = 36;
- this.taskmgr.Text = "Task Manager";
- this.taskmgr.UseVisualStyleBackColor = true;
- //
- // cmdp
- //
- this.cmdp.AutoSize = true;
- this.cmdp.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.cmdp.ForeColor = System.Drawing.Color.White;
- this.cmdp.Location = new System.Drawing.Point(69, 94);
- this.cmdp.Margin = new System.Windows.Forms.Padding(2);
- this.cmdp.Name = "cmdp";
- this.cmdp.Size = new System.Drawing.Size(202, 32);
- this.cmdp.TabIndex = 42;
- this.cmdp.Text = "Command Prompt";
- this.cmdp.UseVisualStyleBackColor = true;
- //
- // wfirewall
- //
- this.wfirewall.AutoSize = true;
- this.wfirewall.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.wfirewall.ForeColor = System.Drawing.Color.White;
- this.wfirewall.Location = new System.Drawing.Point(320, 132);
- this.wfirewall.Margin = new System.Windows.Forms.Padding(2);
- this.wfirewall.Name = "wfirewall";
- this.wfirewall.Size = new System.Drawing.Size(192, 32);
- this.wfirewall.TabIndex = 37;
- this.wfirewall.Text = "Windows Firewall";
- this.wfirewall.UseVisualStyleBackColor = true;
- //
- // rundialog
- //
- this.rundialog.AutoSize = true;
- this.rundialog.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.rundialog.ForeColor = System.Drawing.Color.White;
- this.rundialog.Location = new System.Drawing.Point(320, 56);
- this.rundialog.Margin = new System.Windows.Forms.Padding(2);
- this.rundialog.Name = "rundialog";
- this.rundialog.Size = new System.Drawing.Size(134, 32);
- this.rundialog.TabIndex = 41;
- this.rundialog.Text = "Run Dialog";
- this.rundialog.UseVisualStyleBackColor = true;
- //
- // foldero
- //
- this.foldero.AutoSize = true;
- this.foldero.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.foldero.ForeColor = System.Drawing.Color.White;
- this.foldero.Location = new System.Drawing.Point(69, 170);
- this.foldero.Margin = new System.Windows.Forms.Padding(2);
- this.foldero.Name = "foldero";
- this.foldero.Size = new System.Drawing.Size(169, 32);
- this.foldero.TabIndex = 39;
- this.foldero.Text = "Folder Options";
- this.foldero.UseVisualStyleBackColor = true;
- //
- // controlp
- //
- this.controlp.AutoSize = true;
- this.controlp.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.controlp.ForeColor = System.Drawing.Color.White;
- this.controlp.Location = new System.Drawing.Point(69, 132);
- this.controlp.Margin = new System.Windows.Forms.Padding(2);
- this.controlp.Name = "controlp";
- this.controlp.Size = new System.Drawing.Size(156, 32);
- this.controlp.TabIndex = 40;
- this.controlp.Text = "Control Panel";
- this.controlp.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(8, 12);
- this.label7.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label7.Name = "label7";
- this.label7.Size = new System.Drawing.Size(325, 35);
- this.label7.TabIndex = 47;
- this.label7.Tag = "themeable";
- this.label7.Text = "Fix common registry issues";
- //
- // tabPage1
- //
- this.tabPage1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
- this.tabPage1.Controls.Add(this.panel4);
- this.tabPage1.Controls.Add(this.linkLabel4);
- this.tabPage1.Controls.Add(this.label10);
- this.tabPage1.Controls.Add(this.linkLabel3);
- this.tabPage1.Controls.Add(this.label9);
- this.tabPage1.Controls.Add(this.linkLabel2);
- this.tabPage1.Controls.Add(this.label3);
- this.tabPage1.Location = new System.Drawing.Point(4, 29);
- this.tabPage1.Margin = new System.Windows.Forms.Padding(2);
- this.tabPage1.Name = "tabPage1";
- this.tabPage1.Padding = new System.Windows.Forms.Padding(2);
- this.tabPage1.Size = new System.Drawing.Size(862, 635);
- this.tabPage1.TabIndex = 9;
- this.tabPage1.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.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.Controls.Add(this.hl);
- this.panel4.Location = new System.Drawing.Point(8, 88);
- this.panel4.Margin = new System.Windows.Forms.Padding(2);
- this.panel4.Name = "panel4";
- this.panel4.Size = new System.Drawing.Size(846, 539);
- this.panel4.TabIndex = 53;
- //
- // 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(346, 144);
- this.chkBlock.Margin = new System.Windows.Forms.Padding(2);
- this.chkBlock.Name = "chkBlock";
- this.chkBlock.Size = new System.Drawing.Size(83, 32);
- 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(119, 291);
- this.button41.Margin = new System.Windows.Forms.Padding(2);
- this.button41.Name = "button41";
- this.button41.Size = new System.Drawing.Size(102, 39);
- 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(228, 291);
- this.button42.Margin = new System.Windows.Forms.Padding(2);
- this.button42.Name = "button42";
- this.button42.Size = new System.Drawing.Size(108, 39);
- 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(0, 291);
- this.button46.Margin = new System.Windows.Forms.Padding(2);
- this.button46.Name = "button46";
- this.button46.Size = new System.Drawing.Size(112, 39);
- 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(578, 144);
- this.button47.Margin = new System.Windows.Forms.Padding(2);
- this.button47.Name = "button47";
- this.button47.Size = new System.Drawing.Size(109, 39);
- 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(346, 34);
- this.txtIP.Margin = new System.Windows.Forms.Padding(2);
- this.txtIP.Name = "txtIP";
- this.txtIP.Size = new System.Drawing.Size(340, 34);
- 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(346, 102);
- this.txtDomain.Margin = new System.Windows.Forms.Padding(2);
- this.txtDomain.Name = "txtDomain";
- this.txtDomain.Size = new System.Drawing.Size(340, 34);
- 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(341, 71);
- this.label12.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label12.Name = "label12";
- this.label12.Size = new System.Drawing.Size(83, 28);
- 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(341, 2);
- this.label11.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label11.Name = "label11";
- this.label11.Size = new System.Drawing.Size(106, 28);
- this.label11.TabIndex = 53;
- this.label11.Tag = "themeable";
- this.label11.Text = "IP address";
- //
- // hl
- //
- this.hl.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
- this.hl.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.hl.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.hl.ForeColor = System.Drawing.Color.White;
- this.hl.FormattingEnabled = true;
- this.hl.HorizontalScrollbar = true;
- this.hl.ItemHeight = 28;
- this.hl.Location = new System.Drawing.Point(0, 2);
- this.hl.Margin = new System.Windows.Forms.Padding(2);
- this.hl.Name = "hl";
- this.hl.Size = new System.Drawing.Size(334, 254);
- this.hl.TabIndex = 52;
- //
- // 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.DodgerBlue;
- this.linkLabel4.Location = new System.Drawing.Point(292, 48);
- this.linkLabel4.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.linkLabel4.Name = "linkLabel4";
- this.linkLabel4.Size = new System.Drawing.Size(150, 28);
- this.linkLabel4.TabIndex = 51;
- this.linkLabel4.TabStop = true;
- this.linkLabel4.Tag = "themeable";
- 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(269, 48);
- this.label10.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label10.Name = "label10";
- this.label10.Size = new System.Drawing.Size(18, 28);
- 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.DodgerBlue;
- this.linkLabel3.Location = new System.Drawing.Point(105, 48);
- this.linkLabel3.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.linkLabel3.Name = "linkLabel3";
- this.linkLabel3.Size = new System.Drawing.Size(161, 28);
- this.linkLabel3.TabIndex = 49;
- this.linkLabel3.TabStop = true;
- this.linkLabel3.Tag = "themeable";
- 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(81, 48);
- this.label9.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label9.Name = "label9";
- this.label9.Size = new System.Drawing.Size(18, 28);
- 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.DodgerBlue;
- this.linkLabel2.Location = new System.Drawing.Point(9, 48);
- this.linkLabel2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.linkLabel2.Name = "linkLabel2";
- this.linkLabel2.Size = new System.Drawing.Size(71, 28);
- this.linkLabel2.TabIndex = 47;
- this.linkLabel2.TabStop = true;
- this.linkLabel2.Tag = "themeable";
- 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(8, 12);
- this.label3.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(229, 35);
- this.label3.TabIndex = 3;
- this.label3.Tag = "themeable";
- this.label3.Text = "Edit your hosts file";
- //
- // tabPage6
- //
- this.tabPage6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
- this.tabPage6.Controls.Add(this.synapse);
- this.tabPage6.Location = new System.Drawing.Point(4, 29);
- this.tabPage6.Margin = new System.Windows.Forms.Padding(2);
- this.tabPage6.Name = "tabPage6";
- this.tabPage6.Padding = new System.Windows.Forms.Padding(2);
- this.tabPage6.Size = new System.Drawing.Size(862, 635);
- this.tabPage6.TabIndex = 10;
- this.tabPage6.Text = "Integrator";
- //
- // synapse
- //
- this.synapse.Alignment = System.Windows.Forms.TabAlignment.Bottom;
- this.synapse.Controls.Add(this.tabPage7);
- 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(858, 631);
- this.synapse.TabIndex = 0;
- //
- // tabPage7
- //
- this.tabPage7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
- this.tabPage7.Controls.Add(this.label19);
- this.tabPage7.Controls.Add(this.label18);
- this.tabPage7.Controls.Add(this.label17);
- this.tabPage7.Controls.Add(this.label16);
- this.tabPage7.Controls.Add(this.label15);
- this.tabPage7.Controls.Add(this.label14);
- this.tabPage7.Controls.Add(this.label13);
- this.tabPage7.Location = new System.Drawing.Point(4, 4);
- this.tabPage7.Margin = new System.Windows.Forms.Padding(2);
- this.tabPage7.Name = "tabPage7";
- this.tabPage7.Padding = new System.Windows.Forms.Padding(2);
- this.tabPage7.Size = new System.Drawing.Size(850, 598);
- this.tabPage7.TabIndex = 0;
- this.tabPage7.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.DodgerBlue;
- this.label19.Location = new System.Drawing.Point(8, 281);
- this.label19.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label19.Name = "label19";
- this.label19.Size = new System.Drawing.Size(515, 116);
- this.label19.TabIndex = 10;
- this.label19.Tag = "themeable";
- this.label19.Text = "Items can have custom icons and position\r\nThey can be also hidden, accessible onl" +
- "y\r\nby pressing the SHIFT key";
- //
- // 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.DodgerBlue;
- this.label18.Location = new System.Drawing.Point(48, 229);
- this.label18.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label18.Name = "label18";
- this.label18.Size = new System.Drawing.Size(154, 32);
- this.label18.TabIndex = 9;
- this.label18.Tag = "themeable";
- 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.DodgerBlue;
- this.label17.Location = new System.Drawing.Point(48, 198);
- this.label17.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label17.Name = "label17";
- this.label17.Size = new System.Drawing.Size(198, 32);
- this.label17.TabIndex = 8;
- this.label17.Tag = "themeable";
- 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.DodgerBlue;
- this.label16.Location = new System.Drawing.Point(48, 165);
- this.label16.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label16.Name = "label16";
- this.label16.Size = new System.Drawing.Size(233, 32);
- this.label16.TabIndex = 7;
- this.label16.Tag = "themeable";
- 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.DodgerBlue;
- this.label15.Location = new System.Drawing.Point(48, 132);
- this.label15.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label15.Name = "label15";
- this.label15.Size = new System.Drawing.Size(247, 32);
- this.label15.TabIndex = 6;
- this.label15.Tag = "themeable";
- 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.DodgerBlue;
- this.label14.Location = new System.Drawing.Point(48, 101);
- this.label14.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label14.Name = "label14";
- this.label14.Size = new System.Drawing.Size(175, 32);
- this.label14.TabIndex = 5;
- this.label14.Tag = "themeable";
- 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.DodgerBlue;
- this.label13.Location = new System.Drawing.Point(8, 12);
- this.label13.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label13.Name = "label13";
- this.label13.Size = new System.Drawing.Size(515, 76);
- this.label13.TabIndex = 4;
- this.label13.Tag = "themeable";
- 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.addmodifybtn);
- 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(850, 598);
- this.tabPage8.TabIndex = 1;
- this.tabPage8.Text = "Add/Modify";
- //
- // addmodifybtn
- //
- this.addmodifybtn.BackColor = System.Drawing.Color.DodgerBlue;
- this.addmodifybtn.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.addmodifybtn.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.addmodifybtn.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.addmodifybtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.addmodifybtn.ForeColor = System.Drawing.Color.White;
- this.addmodifybtn.Location = new System.Drawing.Point(641, 552);
- this.addmodifybtn.Margin = new System.Windows.Forms.Padding(2);
- this.addmodifybtn.Name = "addmodifybtn";
- this.addmodifybtn.Size = new System.Drawing.Size(122, 39);
- this.addmodifybtn.TabIndex = 85;
- this.addmodifybtn.Text = "Add/Modify";
- this.addmodifybtn.UseVisualStyleBackColor = false;
- this.addmodifybtn.Click += new System.EventHandler(this.addmodifybtn_Click);
- //
- // itemnamegroup
- //
- this.itemnamegroup.Controls.Add(this.itemname);
- 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.White;
- this.itemnamegroup.Location = new System.Drawing.Point(14, 508);
- 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(621, 82);
- this.itemnamegroup.TabIndex = 84;
- this.itemnamegroup.TabStop = false;
- this.itemnamegroup.Text = "Item name in menu:";
- //
- // itemname
- //
- this.itemname.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
- this.itemname.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.itemname.ForeColor = System.Drawing.Color.White;
- this.itemname.Location = new System.Drawing.Point(14, 32);
- this.itemname.Margin = new System.Windows.Forms.Padding(2);
- this.itemname.Name = "itemname";
- this.itemname.Size = new System.Drawing.Size(594, 34);
- this.itemname.TabIndex = 82;
- //
- // security
- //
- this.security.Controls.Add(this.shiftkey);
- 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.White;
- this.security.Location = new System.Drawing.Point(14, 426);
- 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(621, 76);
- this.security.TabIndex = 83;
- this.security.TabStop = false;
- this.security.Text = "Security:";
- //
- // shiftkey
- //
- this.shiftkey.AutoSize = true;
- this.shiftkey.Location = new System.Drawing.Point(14, 32);
- this.shiftkey.Margin = new System.Windows.Forms.Padding(2);
- this.shiftkey.Name = "shiftkey";
- this.shiftkey.Size = new System.Drawing.Size(379, 32);
- this.shiftkey.TabIndex = 83;
- this.shiftkey.Text = "Show only when SHIFT key is pressed";
- this.shiftkey.UseVisualStyleBackColor = true;
- //
- // itemposition
- //
- this.itemposition.Controls.Add(this.topposition);
- this.itemposition.Controls.Add(this.midposition);
- this.itemposition.Controls.Add(this.botposition);
- 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.White;
- this.itemposition.Location = new System.Drawing.Point(14, 342);
- 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(621, 78);
- this.itemposition.TabIndex = 82;
- this.itemposition.TabStop = false;
- this.itemposition.Text = "Item position:";
- //
- // topposition
- //
- this.topposition.AutoSize = true;
- this.topposition.Checked = true;
- this.topposition.Location = new System.Drawing.Point(14, 32);
- this.topposition.Margin = new System.Windows.Forms.Padding(2);
- this.topposition.Name = "topposition";
- this.topposition.Size = new System.Drawing.Size(66, 32);
- this.topposition.TabIndex = 83;
- this.topposition.TabStop = true;
- this.topposition.Text = "Top";
- this.topposition.UseVisualStyleBackColor = true;
- this.topposition.CheckedChanged += new System.EventHandler(this.topposition_CheckedChanged);
- //
- // midposition
- //
- this.midposition.AutoSize = true;
- this.midposition.Location = new System.Drawing.Point(86, 32);
- this.midposition.Margin = new System.Windows.Forms.Padding(2);
- this.midposition.Name = "midposition";
- this.midposition.Size = new System.Drawing.Size(96, 32);
- this.midposition.TabIndex = 84;
- this.midposition.Text = "Middle";
- this.midposition.UseVisualStyleBackColor = true;
- this.midposition.CheckedChanged += new System.EventHandler(this.midposition_CheckedChanged);
- //
- // botposition
- //
- this.botposition.AutoSize = true;
- this.botposition.Location = new System.Drawing.Point(188, 32);
- this.botposition.Margin = new System.Windows.Forms.Padding(2);
- this.botposition.Name = "botposition";
- this.botposition.Size = new System.Drawing.Size(101, 32);
- this.botposition.TabIndex = 85;
- this.botposition.Text = "Bottom";
- this.botposition.UseVisualStyleBackColor = true;
- this.botposition.CheckedChanged += new System.EventHandler(this.botposition_CheckedChanged);
- //
- // icontoaddgroup
- //
- this.icontoaddgroup.Controls.Add(this.defaulticon);
- this.icontoaddgroup.Controls.Add(this.browseicon);
- this.icontoaddgroup.Controls.Add(this.icontoadd);
- 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.White;
- this.icontoaddgroup.Location = new System.Drawing.Point(14, 225);
- 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(621, 112);
- this.icontoaddgroup.TabIndex = 81;
- this.icontoaddgroup.TabStop = false;
- this.icontoaddgroup.Text = "Icon to add:";
- //
- // defaulticon
- //
- this.defaulticon.AutoSize = true;
- this.defaulticon.Checked = true;
- this.defaulticon.CheckState = System.Windows.Forms.CheckState.Checked;
- this.defaulticon.Location = new System.Drawing.Point(14, 72);
- this.defaulticon.Margin = new System.Windows.Forms.Padding(2);
- this.defaulticon.Name = "defaulticon";
- this.defaulticon.Size = new System.Drawing.Size(209, 32);
- this.defaulticon.TabIndex = 82;
- this.defaulticon.Text = "Use program\'s icon";
- this.defaulticon.UseVisualStyleBackColor = true;
- this.defaulticon.CheckedChanged += new System.EventHandler(this.defaulticon_CheckedChanged);
- //
- // browseicon
- //
- this.browseicon.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.browseicon.BackColor = System.Drawing.Color.DodgerBlue;
- this.browseicon.Enabled = false;
- this.browseicon.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.browseicon.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.browseicon.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.browseicon.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.browseicon.ForeColor = System.Drawing.Color.White;
- this.browseicon.Location = new System.Drawing.Point(562, 32);
- this.browseicon.Margin = new System.Windows.Forms.Padding(2);
- this.browseicon.Name = "browseicon";
- this.browseicon.Size = new System.Drawing.Size(45, 34);
- this.browseicon.TabIndex = 82;
- this.browseicon.Text = "...";
- this.browseicon.UseVisualStyleBackColor = false;
- this.browseicon.Click += new System.EventHandler(this.browseicon_Click);
- //
- // icontoadd
- //
- this.icontoadd.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
- this.icontoadd.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.icontoadd.Enabled = false;
- this.icontoadd.ForeColor = System.Drawing.Color.White;
- this.icontoadd.Location = new System.Drawing.Point(14, 32);
- this.icontoadd.Margin = new System.Windows.Forms.Padding(2);
- this.icontoadd.Name = "icontoadd";
- this.icontoadd.ReadOnly = true;
- this.icontoadd.Size = new System.Drawing.Size(542, 34);
- this.icontoadd.TabIndex = 81;
- //
- // itemtoaddgroup
- //
- this.itemtoaddgroup.Controls.Add(this.browseitem);
- this.itemtoaddgroup.Controls.Add(this.itemtoadd);
- 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.White;
- this.itemtoaddgroup.Location = new System.Drawing.Point(14, 135);
- 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(621, 84);
- this.itemtoaddgroup.TabIndex = 80;
- this.itemtoaddgroup.TabStop = false;
- this.itemtoaddgroup.Text = "Program to add:";
- //
- // browseitem
- //
- this.browseitem.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.browseitem.BackColor = System.Drawing.Color.DodgerBlue;
- this.browseitem.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.browseitem.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.browseitem.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.browseitem.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.browseitem.ForeColor = System.Drawing.Color.White;
- this.browseitem.Location = new System.Drawing.Point(562, 32);
- this.browseitem.Margin = new System.Windows.Forms.Padding(2);
- this.browseitem.Name = "browseitem";
- this.browseitem.Size = new System.Drawing.Size(45, 34);
- this.browseitem.TabIndex = 82;
- this.browseitem.Text = "...";
- this.browseitem.UseVisualStyleBackColor = false;
- this.browseitem.Click += new System.EventHandler(this.browseitem_Click);
- //
- // itemtoadd
- //
- this.itemtoadd.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
- this.itemtoadd.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.itemtoadd.ForeColor = System.Drawing.Color.White;
- this.itemtoadd.Location = new System.Drawing.Point(14, 32);
- this.itemtoadd.Margin = new System.Windows.Forms.Padding(2);
- this.itemtoadd.Name = "itemtoadd";
- this.itemtoadd.ReadOnly = true;
- this.itemtoadd.Size = new System.Drawing.Size(542, 34);
- this.itemtoadd.TabIndex = 81;
- //
- // itemtype
- //
- this.itemtype.Controls.Add(this.typecmd);
- this.itemtype.Controls.Add(this.typeprogram);
- this.itemtype.Controls.Add(this.typefolder);
- this.itemtype.Controls.Add(this.typefile);
- this.itemtype.Controls.Add(this.typeurl);
- 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.White;
- this.itemtype.Location = new System.Drawing.Point(14, 50);
- 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(621, 79);
- this.itemtype.TabIndex = 79;
- this.itemtype.TabStop = false;
- this.itemtype.Text = "Item Type:";
- //
- // typecmd
- //
- this.typecmd.AutoSize = true;
- this.typecmd.Location = new System.Drawing.Point(481, 32);
- this.typecmd.Margin = new System.Windows.Forms.Padding(2);
- this.typecmd.Name = "typecmd";
- this.typecmd.Size = new System.Drawing.Size(127, 32);
- this.typecmd.TabIndex = 84;
- this.typecmd.Text = "Command";
- this.typecmd.UseVisualStyleBackColor = true;
- this.typecmd.CheckedChanged += new System.EventHandler(this.typecmd_CheckedChanged);
- //
- // typeprogram
- //
- this.typeprogram.AutoSize = true;
- this.typeprogram.Checked = true;
- this.typeprogram.Location = new System.Drawing.Point(14, 32);
- this.typeprogram.Margin = new System.Windows.Forms.Padding(2);
- this.typeprogram.Name = "typeprogram";
- this.typeprogram.Size = new System.Drawing.Size(111, 32);
- this.typeprogram.TabIndex = 80;
- this.typeprogram.TabStop = true;
- this.typeprogram.Text = "Program";
- this.typeprogram.UseVisualStyleBackColor = true;
- this.typeprogram.CheckedChanged += new System.EventHandler(this.typeprogram_CheckedChanged);
- //
- // typefolder
- //
- this.typefolder.AutoSize = true;
- this.typefolder.Location = new System.Drawing.Point(131, 32);
- this.typefolder.Margin = new System.Windows.Forms.Padding(2);
- this.typefolder.Name = "typefolder";
- this.typefolder.Size = new System.Drawing.Size(90, 32);
- this.typefolder.TabIndex = 81;
- this.typefolder.Text = "Folder";
- this.typefolder.UseVisualStyleBackColor = true;
- this.typefolder.CheckedChanged += new System.EventHandler(this.typefolder_CheckedChanged);
- //
- // typefile
- //
- this.typefile.AutoSize = true;
- this.typefile.Location = new System.Drawing.Point(302, 32);
- this.typefile.Margin = new System.Windows.Forms.Padding(2);
- this.typefile.Name = "typefile";
- this.typefile.Size = new System.Drawing.Size(173, 32);
- this.typefile.TabIndex = 83;
- this.typefile.Text = "Any type of file";
- this.typefile.UseVisualStyleBackColor = true;
- this.typefile.CheckedChanged += new System.EventHandler(this.typefile_CheckedChanged);
- //
- // typeurl
- //
- this.typeurl.AutoSize = true;
- this.typeurl.Location = new System.Drawing.Point(228, 32);
- this.typeurl.Margin = new System.Windows.Forms.Padding(2);
- this.typeurl.Name = "typeurl";
- this.typeurl.Size = new System.Drawing.Size(71, 32);
- this.typeurl.TabIndex = 82;
- this.typeurl.Text = "Link";
- this.typeurl.UseVisualStyleBackColor = true;
- this.typeurl.CheckedChanged += new System.EventHandler(this.typeurl_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(8, 12);
- this.label26.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label26.Name = "label26";
- this.label26.Size = new System.Drawing.Size(274, 35);
- 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(850, 598);
- this.tabPage9.TabIndex = 2;
- this.tabPage9.Text = "Remove";
- //
- // panel5
- //
- this.panel5.Controls.Add(this.listDesktopItems);
- this.panel5.Location = new System.Drawing.Point(14, 50);
- this.panel5.Name = "panel5";
- this.panel5.Size = new System.Drawing.Size(337, 350);
- 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.FixedSingle;
- 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 = 28;
- 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(337, 350);
- 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(124, 405);
- this.button60.Margin = new System.Windows.Forms.Padding(2);
- this.button60.Name = "button60";
- this.button60.Size = new System.Drawing.Size(117, 39);
- 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(245, 405);
- this.button61.Margin = new System.Windows.Forms.Padding(2);
- this.button61.Name = "button61";
- this.button61.Size = new System.Drawing.Size(106, 39);
- 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(14, 405);
- this.button62.Margin = new System.Windows.Forms.Padding(2);
- this.button62.Name = "button62";
- this.button62.Size = new System.Drawing.Size(106, 39);
- 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(8, 12);
- this.label25.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label25.Name = "label25";
- this.label25.Size = new System.Drawing.Size(343, 35);
- this.label25.TabIndex = 77;
- this.label25.Tag = "themeable";
- this.label25.Text = "Remove already added 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(850, 598);
- 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(14, 345);
- this.button65.Margin = new System.Windows.Forms.Padding(2);
- this.button65.Name = "button65";
- this.button65.Size = new System.Drawing.Size(232, 39);
- 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(14, 300);
- this.button66.Margin = new System.Windows.Forms.Padding(2);
- this.button66.Name = "button66";
- this.button66.Size = new System.Drawing.Size(232, 39);
- 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(8, 12);
- this.label24.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label24.Name = "label24";
- this.label24.Size = new System.Drawing.Size(288, 35);
- 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(252, 60);
- this.button58.Margin = new System.Windows.Forms.Padding(2);
- this.button58.Name = "button58";
- this.button58.Size = new System.Drawing.Size(38, 39);
- 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(14, 60);
- this.button59.Margin = new System.Windows.Forms.Padding(2);
- this.button59.Name = "button59";
- this.button59.Size = new System.Drawing.Size(232, 39);
- 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(252, 240);
- this.button55.Margin = new System.Windows.Forms.Padding(2);
- this.button55.Name = "button55";
- this.button55.Size = new System.Drawing.Size(38, 39);
- 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(14, 240);
- this.button57.Margin = new System.Windows.Forms.Padding(2);
- this.button57.Name = "button57";
- this.button57.Size = new System.Drawing.Size(232, 39);
- 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(252, 150);
- this.button52.Margin = new System.Windows.Forms.Padding(2);
- this.button52.Name = "button52";
- this.button52.Size = new System.Drawing.Size(38, 39);
- 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(14, 105);
- this.button53.Margin = new System.Windows.Forms.Padding(2);
- this.button53.Name = "button53";
- this.button53.Size = new System.Drawing.Size(232, 39);
- 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(252, 195);
- this.button49.Margin = new System.Windows.Forms.Padding(2);
- this.button49.Name = "button49";
- this.button49.Size = new System.Drawing.Size(38, 39);
- 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(14, 195);
- this.button51.Margin = new System.Windows.Forms.Padding(2);
- this.button51.Name = "button51";
- this.button51.Size = new System.Drawing.Size(232, 39);
- 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(252, 105);
- this.button56.Margin = new System.Windows.Forms.Padding(2);
- this.button56.Name = "button56";
- this.button56.Size = new System.Drawing.Size(38, 39);
- 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(14, 150);
- this.button54.Margin = new System.Windows.Forms.Padding(2);
- this.button54.Name = "button54";
- this.button54.Size = new System.Drawing.Size(232, 39);
- 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.button50);
- this.tabPage11.Controls.Add(this.button48);
- this.tabPage11.Controls.Add(this.runkey);
- this.tabPage11.Controls.Add(this.label22);
- this.tabPage11.Controls.Add(this.runfile);
- 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(850, 598);
- this.tabPage11.TabIndex = 4;
- this.tabPage11.Text = "Run Dialog";
- //
- // panel6
- //
- this.panel6.Controls.Add(this.listCustomCommands);
- this.panel6.Location = new System.Drawing.Point(14, 263);
- this.panel6.Name = "panel6";
- this.panel6.Size = new System.Drawing.Size(314, 284);
- 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.FixedSingle;
- 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 = 28;
- 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(314, 284);
- 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(332, 263);
- this.button26.Margin = new System.Windows.Forms.Padding(2);
- this.button26.Name = "button26";
- this.button26.Size = new System.Drawing.Size(108, 34);
- 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(332, 301);
- this.button8.Margin = new System.Windows.Forms.Padding(2);
- this.button8.Name = "button8";
- this.button8.Size = new System.Drawing.Size(108, 34);
- 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(8, 216);
- this.label23.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label23.Name = "label23";
- this.label23.Size = new System.Drawing.Size(406, 35);
- this.label23.TabIndex = 80;
- this.label23.Tag = "themeable";
- this.label23.Text = "Remove already added commands";
- //
- // button50
- //
- this.button50.BackColor = System.Drawing.Color.DodgerBlue;
- this.button50.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.button50.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.button50.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.button50.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button50.ForeColor = System.Drawing.Color.White;
- this.button50.Location = new System.Drawing.Point(283, 162);
- this.button50.Margin = new System.Windows.Forms.Padding(2);
- this.button50.Name = "button50";
- this.button50.Size = new System.Drawing.Size(89, 34);
- this.button50.TabIndex = 60;
- this.button50.Text = "Create";
- this.button50.UseVisualStyleBackColor = false;
- this.button50.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(332, 94);
- this.button48.Margin = new System.Windows.Forms.Padding(2);
- this.button48.Name = "button48";
- this.button48.Size = new System.Drawing.Size(40, 34);
- this.button48.TabIndex = 58;
- this.button48.Text = "...";
- this.button48.UseVisualStyleBackColor = false;
- this.button48.Click += new System.EventHandler(this.button48_Click);
- //
- // runkey
- //
- this.runkey.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
- this.runkey.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.runkey.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.runkey.ForeColor = System.Drawing.Color.White;
- this.runkey.Location = new System.Drawing.Point(14, 162);
- this.runkey.Margin = new System.Windows.Forms.Padding(2);
- this.runkey.Name = "runkey";
- this.runkey.Size = new System.Drawing.Size(265, 34);
- this.runkey.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(9, 131);
- this.label22.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label22.Name = "label22";
- this.label22.Size = new System.Drawing.Size(96, 28);
- this.label22.TabIndex = 8;
- this.label22.Text = "Keyword:";
- //
- // runfile
- //
- this.runfile.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
- this.runfile.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.runfile.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.runfile.ForeColor = System.Drawing.Color.White;
- this.runfile.Location = new System.Drawing.Point(14, 94);
- this.runfile.Margin = new System.Windows.Forms.Padding(2);
- this.runfile.Name = "runfile";
- this.runfile.ReadOnly = true;
- this.runfile.Size = new System.Drawing.Size(314, 34);
- this.runfile.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(9, 62);
- this.label21.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label21.Name = "label21";
- this.label21.Size = new System.Drawing.Size(126, 28);
- 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(8, 12);
- this.label20.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label20.Name = "label20";
- this.label20.Size = new System.Drawing.Size(372, 35);
- this.label20.TabIndex = 5;
- this.label20.Tag = "themeable";
- this.label20.Text = "Define your custom commands";
- //
- // tabPage2
- //
- this.tabPage2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
- this.tabPage2.Controls.Add(this.label27);
- this.tabPage2.Controls.Add(this.minimaltheme);
- this.tabPage2.Controls.Add(this.carameltheme);
- this.tabPage2.Controls.Add(this.limetheme);
- this.tabPage2.Controls.Add(this.magmatheme);
- this.tabPage2.Controls.Add(this.oceantheme);
- this.tabPage2.Controls.Add(this.zergtheme);
- this.tabPage2.Location = new System.Drawing.Point(4, 29);
- this.tabPage2.Margin = new System.Windows.Forms.Padding(2);
- this.tabPage2.Name = "tabPage2";
- this.tabPage2.Padding = new System.Windows.Forms.Padding(2);
- this.tabPage2.Size = new System.Drawing.Size(862, 635);
- this.tabPage2.TabIndex = 6;
- this.tabPage2.Text = "Options";
- //
- // 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(8, 12);
- this.label27.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label27.Name = "label27";
- this.label27.Size = new System.Drawing.Size(238, 35);
- this.label27.TabIndex = 55;
- this.label27.Tag = "themeable";
- this.label27.Text = "Choose your theme";
- //
- // minimaltheme
- //
- this.minimaltheme.AutoSize = true;
- this.minimaltheme.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.minimaltheme.ForeColor = System.Drawing.Color.Gray;
- this.minimaltheme.Location = new System.Drawing.Point(149, 139);
- this.minimaltheme.Margin = new System.Windows.Forms.Padding(2);
- this.minimaltheme.Name = "minimaltheme";
- this.minimaltheme.Size = new System.Drawing.Size(106, 32);
- this.minimaltheme.TabIndex = 53;
- this.minimaltheme.Text = "Minimal";
- this.minimaltheme.UseVisualStyleBackColor = true;
- this.minimaltheme.CheckedChanged += new System.EventHandler(this.minimaltheme_CheckedChanged);
- //
- // carameltheme
- //
- this.carameltheme.AutoSize = true;
- this.carameltheme.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.carameltheme.ForeColor = System.Drawing.Color.DarkOrange;
- this.carameltheme.Location = new System.Drawing.Point(149, 62);
- this.carameltheme.Margin = new System.Windows.Forms.Padding(2);
- this.carameltheme.Name = "carameltheme";
- this.carameltheme.Size = new System.Drawing.Size(106, 32);
- this.carameltheme.TabIndex = 52;
- this.carameltheme.Text = "Caramel";
- this.carameltheme.UseVisualStyleBackColor = true;
- this.carameltheme.CheckedChanged += new System.EventHandler(this.carameltheme_CheckedChanged);
- //
- // limetheme
- //
- this.limetheme.AutoSize = true;
- this.limetheme.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.limetheme.ForeColor = System.Drawing.Color.LimeGreen;
- this.limetheme.Location = new System.Drawing.Point(149, 101);
- this.limetheme.Margin = new System.Windows.Forms.Padding(2);
- this.limetheme.Name = "limetheme";
- this.limetheme.Size = new System.Drawing.Size(77, 32);
- this.limetheme.TabIndex = 51;
- this.limetheme.Text = "Lime";
- this.limetheme.UseVisualStyleBackColor = true;
- this.limetheme.CheckedChanged += new System.EventHandler(this.limetheme_CheckedChanged);
- //
- // magmatheme
- //
- this.magmatheme.AutoSize = true;
- this.magmatheme.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.magmatheme.ForeColor = System.Drawing.Color.Tomato;
- this.magmatheme.Location = new System.Drawing.Point(32, 101);
- this.magmatheme.Margin = new System.Windows.Forms.Padding(2);
- this.magmatheme.Name = "magmatheme";
- this.magmatheme.Size = new System.Drawing.Size(101, 32);
- this.magmatheme.TabIndex = 50;
- this.magmatheme.Text = "Magma";
- this.magmatheme.UseVisualStyleBackColor = true;
- this.magmatheme.CheckedChanged += new System.EventHandler(this.magmatheme_CheckedChanged);
- //
- // oceantheme
- //
- this.oceantheme.AutoSize = true;
- this.oceantheme.Checked = true;
- this.oceantheme.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.oceantheme.ForeColor = System.Drawing.Color.DodgerBlue;
- this.oceantheme.Location = new System.Drawing.Point(32, 62);
- this.oceantheme.Margin = new System.Windows.Forms.Padding(2);
- this.oceantheme.Name = "oceantheme";
- this.oceantheme.Size = new System.Drawing.Size(90, 32);
- this.oceantheme.TabIndex = 49;
- this.oceantheme.TabStop = true;
- this.oceantheme.Text = "Ocean";
- this.oceantheme.UseVisualStyleBackColor = true;
- this.oceantheme.CheckedChanged += new System.EventHandler(this.oceantheme_CheckedChanged);
- //
- // zergtheme
- //
- this.zergtheme.AutoSize = true;
- this.zergtheme.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.zergtheme.ForeColor = System.Drawing.Color.MediumOrchid;
- this.zergtheme.Location = new System.Drawing.Point(32, 139);
- this.zergtheme.Margin = new System.Windows.Forms.Padding(2);
- this.zergtheme.Name = "zergtheme";
- this.zergtheme.Size = new System.Drawing.Size(75, 32);
- this.zergtheme.TabIndex = 48;
- this.zergtheme.Text = "Zerg";
- this.zergtheme.UseVisualStyleBackColor = true;
- this.zergtheme.CheckedChanged += new System.EventHandler(this.zergtheme_CheckedChanged);
- //
- // DefineCmdDialog
- //
- this.DefineCmdDialog.Filter = "Executables [*.exe]|*.exe";
- this.DefineCmdDialog.Title = "Optimizer | Select a file...";
- this.DefineCmdDialog.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);
- //
- // SynapseValidator
- //
- this.SynapseValidator.Interval = 5;
- this.SynapseValidator.Tick += new System.EventHandler(this.SynapseValidator_Tick);
- //
- // iRunValidator
- //
- this.iRunValidator.Interval = 5;
- this.iRunValidator.Tick += new System.EventHandler(this.iRunValidator_Tick);
- //
- // MainForm
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(120F, 120F);
- 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(872, 750);
- 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, 4, 2, 4);
- 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.aio.ResumeLayout(false);
- this.universaltab.ResumeLayout(false);
- this.tab10.ResumeLayout(false);
- this.tab8.ResumeLayout(false);
- this.tab7.ResumeLayout(false);
- this.tabPage3.ResumeLayout(false);
- this.tabPage3.PerformLayout();
- this.cleaningpanel.ResumeLayout(false);
- this.cleaningpanel.PerformLayout();
- this.panel1.ResumeLayout(false);
- this.panel1.PerformLayout();
- this.tabPage4.ResumeLayout(false);
- this.tabPage4.PerformLayout();
- this.panel3.ResumeLayout(false);
- this.tabPage5.ResumeLayout(false);
- this.tabPage5.PerformLayout();
- this.panel2.ResumeLayout(false);
- this.panel2.PerformLayout();
- this.tabPage1.ResumeLayout(false);
- this.tabPage1.PerformLayout();
- this.panel4.ResumeLayout(false);
- this.panel4.PerformLayout();
- this.tabPage6.ResumeLayout(false);
- this.synapse.ResumeLayout(false);
- this.tabPage7.ResumeLayout(false);
- this.tabPage7.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.tabPage2.ResumeLayout(false);
- this.tabPage2.PerformLayout();
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.Panel tpanel;
- private System.Windows.Forms.Label bittxt;
- private System.Windows.Forms.Label ostxt;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.PictureBox pictureBox1;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.Panel bpanel;
- private System.Windows.Forms.TabControl aio;
- private System.Windows.Forms.TabPage universaltab;
- private System.Windows.Forms.Button button6;
- private System.Windows.Forms.Button button5;
- private System.Windows.Forms.Button button4;
- private System.Windows.Forms.Button button39;
- private System.Windows.Forms.Button button17;
- private System.Windows.Forms.Button button16;
- private System.Windows.Forms.Button button15;
- private System.Windows.Forms.Button button14;
- private System.Windows.Forms.Button button13;
- private System.Windows.Forms.Button button10;
- private System.Windows.Forms.Button button2;
- private System.Windows.Forms.Button button1;
- private System.Windows.Forms.Button button3;
- private System.Windows.Forms.TabPage tab10;
- private System.Windows.Forms.Button button11;
- private System.Windows.Forms.Button button43;
- private System.Windows.Forms.Button button30;
- private System.Windows.Forms.Button button29;
- private System.Windows.Forms.Button button28;
- private System.Windows.Forms.Button button27;
- private System.Windows.Forms.Button button25;
- private System.Windows.Forms.Button button24;
- private System.Windows.Forms.Button button23;
- private System.Windows.Forms.Button button21;
- private System.Windows.Forms.Button button18;
- private System.Windows.Forms.Button button9;
- private System.Windows.Forms.TabPage tab8;
- private System.Windows.Forms.Button button12;
- private System.Windows.Forms.Button button44;
- private System.Windows.Forms.Button button35;
- private System.Windows.Forms.Button button36;
- private System.Windows.Forms.TabPage tab7;
- private System.Windows.Forms.Button button19;
- private System.Windows.Forms.Button button45;
- private System.Windows.Forms.Button button38;
- private System.Windows.Forms.TabPage tabPage3;
- private System.Windows.Forms.CheckBox tempfiles;
- private System.Windows.Forms.CheckBox selectall;
- private System.Windows.Forms.Button button20;
- private System.Windows.Forms.CheckBox mediaplayercache;
- private System.Windows.Forms.CheckBox logfiles;
- private System.Windows.Forms.CheckBox emptytrash;
- private System.Windows.Forms.CheckBox prefetchcache;
- private System.Windows.Forms.CheckBox bsoddumps;
- private System.Windows.Forms.CheckBox ftpservers;
- private System.Windows.Forms.CheckBox utorrentcache;
- private System.Windows.Forms.Panel panel1;
- private System.Windows.Forms.Label label4;
- private System.Windows.Forms.ProgressBar progress2;
- private System.Windows.Forms.TabPage tabPage4;
- 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 tabPage5;
- private System.Windows.Forms.Label label7;
- private System.Windows.Forms.Button button33;
- private System.Windows.Forms.Panel panel2;
- private System.Windows.Forms.CheckBox regeditor;
- private System.Windows.Forms.CheckBox enableall;
- private System.Windows.Forms.CheckBox rightmenu;
- private System.Windows.Forms.CheckBox taskmgr;
- private System.Windows.Forms.CheckBox cmdp;
- private System.Windows.Forms.CheckBox wfirewall;
- private System.Windows.Forms.CheckBox rundialog;
- private System.Windows.Forms.CheckBox foldero;
- private System.Windows.Forms.CheckBox controlp;
- private System.Windows.Forms.CheckBox restartexplorer;
- 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 button40;
- private System.Windows.Forms.Button button31;
- private System.Windows.Forms.ColumnHeader columnHeader3;
- private System.Windows.Forms.TabPage tabPage1;
- 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 hl;
- 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 errorreports;
- private System.Windows.Forms.Panel cleaningpanel;
- private System.Windows.Forms.TabPage tabPage6;
- private System.Windows.Forms.TabControl synapse;
- private System.Windows.Forms.TabPage tabPage7;
- 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 runkey;
- private System.Windows.Forms.Label label22;
- private System.Windows.Forms.TextBox runfile;
- private System.Windows.Forms.Label label21;
- private System.Windows.Forms.Label label20;
- private System.Windows.Forms.Button button50;
- internal System.Windows.Forms.OpenFileDialog DefineCmdDialog;
- 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 typecmd;
- private System.Windows.Forms.RadioButton typeprogram;
- private System.Windows.Forms.RadioButton typefile;
- private System.Windows.Forms.RadioButton typefolder;
- private System.Windows.Forms.RadioButton typeurl;
- private System.Windows.Forms.Label label26;
- private System.Windows.Forms.GroupBox icontoaddgroup;
- private System.Windows.Forms.CheckBox defaulticon;
- private System.Windows.Forms.Button browseicon;
- private System.Windows.Forms.TextBox icontoadd;
- private System.Windows.Forms.GroupBox itemtoaddgroup;
- private System.Windows.Forms.Button browseitem;
- private System.Windows.Forms.TextBox itemtoadd;
- private System.Windows.Forms.GroupBox security;
- private System.Windows.Forms.CheckBox shiftkey;
- private System.Windows.Forms.GroupBox itemposition;
- private System.Windows.Forms.RadioButton topposition;
- private System.Windows.Forms.RadioButton midposition;
- private System.Windows.Forms.RadioButton botposition;
- private System.Windows.Forms.GroupBox itemnamegroup;
- private System.Windows.Forms.TextBox itemname;
- private System.Windows.Forms.Button addmodifybtn;
- 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 SynapseValidator;
- private System.Windows.Forms.Timer iRunValidator;
- private System.Windows.Forms.Button button63;
- private System.Windows.Forms.Button button64;
- private System.Windows.Forms.Button button65;
- private System.Windows.Forms.Button button66;
- private System.Windows.Forms.TabPage tabPage2;
- private System.Windows.Forms.RadioButton minimaltheme;
- private System.Windows.Forms.RadioButton carameltheme;
- private System.Windows.Forms.RadioButton limetheme;
- private System.Windows.Forms.RadioButton magmatheme;
- private System.Windows.Forms.RadioButton oceantheme;
- private System.Windows.Forms.RadioButton zergtheme;
- private System.Windows.Forms.Label label27;
- private System.Windows.Forms.CheckBox chkBlock;
- private System.Windows.Forms.Button button7;
- 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.Button button34;
- private System.Windows.Forms.Button button68;
- private System.Windows.Forms.Button button67;
- }
- }
|