123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097 |
- using System.Windows.Forms;
- namespace Welling_Motor_Debug_Tool
- {
- partial class Form1
- {
- /// <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(Form1));
- this.menuStrip_Set = new System.Windows.Forms.MenuStrip();
- this.端口连接ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.刷新ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.端口号ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.toolStripComboBox_ComNum = new System.Windows.Forms.ToolStripComboBox();
- this.波特率ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.toolStripComboBox_Baudrate = new System.Windows.Forms.ToolStripComboBox();
- this.连接ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
- this.其它配置项ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.连接开机ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.断开关机ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.识别通讯盒ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.配置ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.写入存储ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.离线使用ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.允许ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.不允许ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.服务器配置ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.IP地址ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.toolStripTextBox_ServerIP = new System.Windows.Forms.ToolStripTextBox();
- this.端口ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.toolStripTextBox_ServerPort = new System.Windows.Forms.ToolStripTextBox();
- this.用户名ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.toolStripTextBox_ServerUser = new System.Windows.Forms.ToolStripTextBox();
- this.密码ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.toolStripTextBox_ServerPasswd = new System.Windows.Forms.ToolStripTextBox();
- this.存储路径ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.toolStripTextBox_ServerPath = new System.Windows.Forms.ToolStripTextBox();
- this.生产信息ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.生产商ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.toolStripTextBox_MAC = new System.Windows.Forms.ToolStripTextBox();
- this.生产地ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.toolStripTextBoxMACAddr = new System.Windows.Forms.ToolStripTextBox();
- this.生产日期ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.toolStripTextBox_MACDate = new System.Windows.Forms.ToolStripTextBox();
- this.产品标识ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.toolStripTextBox_MACPD = new System.Windows.Forms.ToolStripTextBox();
- this.工具箱ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.运行信息记录ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.计算器ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.页面保存ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.系统开关ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.开机ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.关机ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.关于ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.帮助ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.版本ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.statusStrip1 = new System.Windows.Forms.StatusStrip();
- this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
- this.groupBox1 = new System.Windows.Forms.GroupBox();
- this.label24 = new System.Windows.Forms.Label();
- this.numericUpDown_SpeedAdj = new System.Windows.Forms.NumericUpDown();
- this.label4 = new System.Windows.Forms.Label();
- this.comboBox_LightSwitch = new System.Windows.Forms.ComboBox();
- this.label3 = new System.Windows.Forms.Label();
- this.comboBox_GearSt = new System.Windows.Forms.ComboBox();
- this.comboBox_WorkMode = new System.Windows.Forms.ComboBox();
- this.label2 = new System.Windows.Forms.Label();
- this.label1 = new System.Windows.Forms.Label();
- this.groupBox2 = new System.Windows.Forms.GroupBox();
- this.textBox_RunInfo_BikeSpeed = new System.Windows.Forms.TextBox();
- this.textBox_RunInfo_MotorSpeed = new System.Windows.Forms.TextBox();
- this.textBox_RunInfo_Cadence = new System.Windows.Forms.TextBox();
- this.textBox_TorqueReg = new System.Windows.Forms.TextBox();
- this.textBox_RunInfo_Torque = new System.Windows.Forms.TextBox();
- this.textBox_RunInfo_Dir = new System.Windows.Forms.TextBox();
- this.textBox_RunInfo_Vol = new System.Windows.Forms.TextBox();
- this.textBox_RunInfo_Current = new System.Windows.Forms.TextBox();
- this.textBox_RunInfo_Power = new System.Windows.Forms.TextBox();
- this.textBox_RunInfo_SOC = new System.Windows.Forms.TextBox();
- this.textBox_RunInfo_T_PCB = new System.Windows.Forms.TextBox();
- this.textBox_RunInfo_T_MCU = new System.Windows.Forms.TextBox();
- this.textBox_RunInfo_T_Coil = new System.Windows.Forms.TextBox();
- this.textBox_RunInfo_GearSt = new System.Windows.Forms.TextBox();
- this.textBox_RunInfo_LightSwitch = new System.Windows.Forms.TextBox();
- this.textBox_RunInfo_Range = new System.Windows.Forms.TextBox();
- this.textBox_RunInfo_AvgPower = new System.Windows.Forms.TextBox();
- this.textBox_RunInfo_Trip = new System.Windows.Forms.TextBox();
- this.textBox_RunInfo_Trip_Time = new System.Windows.Forms.TextBox();
- this.textBox_ErrorCode = new System.Windows.Forms.TextBox();
- this.label55 = new System.Windows.Forms.Label();
- this.label28 = new System.Windows.Forms.Label();
- this.label22 = new System.Windows.Forms.Label();
- this.label16 = new System.Windows.Forms.Label();
- this.label10 = new System.Windows.Forms.Label();
- this.label21 = new System.Windows.Forms.Label();
- this.label15 = new System.Windows.Forms.Label();
- this.label9 = new System.Windows.Forms.Label();
- this.label20 = new System.Windows.Forms.Label();
- this.label14 = new System.Windows.Forms.Label();
- this.label8 = new System.Windows.Forms.Label();
- this.label19 = new System.Windows.Forms.Label();
- this.label13 = new System.Windows.Forms.Label();
- this.label7 = new System.Windows.Forms.Label();
- this.label18 = new System.Windows.Forms.Label();
- this.label12 = new System.Windows.Forms.Label();
- this.label6 = new System.Windows.Forms.Label();
- this.label17 = new System.Windows.Forms.Label();
- this.label11 = new System.Windows.Forms.Label();
- this.label5 = new System.Windows.Forms.Label();
- this.groupBox3 = new System.Windows.Forms.GroupBox();
- this.tabControl1 = new System.Windows.Forms.TabControl();
- this.tabPage_MotorParam = new System.Windows.Forms.TabPage();
- this.button_Write = new System.Windows.Forms.Button();
- this.button_Read_MotorParam = new System.Windows.Forms.Button();
- this.richTextBox_MotorParam = new System.Windows.Forms.RichTextBox();
- this.tabPage_BikeParam = new System.Windows.Forms.TabPage();
- this.textBox_AutoPowerOff = new System.Windows.Forms.TextBox();
- this.label95 = new System.Windows.Forms.Label();
- this.textBox_PowerOffDelay = new System.Windows.Forms.TextBox();
- this.textBox_PowerOnDelay = new System.Windows.Forms.TextBox();
- this.label93 = new System.Windows.Forms.Label();
- this.label94 = new System.Windows.Forms.Label();
- this.comboBox_TailLightVol = new System.Windows.Forms.ComboBox();
- this.label92 = new System.Windows.Forms.Label();
- this.comboBox_FrontLightVol = new System.Windows.Forms.ComboBox();
- this.label91 = new System.Windows.Forms.Label();
- this.comboBox_TailLightMode = new System.Windows.Forms.ComboBox();
- this.label90 = new System.Windows.Forms.Label();
- this.button_WriteBikeParam = new System.Windows.Forms.Button();
- this.button_ReadBikeParam = new System.Windows.Forms.Button();
- this.richTextBox_BikeParam = new System.Windows.Forms.RichTextBox();
- this.tabPage_ControlParam = new System.Windows.Forms.TabPage();
- this.button_WriteControlParam = new System.Windows.Forms.Button();
- this.button_ReadControlParam = new System.Windows.Forms.Button();
- this.richTextBox_ControlParam = new System.Windows.Forms.RichTextBox();
- this.tabPage_SensorParam = new System.Windows.Forms.TabPage();
- this.button_WriteTqSensorParam = new System.Windows.Forms.Button();
- this.comboBox_TorqueSet = new System.Windows.Forms.ComboBox();
- this.label29 = new System.Windows.Forms.Label();
- this.textBox_Load = new System.Windows.Forms.TextBox();
- this.label27 = new System.Windows.Forms.Label();
- this.label26 = new System.Windows.Forms.Label();
- this.button_Write_Cal = new System.Windows.Forms.Button();
- this.button_WriteSensorParam = new System.Windows.Forms.Button();
- this.button_ReadSensorParam = new System.Windows.Forms.Button();
- this.richTextBox_SensorParam = new System.Windows.Forms.RichTextBox();
- this.tabPage_AssistParam = new System.Windows.Forms.TabPage();
- this.label62 = new System.Windows.Forms.Label();
- this.label47 = new System.Windows.Forms.Label();
- this.comboBox_AssistTorque = new System.Windows.Forms.ComboBox();
- this.comboBox_AssistCadence = new System.Windows.Forms.ComboBox();
- this.label25 = new System.Windows.Forms.Label();
- this.button_WriteAssistParam = new System.Windows.Forms.Button();
- this.button_ReadAssistParam = new System.Windows.Forms.Button();
- this.richTextBox_AssistParam = new System.Windows.Forms.RichTextBox();
- this.tabPage_DebugParam = new System.Windows.Forms.TabPage();
- this.button_WriteDebugParam = new System.Windows.Forms.Button();
- this.button_ReadDebugParam = new System.Windows.Forms.Button();
- this.richTextBox_DebugParam = new System.Windows.Forms.RichTextBox();
- this.tabPage_RecordInfo = new System.Windows.Forms.TabPage();
- this.label89 = new System.Windows.Forms.Label();
- this.label88 = new System.Windows.Forms.Label();
- this.textBox_LogAddrEnd = new System.Windows.Forms.TextBox();
- this.label_LogAddrBegin = new System.Windows.Forms.Label();
- this.textBox_LogAddrBegin = new System.Windows.Forms.TextBox();
- this.button_SaveRecordInfo = new System.Windows.Forms.Button();
- this.button_ReadRecord = new System.Windows.Forms.Button();
- this.button_ExportLog = new System.Windows.Forms.Button();
- this.richTextBox_Record = new System.Windows.Forms.RichTextBox();
- this.tabPage_OtherInfo = new System.Windows.Forms.TabPage();
- this.groupBox16 = new System.Windows.Forms.GroupBox();
- this.groupBox18 = new System.Windows.Forms.GroupBox();
- this.radioButton_SIP_SaveNo = new System.Windows.Forms.RadioButton();
- this.radioButton_SIP_SaveYes = new System.Windows.Forms.RadioButton();
- this.groupBox17 = new System.Windows.Forms.GroupBox();
- this.radioButton_EE_SaveYes = new System.Windows.Forms.RadioButton();
- this.radioButton_EE_SaveNo = new System.Windows.Forms.RadioButton();
- this.button_ReadSaveFlag = new System.Windows.Forms.Button();
- this.button_WriteSaveFlag = new System.Windows.Forms.Button();
- this.checkBox_SaveYes = new System.Windows.Forms.CheckBox();
- this.groupBox9 = new System.Windows.Forms.GroupBox();
- this.button_Recovery = new System.Windows.Forms.Button();
- this.button_ClearLog = new System.Windows.Forms.Button();
- this.button_Reset = new System.Windows.Forms.Button();
- this.button_SystemClear = new System.Windows.Forms.Button();
- this.groupBox8 = new System.Windows.Forms.GroupBox();
- this.button_ReadOnLine = new System.Windows.Forms.Button();
- this.textBox_Online = new System.Windows.Forms.TextBox();
- this.label42 = new System.Windows.Forms.Label();
- this.groupBox7 = new System.Windows.Forms.GroupBox();
- this.button_ReadMAC = new System.Windows.Forms.Button();
- this.button_WriteMac = new System.Windows.Forms.Button();
- this.textBox_PP = new System.Windows.Forms.TextBox();
- this.textBox_MACDate = new System.Windows.Forms.TextBox();
- this.textBox_MACAdd = new System.Windows.Forms.TextBox();
- this.label34 = new System.Windows.Forms.Label();
- this.label39 = new System.Windows.Forms.Label();
- this.textBox_MAC = new System.Windows.Forms.TextBox();
- this.label40 = new System.Windows.Forms.Label();
- this.label41 = new System.Windows.Forms.Label();
- this.groupBox6 = new System.Windows.Forms.GroupBox();
- this.button_ReadUser3 = new System.Windows.Forms.Button();
- this.button_WriteUser3 = new System.Windows.Forms.Button();
- this.button_ReadUser2 = new System.Windows.Forms.Button();
- this.button_WriteUser2 = new System.Windows.Forms.Button();
- this.button_ReadUser1 = new System.Windows.Forms.Button();
- this.button_WriteUser1 = new System.Windows.Forms.Button();
- this.textBox_User3 = new System.Windows.Forms.TextBox();
- this.textBox_User2 = new System.Windows.Forms.TextBox();
- this.label35 = new System.Windows.Forms.Label();
- this.textBox_User1 = new System.Windows.Forms.TextBox();
- this.label36 = new System.Windows.Forms.Label();
- this.label38 = new System.Windows.Forms.Label();
- this.groupBox5 = new System.Windows.Forms.GroupBox();
- this.button_ReadKey = new System.Windows.Forms.Button();
- this.button_WriteKey = new System.Windows.Forms.Button();
- this.textBox_Key = new System.Windows.Forms.TextBox();
- this.label37 = new System.Windows.Forms.Label();
- this.groupBox4 = new System.Windows.Forms.GroupBox();
- this.label85 = new System.Windows.Forms.Label();
- this.textBox_SP = new System.Windows.Forms.TextBox();
- this.button_ReadVersion = new System.Windows.Forms.Button();
- this.button_WriteSN = new System.Windows.Forms.Button();
- this.button_WriteModel = new System.Windows.Forms.Button();
- this.textBox_FW = new System.Windows.Forms.TextBox();
- this.textBox_HW = new System.Windows.Forms.TextBox();
- this.textBox_SN = new System.Windows.Forms.TextBox();
- this.label33 = new System.Windows.Forms.Label();
- this.label32 = new System.Windows.Forms.Label();
- this.textBox_Model = new System.Windows.Forms.TextBox();
- this.label31 = new System.Windows.Forms.Label();
- this.label30 = new System.Windows.Forms.Label();
- this.tabPage_OBC = new System.Windows.Forms.TabPage();
- this.groupBox26 = new System.Windows.Forms.GroupBox();
- this.button_OBC_ButtonSet = new System.Windows.Forms.Button();
- this.button_OBC_ButtonLight = new System.Windows.Forms.Button();
- this.button_OBC_ButtonWalk = new System.Windows.Forms.Button();
- this.button_OBC_ButtonDec = new System.Windows.Forms.Button();
- this.button_OBC_ButtonAcc = new System.Windows.Forms.Button();
- this.button_OBC_ButtonPower = new System.Windows.Forms.Button();
- this.groupBox15 = new System.Windows.Forms.GroupBox();
- this.textBox_OBC_ODO_TIME = new System.Windows.Forms.TextBox();
- this.button_OBC_ReadRideInfo = new System.Windows.Forms.Button();
- this.textBox_OBC_ODO_KM = new System.Windows.Forms.TextBox();
- this.button_OBC_ClearTrip = new System.Windows.Forms.Button();
- this.textBox_OBC_TRIP_TIME = new System.Windows.Forms.TextBox();
- this.label54 = new System.Windows.Forms.Label();
- this.textBox_OBC_TRIP_KM = new System.Windows.Forms.TextBox();
- this.label52 = new System.Windows.Forms.Label();
- this.groupBox14 = new System.Windows.Forms.GroupBox();
- this.label53 = new System.Windows.Forms.Label();
- this.textBox_OBC_ReadSP = new System.Windows.Forms.TextBox();
- this.button_OBC_ReadVerInfo = new System.Windows.Forms.Button();
- this.textBox_OBC_ReadFW = new System.Windows.Forms.TextBox();
- this.textBox_OBC_ReadHW = new System.Windows.Forms.TextBox();
- this.textBox_OBC_ReadSN = new System.Windows.Forms.TextBox();
- this.label48 = new System.Windows.Forms.Label();
- this.label49 = new System.Windows.Forms.Label();
- this.textBox_OBC_ReadModel = new System.Windows.Forms.TextBox();
- this.label50 = new System.Windows.Forms.Label();
- this.label51 = new System.Windows.Forms.Label();
- this.groupBox13 = new System.Windows.Forms.GroupBox();
- this.label64 = new System.Windows.Forms.Label();
- this.numericUpDown_OBC_OffTime = new System.Windows.Forms.NumericUpDown();
- this.label63 = new System.Windows.Forms.Label();
- this.numericUpDown_OBC_WheelAdj = new System.Windows.Forms.NumericUpDown();
- this.label59 = new System.Windows.Forms.Label();
- this.comboBox_OBC_AssistFunc = new System.Windows.Forms.ComboBox();
- this.comboBox_OBC_StartMode = new System.Windows.Forms.ComboBox();
- this.label58 = new System.Windows.Forms.Label();
- this.label57 = new System.Windows.Forms.Label();
- this.button_OBC_WriteUserInfo = new System.Windows.Forms.Button();
- this.label56 = new System.Windows.Forms.Label();
- this.groupBox12 = new System.Windows.Forms.GroupBox();
- this.richTextBox_OBC_ReadUserInfo = new System.Windows.Forms.RichTextBox();
- this.button_OBC_ReadUserInfo = new System.Windows.Forms.Button();
- this.groupBox11 = new System.Windows.Forms.GroupBox();
- this.richTextBox_OBC_BMS_RunInfo = new System.Windows.Forms.RichTextBox();
- this.checkBox_OBC_StartReadBMS = new System.Windows.Forms.CheckBox();
- this.groupBox10 = new System.Windows.Forms.GroupBox();
- this.label60 = new System.Windows.Forms.Label();
- this.comboBox_OBC_LightSw = new System.Windows.Forms.ComboBox();
- this.label61 = new System.Windows.Forms.Label();
- this.comboBox_OBC_SetGearST = new System.Windows.Forms.ComboBox();
- this.checkBox_OBC_StartSetGearSt = new System.Windows.Forms.CheckBox();
- this.tabPage_RAMorFLASH = new System.Windows.Forms.TabPage();
- this.checkBox_ReadRanFlash_ChangeFormat = new System.Windows.Forms.CheckBox();
- this.checkBox_ReadRanFlash_AutoClear = new System.Windows.Forms.CheckBox();
- this.checkBox_ReadRanFlash_AutoSW = new System.Windows.Forms.CheckBox();
- this.textBox_Address_End = new System.Windows.Forms.TextBox();
- this.label66 = new System.Windows.Forms.Label();
- this.textBox_Address_Begin = new System.Windows.Forms.TextBox();
- this.label65 = new System.Windows.Forms.Label();
- this.button_ReadRamFlash = new System.Windows.Forms.Button();
- this.richTextBox_RamFlasgData = new System.Windows.Forms.RichTextBox();
- this.tabPage_FactoryMode = new System.Windows.Forms.TabPage();
- this.Button_FacModePowerOff = new System.Windows.Forms.Button();
- this.Button_FacModeSaveResult = new System.Windows.Forms.Button();
- this.Button_FacModeSetMacDate = new System.Windows.Forms.Button();
- this.groupBox25 = new System.Windows.Forms.GroupBox();
- this.label87 = new System.Windows.Forms.Label();
- this.textBox_FacModeGit = new System.Windows.Forms.TextBox();
- this.label86 = new System.Windows.Forms.Label();
- this.textBox_FacModeSP = new System.Windows.Forms.TextBox();
- this.label68 = new System.Windows.Forms.Label();
- this.label84 = new System.Windows.Forms.Label();
- this.textBox_FacModeFW = new System.Windows.Forms.TextBox();
- this.Button_FacModeReadVer = new System.Windows.Forms.Button();
- this.label83 = new System.Windows.Forms.Label();
- this.textBox_FacModeHW = new System.Windows.Forms.TextBox();
- this.label82 = new System.Windows.Forms.Label();
- this.textBox_FacModeNum = new System.Windows.Forms.TextBox();
- this.label81 = new System.Windows.Forms.Label();
- this.textBox_FacModeName = new System.Windows.Forms.TextBox();
- this.groupBox24 = new System.Windows.Forms.GroupBox();
- this.button_FacModeAssistParaSet = new System.Windows.Forms.Button();
- this.label80 = new System.Windows.Forms.Label();
- this.button_FacModeAssistParaRead = new System.Windows.Forms.Button();
- this.textBox_FacModeStartGain = new System.Windows.Forms.TextBox();
- this.textBox_FacModeCadencePer = new System.Windows.Forms.TextBox();
- this.label79 = new System.Windows.Forms.Label();
- this.label75 = new System.Windows.Forms.Label();
- this.textBox_FacModeCircuitK = new System.Windows.Forms.TextBox();
- this.textBox_FacModeSpeedLimitEnd = new System.Windows.Forms.TextBox();
- this.label78 = new System.Windows.Forms.Label();
- this.label76 = new System.Windows.Forms.Label();
- this.textBox_FacModeFltCounter = new System.Windows.Forms.TextBox();
- this.textBox_FacModeSpeedLimitTh = new System.Windows.Forms.TextBox();
- this.label77 = new System.Windows.Forms.Label();
- this.groupBox23 = new System.Windows.Forms.GroupBox();
- this.comboBox_FacModeStartMode = new System.Windows.Forms.ComboBox();
- this.comboBox_FacModeLightVol = new System.Windows.Forms.ComboBox();
- this.comboBox_FacModeAssist2 = new System.Windows.Forms.ComboBox();
- this.comboBox_FacModeAssist1 = new System.Windows.Forms.ComboBox();
- this.button_FacModeBikeParaSet = new System.Windows.Forms.Button();
- this.button_FacModeBikeParaRead = new System.Windows.Forms.Button();
- this.label74 = new System.Windows.Forms.Label();
- this.label73 = new System.Windows.Forms.Label();
- this.label72 = new System.Windows.Forms.Label();
- this.label71 = new System.Windows.Forms.Label();
- this.textBox_FacModeSpeedLimit = new System.Windows.Forms.TextBox();
- this.label70 = new System.Windows.Forms.Label();
- this.textBox_FacModeWheelSize = new System.Windows.Forms.TextBox();
- this.label69 = new System.Windows.Forms.Label();
- this.groupBox22 = new System.Windows.Forms.GroupBox();
- this.label_MotorSensor = new System.Windows.Forms.Label();
- this.label_Load = new System.Windows.Forms.Label();
- this.button_FacModeLightSW = new System.Windows.Forms.Button();
- this.label_FacModeMotorSpeedSet = new System.Windows.Forms.Label();
- this.label67 = new System.Windows.Forms.Label();
- this.trackBar_FacModeMotorSpeedAdj = new System.Windows.Forms.TrackBar();
- this.button_FacModeMotorRun = new System.Windows.Forms.Button();
- this.radioButton_FacModeDriverMtb = new System.Windows.Forms.RadioButton();
- this.radioButton_FacModeDriverCity = new System.Windows.Forms.RadioButton();
- this.groupBox21 = new System.Windows.Forms.GroupBox();
- this.button_FacModeWorkMode = new System.Windows.Forms.Button();
- this.checkBox_FacModeCheckCadence = new System.Windows.Forms.CheckBox();
- this.checkBox_FacModeCheckBikeSpeed = new System.Windows.Forms.CheckBox();
- this.checkBox_FacModeCheckNTC = new System.Windows.Forms.CheckBox();
- this.checkBox_FacModeCheckVol = new System.Windows.Forms.CheckBox();
- this.groupBox20 = new System.Windows.Forms.GroupBox();
- this.textBox10 = new System.Windows.Forms.TextBox();
- this.button_FacModeSensorRead = new System.Windows.Forms.Button();
- this.textBox_FacModeSensorADC0 = new System.Windows.Forms.TextBox();
- this.textBox_FacModeSensorADC4 = new System.Windows.Forms.TextBox();
- this.buttonFacModeSet1 = new System.Windows.Forms.Button();
- this.buttonFacModeSet2 = new System.Windows.Forms.Button();
- this.textBox_FacModeSensorADC3 = new System.Windows.Forms.TextBox();
- this.buttonFacModeSet3 = new System.Windows.Forms.Button();
- this.textBox_FacModeSensorADC1 = new System.Windows.Forms.TextBox();
- this.buttonFacModeSet4 = new System.Windows.Forms.Button();
- this.textBox_FacModeSensorADC2 = new System.Windows.Forms.TextBox();
- this.textBox_FacModeSensorCal4 = new System.Windows.Forms.TextBox();
- this.textBox_FacModeSensorCal3 = new System.Windows.Forms.TextBox();
- this.textBox_FacModeSensorCal1 = new System.Windows.Forms.TextBox();
- this.textBox_FacModeSensorCal2 = new System.Windows.Forms.TextBox();
- this.groupBox19 = new System.Windows.Forms.GroupBox();
- this.button_FacModeInit = new System.Windows.Forms.Button();
- this.label23 = new System.Windows.Forms.Label();
- this.label_RecCount = new System.Windows.Forms.Label();
- this.timer_1s = new System.Windows.Forms.Timer(this.components);
- this.label_BuildTime = new System.Windows.Forms.Label();
- this.label_SystemTime = new System.Windows.Forms.Label();
- this.label_COM_Sta = new System.Windows.Forms.Label();
- this.label43 = new System.Windows.Forms.Label();
- this.label44 = new System.Windows.Forms.Label();
- this.label45 = new System.Windows.Forms.Label();
- this.label96 = new System.Windows.Forms.Label();
- this.label_Server_ComStatus = new System.Windows.Forms.Label();
- this.label_ServerStatus = new System.Windows.Forms.Label();
- this.label_PortStatus = new System.Windows.Forms.Label();
- this.Button_FacModeSetNum = new System.Windows.Forms.Button();
- this.button_FacModeSetName = new System.Windows.Forms.Button();
- this.button_ScanCode = new System.Windows.Forms.Button();
- this.pictureBox2 = new System.Windows.Forms.PictureBox();
- this.menuStrip_Set.SuspendLayout();
- this.statusStrip1.SuspendLayout();
- this.groupBox1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_SpeedAdj)).BeginInit();
- this.groupBox2.SuspendLayout();
- this.groupBox3.SuspendLayout();
- this.tabControl1.SuspendLayout();
- this.tabPage_MotorParam.SuspendLayout();
- this.tabPage_BikeParam.SuspendLayout();
- this.tabPage_ControlParam.SuspendLayout();
- this.tabPage_SensorParam.SuspendLayout();
- this.tabPage_AssistParam.SuspendLayout();
- this.tabPage_DebugParam.SuspendLayout();
- this.tabPage_RecordInfo.SuspendLayout();
- this.tabPage_OtherInfo.SuspendLayout();
- this.groupBox16.SuspendLayout();
- this.groupBox18.SuspendLayout();
- this.groupBox17.SuspendLayout();
- this.groupBox9.SuspendLayout();
- this.groupBox8.SuspendLayout();
- this.groupBox7.SuspendLayout();
- this.groupBox6.SuspendLayout();
- this.groupBox5.SuspendLayout();
- this.groupBox4.SuspendLayout();
- this.tabPage_OBC.SuspendLayout();
- this.groupBox26.SuspendLayout();
- this.groupBox15.SuspendLayout();
- this.groupBox14.SuspendLayout();
- this.groupBox13.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_OBC_OffTime)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_OBC_WheelAdj)).BeginInit();
- this.groupBox12.SuspendLayout();
- this.groupBox11.SuspendLayout();
- this.groupBox10.SuspendLayout();
- this.tabPage_RAMorFLASH.SuspendLayout();
- this.tabPage_FactoryMode.SuspendLayout();
- this.groupBox25.SuspendLayout();
- this.groupBox24.SuspendLayout();
- this.groupBox23.SuspendLayout();
- this.groupBox22.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.trackBar_FacModeMotorSpeedAdj)).BeginInit();
- this.groupBox21.SuspendLayout();
- this.groupBox20.SuspendLayout();
- this.groupBox19.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
- this.SuspendLayout();
- //
- // menuStrip_Set
- //
- this.menuStrip_Set.BackColor = System.Drawing.Color.DodgerBlue;
- this.menuStrip_Set.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F);
- this.menuStrip_Set.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.端口连接ToolStripMenuItem,
- this.配置ToolStripMenuItem,
- this.工具箱ToolStripMenuItem,
- this.关于ToolStripMenuItem});
- this.menuStrip_Set.Location = new System.Drawing.Point(0, 0);
- this.menuStrip_Set.Name = "menuStrip_Set";
- this.menuStrip_Set.Size = new System.Drawing.Size(1034, 29);
- this.menuStrip_Set.TabIndex = 1;
- this.menuStrip_Set.Text = "menuStrip2";
- //
- // 端口连接ToolStripMenuItem
- //
- this.端口连接ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.刷新ToolStripMenuItem,
- this.端口号ToolStripMenuItem,
- this.波特率ToolStripMenuItem,
- this.连接ToolStripMenuItem,
- this.toolStripSeparator1,
- this.其它配置项ToolStripMenuItem});
- this.端口连接ToolStripMenuItem.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
- this.端口连接ToolStripMenuItem.Name = "端口连接ToolStripMenuItem";
- this.端口连接ToolStripMenuItem.Size = new System.Drawing.Size(86, 25);
- this.端口连接ToolStripMenuItem.Text = "端口设置";
- //
- // 刷新ToolStripMenuItem
- //
- this.刷新ToolStripMenuItem.Name = "刷新ToolStripMenuItem";
- this.刷新ToolStripMenuItem.Size = new System.Drawing.Size(160, 26);
- this.刷新ToolStripMenuItem.Text = "刷新";
- this.刷新ToolStripMenuItem.Click += new System.EventHandler(this.刷新ToolStripMenuItem_Click);
- //
- // 端口号ToolStripMenuItem
- //
- this.端口号ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.toolStripComboBox_ComNum});
- this.端口号ToolStripMenuItem.Name = "端口号ToolStripMenuItem";
- this.端口号ToolStripMenuItem.Size = new System.Drawing.Size(160, 26);
- this.端口号ToolStripMenuItem.Text = "端口号";
- this.端口号ToolStripMenuItem.Click += new System.EventHandler(this.ConfigFileSave_Click);
- //
- // toolStripComboBox_ComNum
- //
- this.toolStripComboBox_ComNum.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.toolStripComboBox_ComNum.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.toolStripComboBox_ComNum.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.toolStripComboBox_ComNum.Name = "toolStripComboBox_ComNum";
- this.toolStripComboBox_ComNum.Size = new System.Drawing.Size(121, 29);
- this.toolStripComboBox_ComNum.SelectedIndexChanged += new System.EventHandler(this.ConfigFileSave_Click);
- //
- // 波特率ToolStripMenuItem
- //
- this.波特率ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.toolStripComboBox_Baudrate});
- this.波特率ToolStripMenuItem.Name = "波特率ToolStripMenuItem";
- this.波特率ToolStripMenuItem.Size = new System.Drawing.Size(160, 26);
- this.波特率ToolStripMenuItem.Text = "波特率";
- //
- // toolStripComboBox_Baudrate
- //
- this.toolStripComboBox_Baudrate.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.toolStripComboBox_Baudrate.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.toolStripComboBox_Baudrate.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.toolStripComboBox_Baudrate.Items.AddRange(new object[] {
- "9600",
- "115200",
- "230400"});
- this.toolStripComboBox_Baudrate.Name = "toolStripComboBox_Baudrate";
- this.toolStripComboBox_Baudrate.Size = new System.Drawing.Size(121, 29);
- this.toolStripComboBox_Baudrate.SelectedIndexChanged += new System.EventHandler(this.ConfigFileSave_Click);
- //
- // 连接ToolStripMenuItem
- //
- this.连接ToolStripMenuItem.Name = "连接ToolStripMenuItem";
- this.连接ToolStripMenuItem.Size = new System.Drawing.Size(160, 26);
- this.连接ToolStripMenuItem.Text = "连接";
- this.连接ToolStripMenuItem.Click += new System.EventHandler(this.连接ToolStripMenuItem_Click);
- //
- // toolStripSeparator1
- //
- this.toolStripSeparator1.Name = "toolStripSeparator1";
- this.toolStripSeparator1.Size = new System.Drawing.Size(157, 6);
- //
- // 其它配置项ToolStripMenuItem
- //
- this.其它配置项ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.连接开机ToolStripMenuItem,
- this.断开关机ToolStripMenuItem,
- this.识别通讯盒ToolStripMenuItem});
- this.其它配置项ToolStripMenuItem.Name = "其它配置项ToolStripMenuItem";
- this.其它配置项ToolStripMenuItem.Size = new System.Drawing.Size(160, 26);
- this.其它配置项ToolStripMenuItem.Text = "其它配置项";
- //
- // 连接开机ToolStripMenuItem
- //
- this.连接开机ToolStripMenuItem.Checked = true;
- this.连接开机ToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
- this.连接开机ToolStripMenuItem.Name = "连接开机ToolStripMenuItem";
- this.连接开机ToolStripMenuItem.Size = new System.Drawing.Size(192, 26);
- this.连接开机ToolStripMenuItem.Text = "连接自动开机";
- this.连接开机ToolStripMenuItem.Click += new System.EventHandler(this.连接开机ToolStripMenuItem_Click);
- //
- // 断开关机ToolStripMenuItem
- //
- this.断开关机ToolStripMenuItem.Checked = true;
- this.断开关机ToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
- this.断开关机ToolStripMenuItem.Name = "断开关机ToolStripMenuItem";
- this.断开关机ToolStripMenuItem.Size = new System.Drawing.Size(192, 26);
- this.断开关机ToolStripMenuItem.Text = "断开自动关机";
- this.断开关机ToolStripMenuItem.Click += new System.EventHandler(this.断开关机ToolStripMenuItem_Click);
- //
- // 识别通讯盒ToolStripMenuItem
- //
- this.识别通讯盒ToolStripMenuItem.Checked = true;
- this.识别通讯盒ToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
- this.识别通讯盒ToolStripMenuItem.Name = "识别通讯盒ToolStripMenuItem";
- this.识别通讯盒ToolStripMenuItem.Size = new System.Drawing.Size(192, 26);
- this.识别通讯盒ToolStripMenuItem.Text = "识别联动装置盒";
- this.识别通讯盒ToolStripMenuItem.Click += new System.EventHandler(this.识别通讯盒ToolStripMenuItem_Click);
- //
- // 配置ToolStripMenuItem
- //
- this.配置ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.写入存储ToolStripMenuItem,
- this.离线使用ToolStripMenuItem,
- this.服务器配置ToolStripMenuItem,
- this.生产信息ToolStripMenuItem});
- this.配置ToolStripMenuItem.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
- this.配置ToolStripMenuItem.Name = "配置ToolStripMenuItem";
- this.配置ToolStripMenuItem.Size = new System.Drawing.Size(54, 25);
- this.配置ToolStripMenuItem.Text = "配置";
- //
- // 写入存储ToolStripMenuItem
- //
- this.写入存储ToolStripMenuItem.Checked = true;
- this.写入存储ToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
- this.写入存储ToolStripMenuItem.Name = "写入存储ToolStripMenuItem";
- this.写入存储ToolStripMenuItem.Size = new System.Drawing.Size(192, 26);
- this.写入存储ToolStripMenuItem.Text = "写入时执行保存";
- this.写入存储ToolStripMenuItem.Click += new System.EventHandler(this.写入存储ToolStripMenuItem_Click);
- //
- // 离线使用ToolStripMenuItem
- //
- this.离线使用ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.允许ToolStripMenuItem,
- this.不允许ToolStripMenuItem});
- this.离线使用ToolStripMenuItem.Name = "离线使用ToolStripMenuItem";
- this.离线使用ToolStripMenuItem.Size = new System.Drawing.Size(192, 26);
- this.离线使用ToolStripMenuItem.Text = "离线使用";
- //
- // 允许ToolStripMenuItem
- //
- this.允许ToolStripMenuItem.Checked = true;
- this.允许ToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
- this.允许ToolStripMenuItem.Name = "允许ToolStripMenuItem";
- this.允许ToolStripMenuItem.Size = new System.Drawing.Size(128, 26);
- this.允许ToolStripMenuItem.Text = "允许";
- this.允许ToolStripMenuItem.Click += new System.EventHandler(this.允许ToolStripMenuItem_Click);
- //
- // 不允许ToolStripMenuItem
- //
- this.不允许ToolStripMenuItem.Name = "不允许ToolStripMenuItem";
- this.不允许ToolStripMenuItem.Size = new System.Drawing.Size(128, 26);
- this.不允许ToolStripMenuItem.Text = "不允许";
- this.不允许ToolStripMenuItem.Click += new System.EventHandler(this.不允许ToolStripMenuItem_Click);
- //
- // 服务器配置ToolStripMenuItem
- //
- this.服务器配置ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.IP地址ToolStripMenuItem,
- this.端口ToolStripMenuItem,
- this.用户名ToolStripMenuItem,
- this.密码ToolStripMenuItem,
- this.存储路径ToolStripMenuItem});
- this.服务器配置ToolStripMenuItem.Name = "服务器配置ToolStripMenuItem";
- this.服务器配置ToolStripMenuItem.Size = new System.Drawing.Size(192, 26);
- this.服务器配置ToolStripMenuItem.Text = "FTP服务器配置";
- //
- // IP地址ToolStripMenuItem
- //
- this.IP地址ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.toolStripTextBox_ServerIP});
- this.IP地址ToolStripMenuItem.Name = "IP地址ToolStripMenuItem";
- this.IP地址ToolStripMenuItem.Size = new System.Drawing.Size(144, 26);
- this.IP地址ToolStripMenuItem.Text = "IP地址";
- //
- // toolStripTextBox_ServerIP
- //
- this.toolStripTextBox_ServerIP.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F);
- this.toolStripTextBox_ServerIP.Name = "toolStripTextBox_ServerIP";
- this.toolStripTextBox_ServerIP.Size = new System.Drawing.Size(200, 28);
- this.toolStripTextBox_ServerIP.Text = "10.176.42.30";
- this.toolStripTextBox_ServerIP.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ConfigFileSave_KeyDown);
- //
- // 端口ToolStripMenuItem
- //
- this.端口ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.toolStripTextBox_ServerPort});
- this.端口ToolStripMenuItem.Name = "端口ToolStripMenuItem";
- this.端口ToolStripMenuItem.Size = new System.Drawing.Size(144, 26);
- this.端口ToolStripMenuItem.Text = "端口";
- //
- // toolStripTextBox_ServerPort
- //
- this.toolStripTextBox_ServerPort.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F);
- this.toolStripTextBox_ServerPort.Name = "toolStripTextBox_ServerPort";
- this.toolStripTextBox_ServerPort.Size = new System.Drawing.Size(200, 28);
- this.toolStripTextBox_ServerPort.Text = "21";
- this.toolStripTextBox_ServerPort.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ConfigFileSave_KeyDown);
- //
- // 用户名ToolStripMenuItem
- //
- this.用户名ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.toolStripTextBox_ServerUser});
- this.用户名ToolStripMenuItem.Name = "用户名ToolStripMenuItem";
- this.用户名ToolStripMenuItem.Size = new System.Drawing.Size(144, 26);
- this.用户名ToolStripMenuItem.Text = "用户名";
- //
- // toolStripTextBox_ServerUser
- //
- this.toolStripTextBox_ServerUser.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F);
- this.toolStripTextBox_ServerUser.Name = "toolStripTextBox_ServerUser";
- this.toolStripTextBox_ServerUser.Size = new System.Drawing.Size(200, 28);
- this.toolStripTextBox_ServerUser.Text = "factory_test";
- this.toolStripTextBox_ServerUser.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ConfigFileSave_KeyDown);
- //
- // 密码ToolStripMenuItem
- //
- this.密码ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.toolStripTextBox_ServerPasswd});
- this.密码ToolStripMenuItem.Name = "密码ToolStripMenuItem";
- this.密码ToolStripMenuItem.Size = new System.Drawing.Size(144, 26);
- this.密码ToolStripMenuItem.Text = "密码";
- //
- // toolStripTextBox_ServerPasswd
- //
- this.toolStripTextBox_ServerPasswd.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F);
- this.toolStripTextBox_ServerPasswd.Name = "toolStripTextBox_ServerPasswd";
- this.toolStripTextBox_ServerPasswd.Size = new System.Drawing.Size(200, 28);
- this.toolStripTextBox_ServerPasswd.Text = "ttium";
- this.toolStripTextBox_ServerPasswd.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ConfigFileSave_KeyDown);
- //
- // 存储路径ToolStripMenuItem
- //
- this.存储路径ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.toolStripTextBox_ServerPath});
- this.存储路径ToolStripMenuItem.Name = "存储路径ToolStripMenuItem";
- this.存储路径ToolStripMenuItem.Size = new System.Drawing.Size(144, 26);
- this.存储路径ToolStripMenuItem.Text = "存储路径";
- //
- // toolStripTextBox_ServerPath
- //
- this.toolStripTextBox_ServerPath.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F);
- this.toolStripTextBox_ServerPath.Name = "toolStripTextBox_ServerPath";
- this.toolStripTextBox_ServerPath.Size = new System.Drawing.Size(200, 28);
- this.toolStripTextBox_ServerPath.Text = "MIGIC_TEST";
- this.toolStripTextBox_ServerPath.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ConfigFileSave_KeyDown);
- //
- // 生产信息ToolStripMenuItem
- //
- this.生产信息ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.生产商ToolStripMenuItem,
- this.生产地ToolStripMenuItem,
- this.生产日期ToolStripMenuItem,
- this.产品标识ToolStripMenuItem});
- this.生产信息ToolStripMenuItem.Name = "生产信息ToolStripMenuItem";
- this.生产信息ToolStripMenuItem.Size = new System.Drawing.Size(192, 26);
- this.生产信息ToolStripMenuItem.Text = "生产信息";
- //
- // 生产商ToolStripMenuItem
- //
- this.生产商ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.toolStripTextBox_MAC});
- this.生产商ToolStripMenuItem.Name = "生产商ToolStripMenuItem";
- this.生产商ToolStripMenuItem.Size = new System.Drawing.Size(144, 26);
- this.生产商ToolStripMenuItem.Text = "生产商";
- //
- // toolStripTextBox_MAC
- //
- this.toolStripTextBox_MAC.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F);
- this.toolStripTextBox_MAC.Name = "toolStripTextBox_MAC";
- this.toolStripTextBox_MAC.Size = new System.Drawing.Size(100, 28);
- this.toolStripTextBox_MAC.Text = "TTIUM";
- this.toolStripTextBox_MAC.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ConfigFileSave_KeyDown);
- //
- // 生产地ToolStripMenuItem
- //
- this.生产地ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.toolStripTextBoxMACAddr});
- this.生产地ToolStripMenuItem.Name = "生产地ToolStripMenuItem";
- this.生产地ToolStripMenuItem.Size = new System.Drawing.Size(144, 26);
- this.生产地ToolStripMenuItem.Text = "生产地";
- //
- // toolStripTextBoxMACAddr
- //
- this.toolStripTextBoxMACAddr.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F);
- this.toolStripTextBoxMACAddr.Name = "toolStripTextBoxMACAddr";
- this.toolStripTextBoxMACAddr.Size = new System.Drawing.Size(100, 28);
- this.toolStripTextBoxMACAddr.Text = "WUHAN";
- this.toolStripTextBoxMACAddr.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ConfigFileSave_KeyDown);
- //
- // 生产日期ToolStripMenuItem
- //
- this.生产日期ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.toolStripTextBox_MACDate});
- this.生产日期ToolStripMenuItem.Name = "生产日期ToolStripMenuItem";
- this.生产日期ToolStripMenuItem.Size = new System.Drawing.Size(144, 26);
- this.生产日期ToolStripMenuItem.Text = "生产日期";
- //
- // toolStripTextBox_MACDate
- //
- this.toolStripTextBox_MACDate.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F);
- this.toolStripTextBox_MACDate.Name = "toolStripTextBox_MACDate";
- this.toolStripTextBox_MACDate.Size = new System.Drawing.Size(100, 28);
- this.toolStripTextBox_MACDate.Text = "20220101";
- this.toolStripTextBox_MACDate.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ConfigFileSave_KeyDown);
- //
- // 产品标识ToolStripMenuItem
- //
- this.产品标识ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.toolStripTextBox_MACPD});
- this.产品标识ToolStripMenuItem.Name = "产品标识ToolStripMenuItem";
- this.产品标识ToolStripMenuItem.Size = new System.Drawing.Size(144, 26);
- this.产品标识ToolStripMenuItem.Text = "产品标识";
- //
- // toolStripTextBox_MACPD
- //
- this.toolStripTextBox_MACPD.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F);
- this.toolStripTextBox_MACPD.Name = "toolStripTextBox_MACPD";
- this.toolStripTextBox_MACPD.Size = new System.Drawing.Size(100, 28);
- this.toolStripTextBox_MACPD.Text = "MM_MC1";
- this.toolStripTextBox_MACPD.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ConfigFileSave_KeyDown);
- //
- // 工具箱ToolStripMenuItem
- //
- this.工具箱ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.运行信息记录ToolStripMenuItem,
- this.计算器ToolStripMenuItem,
- this.页面保存ToolStripMenuItem,
- this.系统开关ToolStripMenuItem});
- this.工具箱ToolStripMenuItem.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
- this.工具箱ToolStripMenuItem.Name = "工具箱ToolStripMenuItem";
- this.工具箱ToolStripMenuItem.Size = new System.Drawing.Size(70, 25);
- this.工具箱ToolStripMenuItem.Text = "工具箱";
- //
- // 运行信息记录ToolStripMenuItem
- //
- this.运行信息记录ToolStripMenuItem.Name = "运行信息记录ToolStripMenuItem";
- this.运行信息记录ToolStripMenuItem.Size = new System.Drawing.Size(176, 26);
- this.运行信息记录ToolStripMenuItem.Text = "运行信息记录";
- this.运行信息记录ToolStripMenuItem.Click += new System.EventHandler(this.记录数据ToolStripMenuItem_Click);
- //
- // 计算器ToolStripMenuItem
- //
- this.计算器ToolStripMenuItem.Name = "计算器ToolStripMenuItem";
- this.计算器ToolStripMenuItem.Size = new System.Drawing.Size(176, 26);
- this.计算器ToolStripMenuItem.Text = "计算器";
- this.计算器ToolStripMenuItem.Click += new System.EventHandler(this.计算器ToolStripMenuItem_Click);
- //
- // 页面保存ToolStripMenuItem
- //
- this.页面保存ToolStripMenuItem.Name = "页面保存ToolStripMenuItem";
- this.页面保存ToolStripMenuItem.Size = new System.Drawing.Size(176, 26);
- this.页面保存ToolStripMenuItem.Text = "页面保存";
- this.页面保存ToolStripMenuItem.Click += new System.EventHandler(this.页面保存ToolStripMenuItem_Click);
- //
- // 系统开关ToolStripMenuItem
- //
- this.系统开关ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.开机ToolStripMenuItem,
- this.关机ToolStripMenuItem});
- this.系统开关ToolStripMenuItem.Name = "系统开关ToolStripMenuItem";
- this.系统开关ToolStripMenuItem.Size = new System.Drawing.Size(176, 26);
- this.系统开关ToolStripMenuItem.Text = "电源控制";
- //
- // 开机ToolStripMenuItem
- //
- this.开机ToolStripMenuItem.Name = "开机ToolStripMenuItem";
- this.开机ToolStripMenuItem.Size = new System.Drawing.Size(112, 26);
- this.开机ToolStripMenuItem.Text = "开机";
- this.开机ToolStripMenuItem.Click += new System.EventHandler(this.开机ToolStripMenuItem_Click);
- //
- // 关机ToolStripMenuItem
- //
- this.关机ToolStripMenuItem.Name = "关机ToolStripMenuItem";
- this.关机ToolStripMenuItem.Size = new System.Drawing.Size(112, 26);
- this.关机ToolStripMenuItem.Text = "关机";
- this.关机ToolStripMenuItem.Click += new System.EventHandler(this.关机ToolStripMenuItem_Click);
- //
- // 关于ToolStripMenuItem
- //
- this.关于ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.帮助ToolStripMenuItem,
- this.版本ToolStripMenuItem});
- this.关于ToolStripMenuItem.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
- this.关于ToolStripMenuItem.Name = "关于ToolStripMenuItem";
- this.关于ToolStripMenuItem.Size = new System.Drawing.Size(54, 25);
- this.关于ToolStripMenuItem.Text = "关于";
- //
- // 帮助ToolStripMenuItem
- //
- this.帮助ToolStripMenuItem.Name = "帮助ToolStripMenuItem";
- this.帮助ToolStripMenuItem.Size = new System.Drawing.Size(144, 26);
- this.帮助ToolStripMenuItem.Text = "查看帮助";
- //
- // 版本ToolStripMenuItem
- //
- this.版本ToolStripMenuItem.Name = "版本ToolStripMenuItem";
- this.版本ToolStripMenuItem.Size = new System.Drawing.Size(144, 26);
- this.版本ToolStripMenuItem.Text = "版本信息";
- //
- // statusStrip1
- //
- this.statusStrip1.BackColor = System.Drawing.Color.DodgerBlue;
- this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.toolStripStatusLabel1});
- this.statusStrip1.Location = new System.Drawing.Point(0, 619);
- this.statusStrip1.Name = "statusStrip1";
- this.statusStrip1.Size = new System.Drawing.Size(1034, 22);
- this.statusStrip1.TabIndex = 3;
- this.statusStrip1.Text = "statusStrip1";
- //
- // toolStripStatusLabel1
- //
- this.toolStripStatusLabel1.ForeColor = System.Drawing.Color.White;
- this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
- this.toolStripStatusLabel1.Size = new System.Drawing.Size(212, 17);
- this.toolStripStatusLabel1.Text = "版权所有:武汉天腾动力科技有限公司";
- //
- // groupBox1
- //
- this.groupBox1.Controls.Add(this.label24);
- this.groupBox1.Controls.Add(this.numericUpDown_SpeedAdj);
- this.groupBox1.Controls.Add(this.label4);
- this.groupBox1.Controls.Add(this.comboBox_LightSwitch);
- this.groupBox1.Controls.Add(this.label3);
- this.groupBox1.Controls.Add(this.comboBox_GearSt);
- this.groupBox1.Controls.Add(this.comboBox_WorkMode);
- this.groupBox1.Controls.Add(this.label2);
- this.groupBox1.Controls.Add(this.label1);
- this.groupBox1.Location = new System.Drawing.Point(12, 32);
- this.groupBox1.Name = "groupBox1";
- this.groupBox1.Size = new System.Drawing.Size(191, 196);
- this.groupBox1.TabIndex = 4;
- this.groupBox1.TabStop = false;
- this.groupBox1.Text = "电机控制";
- //
- // label24
- //
- this.label24.AutoSize = true;
- this.label24.Location = new System.Drawing.Point(161, 152);
- this.label24.Name = "label24";
- this.label24.Size = new System.Drawing.Size(24, 21);
- this.label24.TabIndex = 6;
- this.label24.Text = "%";
- //
- // numericUpDown_SpeedAdj
- //
- this.numericUpDown_SpeedAdj.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
- this.numericUpDown_SpeedAdj.Location = new System.Drawing.Point(85, 148);
- this.numericUpDown_SpeedAdj.Minimum = new decimal(new int[] {
- 2,
- 0,
- 0,
- 0});
- this.numericUpDown_SpeedAdj.Name = "numericUpDown_SpeedAdj";
- this.numericUpDown_SpeedAdj.ReadOnly = true;
- this.numericUpDown_SpeedAdj.Size = new System.Drawing.Size(73, 28);
- this.numericUpDown_SpeedAdj.TabIndex = 5;
- this.numericUpDown_SpeedAdj.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- this.numericUpDown_SpeedAdj.Value = new decimal(new int[] {
- 2,
- 0,
- 0,
- 0});
- this.numericUpDown_SpeedAdj.ValueChanged += new System.EventHandler(this.numericUpDown_SpeedAdj_ValueChanged);
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.Location = new System.Drawing.Point(6, 152);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(74, 21);
- this.label4.TabIndex = 4;
- this.label4.Text = "转速调节";
- //
- // comboBox_LightSwitch
- //
- this.comboBox_LightSwitch.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
- this.comboBox_LightSwitch.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.comboBox_LightSwitch.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.comboBox_LightSwitch.FormattingEnabled = true;
- this.comboBox_LightSwitch.Items.AddRange(new object[] {
- "ON",
- "OFF"});
- this.comboBox_LightSwitch.Location = new System.Drawing.Point(85, 109);
- this.comboBox_LightSwitch.Name = "comboBox_LightSwitch";
- this.comboBox_LightSwitch.Size = new System.Drawing.Size(100, 29);
- this.comboBox_LightSwitch.TabIndex = 3;
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.Location = new System.Drawing.Point(6, 113);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(74, 21);
- this.label3.TabIndex = 2;
- this.label3.Text = "大灯开关";
- //
- // comboBox_GearSt
- //
- this.comboBox_GearSt.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
- this.comboBox_GearSt.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.comboBox_GearSt.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.comboBox_GearSt.FormattingEnabled = true;
- this.comboBox_GearSt.Items.AddRange(new object[] {
- "OFF",
- "ECO",
- "NORM",
- "SPORT",
- "TURBO",
- "SMART",
- "WALK"});
- this.comboBox_GearSt.Location = new System.Drawing.Point(85, 70);
- this.comboBox_GearSt.Name = "comboBox_GearSt";
- this.comboBox_GearSt.Size = new System.Drawing.Size(100, 29);
- this.comboBox_GearSt.TabIndex = 1;
- //
- // comboBox_WorkMode
- //
- this.comboBox_WorkMode.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
- this.comboBox_WorkMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.comboBox_WorkMode.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.comboBox_WorkMode.FormattingEnabled = true;
- this.comboBox_WorkMode.Items.AddRange(new object[] {
- "运行模式",
- "配置模式"});
- this.comboBox_WorkMode.Location = new System.Drawing.Point(85, 31);
- this.comboBox_WorkMode.Name = "comboBox_WorkMode";
- this.comboBox_WorkMode.Size = new System.Drawing.Size(100, 29);
- this.comboBox_WorkMode.TabIndex = 1;
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.Location = new System.Drawing.Point(6, 74);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(74, 21);
- this.label2.TabIndex = 0;
- this.label2.Text = "助力档位";
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Location = new System.Drawing.Point(6, 35);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(74, 21);
- this.label1.TabIndex = 0;
- this.label1.Text = "工作模式";
- //
- // groupBox2
- //
- this.groupBox2.Controls.Add(this.textBox_RunInfo_BikeSpeed);
- this.groupBox2.Controls.Add(this.textBox_RunInfo_MotorSpeed);
- this.groupBox2.Controls.Add(this.textBox_RunInfo_Cadence);
- this.groupBox2.Controls.Add(this.textBox_TorqueReg);
- this.groupBox2.Controls.Add(this.textBox_RunInfo_Torque);
- this.groupBox2.Controls.Add(this.textBox_RunInfo_Dir);
- this.groupBox2.Controls.Add(this.textBox_RunInfo_Vol);
- this.groupBox2.Controls.Add(this.textBox_RunInfo_Current);
- this.groupBox2.Controls.Add(this.textBox_RunInfo_Power);
- this.groupBox2.Controls.Add(this.textBox_RunInfo_SOC);
- this.groupBox2.Controls.Add(this.textBox_RunInfo_T_PCB);
- this.groupBox2.Controls.Add(this.textBox_RunInfo_T_MCU);
- this.groupBox2.Controls.Add(this.textBox_RunInfo_T_Coil);
- this.groupBox2.Controls.Add(this.textBox_RunInfo_GearSt);
- this.groupBox2.Controls.Add(this.textBox_RunInfo_LightSwitch);
- this.groupBox2.Controls.Add(this.textBox_RunInfo_Range);
- this.groupBox2.Controls.Add(this.textBox_RunInfo_AvgPower);
- this.groupBox2.Controls.Add(this.textBox_RunInfo_Trip);
- this.groupBox2.Controls.Add(this.textBox_RunInfo_Trip_Time);
- this.groupBox2.Controls.Add(this.textBox_ErrorCode);
- this.groupBox2.Controls.Add(this.label55);
- this.groupBox2.Controls.Add(this.label28);
- this.groupBox2.Controls.Add(this.label22);
- this.groupBox2.Controls.Add(this.label16);
- this.groupBox2.Controls.Add(this.label10);
- this.groupBox2.Controls.Add(this.label21);
- this.groupBox2.Controls.Add(this.label15);
- this.groupBox2.Controls.Add(this.label9);
- this.groupBox2.Controls.Add(this.label20);
- this.groupBox2.Controls.Add(this.label14);
- this.groupBox2.Controls.Add(this.label8);
- this.groupBox2.Controls.Add(this.label19);
- this.groupBox2.Controls.Add(this.label13);
- this.groupBox2.Controls.Add(this.label7);
- this.groupBox2.Controls.Add(this.label18);
- this.groupBox2.Controls.Add(this.label12);
- this.groupBox2.Controls.Add(this.label6);
- this.groupBox2.Controls.Add(this.label17);
- this.groupBox2.Controls.Add(this.label11);
- this.groupBox2.Controls.Add(this.label5);
- this.groupBox2.Location = new System.Drawing.Point(209, 32);
- this.groupBox2.Name = "groupBox2";
- this.groupBox2.Size = new System.Drawing.Size(819, 196);
- this.groupBox2.TabIndex = 5;
- this.groupBox2.TabStop = false;
- this.groupBox2.Text = "运行信息";
- //
- // textBox_RunInfo_BikeSpeed
- //
- this.textBox_RunInfo_BikeSpeed.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_RunInfo_BikeSpeed.Location = new System.Drawing.Point(62, 31);
- this.textBox_RunInfo_BikeSpeed.Name = "textBox_RunInfo_BikeSpeed";
- this.textBox_RunInfo_BikeSpeed.ReadOnly = true;
- this.textBox_RunInfo_BikeSpeed.Size = new System.Drawing.Size(90, 28);
- this.textBox_RunInfo_BikeSpeed.TabIndex = 1;
- //
- // textBox_RunInfo_MotorSpeed
- //
- this.textBox_RunInfo_MotorSpeed.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_RunInfo_MotorSpeed.Location = new System.Drawing.Point(62, 148);
- this.textBox_RunInfo_MotorSpeed.Name = "textBox_RunInfo_MotorSpeed";
- this.textBox_RunInfo_MotorSpeed.ReadOnly = true;
- this.textBox_RunInfo_MotorSpeed.Size = new System.Drawing.Size(90, 28);
- this.textBox_RunInfo_MotorSpeed.TabIndex = 1;
- //
- // textBox_RunInfo_Cadence
- //
- this.textBox_RunInfo_Cadence.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_RunInfo_Cadence.Location = new System.Drawing.Point(62, 70);
- this.textBox_RunInfo_Cadence.Name = "textBox_RunInfo_Cadence";
- this.textBox_RunInfo_Cadence.ReadOnly = true;
- this.textBox_RunInfo_Cadence.Size = new System.Drawing.Size(90, 28);
- this.textBox_RunInfo_Cadence.TabIndex = 1;
- //
- // textBox_TorqueReg
- //
- this.textBox_TorqueReg.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_TorqueReg.Location = new System.Drawing.Point(721, 107);
- this.textBox_TorqueReg.Name = "textBox_TorqueReg";
- this.textBox_TorqueReg.ReadOnly = true;
- this.textBox_TorqueReg.Size = new System.Drawing.Size(90, 28);
- this.textBox_TorqueReg.TabIndex = 3;
- //
- // textBox_RunInfo_Torque
- //
- this.textBox_RunInfo_Torque.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_RunInfo_Torque.Location = new System.Drawing.Point(62, 109);
- this.textBox_RunInfo_Torque.Name = "textBox_RunInfo_Torque";
- this.textBox_RunInfo_Torque.ReadOnly = true;
- this.textBox_RunInfo_Torque.Size = new System.Drawing.Size(90, 28);
- this.textBox_RunInfo_Torque.TabIndex = 1;
- //
- // textBox_RunInfo_Dir
- //
- this.textBox_RunInfo_Dir.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_RunInfo_Dir.Location = new System.Drawing.Point(209, 148);
- this.textBox_RunInfo_Dir.Name = "textBox_RunInfo_Dir";
- this.textBox_RunInfo_Dir.ReadOnly = true;
- this.textBox_RunInfo_Dir.Size = new System.Drawing.Size(90, 28);
- this.textBox_RunInfo_Dir.TabIndex = 1;
- //
- // textBox_RunInfo_Vol
- //
- this.textBox_RunInfo_Vol.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_RunInfo_Vol.Location = new System.Drawing.Point(209, 31);
- this.textBox_RunInfo_Vol.Name = "textBox_RunInfo_Vol";
- this.textBox_RunInfo_Vol.ReadOnly = true;
- this.textBox_RunInfo_Vol.Size = new System.Drawing.Size(90, 28);
- this.textBox_RunInfo_Vol.TabIndex = 1;
- //
- // textBox_RunInfo_Current
- //
- this.textBox_RunInfo_Current.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_RunInfo_Current.Location = new System.Drawing.Point(209, 70);
- this.textBox_RunInfo_Current.Name = "textBox_RunInfo_Current";
- this.textBox_RunInfo_Current.ReadOnly = true;
- this.textBox_RunInfo_Current.Size = new System.Drawing.Size(90, 28);
- this.textBox_RunInfo_Current.TabIndex = 1;
- //
- // textBox_RunInfo_Power
- //
- this.textBox_RunInfo_Power.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_RunInfo_Power.Location = new System.Drawing.Point(209, 108);
- this.textBox_RunInfo_Power.Name = "textBox_RunInfo_Power";
- this.textBox_RunInfo_Power.ReadOnly = true;
- this.textBox_RunInfo_Power.Size = new System.Drawing.Size(90, 28);
- this.textBox_RunInfo_Power.TabIndex = 1;
- //
- // textBox_RunInfo_SOC
- //
- this.textBox_RunInfo_SOC.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_RunInfo_SOC.Location = new System.Drawing.Point(541, 30);
- this.textBox_RunInfo_SOC.Name = "textBox_RunInfo_SOC";
- this.textBox_RunInfo_SOC.ReadOnly = true;
- this.textBox_RunInfo_SOC.Size = new System.Drawing.Size(90, 28);
- this.textBox_RunInfo_SOC.TabIndex = 1;
- //
- // textBox_RunInfo_T_PCB
- //
- this.textBox_RunInfo_T_PCB.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_RunInfo_T_PCB.Location = new System.Drawing.Point(393, 31);
- this.textBox_RunInfo_T_PCB.Name = "textBox_RunInfo_T_PCB";
- this.textBox_RunInfo_T_PCB.ReadOnly = true;
- this.textBox_RunInfo_T_PCB.Size = new System.Drawing.Size(90, 28);
- this.textBox_RunInfo_T_PCB.TabIndex = 1;
- //
- // textBox_RunInfo_T_MCU
- //
- this.textBox_RunInfo_T_MCU.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_RunInfo_T_MCU.Location = new System.Drawing.Point(393, 70);
- this.textBox_RunInfo_T_MCU.Name = "textBox_RunInfo_T_MCU";
- this.textBox_RunInfo_T_MCU.ReadOnly = true;
- this.textBox_RunInfo_T_MCU.Size = new System.Drawing.Size(90, 28);
- this.textBox_RunInfo_T_MCU.TabIndex = 1;
- //
- // textBox_RunInfo_T_Coil
- //
- this.textBox_RunInfo_T_Coil.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_RunInfo_T_Coil.Location = new System.Drawing.Point(393, 108);
- this.textBox_RunInfo_T_Coil.Name = "textBox_RunInfo_T_Coil";
- this.textBox_RunInfo_T_Coil.ReadOnly = true;
- this.textBox_RunInfo_T_Coil.Size = new System.Drawing.Size(90, 28);
- this.textBox_RunInfo_T_Coil.TabIndex = 1;
- //
- // textBox_RunInfo_GearSt
- //
- this.textBox_RunInfo_GearSt.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_RunInfo_GearSt.Location = new System.Drawing.Point(393, 148);
- this.textBox_RunInfo_GearSt.Name = "textBox_RunInfo_GearSt";
- this.textBox_RunInfo_GearSt.ReadOnly = true;
- this.textBox_RunInfo_GearSt.Size = new System.Drawing.Size(90, 28);
- this.textBox_RunInfo_GearSt.TabIndex = 1;
- //
- // textBox_RunInfo_LightSwitch
- //
- this.textBox_RunInfo_LightSwitch.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_RunInfo_LightSwitch.Location = new System.Drawing.Point(541, 147);
- this.textBox_RunInfo_LightSwitch.Name = "textBox_RunInfo_LightSwitch";
- this.textBox_RunInfo_LightSwitch.ReadOnly = true;
- this.textBox_RunInfo_LightSwitch.Size = new System.Drawing.Size(90, 28);
- this.textBox_RunInfo_LightSwitch.TabIndex = 1;
- //
- // textBox_RunInfo_Range
- //
- this.textBox_RunInfo_Range.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_RunInfo_Range.Location = new System.Drawing.Point(541, 107);
- this.textBox_RunInfo_Range.Name = "textBox_RunInfo_Range";
- this.textBox_RunInfo_Range.ReadOnly = true;
- this.textBox_RunInfo_Range.Size = new System.Drawing.Size(90, 28);
- this.textBox_RunInfo_Range.TabIndex = 1;
- //
- // textBox_RunInfo_AvgPower
- //
- this.textBox_RunInfo_AvgPower.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_RunInfo_AvgPower.Location = new System.Drawing.Point(541, 69);
- this.textBox_RunInfo_AvgPower.Name = "textBox_RunInfo_AvgPower";
- this.textBox_RunInfo_AvgPower.ReadOnly = true;
- this.textBox_RunInfo_AvgPower.Size = new System.Drawing.Size(90, 28);
- this.textBox_RunInfo_AvgPower.TabIndex = 1;
- //
- // textBox_RunInfo_Trip
- //
- this.textBox_RunInfo_Trip.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_RunInfo_Trip.Location = new System.Drawing.Point(721, 30);
- this.textBox_RunInfo_Trip.Name = "textBox_RunInfo_Trip";
- this.textBox_RunInfo_Trip.ReadOnly = true;
- this.textBox_RunInfo_Trip.Size = new System.Drawing.Size(90, 28);
- this.textBox_RunInfo_Trip.TabIndex = 1;
- //
- // textBox_RunInfo_Trip_Time
- //
- this.textBox_RunInfo_Trip_Time.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_RunInfo_Trip_Time.Location = new System.Drawing.Point(721, 69);
- this.textBox_RunInfo_Trip_Time.Name = "textBox_RunInfo_Trip_Time";
- this.textBox_RunInfo_Trip_Time.ReadOnly = true;
- this.textBox_RunInfo_Trip_Time.Size = new System.Drawing.Size(90, 28);
- this.textBox_RunInfo_Trip_Time.TabIndex = 1;
- //
- // textBox_ErrorCode
- //
- this.textBox_ErrorCode.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_ErrorCode.Location = new System.Drawing.Point(721, 147);
- this.textBox_ErrorCode.Name = "textBox_ErrorCode";
- this.textBox_ErrorCode.ReadOnly = true;
- this.textBox_ErrorCode.Size = new System.Drawing.Size(90, 28);
- this.textBox_ErrorCode.TabIndex = 1;
- this.textBox_ErrorCode.MouseHover += new System.EventHandler(this.textBox_ErrorCode_MouseHover);
- //
- // label55
- //
- this.label55.AutoSize = true;
- this.label55.Location = new System.Drawing.Point(641, 111);
- this.label55.Name = "label55";
- this.label55.Size = new System.Drawing.Size(71, 21);
- this.label55.TabIndex = 2;
- this.label55.Text = "力矩Reg";
- //
- // label28
- //
- this.label28.AutoSize = true;
- this.label28.Location = new System.Drawing.Point(641, 151);
- this.label28.Name = "label28";
- this.label28.Size = new System.Drawing.Size(58, 21);
- this.label28.TabIndex = 0;
- this.label28.Text = "故障码";
- //
- // label22
- //
- this.label22.AutoSize = true;
- this.label22.Location = new System.Drawing.Point(641, 73);
- this.label22.Name = "label22";
- this.label22.Size = new System.Drawing.Size(74, 21);
- this.label22.TabIndex = 0;
- this.label22.Text = "单次时间";
- //
- // label16
- //
- this.label16.AutoSize = true;
- this.label16.Location = new System.Drawing.Point(493, 111);
- this.label16.Name = "label16";
- this.label16.Size = new System.Drawing.Size(42, 21);
- this.label16.TabIndex = 0;
- this.label16.Text = "续航";
- //
- // label10
- //
- this.label10.AutoSize = true;
- this.label10.Location = new System.Drawing.Point(161, 113);
- this.label10.Name = "label10";
- this.label10.Size = new System.Drawing.Size(42, 21);
- this.label10.TabIndex = 0;
- this.label10.Text = "功率";
- //
- // label21
- //
- this.label21.AutoSize = true;
- this.label21.Location = new System.Drawing.Point(641, 34);
- this.label21.Name = "label21";
- this.label21.Size = new System.Drawing.Size(74, 21);
- this.label21.TabIndex = 0;
- this.label21.Text = "单次里程";
- //
- // label15
- //
- this.label15.AutoSize = true;
- this.label15.Location = new System.Drawing.Point(493, 34);
- this.label15.Name = "label15";
- this.label15.Size = new System.Drawing.Size(42, 21);
- this.label15.TabIndex = 0;
- this.label15.Text = "电量";
- //
- // label9
- //
- this.label9.AutoSize = true;
- this.label9.Location = new System.Drawing.Point(161, 74);
- this.label9.Name = "label9";
- this.label9.Size = new System.Drawing.Size(42, 21);
- this.label9.TabIndex = 0;
- this.label9.Text = "电流";
- //
- // label20
- //
- this.label20.AutoSize = true;
- this.label20.Location = new System.Drawing.Point(308, 112);
- this.label20.Name = "label20";
- this.label20.Size = new System.Drawing.Size(74, 21);
- this.label20.TabIndex = 0;
- this.label20.Text = "力矩温度";
- //
- // label14
- //
- this.label14.AutoSize = true;
- this.label14.Location = new System.Drawing.Point(493, 151);
- this.label14.Name = "label14";
- this.label14.Size = new System.Drawing.Size(42, 21);
- this.label14.TabIndex = 0;
- this.label14.Text = "大灯";
- //
- // label8
- //
- this.label8.AutoSize = true;
- this.label8.Location = new System.Drawing.Point(161, 35);
- this.label8.Name = "label8";
- this.label8.Size = new System.Drawing.Size(42, 21);
- this.label8.TabIndex = 0;
- this.label8.Text = "电压";
- //
- // label19
- //
- this.label19.AutoSize = true;
- this.label19.Location = new System.Drawing.Point(308, 74);
- this.label19.Name = "label19";
- this.label19.Size = new System.Drawing.Size(81, 21);
- this.label19.TabIndex = 0;
- this.label19.Text = "MCU温度";
- //
- // label13
- //
- this.label13.AutoSize = true;
- this.label13.Location = new System.Drawing.Point(308, 152);
- this.label13.Name = "label13";
- this.label13.Size = new System.Drawing.Size(42, 21);
- this.label13.TabIndex = 0;
- this.label13.Text = "档位";
- //
- // label7
- //
- this.label7.AutoSize = true;
- this.label7.Location = new System.Drawing.Point(14, 152);
- this.label7.Name = "label7";
- this.label7.Size = new System.Drawing.Size(42, 21);
- this.label7.TabIndex = 0;
- this.label7.Text = "转速";
- //
- // label18
- //
- this.label18.AutoSize = true;
- this.label18.Location = new System.Drawing.Point(308, 35);
- this.label18.Name = "label18";
- this.label18.Size = new System.Drawing.Size(73, 21);
- this.label18.TabIndex = 0;
- this.label18.Text = "PCB温度";
- //
- // label12
- //
- this.label12.AutoSize = true;
- this.label12.Location = new System.Drawing.Point(161, 152);
- this.label12.Name = "label12";
- this.label12.Size = new System.Drawing.Size(42, 21);
- this.label12.TabIndex = 0;
- this.label12.Text = "方向";
- //
- // label6
- //
- this.label6.AutoSize = true;
- this.label6.Location = new System.Drawing.Point(14, 74);
- this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(42, 21);
- this.label6.TabIndex = 0;
- this.label6.Text = "踏频";
- //
- // label17
- //
- this.label17.AutoSize = true;
- this.label17.Location = new System.Drawing.Point(493, 73);
- this.label17.Name = "label17";
- this.label17.Size = new System.Drawing.Size(42, 21);
- this.label17.TabIndex = 0;
- this.label17.Text = "功耗";
- //
- // label11
- //
- this.label11.AutoSize = true;
- this.label11.Location = new System.Drawing.Point(14, 113);
- this.label11.Name = "label11";
- this.label11.Size = new System.Drawing.Size(42, 21);
- this.label11.TabIndex = 0;
- this.label11.Text = "力矩";
- //
- // label5
- //
- this.label5.AutoSize = true;
- this.label5.Location = new System.Drawing.Point(14, 35);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(42, 21);
- this.label5.TabIndex = 0;
- this.label5.Text = "车速";
- //
- // groupBox3
- //
- this.groupBox3.Controls.Add(this.tabControl1);
- this.groupBox3.Location = new System.Drawing.Point(12, 234);
- this.groupBox3.Name = "groupBox3";
- this.groupBox3.Size = new System.Drawing.Size(1016, 382);
- this.groupBox3.TabIndex = 6;
- this.groupBox3.TabStop = false;
- this.groupBox3.Text = "参数查询/写入";
- //
- // tabControl1
- //
- this.tabControl1.Controls.Add(this.tabPage_MotorParam);
- this.tabControl1.Controls.Add(this.tabPage_BikeParam);
- this.tabControl1.Controls.Add(this.tabPage_ControlParam);
- this.tabControl1.Controls.Add(this.tabPage_SensorParam);
- this.tabControl1.Controls.Add(this.tabPage_AssistParam);
- this.tabControl1.Controls.Add(this.tabPage_DebugParam);
- this.tabControl1.Controls.Add(this.tabPage_RecordInfo);
- this.tabControl1.Controls.Add(this.tabPage_OtherInfo);
- this.tabControl1.Controls.Add(this.tabPage_OBC);
- this.tabControl1.Controls.Add(this.tabPage_RAMorFLASH);
- this.tabControl1.Controls.Add(this.tabPage_FactoryMode);
- this.tabControl1.Location = new System.Drawing.Point(10, 27);
- this.tabControl1.Name = "tabControl1";
- this.tabControl1.SelectedIndex = 0;
- this.tabControl1.Size = new System.Drawing.Size(998, 349);
- this.tabControl1.TabIndex = 0;
- //
- // tabPage_MotorParam
- //
- this.tabPage_MotorParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.tabPage_MotorParam.Controls.Add(this.button_Write);
- this.tabPage_MotorParam.Controls.Add(this.button_Read_MotorParam);
- this.tabPage_MotorParam.Controls.Add(this.richTextBox_MotorParam);
- this.tabPage_MotorParam.Location = new System.Drawing.Point(4, 30);
- this.tabPage_MotorParam.Name = "tabPage_MotorParam";
- this.tabPage_MotorParam.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage_MotorParam.Size = new System.Drawing.Size(990, 315);
- this.tabPage_MotorParam.TabIndex = 0;
- this.tabPage_MotorParam.Text = "马达参数";
- //
- // button_Write
- //
- this.button_Write.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.button_Write.Location = new System.Drawing.Point(858, 259);
- this.button_Write.Name = "button_Write";
- this.button_Write.Size = new System.Drawing.Size(126, 50);
- this.button_Write.TabIndex = 1;
- this.button_Write.Text = "写入参数";
- this.button_Write.UseVisualStyleBackColor = false;
- this.button_Write.Click += new System.EventHandler(this.button_Write_Click);
- //
- // button_Read_MotorParam
- //
- this.button_Read_MotorParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
- this.button_Read_MotorParam.Location = new System.Drawing.Point(858, 203);
- this.button_Read_MotorParam.Name = "button_Read_MotorParam";
- this.button_Read_MotorParam.Size = new System.Drawing.Size(126, 50);
- this.button_Read_MotorParam.TabIndex = 1;
- this.button_Read_MotorParam.Text = "读取参数";
- this.button_Read_MotorParam.UseVisualStyleBackColor = false;
- this.button_Read_MotorParam.Click += new System.EventHandler(this.button_Read_MotorParam_Click);
- //
- // richTextBox_MotorParam
- //
- this.richTextBox_MotorParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.richTextBox_MotorParam.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.richTextBox_MotorParam.Location = new System.Drawing.Point(6, 6);
- this.richTextBox_MotorParam.Name = "richTextBox_MotorParam";
- this.richTextBox_MotorParam.Size = new System.Drawing.Size(846, 303);
- this.richTextBox_MotorParam.TabIndex = 0;
- this.richTextBox_MotorParam.Text = "";
- //
- // tabPage_BikeParam
- //
- this.tabPage_BikeParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.tabPage_BikeParam.Controls.Add(this.textBox_AutoPowerOff);
- this.tabPage_BikeParam.Controls.Add(this.label95);
- this.tabPage_BikeParam.Controls.Add(this.textBox_PowerOffDelay);
- this.tabPage_BikeParam.Controls.Add(this.textBox_PowerOnDelay);
- this.tabPage_BikeParam.Controls.Add(this.label93);
- this.tabPage_BikeParam.Controls.Add(this.label94);
- this.tabPage_BikeParam.Controls.Add(this.comboBox_TailLightVol);
- this.tabPage_BikeParam.Controls.Add(this.label92);
- this.tabPage_BikeParam.Controls.Add(this.comboBox_FrontLightVol);
- this.tabPage_BikeParam.Controls.Add(this.label91);
- this.tabPage_BikeParam.Controls.Add(this.comboBox_TailLightMode);
- this.tabPage_BikeParam.Controls.Add(this.label90);
- this.tabPage_BikeParam.Controls.Add(this.button_WriteBikeParam);
- this.tabPage_BikeParam.Controls.Add(this.button_ReadBikeParam);
- this.tabPage_BikeParam.Controls.Add(this.richTextBox_BikeParam);
- this.tabPage_BikeParam.Location = new System.Drawing.Point(4, 30);
- this.tabPage_BikeParam.Name = "tabPage_BikeParam";
- this.tabPage_BikeParam.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage_BikeParam.Size = new System.Drawing.Size(990, 315);
- this.tabPage_BikeParam.TabIndex = 1;
- this.tabPage_BikeParam.Text = "整车信息";
- //
- // textBox_AutoPowerOff
- //
- this.textBox_AutoPowerOff.Location = new System.Drawing.Point(932, 169);
- this.textBox_AutoPowerOff.Name = "textBox_AutoPowerOff";
- this.textBox_AutoPowerOff.Size = new System.Drawing.Size(55, 28);
- this.textBox_AutoPowerOff.TabIndex = 17;
- //
- // label95
- //
- this.label95.AutoSize = true;
- this.label95.Location = new System.Drawing.Point(855, 173);
- this.label95.Name = "label95";
- this.label95.Size = new System.Drawing.Size(74, 21);
- this.label95.TabIndex = 16;
- this.label95.Text = "自动关机";
- //
- // textBox_PowerOffDelay
- //
- this.textBox_PowerOffDelay.Location = new System.Drawing.Point(932, 138);
- this.textBox_PowerOffDelay.Name = "textBox_PowerOffDelay";
- this.textBox_PowerOffDelay.Size = new System.Drawing.Size(55, 28);
- this.textBox_PowerOffDelay.TabIndex = 15;
- //
- // textBox_PowerOnDelay
- //
- this.textBox_PowerOnDelay.Location = new System.Drawing.Point(932, 107);
- this.textBox_PowerOnDelay.Name = "textBox_PowerOnDelay";
- this.textBox_PowerOnDelay.Size = new System.Drawing.Size(55, 28);
- this.textBox_PowerOnDelay.TabIndex = 14;
- //
- // label93
- //
- this.label93.AutoSize = true;
- this.label93.Location = new System.Drawing.Point(855, 142);
- this.label93.Name = "label93";
- this.label93.Size = new System.Drawing.Size(74, 21);
- this.label93.TabIndex = 13;
- this.label93.Text = "关机延时";
- //
- // label94
- //
- this.label94.AutoSize = true;
- this.label94.Location = new System.Drawing.Point(855, 111);
- this.label94.Name = "label94";
- this.label94.Size = new System.Drawing.Size(74, 21);
- this.label94.TabIndex = 11;
- this.label94.Text = "开机延时";
- //
- // comboBox_TailLightVol
- //
- this.comboBox_TailLightVol.FormattingEnabled = true;
- this.comboBox_TailLightVol.Items.AddRange(new object[] {
- "6V",
- "12V"});
- this.comboBox_TailLightVol.Location = new System.Drawing.Point(932, 76);
- this.comboBox_TailLightVol.Name = "comboBox_TailLightVol";
- this.comboBox_TailLightVol.Size = new System.Drawing.Size(55, 29);
- this.comboBox_TailLightVol.TabIndex = 10;
- //
- // label92
- //
- this.label92.AutoSize = true;
- this.label92.Location = new System.Drawing.Point(855, 80);
- this.label92.Name = "label92";
- this.label92.Size = new System.Drawing.Size(74, 21);
- this.label92.TabIndex = 9;
- this.label92.Text = "尾灯电压";
- //
- // comboBox_FrontLightVol
- //
- this.comboBox_FrontLightVol.FormattingEnabled = true;
- this.comboBox_FrontLightVol.Items.AddRange(new object[] {
- "6V",
- "12V"});
- this.comboBox_FrontLightVol.Location = new System.Drawing.Point(932, 45);
- this.comboBox_FrontLightVol.Name = "comboBox_FrontLightVol";
- this.comboBox_FrontLightVol.Size = new System.Drawing.Size(55, 29);
- this.comboBox_FrontLightVol.TabIndex = 8;
- //
- // label91
- //
- this.label91.AutoSize = true;
- this.label91.Location = new System.Drawing.Point(855, 49);
- this.label91.Name = "label91";
- this.label91.Size = new System.Drawing.Size(74, 21);
- this.label91.TabIndex = 7;
- this.label91.Text = "前灯电压";
- //
- // comboBox_TailLightMode
- //
- this.comboBox_TailLightMode.FormattingEnabled = true;
- this.comboBox_TailLightMode.Items.AddRange(new object[] {
- "1",
- "2",
- "3",
- "4",
- "5",
- "6"});
- this.comboBox_TailLightMode.Location = new System.Drawing.Point(932, 14);
- this.comboBox_TailLightMode.Name = "comboBox_TailLightMode";
- this.comboBox_TailLightMode.Size = new System.Drawing.Size(55, 29);
- this.comboBox_TailLightMode.TabIndex = 6;
- //
- // label90
- //
- this.label90.AutoSize = true;
- this.label90.Location = new System.Drawing.Point(855, 18);
- this.label90.Name = "label90";
- this.label90.Size = new System.Drawing.Size(74, 21);
- this.label90.TabIndex = 5;
- this.label90.Text = "尾灯模式";
- //
- // button_WriteBikeParam
- //
- this.button_WriteBikeParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.button_WriteBikeParam.Location = new System.Drawing.Point(858, 259);
- this.button_WriteBikeParam.Name = "button_WriteBikeParam";
- this.button_WriteBikeParam.Size = new System.Drawing.Size(126, 50);
- this.button_WriteBikeParam.TabIndex = 4;
- this.button_WriteBikeParam.Text = "写入参数";
- this.button_WriteBikeParam.UseVisualStyleBackColor = false;
- this.button_WriteBikeParam.Click += new System.EventHandler(this.button_WriteBikeParam_Click);
- //
- // button_ReadBikeParam
- //
- this.button_ReadBikeParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
- this.button_ReadBikeParam.Location = new System.Drawing.Point(858, 203);
- this.button_ReadBikeParam.Name = "button_ReadBikeParam";
- this.button_ReadBikeParam.Size = new System.Drawing.Size(126, 50);
- this.button_ReadBikeParam.TabIndex = 3;
- this.button_ReadBikeParam.Text = "读取参数";
- this.button_ReadBikeParam.UseVisualStyleBackColor = false;
- this.button_ReadBikeParam.Click += new System.EventHandler(this.button_ReadBikeParam_Click);
- //
- // richTextBox_BikeParam
- //
- this.richTextBox_BikeParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.richTextBox_BikeParam.Location = new System.Drawing.Point(6, 6);
- this.richTextBox_BikeParam.Name = "richTextBox_BikeParam";
- this.richTextBox_BikeParam.Size = new System.Drawing.Size(846, 303);
- this.richTextBox_BikeParam.TabIndex = 2;
- this.richTextBox_BikeParam.Text = "";
- //
- // tabPage_ControlParam
- //
- this.tabPage_ControlParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.tabPage_ControlParam.Controls.Add(this.button_WriteControlParam);
- this.tabPage_ControlParam.Controls.Add(this.button_ReadControlParam);
- this.tabPage_ControlParam.Controls.Add(this.richTextBox_ControlParam);
- this.tabPage_ControlParam.Location = new System.Drawing.Point(4, 30);
- this.tabPage_ControlParam.Name = "tabPage_ControlParam";
- this.tabPage_ControlParam.Size = new System.Drawing.Size(990, 315);
- this.tabPage_ControlParam.TabIndex = 2;
- this.tabPage_ControlParam.Text = "控制参数";
- //
- // button_WriteControlParam
- //
- this.button_WriteControlParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.button_WriteControlParam.Location = new System.Drawing.Point(858, 259);
- this.button_WriteControlParam.Name = "button_WriteControlParam";
- this.button_WriteControlParam.Size = new System.Drawing.Size(126, 50);
- this.button_WriteControlParam.TabIndex = 4;
- this.button_WriteControlParam.Text = "写入参数";
- this.button_WriteControlParam.UseVisualStyleBackColor = false;
- this.button_WriteControlParam.Click += new System.EventHandler(this.button_WriteControlParam_Click);
- //
- // button_ReadControlParam
- //
- this.button_ReadControlParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
- this.button_ReadControlParam.Location = new System.Drawing.Point(858, 203);
- this.button_ReadControlParam.Name = "button_ReadControlParam";
- this.button_ReadControlParam.Size = new System.Drawing.Size(126, 50);
- this.button_ReadControlParam.TabIndex = 3;
- this.button_ReadControlParam.Text = "读取参数";
- this.button_ReadControlParam.UseVisualStyleBackColor = false;
- this.button_ReadControlParam.Click += new System.EventHandler(this.button_ReadControlParam_Click);
- //
- // richTextBox_ControlParam
- //
- this.richTextBox_ControlParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.richTextBox_ControlParam.Location = new System.Drawing.Point(6, 6);
- this.richTextBox_ControlParam.Name = "richTextBox_ControlParam";
- this.richTextBox_ControlParam.Size = new System.Drawing.Size(846, 303);
- this.richTextBox_ControlParam.TabIndex = 2;
- this.richTextBox_ControlParam.Text = "";
- //
- // tabPage_SensorParam
- //
- this.tabPage_SensorParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.tabPage_SensorParam.Controls.Add(this.button_WriteTqSensorParam);
- this.tabPage_SensorParam.Controls.Add(this.comboBox_TorqueSet);
- this.tabPage_SensorParam.Controls.Add(this.label29);
- this.tabPage_SensorParam.Controls.Add(this.textBox_Load);
- this.tabPage_SensorParam.Controls.Add(this.label27);
- this.tabPage_SensorParam.Controls.Add(this.label26);
- this.tabPage_SensorParam.Controls.Add(this.button_Write_Cal);
- this.tabPage_SensorParam.Controls.Add(this.button_WriteSensorParam);
- this.tabPage_SensorParam.Controls.Add(this.button_ReadSensorParam);
- this.tabPage_SensorParam.Controls.Add(this.richTextBox_SensorParam);
- this.tabPage_SensorParam.Location = new System.Drawing.Point(4, 30);
- this.tabPage_SensorParam.Name = "tabPage_SensorParam";
- this.tabPage_SensorParam.Size = new System.Drawing.Size(990, 315);
- this.tabPage_SensorParam.TabIndex = 3;
- this.tabPage_SensorParam.Text = "传感器参数";
- //
- // button_WriteTqSensorParam
- //
- this.button_WriteTqSensorParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
- this.button_WriteTqSensorParam.Location = new System.Drawing.Point(858, 205);
- this.button_WriteTqSensorParam.Name = "button_WriteTqSensorParam";
- this.button_WriteTqSensorParam.Size = new System.Drawing.Size(126, 50);
- this.button_WriteTqSensorParam.TabIndex = 10;
- this.button_WriteTqSensorParam.Text = "写入力矩传感器参数";
- this.button_WriteTqSensorParam.UseVisualStyleBackColor = false;
- this.button_WriteTqSensorParam.Click += new System.EventHandler(this.button_WriteTqSensorParam_Click);
- //
- // comboBox_TorqueSet
- //
- this.comboBox_TorqueSet.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
- this.comboBox_TorqueSet.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.comboBox_TorqueSet.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.comboBox_TorqueSet.FormattingEnabled = true;
- this.comboBox_TorqueSet.Items.AddRange(new object[] {
- "1",
- "2",
- "3",
- "4"});
- this.comboBox_TorqueSet.Location = new System.Drawing.Point(911, 12);
- this.comboBox_TorqueSet.Name = "comboBox_TorqueSet";
- this.comboBox_TorqueSet.Size = new System.Drawing.Size(73, 29);
- this.comboBox_TorqueSet.TabIndex = 9;
- //
- // label29
- //
- this.label29.BackColor = System.Drawing.Color.Silver;
- this.label29.Location = new System.Drawing.Point(858, 146);
- this.label29.Name = "label29";
- this.label29.Size = new System.Drawing.Size(112, 1);
- this.label29.TabIndex = 7;
- //
- // textBox_Load
- //
- this.textBox_Load.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_Load.Location = new System.Drawing.Point(911, 52);
- this.textBox_Load.Name = "textBox_Load";
- this.textBox_Load.Size = new System.Drawing.Size(73, 28);
- this.textBox_Load.TabIndex = 6;
- this.textBox_Load.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // label27
- //
- this.label27.AutoSize = true;
- this.label27.Location = new System.Drawing.Point(858, 45);
- this.label27.Name = "label27";
- this.label27.Size = new System.Drawing.Size(42, 42);
- this.label27.TabIndex = 5;
- this.label27.Text = "负载\r\nN.m";
- //
- // label26
- //
- this.label26.AutoSize = true;
- this.label26.Location = new System.Drawing.Point(858, 16);
- this.label26.Name = "label26";
- this.label26.Size = new System.Drawing.Size(42, 21);
- this.label26.TabIndex = 3;
- this.label26.Text = "序号";
- //
- // button_Write_Cal
- //
- this.button_Write_Cal.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(128)))));
- this.button_Write_Cal.Location = new System.Drawing.Point(858, 92);
- this.button_Write_Cal.Name = "button_Write_Cal";
- this.button_Write_Cal.Size = new System.Drawing.Size(126, 50);
- this.button_Write_Cal.TabIndex = 2;
- this.button_Write_Cal.Text = "力矩传感器标定";
- this.button_Write_Cal.UseVisualStyleBackColor = false;
- this.button_Write_Cal.Click += new System.EventHandler(this.button_Write_Cal_Click);
- //
- // button_WriteSensorParam
- //
- this.button_WriteSensorParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.button_WriteSensorParam.Location = new System.Drawing.Point(858, 259);
- this.button_WriteSensorParam.Name = "button_WriteSensorParam";
- this.button_WriteSensorParam.Size = new System.Drawing.Size(126, 50);
- this.button_WriteSensorParam.TabIndex = 2;
- this.button_WriteSensorParam.Text = "写入其它传感器参数";
- this.button_WriteSensorParam.UseVisualStyleBackColor = false;
- this.button_WriteSensorParam.Click += new System.EventHandler(this.button_WriteSensorParam_Click);
- //
- // button_ReadSensorParam
- //
- this.button_ReadSensorParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
- this.button_ReadSensorParam.Location = new System.Drawing.Point(858, 151);
- this.button_ReadSensorParam.Name = "button_ReadSensorParam";
- this.button_ReadSensorParam.Size = new System.Drawing.Size(126, 50);
- this.button_ReadSensorParam.TabIndex = 2;
- this.button_ReadSensorParam.Text = "读取参数";
- this.button_ReadSensorParam.UseVisualStyleBackColor = false;
- this.button_ReadSensorParam.Click += new System.EventHandler(this.button_ReadSensorParam_Click);
- //
- // richTextBox_SensorParam
- //
- this.richTextBox_SensorParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.richTextBox_SensorParam.Location = new System.Drawing.Point(6, 6);
- this.richTextBox_SensorParam.Name = "richTextBox_SensorParam";
- this.richTextBox_SensorParam.Size = new System.Drawing.Size(846, 303);
- this.richTextBox_SensorParam.TabIndex = 1;
- this.richTextBox_SensorParam.Text = "";
- //
- // tabPage_AssistParam
- //
- this.tabPage_AssistParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.tabPage_AssistParam.Controls.Add(this.label62);
- this.tabPage_AssistParam.Controls.Add(this.label47);
- this.tabPage_AssistParam.Controls.Add(this.comboBox_AssistTorque);
- this.tabPage_AssistParam.Controls.Add(this.comboBox_AssistCadence);
- this.tabPage_AssistParam.Controls.Add(this.label25);
- this.tabPage_AssistParam.Controls.Add(this.button_WriteAssistParam);
- this.tabPage_AssistParam.Controls.Add(this.button_ReadAssistParam);
- this.tabPage_AssistParam.Controls.Add(this.richTextBox_AssistParam);
- this.tabPage_AssistParam.Location = new System.Drawing.Point(4, 30);
- this.tabPage_AssistParam.Name = "tabPage_AssistParam";
- this.tabPage_AssistParam.Size = new System.Drawing.Size(990, 315);
- this.tabPage_AssistParam.TabIndex = 4;
- this.tabPage_AssistParam.Text = "助力参数";
- //
- // label62
- //
- this.label62.BackColor = System.Drawing.Color.Silver;
- this.label62.Location = new System.Drawing.Point(858, 237);
- this.label62.Name = "label62";
- this.label62.Size = new System.Drawing.Size(126, 1);
- this.label62.TabIndex = 10;
- //
- // label47
- //
- this.label47.AutoSize = true;
- this.label47.Location = new System.Drawing.Point(883, 10);
- this.label47.Name = "label47";
- this.label47.Size = new System.Drawing.Size(74, 42);
- this.label47.TabIndex = 9;
- this.label47.Text = "助力转矩\r\n曲线编号";
- //
- // comboBox_AssistTorque
- //
- this.comboBox_AssistTorque.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
- this.comboBox_AssistTorque.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.comboBox_AssistTorque.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.comboBox_AssistTorque.FormattingEnabled = true;
- this.comboBox_AssistTorque.Items.AddRange(new object[] {
- "1",
- "2",
- "3",
- "4",
- "5",
- "6",
- "7",
- "8",
- "9",
- "10",
- "11",
- "12",
- "13",
- "14",
- "15"});
- this.comboBox_AssistTorque.Location = new System.Drawing.Point(870, 55);
- this.comboBox_AssistTorque.Name = "comboBox_AssistTorque";
- this.comboBox_AssistTorque.Size = new System.Drawing.Size(100, 29);
- this.comboBox_AssistTorque.TabIndex = 8;
- //
- // comboBox_AssistCadence
- //
- this.comboBox_AssistCadence.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
- this.comboBox_AssistCadence.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.comboBox_AssistCadence.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.comboBox_AssistCadence.FormattingEnabled = true;
- this.comboBox_AssistCadence.Items.AddRange(new object[] {
- "1",
- "2",
- "3",
- "4",
- "5"});
- this.comboBox_AssistCadence.Location = new System.Drawing.Point(870, 132);
- this.comboBox_AssistCadence.Name = "comboBox_AssistCadence";
- this.comboBox_AssistCadence.Size = new System.Drawing.Size(100, 29);
- this.comboBox_AssistCadence.TabIndex = 7;
- //
- // label25
- //
- this.label25.AutoSize = true;
- this.label25.Location = new System.Drawing.Point(883, 87);
- this.label25.Name = "label25";
- this.label25.Size = new System.Drawing.Size(74, 42);
- this.label25.TabIndex = 2;
- this.label25.Text = "助力踏频\r\n曲线编号";
- //
- // button_WriteAssistParam
- //
- this.button_WriteAssistParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.button_WriteAssistParam.Location = new System.Drawing.Point(858, 259);
- this.button_WriteAssistParam.Name = "button_WriteAssistParam";
- this.button_WriteAssistParam.Size = new System.Drawing.Size(126, 50);
- this.button_WriteAssistParam.TabIndex = 4;
- this.button_WriteAssistParam.Text = "写入参数";
- this.button_WriteAssistParam.UseVisualStyleBackColor = false;
- this.button_WriteAssistParam.Click += new System.EventHandler(this.button_WriteAssistParam_Click);
- //
- // button_ReadAssistParam
- //
- this.button_ReadAssistParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
- this.button_ReadAssistParam.Location = new System.Drawing.Point(858, 167);
- this.button_ReadAssistParam.Name = "button_ReadAssistParam";
- this.button_ReadAssistParam.Size = new System.Drawing.Size(126, 50);
- this.button_ReadAssistParam.TabIndex = 3;
- this.button_ReadAssistParam.Text = "读取参数";
- this.button_ReadAssistParam.UseVisualStyleBackColor = false;
- this.button_ReadAssistParam.Click += new System.EventHandler(this.button_ReadAssistParam_Click);
- //
- // richTextBox_AssistParam
- //
- this.richTextBox_AssistParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.richTextBox_AssistParam.Location = new System.Drawing.Point(6, 6);
- this.richTextBox_AssistParam.Name = "richTextBox_AssistParam";
- this.richTextBox_AssistParam.Size = new System.Drawing.Size(846, 303);
- this.richTextBox_AssistParam.TabIndex = 2;
- this.richTextBox_AssistParam.Text = "";
- //
- // tabPage_DebugParam
- //
- this.tabPage_DebugParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.tabPage_DebugParam.Controls.Add(this.button_WriteDebugParam);
- this.tabPage_DebugParam.Controls.Add(this.button_ReadDebugParam);
- this.tabPage_DebugParam.Controls.Add(this.richTextBox_DebugParam);
- this.tabPage_DebugParam.ForeColor = System.Drawing.Color.Black;
- this.tabPage_DebugParam.Location = new System.Drawing.Point(4, 30);
- this.tabPage_DebugParam.Name = "tabPage_DebugParam";
- this.tabPage_DebugParam.Size = new System.Drawing.Size(990, 315);
- this.tabPage_DebugParam.TabIndex = 5;
- this.tabPage_DebugParam.Text = "调试模式";
- //
- // button_WriteDebugParam
- //
- this.button_WriteDebugParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.button_WriteDebugParam.Location = new System.Drawing.Point(858, 259);
- this.button_WriteDebugParam.Name = "button_WriteDebugParam";
- this.button_WriteDebugParam.Size = new System.Drawing.Size(126, 50);
- this.button_WriteDebugParam.TabIndex = 4;
- this.button_WriteDebugParam.Text = "写入";
- this.button_WriteDebugParam.UseVisualStyleBackColor = false;
- this.button_WriteDebugParam.Click += new System.EventHandler(this.button_WriteDebugParam_Click);
- //
- // button_ReadDebugParam
- //
- this.button_ReadDebugParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
- this.button_ReadDebugParam.Location = new System.Drawing.Point(858, 203);
- this.button_ReadDebugParam.Name = "button_ReadDebugParam";
- this.button_ReadDebugParam.Size = new System.Drawing.Size(126, 50);
- this.button_ReadDebugParam.TabIndex = 3;
- this.button_ReadDebugParam.Text = "读取";
- this.button_ReadDebugParam.UseVisualStyleBackColor = false;
- this.button_ReadDebugParam.Click += new System.EventHandler(this.button_ReadDebugParam_Click);
- //
- // richTextBox_DebugParam
- //
- this.richTextBox_DebugParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.richTextBox_DebugParam.Location = new System.Drawing.Point(6, 6);
- this.richTextBox_DebugParam.Name = "richTextBox_DebugParam";
- this.richTextBox_DebugParam.Size = new System.Drawing.Size(846, 303);
- this.richTextBox_DebugParam.TabIndex = 2;
- this.richTextBox_DebugParam.Text = "";
- //
- // tabPage_RecordInfo
- //
- this.tabPage_RecordInfo.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.tabPage_RecordInfo.Controls.Add(this.label89);
- this.tabPage_RecordInfo.Controls.Add(this.label88);
- this.tabPage_RecordInfo.Controls.Add(this.textBox_LogAddrEnd);
- this.tabPage_RecordInfo.Controls.Add(this.label_LogAddrBegin);
- this.tabPage_RecordInfo.Controls.Add(this.textBox_LogAddrBegin);
- this.tabPage_RecordInfo.Controls.Add(this.button_SaveRecordInfo);
- this.tabPage_RecordInfo.Controls.Add(this.button_ReadRecord);
- this.tabPage_RecordInfo.Controls.Add(this.button_ExportLog);
- this.tabPage_RecordInfo.Controls.Add(this.richTextBox_Record);
- this.tabPage_RecordInfo.Location = new System.Drawing.Point(4, 30);
- this.tabPage_RecordInfo.Name = "tabPage_RecordInfo";
- this.tabPage_RecordInfo.Size = new System.Drawing.Size(990, 315);
- this.tabPage_RecordInfo.TabIndex = 6;
- this.tabPage_RecordInfo.Text = "历史信息";
- //
- // label89
- //
- this.label89.BackColor = System.Drawing.Color.Silver;
- this.label89.Location = new System.Drawing.Point(858, 136);
- this.label89.Name = "label89";
- this.label89.Size = new System.Drawing.Size(126, 1);
- this.label89.TabIndex = 14;
- //
- // label88
- //
- this.label88.AutoSize = true;
- this.label88.Location = new System.Drawing.Point(868, 70);
- this.label88.Name = "label88";
- this.label88.Size = new System.Drawing.Size(106, 21);
- this.label88.TabIndex = 10;
- this.label88.Text = "日志结束地址";
- this.label88.DoubleClick += new System.EventHandler(this.label88_DoubleClick);
- //
- // textBox_LogAddrEnd
- //
- this.textBox_LogAddrEnd.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_LogAddrEnd.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F);
- this.textBox_LogAddrEnd.Location = new System.Drawing.Point(858, 97);
- this.textBox_LogAddrEnd.Name = "textBox_LogAddrEnd";
- this.textBox_LogAddrEnd.ReadOnly = true;
- this.textBox_LogAddrEnd.Size = new System.Drawing.Size(126, 28);
- this.textBox_LogAddrEnd.TabIndex = 11;
- this.textBox_LogAddrEnd.Text = "0801FFFF";
- this.textBox_LogAddrEnd.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // label_LogAddrBegin
- //
- this.label_LogAddrBegin.AutoSize = true;
- this.label_LogAddrBegin.Location = new System.Drawing.Point(868, 9);
- this.label_LogAddrBegin.Name = "label_LogAddrBegin";
- this.label_LogAddrBegin.Size = new System.Drawing.Size(106, 21);
- this.label_LogAddrBegin.TabIndex = 8;
- this.label_LogAddrBegin.Text = "日志起始地址";
- this.label_LogAddrBegin.DoubleClick += new System.EventHandler(this.label_LogAddrBegin_DoubleClick_1);
- //
- // textBox_LogAddrBegin
- //
- this.textBox_LogAddrBegin.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_LogAddrBegin.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F);
- this.textBox_LogAddrBegin.Location = new System.Drawing.Point(858, 36);
- this.textBox_LogAddrBegin.Name = "textBox_LogAddrBegin";
- this.textBox_LogAddrBegin.ReadOnly = true;
- this.textBox_LogAddrBegin.Size = new System.Drawing.Size(126, 28);
- this.textBox_LogAddrBegin.TabIndex = 9;
- this.textBox_LogAddrBegin.Text = "0801F800";
- this.textBox_LogAddrBegin.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // button_SaveRecordInfo
- //
- this.button_SaveRecordInfo.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
- this.button_SaveRecordInfo.Location = new System.Drawing.Point(858, 259);
- this.button_SaveRecordInfo.Name = "button_SaveRecordInfo";
- this.button_SaveRecordInfo.Size = new System.Drawing.Size(126, 50);
- this.button_SaveRecordInfo.TabIndex = 4;
- this.button_SaveRecordInfo.Text = "保存日志";
- this.button_SaveRecordInfo.UseVisualStyleBackColor = false;
- this.button_SaveRecordInfo.Click += new System.EventHandler(this.button_SaveRecordInfo_Click);
- //
- // button_ReadRecord
- //
- this.button_ReadRecord.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
- this.button_ReadRecord.Location = new System.Drawing.Point(858, 147);
- this.button_ReadRecord.Name = "button_ReadRecord";
- this.button_ReadRecord.Size = new System.Drawing.Size(126, 50);
- this.button_ReadRecord.TabIndex = 3;
- this.button_ReadRecord.Text = "读取历史";
- this.button_ReadRecord.UseVisualStyleBackColor = false;
- this.button_ReadRecord.Click += new System.EventHandler(this.button_ReadRecord_Click);
- //
- // button_ExportLog
- //
- this.button_ExportLog.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(128)))));
- this.button_ExportLog.Location = new System.Drawing.Point(858, 203);
- this.button_ExportLog.Name = "button_ExportLog";
- this.button_ExportLog.Size = new System.Drawing.Size(126, 50);
- this.button_ExportLog.TabIndex = 3;
- this.button_ExportLog.Text = "导出日志";
- this.button_ExportLog.UseVisualStyleBackColor = false;
- this.button_ExportLog.Click += new System.EventHandler(this.button_ExportLog_Click);
- //
- // richTextBox_Record
- //
- this.richTextBox_Record.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.richTextBox_Record.Location = new System.Drawing.Point(6, 6);
- this.richTextBox_Record.Name = "richTextBox_Record";
- this.richTextBox_Record.Size = new System.Drawing.Size(846, 303);
- this.richTextBox_Record.TabIndex = 2;
- this.richTextBox_Record.Text = "";
- //
- // tabPage_OtherInfo
- //
- this.tabPage_OtherInfo.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.tabPage_OtherInfo.Controls.Add(this.groupBox16);
- this.tabPage_OtherInfo.Controls.Add(this.groupBox9);
- this.tabPage_OtherInfo.Controls.Add(this.groupBox8);
- this.tabPage_OtherInfo.Controls.Add(this.groupBox7);
- this.tabPage_OtherInfo.Controls.Add(this.groupBox6);
- this.tabPage_OtherInfo.Controls.Add(this.groupBox5);
- this.tabPage_OtherInfo.Controls.Add(this.groupBox4);
- this.tabPage_OtherInfo.Location = new System.Drawing.Point(4, 30);
- this.tabPage_OtherInfo.Name = "tabPage_OtherInfo";
- this.tabPage_OtherInfo.Size = new System.Drawing.Size(990, 315);
- this.tabPage_OtherInfo.TabIndex = 7;
- this.tabPage_OtherInfo.Text = "其它信息";
- //
- // groupBox16
- //
- this.groupBox16.Controls.Add(this.groupBox18);
- this.groupBox16.Controls.Add(this.groupBox17);
- this.groupBox16.Controls.Add(this.button_ReadSaveFlag);
- this.groupBox16.Controls.Add(this.button_WriteSaveFlag);
- this.groupBox16.Controls.Add(this.checkBox_SaveYes);
- this.groupBox16.Location = new System.Drawing.Point(707, 185);
- this.groupBox16.Name = "groupBox16";
- this.groupBox16.Size = new System.Drawing.Size(280, 127);
- this.groupBox16.TabIndex = 5;
- this.groupBox16.TabStop = false;
- this.groupBox16.Text = "存储标志";
- //
- // groupBox18
- //
- this.groupBox18.Controls.Add(this.radioButton_SIP_SaveNo);
- this.groupBox18.Controls.Add(this.radioButton_SIP_SaveYes);
- this.groupBox18.Location = new System.Drawing.Point(107, 30);
- this.groupBox18.Name = "groupBox18";
- this.groupBox18.Size = new System.Drawing.Size(95, 95);
- this.groupBox18.TabIndex = 11;
- this.groupBox18.TabStop = false;
- this.groupBox18.Text = "SIP校准";
- //
- // radioButton_SIP_SaveNo
- //
- this.radioButton_SIP_SaveNo.AutoSize = true;
- this.radioButton_SIP_SaveNo.Location = new System.Drawing.Point(12, 31);
- this.radioButton_SIP_SaveNo.Name = "radioButton_SIP_SaveNo";
- this.radioButton_SIP_SaveNo.Size = new System.Drawing.Size(76, 25);
- this.radioButton_SIP_SaveNo.TabIndex = 9;
- this.radioButton_SIP_SaveNo.TabStop = true;
- this.radioButton_SIP_SaveNo.Text = "未存储";
- this.radioButton_SIP_SaveNo.UseVisualStyleBackColor = true;
- //
- // radioButton_SIP_SaveYes
- //
- this.radioButton_SIP_SaveYes.AutoSize = true;
- this.radioButton_SIP_SaveYes.Location = new System.Drawing.Point(12, 56);
- this.radioButton_SIP_SaveYes.Name = "radioButton_SIP_SaveYes";
- this.radioButton_SIP_SaveYes.Size = new System.Drawing.Size(76, 25);
- this.radioButton_SIP_SaveYes.TabIndex = 8;
- this.radioButton_SIP_SaveYes.TabStop = true;
- this.radioButton_SIP_SaveYes.Text = "已存储";
- this.radioButton_SIP_SaveYes.UseVisualStyleBackColor = true;
- //
- // groupBox17
- //
- this.groupBox17.Controls.Add(this.radioButton_EE_SaveYes);
- this.groupBox17.Controls.Add(this.radioButton_EE_SaveNo);
- this.groupBox17.Location = new System.Drawing.Point(6, 29);
- this.groupBox17.Name = "groupBox17";
- this.groupBox17.Size = new System.Drawing.Size(95, 96);
- this.groupBox17.TabIndex = 10;
- this.groupBox17.TabStop = false;
- this.groupBox17.Text = "EEPROM";
- //
- // radioButton_EE_SaveYes
- //
- this.radioButton_EE_SaveYes.AutoSize = true;
- this.radioButton_EE_SaveYes.Location = new System.Drawing.Point(15, 57);
- this.radioButton_EE_SaveYes.Name = "radioButton_EE_SaveYes";
- this.radioButton_EE_SaveYes.Size = new System.Drawing.Size(76, 25);
- this.radioButton_EE_SaveYes.TabIndex = 8;
- this.radioButton_EE_SaveYes.TabStop = true;
- this.radioButton_EE_SaveYes.Text = "已存储";
- this.radioButton_EE_SaveYes.UseVisualStyleBackColor = true;
- //
- // radioButton_EE_SaveNo
- //
- this.radioButton_EE_SaveNo.AutoSize = true;
- this.radioButton_EE_SaveNo.Location = new System.Drawing.Point(15, 32);
- this.radioButton_EE_SaveNo.Name = "radioButton_EE_SaveNo";
- this.radioButton_EE_SaveNo.Size = new System.Drawing.Size(76, 25);
- this.radioButton_EE_SaveNo.TabIndex = 9;
- this.radioButton_EE_SaveNo.TabStop = true;
- this.radioButton_EE_SaveNo.Text = "未存储";
- this.radioButton_EE_SaveNo.UseVisualStyleBackColor = true;
- //
- // button_ReadSaveFlag
- //
- this.button_ReadSaveFlag.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
- this.button_ReadSaveFlag.Location = new System.Drawing.Point(207, 59);
- this.button_ReadSaveFlag.Name = "button_ReadSaveFlag";
- this.button_ReadSaveFlag.Size = new System.Drawing.Size(61, 29);
- this.button_ReadSaveFlag.TabIndex = 3;
- this.button_ReadSaveFlag.Text = "查询";
- this.button_ReadSaveFlag.UseVisualStyleBackColor = false;
- this.button_ReadSaveFlag.Click += new System.EventHandler(this.button_ReadSaveFlag_Click);
- //
- // button_WriteSaveFlag
- //
- this.button_WriteSaveFlag.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(255)))));
- this.button_WriteSaveFlag.Location = new System.Drawing.Point(207, 92);
- this.button_WriteSaveFlag.Name = "button_WriteSaveFlag";
- this.button_WriteSaveFlag.Size = new System.Drawing.Size(61, 29);
- this.button_WriteSaveFlag.TabIndex = 4;
- this.button_WriteSaveFlag.Text = "写入";
- this.button_WriteSaveFlag.UseVisualStyleBackColor = false;
- this.button_WriteSaveFlag.Click += new System.EventHandler(this.button_WriteSaveFlag_Click);
- //
- // checkBox_SaveYes
- //
- this.checkBox_SaveYes.AutoSize = true;
- this.checkBox_SaveYes.Location = new System.Drawing.Point(207, 28);
- this.checkBox_SaveYes.Name = "checkBox_SaveYes";
- this.checkBox_SaveYes.Size = new System.Drawing.Size(61, 25);
- this.checkBox_SaveYes.TabIndex = 5;
- this.checkBox_SaveYes.Text = "保存";
- this.checkBox_SaveYes.UseVisualStyleBackColor = true;
- //
- // groupBox9
- //
- this.groupBox9.Controls.Add(this.button_Recovery);
- this.groupBox9.Controls.Add(this.button_ClearLog);
- this.groupBox9.Controls.Add(this.button_Reset);
- this.groupBox9.Controls.Add(this.button_SystemClear);
- this.groupBox9.Location = new System.Drawing.Point(707, 4);
- this.groupBox9.Name = "groupBox9";
- this.groupBox9.Size = new System.Drawing.Size(280, 175);
- this.groupBox9.TabIndex = 4;
- this.groupBox9.TabStop = false;
- this.groupBox9.Text = "系统操作";
- //
- // button_Recovery
- //
- this.button_Recovery.BackColor = System.Drawing.Color.Fuchsia;
- this.button_Recovery.Location = new System.Drawing.Point(152, 28);
- this.button_Recovery.Name = "button_Recovery";
- this.button_Recovery.Size = new System.Drawing.Size(100, 60);
- this.button_Recovery.TabIndex = 2;
- this.button_Recovery.Text = "参数还原";
- this.button_Recovery.UseVisualStyleBackColor = false;
- this.button_Recovery.Click += new System.EventHandler(this.button_Recovery_Click);
- //
- // button_ClearLog
- //
- this.button_ClearLog.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.button_ClearLog.Location = new System.Drawing.Point(152, 92);
- this.button_ClearLog.Name = "button_ClearLog";
- this.button_ClearLog.Size = new System.Drawing.Size(100, 60);
- this.button_ClearLog.TabIndex = 2;
- this.button_ClearLog.Text = "记录清除";
- this.button_ClearLog.UseVisualStyleBackColor = false;
- this.button_ClearLog.Click += new System.EventHandler(this.button_ClearLog_Click);
- //
- // button_Reset
- //
- this.button_Reset.BackColor = System.Drawing.Color.Lime;
- this.button_Reset.Location = new System.Drawing.Point(21, 92);
- this.button_Reset.Name = "button_Reset";
- this.button_Reset.Size = new System.Drawing.Size(100, 60);
- this.button_Reset.TabIndex = 2;
- this.button_Reset.Text = "系统关机";
- this.button_Reset.UseVisualStyleBackColor = false;
- this.button_Reset.Click += new System.EventHandler(this.button_Reset_Click);
- //
- // button_SystemClear
- //
- this.button_SystemClear.BackColor = System.Drawing.Color.Red;
- this.button_SystemClear.Location = new System.Drawing.Point(21, 28);
- this.button_SystemClear.Name = "button_SystemClear";
- this.button_SystemClear.Size = new System.Drawing.Size(100, 60);
- this.button_SystemClear.TabIndex = 2;
- this.button_SystemClear.Text = "系统清除";
- this.button_SystemClear.UseVisualStyleBackColor = false;
- this.button_SystemClear.Click += new System.EventHandler(this.button_SystemClear_Click);
- //
- // groupBox8
- //
- this.groupBox8.Controls.Add(this.button_ReadOnLine);
- this.groupBox8.Controls.Add(this.textBox_Online);
- this.groupBox8.Controls.Add(this.label42);
- this.groupBox8.Location = new System.Drawing.Point(375, 248);
- this.groupBox8.Name = "groupBox8";
- this.groupBox8.Size = new System.Drawing.Size(326, 64);
- this.groupBox8.TabIndex = 3;
- this.groupBox8.TabStop = false;
- this.groupBox8.Text = "在线查询";
- //
- // button_ReadOnLine
- //
- this.button_ReadOnLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
- this.button_ReadOnLine.Location = new System.Drawing.Point(201, 25);
- this.button_ReadOnLine.Name = "button_ReadOnLine";
- this.button_ReadOnLine.Size = new System.Drawing.Size(50, 29);
- this.button_ReadOnLine.TabIndex = 2;
- this.button_ReadOnLine.Text = "查询";
- this.button_ReadOnLine.UseVisualStyleBackColor = false;
- this.button_ReadOnLine.Click += new System.EventHandler(this.button_ReadOnLine_Click);
- //
- // textBox_Online
- //
- this.textBox_Online.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_Online.Location = new System.Drawing.Point(82, 25);
- this.textBox_Online.Name = "textBox_Online";
- this.textBox_Online.ReadOnly = true;
- this.textBox_Online.Size = new System.Drawing.Size(95, 28);
- this.textBox_Online.TabIndex = 1;
- //
- // label42
- //
- this.label42.AutoSize = true;
- this.label42.Location = new System.Drawing.Point(6, 29);
- this.label42.Name = "label42";
- this.label42.Size = new System.Drawing.Size(74, 21);
- this.label42.TabIndex = 0;
- this.label42.Text = "在线状态";
- //
- // groupBox7
- //
- this.groupBox7.Controls.Add(this.button_ReadMAC);
- this.groupBox7.Controls.Add(this.button_WriteMac);
- this.groupBox7.Controls.Add(this.textBox_PP);
- this.groupBox7.Controls.Add(this.textBox_MACDate);
- this.groupBox7.Controls.Add(this.textBox_MACAdd);
- this.groupBox7.Controls.Add(this.label34);
- this.groupBox7.Controls.Add(this.label39);
- this.groupBox7.Controls.Add(this.textBox_MAC);
- this.groupBox7.Controls.Add(this.label40);
- this.groupBox7.Controls.Add(this.label41);
- this.groupBox7.Location = new System.Drawing.Point(375, 4);
- this.groupBox7.Name = "groupBox7";
- this.groupBox7.Size = new System.Drawing.Size(326, 175);
- this.groupBox7.TabIndex = 3;
- this.groupBox7.TabStop = false;
- this.groupBox7.Text = "生产信息";
- //
- // button_ReadMAC
- //
- this.button_ReadMAC.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
- this.button_ReadMAC.Location = new System.Drawing.Point(269, 106);
- this.button_ReadMAC.Name = "button_ReadMAC";
- this.button_ReadMAC.Size = new System.Drawing.Size(50, 62);
- this.button_ReadMAC.TabIndex = 2;
- this.button_ReadMAC.Text = "查询";
- this.button_ReadMAC.UseVisualStyleBackColor = false;
- this.button_ReadMAC.Click += new System.EventHandler(this.button_ReadMAC_Click);
- //
- // button_WriteMac
- //
- this.button_WriteMac.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.button_WriteMac.Location = new System.Drawing.Point(269, 25);
- this.button_WriteMac.Name = "button_WriteMac";
- this.button_WriteMac.Size = new System.Drawing.Size(50, 62);
- this.button_WriteMac.TabIndex = 2;
- this.button_WriteMac.Text = "写入";
- this.button_WriteMac.UseVisualStyleBackColor = false;
- this.button_WriteMac.Click += new System.EventHandler(this.button_WriteMac_Click);
- //
- // textBox_PP
- //
- this.textBox_PP.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_PP.Location = new System.Drawing.Point(82, 140);
- this.textBox_PP.Name = "textBox_PP";
- this.textBox_PP.Size = new System.Drawing.Size(181, 28);
- this.textBox_PP.TabIndex = 1;
- //
- // textBox_MACDate
- //
- this.textBox_MACDate.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_MACDate.Location = new System.Drawing.Point(82, 102);
- this.textBox_MACDate.Name = "textBox_MACDate";
- this.textBox_MACDate.Size = new System.Drawing.Size(181, 28);
- this.textBox_MACDate.TabIndex = 1;
- //
- // textBox_MACAdd
- //
- this.textBox_MACAdd.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_MACAdd.Location = new System.Drawing.Point(82, 64);
- this.textBox_MACAdd.Name = "textBox_MACAdd";
- this.textBox_MACAdd.Size = new System.Drawing.Size(181, 28);
- this.textBox_MACAdd.TabIndex = 1;
- //
- // label34
- //
- this.label34.AutoSize = true;
- this.label34.Location = new System.Drawing.Point(6, 144);
- this.label34.Name = "label34";
- this.label34.Size = new System.Drawing.Size(74, 21);
- this.label34.TabIndex = 0;
- this.label34.Text = "产品标识";
- //
- // label39
- //
- this.label39.AutoSize = true;
- this.label39.Location = new System.Drawing.Point(6, 106);
- this.label39.Name = "label39";
- this.label39.Size = new System.Drawing.Size(74, 21);
- this.label39.TabIndex = 0;
- this.label39.Text = "生产日期";
- //
- // textBox_MAC
- //
- this.textBox_MAC.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_MAC.Location = new System.Drawing.Point(82, 25);
- this.textBox_MAC.Name = "textBox_MAC";
- this.textBox_MAC.Size = new System.Drawing.Size(181, 28);
- this.textBox_MAC.TabIndex = 1;
- //
- // label40
- //
- this.label40.AutoSize = true;
- this.label40.Location = new System.Drawing.Point(6, 68);
- this.label40.Name = "label40";
- this.label40.Size = new System.Drawing.Size(58, 21);
- this.label40.TabIndex = 0;
- this.label40.Text = "生产地";
- //
- // label41
- //
- this.label41.AutoSize = true;
- this.label41.Location = new System.Drawing.Point(7, 29);
- this.label41.Name = "label41";
- this.label41.Size = new System.Drawing.Size(58, 21);
- this.label41.TabIndex = 0;
- this.label41.Text = "生产商";
- //
- // groupBox6
- //
- this.groupBox6.Controls.Add(this.button_ReadUser3);
- this.groupBox6.Controls.Add(this.button_WriteUser3);
- this.groupBox6.Controls.Add(this.button_ReadUser2);
- this.groupBox6.Controls.Add(this.button_WriteUser2);
- this.groupBox6.Controls.Add(this.button_ReadUser1);
- this.groupBox6.Controls.Add(this.button_WriteUser1);
- this.groupBox6.Controls.Add(this.textBox_User3);
- this.groupBox6.Controls.Add(this.textBox_User2);
- this.groupBox6.Controls.Add(this.label35);
- this.groupBox6.Controls.Add(this.textBox_User1);
- this.groupBox6.Controls.Add(this.label36);
- this.groupBox6.Controls.Add(this.label38);
- this.groupBox6.Location = new System.Drawing.Point(4, 185);
- this.groupBox6.Name = "groupBox6";
- this.groupBox6.Size = new System.Drawing.Size(365, 127);
- this.groupBox6.TabIndex = 2;
- this.groupBox6.TabStop = false;
- this.groupBox6.Text = "自定义";
- //
- // button_ReadUser3
- //
- this.button_ReadUser3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
- this.button_ReadUser3.Location = new System.Drawing.Point(194, 89);
- this.button_ReadUser3.Name = "button_ReadUser3";
- this.button_ReadUser3.Size = new System.Drawing.Size(50, 29);
- this.button_ReadUser3.TabIndex = 5;
- this.button_ReadUser3.Text = "查询";
- this.button_ReadUser3.UseVisualStyleBackColor = false;
- this.button_ReadUser3.Click += new System.EventHandler(this.button_ReadUser3_Click);
- //
- // button_WriteUser3
- //
- this.button_WriteUser3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.button_WriteUser3.Location = new System.Drawing.Point(246, 89);
- this.button_WriteUser3.Name = "button_WriteUser3";
- this.button_WriteUser3.Size = new System.Drawing.Size(50, 29);
- this.button_WriteUser3.TabIndex = 6;
- this.button_WriteUser3.Text = "写入";
- this.button_WriteUser3.UseVisualStyleBackColor = false;
- this.button_WriteUser3.Click += new System.EventHandler(this.button_WriteUser3_Click);
- //
- // button_ReadUser2
- //
- this.button_ReadUser2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
- this.button_ReadUser2.Location = new System.Drawing.Point(194, 59);
- this.button_ReadUser2.Name = "button_ReadUser2";
- this.button_ReadUser2.Size = new System.Drawing.Size(50, 29);
- this.button_ReadUser2.TabIndex = 3;
- this.button_ReadUser2.Text = "查询";
- this.button_ReadUser2.UseVisualStyleBackColor = false;
- this.button_ReadUser2.Click += new System.EventHandler(this.button_ReadUser2_Click);
- //
- // button_WriteUser2
- //
- this.button_WriteUser2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.button_WriteUser2.Location = new System.Drawing.Point(246, 59);
- this.button_WriteUser2.Name = "button_WriteUser2";
- this.button_WriteUser2.Size = new System.Drawing.Size(50, 29);
- this.button_WriteUser2.TabIndex = 4;
- this.button_WriteUser2.Text = "写入";
- this.button_WriteUser2.UseVisualStyleBackColor = false;
- this.button_WriteUser2.Click += new System.EventHandler(this.button_WriteUser2_Click);
- //
- // button_ReadUser1
- //
- this.button_ReadUser1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
- this.button_ReadUser1.Location = new System.Drawing.Point(194, 29);
- this.button_ReadUser1.Name = "button_ReadUser1";
- this.button_ReadUser1.Size = new System.Drawing.Size(50, 29);
- this.button_ReadUser1.TabIndex = 2;
- this.button_ReadUser1.Text = "查询";
- this.button_ReadUser1.UseVisualStyleBackColor = false;
- this.button_ReadUser1.Click += new System.EventHandler(this.button_ReadUser1_Click);
- //
- // button_WriteUser1
- //
- this.button_WriteUser1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.button_WriteUser1.Location = new System.Drawing.Point(246, 29);
- this.button_WriteUser1.Name = "button_WriteUser1";
- this.button_WriteUser1.Size = new System.Drawing.Size(50, 29);
- this.button_WriteUser1.TabIndex = 2;
- this.button_WriteUser1.Text = "写入";
- this.button_WriteUser1.UseVisualStyleBackColor = false;
- this.button_WriteUser1.Click += new System.EventHandler(this.button_WriteUser1_Click);
- //
- // textBox_User3
- //
- this.textBox_User3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_User3.Location = new System.Drawing.Point(29, 89);
- this.textBox_User3.Name = "textBox_User3";
- this.textBox_User3.Size = new System.Drawing.Size(164, 28);
- this.textBox_User3.TabIndex = 1;
- //
- // textBox_User2
- //
- this.textBox_User2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_User2.Location = new System.Drawing.Point(29, 59);
- this.textBox_User2.Name = "textBox_User2";
- this.textBox_User2.Size = new System.Drawing.Size(164, 28);
- this.textBox_User2.TabIndex = 1;
- //
- // label35
- //
- this.label35.AutoSize = true;
- this.label35.Location = new System.Drawing.Point(4, 93);
- this.label35.Name = "label35";
- this.label35.Size = new System.Drawing.Size(19, 21);
- this.label35.TabIndex = 0;
- this.label35.Text = "3";
- //
- // textBox_User1
- //
- this.textBox_User1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_User1.Location = new System.Drawing.Point(29, 29);
- this.textBox_User1.Name = "textBox_User1";
- this.textBox_User1.Size = new System.Drawing.Size(164, 28);
- this.textBox_User1.TabIndex = 1;
- //
- // label36
- //
- this.label36.AutoSize = true;
- this.label36.Location = new System.Drawing.Point(4, 63);
- this.label36.Name = "label36";
- this.label36.Size = new System.Drawing.Size(19, 21);
- this.label36.TabIndex = 0;
- this.label36.Text = "2";
- //
- // label38
- //
- this.label38.AutoSize = true;
- this.label38.Location = new System.Drawing.Point(5, 33);
- this.label38.Name = "label38";
- this.label38.Size = new System.Drawing.Size(19, 21);
- this.label38.TabIndex = 0;
- this.label38.Text = "1";
- //
- // groupBox5
- //
- this.groupBox5.Controls.Add(this.button_ReadKey);
- this.groupBox5.Controls.Add(this.button_WriteKey);
- this.groupBox5.Controls.Add(this.textBox_Key);
- this.groupBox5.Controls.Add(this.label37);
- this.groupBox5.Location = new System.Drawing.Point(375, 185);
- this.groupBox5.Name = "groupBox5";
- this.groupBox5.Size = new System.Drawing.Size(326, 62);
- this.groupBox5.TabIndex = 1;
- this.groupBox5.TabStop = false;
- this.groupBox5.Text = "校验密钥";
- //
- // button_ReadKey
- //
- this.button_ReadKey.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
- this.button_ReadKey.Location = new System.Drawing.Point(201, 24);
- this.button_ReadKey.Name = "button_ReadKey";
- this.button_ReadKey.Size = new System.Drawing.Size(50, 29);
- this.button_ReadKey.TabIndex = 2;
- this.button_ReadKey.Text = "查询";
- this.button_ReadKey.UseVisualStyleBackColor = false;
- this.button_ReadKey.Click += new System.EventHandler(this.button_ReadKey_Click);
- //
- // button_WriteKey
- //
- this.button_WriteKey.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.button_WriteKey.Location = new System.Drawing.Point(265, 24);
- this.button_WriteKey.Name = "button_WriteKey";
- this.button_WriteKey.Size = new System.Drawing.Size(50, 29);
- this.button_WriteKey.TabIndex = 2;
- this.button_WriteKey.Text = "写入";
- this.button_WriteKey.UseVisualStyleBackColor = false;
- this.button_WriteKey.Click += new System.EventHandler(this.button_WriteKey_Click);
- //
- // textBox_Key
- //
- this.textBox_Key.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_Key.Location = new System.Drawing.Point(82, 24);
- this.textBox_Key.Name = "textBox_Key";
- this.textBox_Key.Size = new System.Drawing.Size(95, 28);
- this.textBox_Key.TabIndex = 1;
- //
- // label37
- //
- this.label37.AutoSize = true;
- this.label37.Location = new System.Drawing.Point(7, 28);
- this.label37.Name = "label37";
- this.label37.Size = new System.Drawing.Size(42, 21);
- this.label37.TabIndex = 0;
- this.label37.Text = "密钥";
- //
- // groupBox4
- //
- this.groupBox4.Controls.Add(this.label85);
- this.groupBox4.Controls.Add(this.textBox_SP);
- this.groupBox4.Controls.Add(this.button_ReadVersion);
- this.groupBox4.Controls.Add(this.button_WriteSN);
- this.groupBox4.Controls.Add(this.button_WriteModel);
- this.groupBox4.Controls.Add(this.textBox_FW);
- this.groupBox4.Controls.Add(this.textBox_HW);
- this.groupBox4.Controls.Add(this.textBox_SN);
- this.groupBox4.Controls.Add(this.label33);
- this.groupBox4.Controls.Add(this.label32);
- this.groupBox4.Controls.Add(this.textBox_Model);
- this.groupBox4.Controls.Add(this.label31);
- this.groupBox4.Controls.Add(this.label30);
- this.groupBox4.Location = new System.Drawing.Point(4, 4);
- this.groupBox4.Name = "groupBox4";
- this.groupBox4.Size = new System.Drawing.Size(365, 175);
- this.groupBox4.TabIndex = 0;
- this.groupBox4.TabStop = false;
- this.groupBox4.Text = "版本信息";
- //
- // label85
- //
- this.label85.AutoSize = true;
- this.label85.Location = new System.Drawing.Point(6, 144);
- this.label85.Name = "label85";
- this.label85.Size = new System.Drawing.Size(29, 21);
- this.label85.TabIndex = 4;
- this.label85.Text = "SP";
- //
- // textBox_SP
- //
- this.textBox_SP.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_SP.Location = new System.Drawing.Point(56, 140);
- this.textBox_SP.Name = "textBox_SP";
- this.textBox_SP.ReadOnly = true;
- this.textBox_SP.Size = new System.Drawing.Size(247, 28);
- this.textBox_SP.TabIndex = 3;
- //
- // button_ReadVersion
- //
- this.button_ReadVersion.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
- this.button_ReadVersion.Location = new System.Drawing.Point(309, 85);
- this.button_ReadVersion.Name = "button_ReadVersion";
- this.button_ReadVersion.Size = new System.Drawing.Size(50, 83);
- this.button_ReadVersion.TabIndex = 2;
- this.button_ReadVersion.Text = "查询";
- this.button_ReadVersion.UseVisualStyleBackColor = false;
- this.button_ReadVersion.Click += new System.EventHandler(this.button_ReadVersion_Click);
- //
- // button_WriteSN
- //
- this.button_WriteSN.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.button_WriteSN.Location = new System.Drawing.Point(309, 53);
- this.button_WriteSN.Name = "button_WriteSN";
- this.button_WriteSN.Size = new System.Drawing.Size(50, 29);
- this.button_WriteSN.TabIndex = 2;
- this.button_WriteSN.Text = "写入";
- this.button_WriteSN.UseVisualStyleBackColor = false;
- this.button_WriteSN.Click += new System.EventHandler(this.button_WriteSN_Click);
- //
- // button_WriteModel
- //
- this.button_WriteModel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.button_WriteModel.Location = new System.Drawing.Point(309, 24);
- this.button_WriteModel.Name = "button_WriteModel";
- this.button_WriteModel.Size = new System.Drawing.Size(50, 29);
- this.button_WriteModel.TabIndex = 2;
- this.button_WriteModel.Text = "写入";
- this.button_WriteModel.UseVisualStyleBackColor = false;
- this.button_WriteModel.Click += new System.EventHandler(this.button_WriteModel_Click);
- //
- // textBox_FW
- //
- this.textBox_FW.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_FW.Location = new System.Drawing.Point(56, 111);
- this.textBox_FW.Name = "textBox_FW";
- this.textBox_FW.ReadOnly = true;
- this.textBox_FW.Size = new System.Drawing.Size(247, 28);
- this.textBox_FW.TabIndex = 1;
- //
- // textBox_HW
- //
- this.textBox_HW.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_HW.Location = new System.Drawing.Point(56, 82);
- this.textBox_HW.Name = "textBox_HW";
- this.textBox_HW.ReadOnly = true;
- this.textBox_HW.Size = new System.Drawing.Size(247, 28);
- this.textBox_HW.TabIndex = 1;
- //
- // textBox_SN
- //
- this.textBox_SN.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_SN.Location = new System.Drawing.Point(56, 53);
- this.textBox_SN.Name = "textBox_SN";
- this.textBox_SN.Size = new System.Drawing.Size(247, 28);
- this.textBox_SN.TabIndex = 1;
- //
- // label33
- //
- this.label33.AutoSize = true;
- this.label33.Location = new System.Drawing.Point(6, 115);
- this.label33.Name = "label33";
- this.label33.Size = new System.Drawing.Size(35, 21);
- this.label33.TabIndex = 0;
- this.label33.Text = "FW";
- //
- // label32
- //
- this.label32.AutoSize = true;
- this.label32.Location = new System.Drawing.Point(6, 86);
- this.label32.Name = "label32";
- this.label32.Size = new System.Drawing.Size(38, 21);
- this.label32.TabIndex = 0;
- this.label32.Text = "HW";
- //
- // textBox_Model
- //
- this.textBox_Model.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_Model.Location = new System.Drawing.Point(56, 24);
- this.textBox_Model.Name = "textBox_Model";
- this.textBox_Model.Size = new System.Drawing.Size(247, 28);
- this.textBox_Model.TabIndex = 1;
- //
- // label31
- //
- this.label31.AutoSize = true;
- this.label31.Location = new System.Drawing.Point(6, 57);
- this.label31.Name = "label31";
- this.label31.Size = new System.Drawing.Size(32, 21);
- this.label31.TabIndex = 0;
- this.label31.Text = "SN";
- //
- // label30
- //
- this.label30.AutoSize = true;
- this.label30.Location = new System.Drawing.Point(7, 28);
- this.label30.Name = "label30";
- this.label30.Size = new System.Drawing.Size(42, 21);
- this.label30.TabIndex = 0;
- this.label30.Text = "型号";
- //
- // tabPage_OBC
- //
- this.tabPage_OBC.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.tabPage_OBC.Controls.Add(this.groupBox26);
- this.tabPage_OBC.Controls.Add(this.groupBox15);
- this.tabPage_OBC.Controls.Add(this.groupBox14);
- this.tabPage_OBC.Controls.Add(this.groupBox13);
- this.tabPage_OBC.Controls.Add(this.groupBox12);
- this.tabPage_OBC.Controls.Add(this.groupBox11);
- this.tabPage_OBC.Controls.Add(this.groupBox10);
- this.tabPage_OBC.Location = new System.Drawing.Point(4, 30);
- this.tabPage_OBC.Name = "tabPage_OBC";
- this.tabPage_OBC.Size = new System.Drawing.Size(990, 315);
- this.tabPage_OBC.TabIndex = 8;
- this.tabPage_OBC.Text = "模拟仪表";
- //
- // groupBox26
- //
- this.groupBox26.Controls.Add(this.button_OBC_ButtonSet);
- this.groupBox26.Controls.Add(this.button_OBC_ButtonLight);
- this.groupBox26.Controls.Add(this.button_OBC_ButtonWalk);
- this.groupBox26.Controls.Add(this.button_OBC_ButtonDec);
- this.groupBox26.Controls.Add(this.button_OBC_ButtonAcc);
- this.groupBox26.Controls.Add(this.button_OBC_ButtonPower);
- this.groupBox26.Location = new System.Drawing.Point(233, 4);
- this.groupBox26.Name = "groupBox26";
- this.groupBox26.Size = new System.Drawing.Size(76, 305);
- this.groupBox26.TabIndex = 14;
- this.groupBox26.TabStop = false;
- this.groupBox26.Text = "按键";
- //
- // button_OBC_ButtonSet
- //
- this.button_OBC_ButtonSet.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
- this.button_OBC_ButtonSet.Location = new System.Drawing.Point(6, 264);
- this.button_OBC_ButtonSet.Name = "button_OBC_ButtonSet";
- this.button_OBC_ButtonSet.Size = new System.Drawing.Size(60, 35);
- this.button_OBC_ButtonSet.TabIndex = 20;
- this.button_OBC_ButtonSet.Text = "Set";
- this.button_OBC_ButtonSet.UseVisualStyleBackColor = false;
- this.button_OBC_ButtonSet.Click += new System.EventHandler(this.button_OBC_ButtonSet_Click);
- //
- // button_OBC_ButtonLight
- //
- this.button_OBC_ButtonLight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
- this.button_OBC_ButtonLight.Location = new System.Drawing.Point(6, 216);
- this.button_OBC_ButtonLight.Name = "button_OBC_ButtonLight";
- this.button_OBC_ButtonLight.Size = new System.Drawing.Size(60, 35);
- this.button_OBC_ButtonLight.TabIndex = 19;
- this.button_OBC_ButtonLight.Text = "Light";
- this.button_OBC_ButtonLight.UseVisualStyleBackColor = false;
- this.button_OBC_ButtonLight.Click += new System.EventHandler(this.button_OBC_ButtonLight_Click);
- //
- // button_OBC_ButtonWalk
- //
- this.button_OBC_ButtonWalk.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
- this.button_OBC_ButtonWalk.Location = new System.Drawing.Point(6, 169);
- this.button_OBC_ButtonWalk.Name = "button_OBC_ButtonWalk";
- this.button_OBC_ButtonWalk.Size = new System.Drawing.Size(60, 35);
- this.button_OBC_ButtonWalk.TabIndex = 18;
- this.button_OBC_ButtonWalk.Text = "Walk";
- this.button_OBC_ButtonWalk.UseVisualStyleBackColor = false;
- this.button_OBC_ButtonWalk.Click += new System.EventHandler(this.button_OBC_ButtonWalk_Click);
- //
- // button_OBC_ButtonDec
- //
- this.button_OBC_ButtonDec.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
- this.button_OBC_ButtonDec.Location = new System.Drawing.Point(6, 122);
- this.button_OBC_ButtonDec.Name = "button_OBC_ButtonDec";
- this.button_OBC_ButtonDec.Size = new System.Drawing.Size(60, 35);
- this.button_OBC_ButtonDec.TabIndex = 17;
- this.button_OBC_ButtonDec.Text = "-";
- this.button_OBC_ButtonDec.UseVisualStyleBackColor = false;
- this.button_OBC_ButtonDec.Click += new System.EventHandler(this.button_OBC_ButtonDec_Click);
- //
- // button_OBC_ButtonAcc
- //
- this.button_OBC_ButtonAcc.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
- this.button_OBC_ButtonAcc.Location = new System.Drawing.Point(6, 75);
- this.button_OBC_ButtonAcc.Name = "button_OBC_ButtonAcc";
- this.button_OBC_ButtonAcc.Size = new System.Drawing.Size(60, 35);
- this.button_OBC_ButtonAcc.TabIndex = 16;
- this.button_OBC_ButtonAcc.Text = "+";
- this.button_OBC_ButtonAcc.UseVisualStyleBackColor = false;
- this.button_OBC_ButtonAcc.Click += new System.EventHandler(this.button_OBC_ButtonAcc_Click);
- //
- // button_OBC_ButtonPower
- //
- this.button_OBC_ButtonPower.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
- this.button_OBC_ButtonPower.Location = new System.Drawing.Point(6, 27);
- this.button_OBC_ButtonPower.Name = "button_OBC_ButtonPower";
- this.button_OBC_ButtonPower.Size = new System.Drawing.Size(60, 35);
- this.button_OBC_ButtonPower.TabIndex = 15;
- this.button_OBC_ButtonPower.Text = "Power";
- this.button_OBC_ButtonPower.UseVisualStyleBackColor = false;
- this.button_OBC_ButtonPower.Click += new System.EventHandler(this.button_OBC_ButtonPower_Click);
- //
- // groupBox15
- //
- this.groupBox15.Controls.Add(this.textBox_OBC_ODO_TIME);
- this.groupBox15.Controls.Add(this.button_OBC_ReadRideInfo);
- this.groupBox15.Controls.Add(this.textBox_OBC_ODO_KM);
- this.groupBox15.Controls.Add(this.button_OBC_ClearTrip);
- this.groupBox15.Controls.Add(this.textBox_OBC_TRIP_TIME);
- this.groupBox15.Controls.Add(this.label54);
- this.groupBox15.Controls.Add(this.textBox_OBC_TRIP_KM);
- this.groupBox15.Controls.Add(this.label52);
- this.groupBox15.Location = new System.Drawing.Point(672, 178);
- this.groupBox15.Name = "groupBox15";
- this.groupBox15.Size = new System.Drawing.Size(303, 131);
- this.groupBox15.TabIndex = 14;
- this.groupBox15.TabStop = false;
- this.groupBox15.Text = "骑行历史";
- //
- // textBox_OBC_ODO_TIME
- //
- this.textBox_OBC_ODO_TIME.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_OBC_ODO_TIME.Location = new System.Drawing.Point(215, 57);
- this.textBox_OBC_ODO_TIME.Name = "textBox_OBC_ODO_TIME";
- this.textBox_OBC_ODO_TIME.ReadOnly = true;
- this.textBox_OBC_ODO_TIME.Size = new System.Drawing.Size(80, 28);
- this.textBox_OBC_ODO_TIME.TabIndex = 3;
- //
- // button_OBC_ReadRideInfo
- //
- this.button_OBC_ReadRideInfo.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
- this.button_OBC_ReadRideInfo.Location = new System.Drawing.Point(131, 89);
- this.button_OBC_ReadRideInfo.Name = "button_OBC_ReadRideInfo";
- this.button_OBC_ReadRideInfo.Size = new System.Drawing.Size(53, 35);
- this.button_OBC_ReadRideInfo.TabIndex = 6;
- this.button_OBC_ReadRideInfo.Text = "读取";
- this.button_OBC_ReadRideInfo.UseVisualStyleBackColor = false;
- this.button_OBC_ReadRideInfo.Click += new System.EventHandler(this.button_OBC_ReadRideInfo_Click);
- //
- // textBox_OBC_ODO_KM
- //
- this.textBox_OBC_ODO_KM.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_OBC_ODO_KM.Location = new System.Drawing.Point(132, 57);
- this.textBox_OBC_ODO_KM.Name = "textBox_OBC_ODO_KM";
- this.textBox_OBC_ODO_KM.ReadOnly = true;
- this.textBox_OBC_ODO_KM.Size = new System.Drawing.Size(80, 28);
- this.textBox_OBC_ODO_KM.TabIndex = 4;
- //
- // button_OBC_ClearTrip
- //
- this.button_OBC_ClearTrip.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.button_OBC_ClearTrip.Location = new System.Drawing.Point(194, 88);
- this.button_OBC_ClearTrip.Name = "button_OBC_ClearTrip";
- this.button_OBC_ClearTrip.Size = new System.Drawing.Size(101, 37);
- this.button_OBC_ClearTrip.TabIndex = 6;
- this.button_OBC_ClearTrip.Text = "清除TRIP";
- this.button_OBC_ClearTrip.UseVisualStyleBackColor = false;
- this.button_OBC_ClearTrip.Click += new System.EventHandler(this.button_OBC_ClearTrip_Click);
- //
- // textBox_OBC_TRIP_TIME
- //
- this.textBox_OBC_TRIP_TIME.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_OBC_TRIP_TIME.Location = new System.Drawing.Point(215, 27);
- this.textBox_OBC_TRIP_TIME.Name = "textBox_OBC_TRIP_TIME";
- this.textBox_OBC_TRIP_TIME.ReadOnly = true;
- this.textBox_OBC_TRIP_TIME.Size = new System.Drawing.Size(80, 28);
- this.textBox_OBC_TRIP_TIME.TabIndex = 5;
- //
- // label54
- //
- this.label54.AutoSize = true;
- this.label54.Location = new System.Drawing.Point(7, 61);
- this.label54.Name = "label54";
- this.label54.Size = new System.Drawing.Size(119, 21);
- this.label54.TabIndex = 0;
- this.label54.Text = "ODO里程/时间";
- //
- // textBox_OBC_TRIP_KM
- //
- this.textBox_OBC_TRIP_KM.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_OBC_TRIP_KM.Location = new System.Drawing.Point(132, 27);
- this.textBox_OBC_TRIP_KM.Name = "textBox_OBC_TRIP_KM";
- this.textBox_OBC_TRIP_KM.ReadOnly = true;
- this.textBox_OBC_TRIP_KM.Size = new System.Drawing.Size(80, 28);
- this.textBox_OBC_TRIP_KM.TabIndex = 6;
- //
- // label52
- //
- this.label52.AutoSize = true;
- this.label52.Location = new System.Drawing.Point(7, 31);
- this.label52.Name = "label52";
- this.label52.Size = new System.Drawing.Size(115, 21);
- this.label52.TabIndex = 0;
- this.label52.Text = "TRIP里程/时间";
- //
- // groupBox14
- //
- this.groupBox14.Controls.Add(this.label53);
- this.groupBox14.Controls.Add(this.textBox_OBC_ReadSP);
- this.groupBox14.Controls.Add(this.button_OBC_ReadVerInfo);
- this.groupBox14.Controls.Add(this.textBox_OBC_ReadFW);
- this.groupBox14.Controls.Add(this.textBox_OBC_ReadHW);
- this.groupBox14.Controls.Add(this.textBox_OBC_ReadSN);
- this.groupBox14.Controls.Add(this.label48);
- this.groupBox14.Controls.Add(this.label49);
- this.groupBox14.Controls.Add(this.textBox_OBC_ReadModel);
- this.groupBox14.Controls.Add(this.label50);
- this.groupBox14.Controls.Add(this.label51);
- this.groupBox14.Location = new System.Drawing.Point(672, 4);
- this.groupBox14.Name = "groupBox14";
- this.groupBox14.Size = new System.Drawing.Size(303, 175);
- this.groupBox14.TabIndex = 13;
- this.groupBox14.TabStop = false;
- this.groupBox14.Text = "版本信息";
- //
- // label53
- //
- this.label53.AutoSize = true;
- this.label53.Location = new System.Drawing.Point(7, 144);
- this.label53.Name = "label53";
- this.label53.Size = new System.Drawing.Size(29, 21);
- this.label53.TabIndex = 4;
- this.label53.Text = "SP";
- //
- // textBox_OBC_ReadSP
- //
- this.textBox_OBC_ReadSP.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_OBC_ReadSP.Location = new System.Drawing.Point(56, 140);
- this.textBox_OBC_ReadSP.Name = "textBox_OBC_ReadSP";
- this.textBox_OBC_ReadSP.ReadOnly = true;
- this.textBox_OBC_ReadSP.Size = new System.Drawing.Size(238, 28);
- this.textBox_OBC_ReadSP.TabIndex = 3;
- //
- // button_OBC_ReadVerInfo
- //
- this.button_OBC_ReadVerInfo.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
- this.button_OBC_ReadVerInfo.Location = new System.Drawing.Point(241, 24);
- this.button_OBC_ReadVerInfo.Name = "button_OBC_ReadVerInfo";
- this.button_OBC_ReadVerInfo.Size = new System.Drawing.Size(53, 55);
- this.button_OBC_ReadVerInfo.TabIndex = 2;
- this.button_OBC_ReadVerInfo.Text = "查询";
- this.button_OBC_ReadVerInfo.UseVisualStyleBackColor = false;
- this.button_OBC_ReadVerInfo.Click += new System.EventHandler(this.button_OBC_ReadVerInfo_Click);
- //
- // textBox_OBC_ReadFW
- //
- this.textBox_OBC_ReadFW.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_OBC_ReadFW.Location = new System.Drawing.Point(56, 111);
- this.textBox_OBC_ReadFW.Name = "textBox_OBC_ReadFW";
- this.textBox_OBC_ReadFW.ReadOnly = true;
- this.textBox_OBC_ReadFW.Size = new System.Drawing.Size(238, 28);
- this.textBox_OBC_ReadFW.TabIndex = 1;
- //
- // textBox_OBC_ReadHW
- //
- this.textBox_OBC_ReadHW.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_OBC_ReadHW.Location = new System.Drawing.Point(56, 82);
- this.textBox_OBC_ReadHW.Name = "textBox_OBC_ReadHW";
- this.textBox_OBC_ReadHW.ReadOnly = true;
- this.textBox_OBC_ReadHW.Size = new System.Drawing.Size(238, 28);
- this.textBox_OBC_ReadHW.TabIndex = 1;
- //
- // textBox_OBC_ReadSN
- //
- this.textBox_OBC_ReadSN.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_OBC_ReadSN.Location = new System.Drawing.Point(56, 53);
- this.textBox_OBC_ReadSN.Name = "textBox_OBC_ReadSN";
- this.textBox_OBC_ReadSN.ReadOnly = true;
- this.textBox_OBC_ReadSN.Size = new System.Drawing.Size(179, 28);
- this.textBox_OBC_ReadSN.TabIndex = 1;
- //
- // label48
- //
- this.label48.AutoSize = true;
- this.label48.Location = new System.Drawing.Point(6, 115);
- this.label48.Name = "label48";
- this.label48.Size = new System.Drawing.Size(35, 21);
- this.label48.TabIndex = 0;
- this.label48.Text = "FW";
- //
- // label49
- //
- this.label49.AutoSize = true;
- this.label49.Location = new System.Drawing.Point(6, 86);
- this.label49.Name = "label49";
- this.label49.Size = new System.Drawing.Size(38, 21);
- this.label49.TabIndex = 0;
- this.label49.Text = "HW";
- //
- // textBox_OBC_ReadModel
- //
- this.textBox_OBC_ReadModel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_OBC_ReadModel.Location = new System.Drawing.Point(56, 24);
- this.textBox_OBC_ReadModel.Name = "textBox_OBC_ReadModel";
- this.textBox_OBC_ReadModel.ReadOnly = true;
- this.textBox_OBC_ReadModel.Size = new System.Drawing.Size(179, 28);
- this.textBox_OBC_ReadModel.TabIndex = 1;
- //
- // label50
- //
- this.label50.AutoSize = true;
- this.label50.Location = new System.Drawing.Point(6, 57);
- this.label50.Name = "label50";
- this.label50.Size = new System.Drawing.Size(32, 21);
- this.label50.TabIndex = 0;
- this.label50.Text = "SN";
- //
- // label51
- //
- this.label51.AutoSize = true;
- this.label51.Location = new System.Drawing.Point(7, 28);
- this.label51.Name = "label51";
- this.label51.Size = new System.Drawing.Size(42, 21);
- this.label51.TabIndex = 0;
- this.label51.Text = "型号";
- //
- // groupBox13
- //
- this.groupBox13.Controls.Add(this.label64);
- this.groupBox13.Controls.Add(this.numericUpDown_OBC_OffTime);
- this.groupBox13.Controls.Add(this.label63);
- this.groupBox13.Controls.Add(this.numericUpDown_OBC_WheelAdj);
- this.groupBox13.Controls.Add(this.label59);
- this.groupBox13.Controls.Add(this.comboBox_OBC_AssistFunc);
- this.groupBox13.Controls.Add(this.comboBox_OBC_StartMode);
- this.groupBox13.Controls.Add(this.label58);
- this.groupBox13.Controls.Add(this.label57);
- this.groupBox13.Controls.Add(this.button_OBC_WriteUserInfo);
- this.groupBox13.Controls.Add(this.label56);
- this.groupBox13.Location = new System.Drawing.Point(476, 4);
- this.groupBox13.Name = "groupBox13";
- this.groupBox13.Size = new System.Drawing.Size(190, 305);
- this.groupBox13.TabIndex = 14;
- this.groupBox13.TabStop = false;
- this.groupBox13.Text = "设置用户参数";
- //
- // label64
- //
- this.label64.AutoSize = true;
- this.label64.Location = new System.Drawing.Point(146, 119);
- this.label64.Name = "label64";
- this.label64.Size = new System.Drawing.Size(39, 21);
- this.label64.TabIndex = 14;
- this.label64.Text = "min";
- //
- // numericUpDown_OBC_OffTime
- //
- this.numericUpDown_OBC_OffTime.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
- this.numericUpDown_OBC_OffTime.Location = new System.Drawing.Point(83, 115);
- this.numericUpDown_OBC_OffTime.Maximum = new decimal(new int[] {
- 240,
- 0,
- 0,
- 0});
- this.numericUpDown_OBC_OffTime.Name = "numericUpDown_OBC_OffTime";
- this.numericUpDown_OBC_OffTime.ReadOnly = true;
- this.numericUpDown_OBC_OffTime.Size = new System.Drawing.Size(60, 28);
- this.numericUpDown_OBC_OffTime.TabIndex = 13;
- this.numericUpDown_OBC_OffTime.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // label63
- //
- this.label63.AutoSize = true;
- this.label63.Location = new System.Drawing.Point(6, 119);
- this.label63.Name = "label63";
- this.label63.Size = new System.Drawing.Size(74, 21);
- this.label63.TabIndex = 12;
- this.label63.Text = "关机时间";
- //
- // numericUpDown_OBC_WheelAdj
- //
- this.numericUpDown_OBC_WheelAdj.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
- this.numericUpDown_OBC_WheelAdj.Location = new System.Drawing.Point(83, 24);
- this.numericUpDown_OBC_WheelAdj.Maximum = new decimal(new int[] {
- 10,
- 0,
- 0,
- 0});
- this.numericUpDown_OBC_WheelAdj.Minimum = new decimal(new int[] {
- 10,
- 0,
- 0,
- -2147483648});
- this.numericUpDown_OBC_WheelAdj.Name = "numericUpDown_OBC_WheelAdj";
- this.numericUpDown_OBC_WheelAdj.ReadOnly = true;
- this.numericUpDown_OBC_WheelAdj.Size = new System.Drawing.Size(60, 28);
- this.numericUpDown_OBC_WheelAdj.TabIndex = 7;
- this.numericUpDown_OBC_WheelAdj.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // label59
- //
- this.label59.AutoSize = true;
- this.label59.Location = new System.Drawing.Point(146, 28);
- this.label59.Name = "label59";
- this.label59.Size = new System.Drawing.Size(33, 21);
- this.label59.TabIndex = 11;
- this.label59.Text = "cm";
- //
- // comboBox_OBC_AssistFunc
- //
- this.comboBox_OBC_AssistFunc.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
- this.comboBox_OBC_AssistFunc.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.comboBox_OBC_AssistFunc.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.comboBox_OBC_AssistFunc.FormattingEnabled = true;
- this.comboBox_OBC_AssistFunc.Items.AddRange(new object[] {
- "方案一",
- "方案二"});
- this.comboBox_OBC_AssistFunc.Location = new System.Drawing.Point(83, 84);
- this.comboBox_OBC_AssistFunc.Name = "comboBox_OBC_AssistFunc";
- this.comboBox_OBC_AssistFunc.Size = new System.Drawing.Size(91, 29);
- this.comboBox_OBC_AssistFunc.TabIndex = 10;
- //
- // comboBox_OBC_StartMode
- //
- this.comboBox_OBC_StartMode.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
- this.comboBox_OBC_StartMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.comboBox_OBC_StartMode.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.comboBox_OBC_StartMode.FormattingEnabled = true;
- this.comboBox_OBC_StartMode.Items.AddRange(new object[] {
- "柔和",
- "正常",
- "强劲"});
- this.comboBox_OBC_StartMode.Location = new System.Drawing.Point(83, 54);
- this.comboBox_OBC_StartMode.Name = "comboBox_OBC_StartMode";
- this.comboBox_OBC_StartMode.Size = new System.Drawing.Size(91, 29);
- this.comboBox_OBC_StartMode.TabIndex = 6;
- //
- // label58
- //
- this.label58.AutoSize = true;
- this.label58.Location = new System.Drawing.Point(6, 88);
- this.label58.Name = "label58";
- this.label58.Size = new System.Drawing.Size(74, 21);
- this.label58.TabIndex = 9;
- this.label58.Text = "助力方案";
- //
- // label57
- //
- this.label57.AutoSize = true;
- this.label57.Location = new System.Drawing.Point(6, 58);
- this.label57.Name = "label57";
- this.label57.Size = new System.Drawing.Size(74, 21);
- this.label57.TabIndex = 9;
- this.label57.Text = "启动模式";
- //
- // button_OBC_WriteUserInfo
- //
- this.button_OBC_WriteUserInfo.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.button_OBC_WriteUserInfo.Location = new System.Drawing.Point(126, 264);
- this.button_OBC_WriteUserInfo.Name = "button_OBC_WriteUserInfo";
- this.button_OBC_WriteUserInfo.Size = new System.Drawing.Size(53, 35);
- this.button_OBC_WriteUserInfo.TabIndex = 6;
- this.button_OBC_WriteUserInfo.Text = "写入";
- this.button_OBC_WriteUserInfo.UseVisualStyleBackColor = false;
- this.button_OBC_WriteUserInfo.Click += new System.EventHandler(this.button_OBC_WriteUserInfo_Click);
- //
- // label56
- //
- this.label56.AutoSize = true;
- this.label56.Location = new System.Drawing.Point(6, 28);
- this.label56.Name = "label56";
- this.label56.Size = new System.Drawing.Size(74, 21);
- this.label56.TabIndex = 7;
- this.label56.Text = "周长微调";
- //
- // groupBox12
- //
- this.groupBox12.Controls.Add(this.richTextBox_OBC_ReadUserInfo);
- this.groupBox12.Controls.Add(this.button_OBC_ReadUserInfo);
- this.groupBox12.Location = new System.Drawing.Point(315, 4);
- this.groupBox12.Name = "groupBox12";
- this.groupBox12.Size = new System.Drawing.Size(155, 305);
- this.groupBox12.TabIndex = 13;
- this.groupBox12.TabStop = false;
- this.groupBox12.Text = "查询用户参数";
- //
- // richTextBox_OBC_ReadUserInfo
- //
- this.richTextBox_OBC_ReadUserInfo.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.richTextBox_OBC_ReadUserInfo.Location = new System.Drawing.Point(11, 23);
- this.richTextBox_OBC_ReadUserInfo.Name = "richTextBox_OBC_ReadUserInfo";
- this.richTextBox_OBC_ReadUserInfo.ReadOnly = true;
- this.richTextBox_OBC_ReadUserInfo.Size = new System.Drawing.Size(138, 235);
- this.richTextBox_OBC_ReadUserInfo.TabIndex = 12;
- this.richTextBox_OBC_ReadUserInfo.Text = "";
- //
- // button_OBC_ReadUserInfo
- //
- this.button_OBC_ReadUserInfo.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
- this.button_OBC_ReadUserInfo.Location = new System.Drawing.Point(96, 264);
- this.button_OBC_ReadUserInfo.Name = "button_OBC_ReadUserInfo";
- this.button_OBC_ReadUserInfo.Size = new System.Drawing.Size(53, 35);
- this.button_OBC_ReadUserInfo.TabIndex = 6;
- this.button_OBC_ReadUserInfo.Text = "读取";
- this.button_OBC_ReadUserInfo.UseVisualStyleBackColor = false;
- this.button_OBC_ReadUserInfo.Click += new System.EventHandler(this.button_OBC_ReadUserInfo_Click);
- //
- // groupBox11
- //
- this.groupBox11.Controls.Add(this.richTextBox_OBC_BMS_RunInfo);
- this.groupBox11.Controls.Add(this.checkBox_OBC_StartReadBMS);
- this.groupBox11.Location = new System.Drawing.Point(4, 72);
- this.groupBox11.Name = "groupBox11";
- this.groupBox11.Size = new System.Drawing.Size(223, 237);
- this.groupBox11.TabIndex = 11;
- this.groupBox11.TabStop = false;
- this.groupBox11.Text = "读取电池运行信息";
- //
- // richTextBox_OBC_BMS_RunInfo
- //
- this.richTextBox_OBC_BMS_RunInfo.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.richTextBox_OBC_BMS_RunInfo.Font = new System.Drawing.Font("Microsoft YaHei UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.richTextBox_OBC_BMS_RunInfo.Location = new System.Drawing.Point(6, 27);
- this.richTextBox_OBC_BMS_RunInfo.Name = "richTextBox_OBC_BMS_RunInfo";
- this.richTextBox_OBC_BMS_RunInfo.ReadOnly = true;
- this.richTextBox_OBC_BMS_RunInfo.Size = new System.Drawing.Size(211, 203);
- this.richTextBox_OBC_BMS_RunInfo.TabIndex = 12;
- this.richTextBox_OBC_BMS_RunInfo.Text = "";
- //
- // checkBox_OBC_StartReadBMS
- //
- this.checkBox_OBC_StartReadBMS.AutoSize = true;
- this.checkBox_OBC_StartReadBMS.Location = new System.Drawing.Point(156, 0);
- this.checkBox_OBC_StartReadBMS.Name = "checkBox_OBC_StartReadBMS";
- this.checkBox_OBC_StartReadBMS.Size = new System.Drawing.Size(61, 25);
- this.checkBox_OBC_StartReadBMS.TabIndex = 5;
- this.checkBox_OBC_StartReadBMS.Text = "启动";
- this.checkBox_OBC_StartReadBMS.UseVisualStyleBackColor = true;
- this.checkBox_OBC_StartReadBMS.CheckedChanged += new System.EventHandler(this.checkBox_OBC_StartReadBMS_CheckedChanged);
- //
- // groupBox10
- //
- this.groupBox10.Controls.Add(this.label60);
- this.groupBox10.Controls.Add(this.comboBox_OBC_LightSw);
- this.groupBox10.Controls.Add(this.label61);
- this.groupBox10.Controls.Add(this.comboBox_OBC_SetGearST);
- this.groupBox10.Controls.Add(this.checkBox_OBC_StartSetGearSt);
- this.groupBox10.Location = new System.Drawing.Point(4, 4);
- this.groupBox10.Name = "groupBox10";
- this.groupBox10.Size = new System.Drawing.Size(223, 62);
- this.groupBox10.TabIndex = 10;
- this.groupBox10.TabStop = false;
- this.groupBox10.Text = "控制电机档位";
- //
- // label60
- //
- this.label60.AutoSize = true;
- this.label60.Location = new System.Drawing.Point(122, 32);
- this.label60.Name = "label60";
- this.label60.Size = new System.Drawing.Size(26, 21);
- this.label60.TabIndex = 8;
- this.label60.Text = "灯";
- //
- // comboBox_OBC_LightSw
- //
- this.comboBox_OBC_LightSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
- this.comboBox_OBC_LightSw.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.comboBox_OBC_LightSw.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.comboBox_OBC_LightSw.FormattingEnabled = true;
- this.comboBox_OBC_LightSw.Items.AddRange(new object[] {
- "ON",
- "OFF"});
- this.comboBox_OBC_LightSw.Location = new System.Drawing.Point(147, 28);
- this.comboBox_OBC_LightSw.Name = "comboBox_OBC_LightSw";
- this.comboBox_OBC_LightSw.Size = new System.Drawing.Size(65, 29);
- this.comboBox_OBC_LightSw.TabIndex = 6;
- //
- // label61
- //
- this.label61.AutoSize = true;
- this.label61.Location = new System.Drawing.Point(6, 32);
- this.label61.Name = "label61";
- this.label61.Size = new System.Drawing.Size(42, 21);
- this.label61.TabIndex = 7;
- this.label61.Text = "档位";
- //
- // comboBox_OBC_SetGearST
- //
- this.comboBox_OBC_SetGearST.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
- this.comboBox_OBC_SetGearST.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.comboBox_OBC_SetGearST.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.comboBox_OBC_SetGearST.FormattingEnabled = true;
- this.comboBox_OBC_SetGearST.Items.AddRange(new object[] {
- "OFF",
- "ECO",
- "NORM",
- "SPORT",
- "TURBO",
- "SMART",
- "WALK"});
- this.comboBox_OBC_SetGearST.Location = new System.Drawing.Point(51, 28);
- this.comboBox_OBC_SetGearST.Name = "comboBox_OBC_SetGearST";
- this.comboBox_OBC_SetGearST.Size = new System.Drawing.Size(65, 29);
- this.comboBox_OBC_SetGearST.TabIndex = 4;
- //
- // checkBox_OBC_StartSetGearSt
- //
- this.checkBox_OBC_StartSetGearSt.AutoSize = true;
- this.checkBox_OBC_StartSetGearSt.Location = new System.Drawing.Point(156, -1);
- this.checkBox_OBC_StartSetGearSt.Name = "checkBox_OBC_StartSetGearSt";
- this.checkBox_OBC_StartSetGearSt.Size = new System.Drawing.Size(61, 25);
- this.checkBox_OBC_StartSetGearSt.TabIndex = 5;
- this.checkBox_OBC_StartSetGearSt.Text = "启动";
- this.checkBox_OBC_StartSetGearSt.UseVisualStyleBackColor = true;
- this.checkBox_OBC_StartSetGearSt.CheckedChanged += new System.EventHandler(this.checkBox_OBC_StartSetGearSt_CheckedChanged);
- //
- // tabPage_RAMorFLASH
- //
- this.tabPage_RAMorFLASH.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.tabPage_RAMorFLASH.Controls.Add(this.checkBox_ReadRanFlash_ChangeFormat);
- this.tabPage_RAMorFLASH.Controls.Add(this.checkBox_ReadRanFlash_AutoClear);
- this.tabPage_RAMorFLASH.Controls.Add(this.checkBox_ReadRanFlash_AutoSW);
- this.tabPage_RAMorFLASH.Controls.Add(this.textBox_Address_End);
- this.tabPage_RAMorFLASH.Controls.Add(this.label66);
- this.tabPage_RAMorFLASH.Controls.Add(this.textBox_Address_Begin);
- this.tabPage_RAMorFLASH.Controls.Add(this.label65);
- this.tabPage_RAMorFLASH.Controls.Add(this.button_ReadRamFlash);
- this.tabPage_RAMorFLASH.Controls.Add(this.richTextBox_RamFlasgData);
- this.tabPage_RAMorFLASH.Location = new System.Drawing.Point(4, 30);
- this.tabPage_RAMorFLASH.Name = "tabPage_RAMorFLASH";
- this.tabPage_RAMorFLASH.Size = new System.Drawing.Size(990, 315);
- this.tabPage_RAMorFLASH.TabIndex = 9;
- this.tabPage_RAMorFLASH.Text = "存储器读取";
- //
- // checkBox_ReadRanFlash_ChangeFormat
- //
- this.checkBox_ReadRanFlash_ChangeFormat.AutoSize = true;
- this.checkBox_ReadRanFlash_ChangeFormat.Checked = true;
- this.checkBox_ReadRanFlash_ChangeFormat.CheckState = System.Windows.Forms.CheckState.Checked;
- this.checkBox_ReadRanFlash_ChangeFormat.Location = new System.Drawing.Point(811, 39);
- this.checkBox_ReadRanFlash_ChangeFormat.Name = "checkBox_ReadRanFlash_ChangeFormat";
- this.checkBox_ReadRanFlash_ChangeFormat.Size = new System.Drawing.Size(141, 25);
- this.checkBox_ReadRanFlash_ChangeFormat.TabIndex = 13;
- this.checkBox_ReadRanFlash_ChangeFormat.Text = "转换十进制显示";
- this.checkBox_ReadRanFlash_ChangeFormat.UseVisualStyleBackColor = true;
- //
- // checkBox_ReadRanFlash_AutoClear
- //
- this.checkBox_ReadRanFlash_AutoClear.AutoSize = true;
- this.checkBox_ReadRanFlash_AutoClear.Checked = true;
- this.checkBox_ReadRanFlash_AutoClear.CheckState = System.Windows.Forms.CheckState.Checked;
- this.checkBox_ReadRanFlash_AutoClear.Location = new System.Drawing.Point(811, 8);
- this.checkBox_ReadRanFlash_AutoClear.Name = "checkBox_ReadRanFlash_AutoClear";
- this.checkBox_ReadRanFlash_AutoClear.Size = new System.Drawing.Size(141, 25);
- this.checkBox_ReadRanFlash_AutoClear.TabIndex = 12;
- this.checkBox_ReadRanFlash_AutoClear.Text = "数据更新时清屏";
- this.checkBox_ReadRanFlash_AutoClear.UseVisualStyleBackColor = true;
- //
- // checkBox_ReadRanFlash_AutoSW
- //
- this.checkBox_ReadRanFlash_AutoSW.AutoSize = true;
- this.checkBox_ReadRanFlash_AutoSW.Location = new System.Drawing.Point(811, 194);
- this.checkBox_ReadRanFlash_AutoSW.Name = "checkBox_ReadRanFlash_AutoSW";
- this.checkBox_ReadRanFlash_AutoSW.Size = new System.Drawing.Size(93, 25);
- this.checkBox_ReadRanFlash_AutoSW.TabIndex = 11;
- this.checkBox_ReadRanFlash_AutoSW.Text = "自动读取";
- this.checkBox_ReadRanFlash_AutoSW.UseVisualStyleBackColor = true;
- this.checkBox_ReadRanFlash_AutoSW.CheckedChanged += new System.EventHandler(this.checkBox_ReadRanFlash_AutoSW_CheckedChanged);
- //
- // textBox_Address_End
- //
- this.textBox_Address_End.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_Address_End.Location = new System.Drawing.Point(811, 160);
- this.textBox_Address_End.Name = "textBox_Address_End";
- this.textBox_Address_End.Size = new System.Drawing.Size(130, 28);
- this.textBox_Address_End.TabIndex = 10;
- this.textBox_Address_End.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // label66
- //
- this.label66.AutoSize = true;
- this.label66.Location = new System.Drawing.Point(831, 136);
- this.label66.Name = "label66";
- this.label66.Size = new System.Drawing.Size(91, 21);
- this.label66.TabIndex = 9;
- this.label66.Text = "结束地址0x";
- //
- // textBox_Address_Begin
- //
- this.textBox_Address_Begin.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_Address_Begin.Location = new System.Drawing.Point(811, 96);
- this.textBox_Address_Begin.Name = "textBox_Address_Begin";
- this.textBox_Address_Begin.Size = new System.Drawing.Size(130, 28);
- this.textBox_Address_Begin.TabIndex = 8;
- this.textBox_Address_Begin.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // label65
- //
- this.label65.AutoSize = true;
- this.label65.Location = new System.Drawing.Point(831, 72);
- this.label65.Name = "label65";
- this.label65.Size = new System.Drawing.Size(91, 21);
- this.label65.TabIndex = 7;
- this.label65.Text = "起始地址0x";
- //
- // button_ReadRamFlash
- //
- this.button_ReadRamFlash.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
- this.button_ReadRamFlash.Location = new System.Drawing.Point(811, 259);
- this.button_ReadRamFlash.Name = "button_ReadRamFlash";
- this.button_ReadRamFlash.Size = new System.Drawing.Size(112, 50);
- this.button_ReadRamFlash.TabIndex = 5;
- this.button_ReadRamFlash.Text = "读取数据";
- this.button_ReadRamFlash.UseVisualStyleBackColor = false;
- this.button_ReadRamFlash.Click += new System.EventHandler(this.button_ReadRamFlash_Click);
- //
- // richTextBox_RamFlasgData
- //
- this.richTextBox_RamFlasgData.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.richTextBox_RamFlasgData.Location = new System.Drawing.Point(11, 6);
- this.richTextBox_RamFlasgData.Name = "richTextBox_RamFlasgData";
- this.richTextBox_RamFlasgData.Size = new System.Drawing.Size(796, 303);
- this.richTextBox_RamFlasgData.TabIndex = 4;
- this.richTextBox_RamFlasgData.Text = "";
- //
- // tabPage_FactoryMode
- //
- this.tabPage_FactoryMode.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.tabPage_FactoryMode.Controls.Add(this.button_ScanCode);
- this.tabPage_FactoryMode.Controls.Add(this.Button_FacModePowerOff);
- this.tabPage_FactoryMode.Controls.Add(this.Button_FacModeSaveResult);
- this.tabPage_FactoryMode.Controls.Add(this.Button_FacModeSetMacDate);
- this.tabPage_FactoryMode.Controls.Add(this.groupBox25);
- this.tabPage_FactoryMode.Controls.Add(this.groupBox24);
- this.tabPage_FactoryMode.Controls.Add(this.groupBox23);
- this.tabPage_FactoryMode.Controls.Add(this.groupBox22);
- this.tabPage_FactoryMode.Controls.Add(this.groupBox21);
- this.tabPage_FactoryMode.Controls.Add(this.groupBox20);
- this.tabPage_FactoryMode.Controls.Add(this.groupBox19);
- this.tabPage_FactoryMode.Location = new System.Drawing.Point(4, 30);
- this.tabPage_FactoryMode.Name = "tabPage_FactoryMode";
- this.tabPage_FactoryMode.Size = new System.Drawing.Size(990, 315);
- this.tabPage_FactoryMode.TabIndex = 10;
- this.tabPage_FactoryMode.Text = "生产模式";
- //
- // Button_FacModePowerOff
- //
- this.Button_FacModePowerOff.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(128)))));
- this.Button_FacModePowerOff.Location = new System.Drawing.Point(917, 248);
- this.Button_FacModePowerOff.Name = "Button_FacModePowerOff";
- this.Button_FacModePowerOff.Size = new System.Drawing.Size(68, 60);
- this.Button_FacModePowerOff.TabIndex = 33;
- this.Button_FacModePowerOff.Text = "关机";
- this.Button_FacModePowerOff.UseVisualStyleBackColor = false;
- this.Button_FacModePowerOff.Click += new System.EventHandler(this.Button_FacModePowerOff_Click);
- //
- // Button_FacModeSaveResult
- //
- this.Button_FacModeSaveResult.BackColor = System.Drawing.Color.Lime;
- this.Button_FacModeSaveResult.Location = new System.Drawing.Point(846, 248);
- this.Button_FacModeSaveResult.Name = "Button_FacModeSaveResult";
- this.Button_FacModeSaveResult.Size = new System.Drawing.Size(68, 60);
- this.Button_FacModeSaveResult.TabIndex = 1;
- this.Button_FacModeSaveResult.Text = "保存\r\n数据";
- this.Button_FacModeSaveResult.UseVisualStyleBackColor = false;
- this.Button_FacModeSaveResult.Click += new System.EventHandler(this.Button_FacModeSaveResult_Click);
- //
- // Button_FacModeSetMacDate
- //
- this.Button_FacModeSetMacDate.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.Button_FacModeSetMacDate.Location = new System.Drawing.Point(775, 248);
- this.Button_FacModeSetMacDate.Name = "Button_FacModeSetMacDate";
- this.Button_FacModeSetMacDate.Size = new System.Drawing.Size(68, 60);
- this.Button_FacModeSetMacDate.TabIndex = 33;
- this.Button_FacModeSetMacDate.Text = "写入生\r\n产信息";
- this.Button_FacModeSetMacDate.UseVisualStyleBackColor = false;
- this.Button_FacModeSetMacDate.Click += new System.EventHandler(this.Button_FacModeSetMacDate_Click);
- //
- // groupBox25
- //
- this.groupBox25.Controls.Add(this.button_FacModeSetName);
- this.groupBox25.Controls.Add(this.label87);
- this.groupBox25.Controls.Add(this.textBox_FacModeGit);
- this.groupBox25.Controls.Add(this.label86);
- this.groupBox25.Controls.Add(this.textBox_FacModeSP);
- this.groupBox25.Controls.Add(this.label68);
- this.groupBox25.Controls.Add(this.label84);
- this.groupBox25.Controls.Add(this.textBox_FacModeFW);
- this.groupBox25.Controls.Add(this.Button_FacModeReadVer);
- this.groupBox25.Controls.Add(this.label83);
- this.groupBox25.Controls.Add(this.textBox_FacModeHW);
- this.groupBox25.Controls.Add(this.Button_FacModeSetNum);
- this.groupBox25.Controls.Add(this.label82);
- this.groupBox25.Controls.Add(this.textBox_FacModeNum);
- this.groupBox25.Controls.Add(this.label81);
- this.groupBox25.Controls.Add(this.textBox_FacModeName);
- this.groupBox25.Location = new System.Drawing.Point(704, 3);
- this.groupBox25.Name = "groupBox25";
- this.groupBox25.Size = new System.Drawing.Size(283, 239);
- this.groupBox25.TabIndex = 8;
- this.groupBox25.TabStop = false;
- this.groupBox25.Text = "版本信息";
- //
- // label87
- //
- this.label87.AutoSize = true;
- this.label87.Location = new System.Drawing.Point(6, 178);
- this.label87.Name = "label87";
- this.label87.Size = new System.Drawing.Size(36, 21);
- this.label87.TabIndex = 27;
- this.label87.Text = "GIT";
- //
- // textBox_FacModeGit
- //
- this.textBox_FacModeGit.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_FacModeGit.Location = new System.Drawing.Point(54, 174);
- this.textBox_FacModeGit.Name = "textBox_FacModeGit";
- this.textBox_FacModeGit.Size = new System.Drawing.Size(227, 28);
- this.textBox_FacModeGit.TabIndex = 26;
- //
- // label86
- //
- this.label86.AutoSize = true;
- this.label86.Location = new System.Drawing.Point(6, 149);
- this.label86.Name = "label86";
- this.label86.Size = new System.Drawing.Size(29, 21);
- this.label86.TabIndex = 25;
- this.label86.Text = "SP";
- //
- // textBox_FacModeSP
- //
- this.textBox_FacModeSP.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_FacModeSP.Location = new System.Drawing.Point(54, 145);
- this.textBox_FacModeSP.Name = "textBox_FacModeSP";
- this.textBox_FacModeSP.Size = new System.Drawing.Size(227, 28);
- this.textBox_FacModeSP.TabIndex = 24;
- //
- // label68
- //
- this.label68.AutoSize = true;
- this.label68.Font = new System.Drawing.Font("Microsoft YaHei UI", 11F, System.Drawing.FontStyle.Bold);
- this.label68.ForeColor = System.Drawing.Color.Red;
- this.label68.Location = new System.Drawing.Point(6, 213);
- this.label68.Name = "label68";
- this.label68.Size = new System.Drawing.Size(134, 19);
- this.label68.TabIndex = 23;
- this.label68.Text = "断电前请执行关机!";
- this.label68.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- //
- // label84
- //
- this.label84.AutoSize = true;
- this.label84.Location = new System.Drawing.Point(6, 120);
- this.label84.Name = "label84";
- this.label84.Size = new System.Drawing.Size(35, 21);
- this.label84.TabIndex = 12;
- this.label84.Text = "FW";
- //
- // textBox_FacModeFW
- //
- this.textBox_FacModeFW.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_FacModeFW.Location = new System.Drawing.Point(54, 116);
- this.textBox_FacModeFW.Name = "textBox_FacModeFW";
- this.textBox_FacModeFW.Size = new System.Drawing.Size(227, 28);
- this.textBox_FacModeFW.TabIndex = 13;
- //
- // Button_FacModeReadVer
- //
- this.Button_FacModeReadVer.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
- this.Button_FacModeReadVer.Location = new System.Drawing.Point(213, 202);
- this.Button_FacModeReadVer.Name = "Button_FacModeReadVer";
- this.Button_FacModeReadVer.Size = new System.Drawing.Size(68, 34);
- this.Button_FacModeReadVer.TabIndex = 11;
- this.Button_FacModeReadVer.Text = "查询";
- this.Button_FacModeReadVer.UseVisualStyleBackColor = false;
- this.Button_FacModeReadVer.Click += new System.EventHandler(this.Button_FacModeReadVer_Click_1);
- //
- // label83
- //
- this.label83.AutoSize = true;
- this.label83.Location = new System.Drawing.Point(6, 91);
- this.label83.Name = "label83";
- this.label83.Size = new System.Drawing.Size(38, 21);
- this.label83.TabIndex = 9;
- this.label83.Text = "HW";
- //
- // textBox_FacModeHW
- //
- this.textBox_FacModeHW.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_FacModeHW.Location = new System.Drawing.Point(54, 87);
- this.textBox_FacModeHW.Name = "textBox_FacModeHW";
- this.textBox_FacModeHW.Size = new System.Drawing.Size(227, 28);
- this.textBox_FacModeHW.TabIndex = 10;
- //
- // label82
- //
- this.label82.AutoSize = true;
- this.label82.Location = new System.Drawing.Point(6, 62);
- this.label82.Name = "label82";
- this.label82.Size = new System.Drawing.Size(32, 21);
- this.label82.TabIndex = 6;
- this.label82.Text = "SN";
- //
- // textBox_FacModeNum
- //
- this.textBox_FacModeNum.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_FacModeNum.Location = new System.Drawing.Point(54, 58);
- this.textBox_FacModeNum.Name = "textBox_FacModeNum";
- this.textBox_FacModeNum.Size = new System.Drawing.Size(167, 28);
- this.textBox_FacModeNum.TabIndex = 7;
- //
- // label81
- //
- this.label81.AutoSize = true;
- this.label81.Location = new System.Drawing.Point(6, 33);
- this.label81.Name = "label81";
- this.label81.Size = new System.Drawing.Size(42, 21);
- this.label81.TabIndex = 3;
- this.label81.Text = "型号";
- //
- // textBox_FacModeName
- //
- this.textBox_FacModeName.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_FacModeName.Location = new System.Drawing.Point(54, 29);
- this.textBox_FacModeName.Name = "textBox_FacModeName";
- this.textBox_FacModeName.Size = new System.Drawing.Size(167, 28);
- this.textBox_FacModeName.TabIndex = 4;
- //
- // groupBox24
- //
- this.groupBox24.Controls.Add(this.button_FacModeAssistParaSet);
- this.groupBox24.Controls.Add(this.label80);
- this.groupBox24.Controls.Add(this.button_FacModeAssistParaRead);
- this.groupBox24.Controls.Add(this.textBox_FacModeStartGain);
- this.groupBox24.Controls.Add(this.textBox_FacModeCadencePer);
- this.groupBox24.Controls.Add(this.label79);
- this.groupBox24.Controls.Add(this.label75);
- this.groupBox24.Controls.Add(this.textBox_FacModeCircuitK);
- this.groupBox24.Controls.Add(this.textBox_FacModeSpeedLimitEnd);
- this.groupBox24.Controls.Add(this.label78);
- this.groupBox24.Controls.Add(this.label76);
- this.groupBox24.Controls.Add(this.textBox_FacModeFltCounter);
- this.groupBox24.Controls.Add(this.textBox_FacModeSpeedLimitTh);
- this.groupBox24.Controls.Add(this.label77);
- this.groupBox24.Location = new System.Drawing.Point(550, 3);
- this.groupBox24.Name = "groupBox24";
- this.groupBox24.Size = new System.Drawing.Size(148, 309);
- this.groupBox24.TabIndex = 12;
- this.groupBox24.TabStop = false;
- this.groupBox24.Text = "助力参数";
- //
- // button_FacModeAssistParaSet
- //
- this.button_FacModeAssistParaSet.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.button_FacModeAssistParaSet.Location = new System.Drawing.Point(83, 274);
- this.button_FacModeAssistParaSet.Name = "button_FacModeAssistParaSet";
- this.button_FacModeAssistParaSet.Size = new System.Drawing.Size(60, 30);
- this.button_FacModeAssistParaSet.TabIndex = 32;
- this.button_FacModeAssistParaSet.Text = "写入";
- this.button_FacModeAssistParaSet.UseVisualStyleBackColor = false;
- this.button_FacModeAssistParaSet.Click += new System.EventHandler(this.button_FacModeAssistParaSet_Click);
- //
- // label80
- //
- this.label80.AutoSize = true;
- this.label80.Location = new System.Drawing.Point(6, 33);
- this.label80.Name = "label80";
- this.label80.Size = new System.Drawing.Size(74, 21);
- this.label80.TabIndex = 19;
- this.label80.Text = "零速增益";
- this.label80.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- //
- // button_FacModeAssistParaRead
- //
- this.button_FacModeAssistParaRead.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
- this.button_FacModeAssistParaRead.Location = new System.Drawing.Point(6, 274);
- this.button_FacModeAssistParaRead.Name = "button_FacModeAssistParaRead";
- this.button_FacModeAssistParaRead.Size = new System.Drawing.Size(60, 30);
- this.button_FacModeAssistParaRead.TabIndex = 31;
- this.button_FacModeAssistParaRead.Text = "读取";
- this.button_FacModeAssistParaRead.UseVisualStyleBackColor = false;
- this.button_FacModeAssistParaRead.Click += new System.EventHandler(this.button_FacModeAssistParaRead_Click);
- //
- // textBox_FacModeStartGain
- //
- this.textBox_FacModeStartGain.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_FacModeStartGain.Location = new System.Drawing.Point(86, 29);
- this.textBox_FacModeStartGain.Name = "textBox_FacModeStartGain";
- this.textBox_FacModeStartGain.Size = new System.Drawing.Size(56, 28);
- this.textBox_FacModeStartGain.TabIndex = 20;
- //
- // textBox_FacModeCadencePer
- //
- this.textBox_FacModeCadencePer.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_FacModeCadencePer.Location = new System.Drawing.Point(87, 239);
- this.textBox_FacModeCadencePer.Name = "textBox_FacModeCadencePer";
- this.textBox_FacModeCadencePer.Size = new System.Drawing.Size(56, 28);
- this.textBox_FacModeCadencePer.TabIndex = 30;
- //
- // label79
- //
- this.label79.AutoSize = true;
- this.label79.Location = new System.Drawing.Point(6, 75);
- this.label79.Name = "label79";
- this.label79.Size = new System.Drawing.Size(74, 21);
- this.label79.TabIndex = 21;
- this.label79.Text = "电流阶梯";
- this.label79.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- //
- // label75
- //
- this.label75.AutoSize = true;
- this.label75.Location = new System.Drawing.Point(6, 243);
- this.label75.Name = "label75";
- this.label75.Size = new System.Drawing.Size(74, 21);
- this.label75.TabIndex = 29;
- this.label75.Text = "踏频占比";
- this.label75.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- //
- // textBox_FacModeCircuitK
- //
- this.textBox_FacModeCircuitK.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_FacModeCircuitK.Location = new System.Drawing.Point(86, 71);
- this.textBox_FacModeCircuitK.Name = "textBox_FacModeCircuitK";
- this.textBox_FacModeCircuitK.Size = new System.Drawing.Size(56, 28);
- this.textBox_FacModeCircuitK.TabIndex = 22;
- //
- // textBox_FacModeSpeedLimitEnd
- //
- this.textBox_FacModeSpeedLimitEnd.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_FacModeSpeedLimitEnd.Location = new System.Drawing.Point(86, 197);
- this.textBox_FacModeSpeedLimitEnd.Name = "textBox_FacModeSpeedLimitEnd";
- this.textBox_FacModeSpeedLimitEnd.Size = new System.Drawing.Size(56, 28);
- this.textBox_FacModeSpeedLimitEnd.TabIndex = 28;
- //
- // label78
- //
- this.label78.AutoSize = true;
- this.label78.Location = new System.Drawing.Point(6, 117);
- this.label78.Name = "label78";
- this.label78.Size = new System.Drawing.Size(74, 21);
- this.label78.TabIndex = 23;
- this.label78.Text = "滤波脉冲";
- this.label78.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- //
- // label76
- //
- this.label76.AutoSize = true;
- this.label76.Location = new System.Drawing.Point(6, 201);
- this.label76.Name = "label76";
- this.label76.Size = new System.Drawing.Size(74, 21);
- this.label76.TabIndex = 27;
- this.label76.Text = "限速停止";
- this.label76.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- //
- // textBox_FacModeFltCounter
- //
- this.textBox_FacModeFltCounter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_FacModeFltCounter.Location = new System.Drawing.Point(86, 113);
- this.textBox_FacModeFltCounter.Name = "textBox_FacModeFltCounter";
- this.textBox_FacModeFltCounter.Size = new System.Drawing.Size(56, 28);
- this.textBox_FacModeFltCounter.TabIndex = 24;
- //
- // textBox_FacModeSpeedLimitTh
- //
- this.textBox_FacModeSpeedLimitTh.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_FacModeSpeedLimitTh.Location = new System.Drawing.Point(87, 155);
- this.textBox_FacModeSpeedLimitTh.Name = "textBox_FacModeSpeedLimitTh";
- this.textBox_FacModeSpeedLimitTh.Size = new System.Drawing.Size(56, 28);
- this.textBox_FacModeSpeedLimitTh.TabIndex = 26;
- //
- // label77
- //
- this.label77.AutoSize = true;
- this.label77.Location = new System.Drawing.Point(6, 159);
- this.label77.Name = "label77";
- this.label77.Size = new System.Drawing.Size(74, 21);
- this.label77.TabIndex = 25;
- this.label77.Text = "限速起始";
- this.label77.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- //
- // groupBox23
- //
- this.groupBox23.Controls.Add(this.comboBox_FacModeStartMode);
- this.groupBox23.Controls.Add(this.comboBox_FacModeLightVol);
- this.groupBox23.Controls.Add(this.comboBox_FacModeAssist2);
- this.groupBox23.Controls.Add(this.comboBox_FacModeAssist1);
- this.groupBox23.Controls.Add(this.button_FacModeBikeParaSet);
- this.groupBox23.Controls.Add(this.button_FacModeBikeParaRead);
- this.groupBox23.Controls.Add(this.label74);
- this.groupBox23.Controls.Add(this.label73);
- this.groupBox23.Controls.Add(this.label72);
- this.groupBox23.Controls.Add(this.label71);
- this.groupBox23.Controls.Add(this.textBox_FacModeSpeedLimit);
- this.groupBox23.Controls.Add(this.label70);
- this.groupBox23.Controls.Add(this.textBox_FacModeWheelSize);
- this.groupBox23.Controls.Add(this.label69);
- this.groupBox23.Location = new System.Drawing.Point(396, 3);
- this.groupBox23.Name = "groupBox23";
- this.groupBox23.Size = new System.Drawing.Size(148, 309);
- this.groupBox23.TabIndex = 11;
- this.groupBox23.TabStop = false;
- this.groupBox23.Text = "整车参数";
- //
- // comboBox_FacModeStartMode
- //
- this.comboBox_FacModeStartMode.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
- this.comboBox_FacModeStartMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.comboBox_FacModeStartMode.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.comboBox_FacModeStartMode.FormattingEnabled = true;
- this.comboBox_FacModeStartMode.Items.AddRange(new object[] {
- "柔和",
- "正常",
- "强劲"});
- this.comboBox_FacModeStartMode.Location = new System.Drawing.Point(62, 239);
- this.comboBox_FacModeStartMode.Name = "comboBox_FacModeStartMode";
- this.comboBox_FacModeStartMode.Size = new System.Drawing.Size(80, 29);
- this.comboBox_FacModeStartMode.TabIndex = 22;
- //
- // comboBox_FacModeLightVol
- //
- this.comboBox_FacModeLightVol.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
- this.comboBox_FacModeLightVol.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.comboBox_FacModeLightVol.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.comboBox_FacModeLightVol.FormattingEnabled = true;
- this.comboBox_FacModeLightVol.Items.AddRange(new object[] {
- "6V",
- "12V",
- "其它"});
- this.comboBox_FacModeLightVol.Location = new System.Drawing.Point(62, 197);
- this.comboBox_FacModeLightVol.Name = "comboBox_FacModeLightVol";
- this.comboBox_FacModeLightVol.Size = new System.Drawing.Size(80, 29);
- this.comboBox_FacModeLightVol.TabIndex = 21;
- //
- // comboBox_FacModeAssist2
- //
- this.comboBox_FacModeAssist2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
- this.comboBox_FacModeAssist2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.comboBox_FacModeAssist2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.comboBox_FacModeAssist2.FormattingEnabled = true;
- this.comboBox_FacModeAssist2.Items.AddRange(new object[] {
- "0",
- "341",
- "682",
- "其它"});
- this.comboBox_FacModeAssist2.Location = new System.Drawing.Point(62, 155);
- this.comboBox_FacModeAssist2.Name = "comboBox_FacModeAssist2";
- this.comboBox_FacModeAssist2.Size = new System.Drawing.Size(80, 29);
- this.comboBox_FacModeAssist2.TabIndex = 20;
- //
- // comboBox_FacModeAssist1
- //
- this.comboBox_FacModeAssist1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
- this.comboBox_FacModeAssist1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.comboBox_FacModeAssist1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.comboBox_FacModeAssist1.FormattingEnabled = true;
- this.comboBox_FacModeAssist1.Items.AddRange(new object[] {
- "0",
- "341",
- "682",
- "其它"});
- this.comboBox_FacModeAssist1.Location = new System.Drawing.Point(62, 113);
- this.comboBox_FacModeAssist1.Name = "comboBox_FacModeAssist1";
- this.comboBox_FacModeAssist1.Size = new System.Drawing.Size(80, 29);
- this.comboBox_FacModeAssist1.TabIndex = 19;
- //
- // button_FacModeBikeParaSet
- //
- this.button_FacModeBikeParaSet.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.button_FacModeBikeParaSet.Location = new System.Drawing.Point(83, 274);
- this.button_FacModeBikeParaSet.Name = "button_FacModeBikeParaSet";
- this.button_FacModeBikeParaSet.Size = new System.Drawing.Size(60, 30);
- this.button_FacModeBikeParaSet.TabIndex = 18;
- this.button_FacModeBikeParaSet.Text = "写入";
- this.button_FacModeBikeParaSet.UseVisualStyleBackColor = false;
- this.button_FacModeBikeParaSet.Click += new System.EventHandler(this.button_FacModeBikeParaSet_Click);
- //
- // button_FacModeBikeParaRead
- //
- this.button_FacModeBikeParaRead.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
- this.button_FacModeBikeParaRead.Location = new System.Drawing.Point(6, 274);
- this.button_FacModeBikeParaRead.Name = "button_FacModeBikeParaRead";
- this.button_FacModeBikeParaRead.Size = new System.Drawing.Size(60, 30);
- this.button_FacModeBikeParaRead.TabIndex = 17;
- this.button_FacModeBikeParaRead.Text = "读取";
- this.button_FacModeBikeParaRead.UseVisualStyleBackColor = false;
- this.button_FacModeBikeParaRead.Click += new System.EventHandler(this.button_FacModeBikeParaRead_Click);
- //
- // label74
- //
- this.label74.AutoSize = true;
- this.label74.Location = new System.Drawing.Point(7, 243);
- this.label74.Name = "label74";
- this.label74.Size = new System.Drawing.Size(42, 21);
- this.label74.TabIndex = 12;
- this.label74.Text = "启动";
- this.label74.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- //
- // label73
- //
- this.label73.AutoSize = true;
- this.label73.Location = new System.Drawing.Point(7, 201);
- this.label73.Name = "label73";
- this.label73.Size = new System.Drawing.Size(42, 21);
- this.label73.TabIndex = 10;
- this.label73.Text = "灯压";
- this.label73.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- //
- // label72
- //
- this.label72.AutoSize = true;
- this.label72.Location = new System.Drawing.Point(7, 159);
- this.label72.Name = "label72";
- this.label72.Size = new System.Drawing.Size(51, 21);
- this.label72.TabIndex = 8;
- this.label72.Text = "助力2";
- this.label72.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- //
- // label71
- //
- this.label71.AutoSize = true;
- this.label71.Location = new System.Drawing.Point(7, 117);
- this.label71.Name = "label71";
- this.label71.Size = new System.Drawing.Size(51, 21);
- this.label71.TabIndex = 6;
- this.label71.Text = "助力1";
- this.label71.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- //
- // textBox_FacModeSpeedLimit
- //
- this.textBox_FacModeSpeedLimit.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_FacModeSpeedLimit.Location = new System.Drawing.Point(62, 71);
- this.textBox_FacModeSpeedLimit.Name = "textBox_FacModeSpeedLimit";
- this.textBox_FacModeSpeedLimit.Size = new System.Drawing.Size(80, 28);
- this.textBox_FacModeSpeedLimit.TabIndex = 5;
- //
- // label70
- //
- this.label70.AutoSize = true;
- this.label70.Location = new System.Drawing.Point(7, 75);
- this.label70.Name = "label70";
- this.label70.Size = new System.Drawing.Size(42, 21);
- this.label70.TabIndex = 4;
- this.label70.Text = "限速";
- this.label70.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- //
- // textBox_FacModeWheelSize
- //
- this.textBox_FacModeWheelSize.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_FacModeWheelSize.Location = new System.Drawing.Point(62, 29);
- this.textBox_FacModeWheelSize.Name = "textBox_FacModeWheelSize";
- this.textBox_FacModeWheelSize.Size = new System.Drawing.Size(80, 28);
- this.textBox_FacModeWheelSize.TabIndex = 3;
- //
- // label69
- //
- this.label69.AutoSize = true;
- this.label69.Location = new System.Drawing.Point(7, 33);
- this.label69.Name = "label69";
- this.label69.Size = new System.Drawing.Size(42, 21);
- this.label69.TabIndex = 2;
- this.label69.Text = "周长";
- this.label69.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- //
- // groupBox22
- //
- this.groupBox22.Controls.Add(this.label_MotorSensor);
- this.groupBox22.Controls.Add(this.label_Load);
- this.groupBox22.Controls.Add(this.button_FacModeLightSW);
- this.groupBox22.Controls.Add(this.label_FacModeMotorSpeedSet);
- this.groupBox22.Controls.Add(this.label67);
- this.groupBox22.Controls.Add(this.trackBar_FacModeMotorSpeedAdj);
- this.groupBox22.Controls.Add(this.button_FacModeMotorRun);
- this.groupBox22.Controls.Add(this.radioButton_FacModeDriverMtb);
- this.groupBox22.Controls.Add(this.radioButton_FacModeDriverCity);
- this.groupBox22.Location = new System.Drawing.Point(190, 109);
- this.groupBox22.Name = "groupBox22";
- this.groupBox22.Size = new System.Drawing.Size(200, 203);
- this.groupBox22.TabIndex = 10;
- this.groupBox22.TabStop = false;
- this.groupBox22.Text = "驱动测试";
- //
- // label_MotorSensor
- //
- this.label_MotorSensor.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.label_MotorSensor.Font = new System.Drawing.Font("Microsoft YaHei UI", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label_MotorSensor.Location = new System.Drawing.Point(148, 26);
- this.label_MotorSensor.Name = "label_MotorSensor";
- this.label_MotorSensor.Size = new System.Drawing.Size(45, 22);
- this.label_MotorSensor.TabIndex = 21;
- this.label_MotorSensor.Text = "有感";
- this.label_MotorSensor.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- this.label_MotorSensor.Click += new System.EventHandler(this.label_MotorSensor_Click);
- //
- // label_Load
- //
- this.label_Load.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.label_Load.Font = new System.Drawing.Font("Microsoft YaHei UI", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label_Load.Location = new System.Drawing.Point(51, 26);
- this.label_Load.Name = "label_Load";
- this.label_Load.Size = new System.Drawing.Size(45, 22);
- this.label_Load.TabIndex = 4;
- this.label_Load.Text = "带载";
- this.label_Load.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- this.label_Load.Click += new System.EventHandler(this.label_Load_Click);
- //
- // button_FacModeLightSW
- //
- this.button_FacModeLightSW.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(128)))));
- this.button_FacModeLightSW.Location = new System.Drawing.Point(11, 81);
- this.button_FacModeLightSW.Name = "button_FacModeLightSW";
- this.button_FacModeLightSW.Size = new System.Drawing.Size(85, 45);
- this.button_FacModeLightSW.TabIndex = 20;
- this.button_FacModeLightSW.Text = "开/关灯";
- this.button_FacModeLightSW.UseVisualStyleBackColor = false;
- this.button_FacModeLightSW.Click += new System.EventHandler(this.button_FacModeLightSW_Click);
- //
- // label_FacModeMotorSpeedSet
- //
- this.label_FacModeMotorSpeedSet.AutoSize = true;
- this.label_FacModeMotorSpeedSet.Font = new System.Drawing.Font("Microsoft YaHei UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label_FacModeMotorSpeedSet.Location = new System.Drawing.Point(149, 130);
- this.label_FacModeMotorSpeedSet.Name = "label_FacModeMotorSpeedSet";
- this.label_FacModeMotorSpeedSet.Size = new System.Drawing.Size(26, 17);
- this.label_FacModeMotorSpeedSet.TabIndex = 19;
- this.label_FacModeMotorSpeedSet.Text = "2%";
- this.label_FacModeMotorSpeedSet.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
- //
- // label67
- //
- this.label67.AutoSize = true;
- this.label67.Font = new System.Drawing.Font("Microsoft YaHei UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label67.Location = new System.Drawing.Point(20, 130);
- this.label67.Name = "label67";
- this.label67.Size = new System.Drawing.Size(56, 17);
- this.label67.TabIndex = 18;
- this.label67.Text = "转速调节";
- //
- // trackBar_FacModeMotorSpeedAdj
- //
- this.trackBar_FacModeMotorSpeedAdj.Location = new System.Drawing.Point(6, 153);
- this.trackBar_FacModeMotorSpeedAdj.Maximum = 100;
- this.trackBar_FacModeMotorSpeedAdj.Minimum = 2;
- this.trackBar_FacModeMotorSpeedAdj.Name = "trackBar_FacModeMotorSpeedAdj";
- this.trackBar_FacModeMotorSpeedAdj.Size = new System.Drawing.Size(181, 45);
- this.trackBar_FacModeMotorSpeedAdj.TabIndex = 17;
- this.trackBar_FacModeMotorSpeedAdj.TickStyle = System.Windows.Forms.TickStyle.Both;
- this.trackBar_FacModeMotorSpeedAdj.Value = 2;
- this.trackBar_FacModeMotorSpeedAdj.ValueChanged += new System.EventHandler(this.trackBar_FacModeMotorSpeedAdj_ValueChanged);
- //
- // button_FacModeMotorRun
- //
- this.button_FacModeMotorRun.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
- this.button_FacModeMotorRun.Location = new System.Drawing.Point(109, 81);
- this.button_FacModeMotorRun.Name = "button_FacModeMotorRun";
- this.button_FacModeMotorRun.Size = new System.Drawing.Size(85, 45);
- this.button_FacModeMotorRun.TabIndex = 16;
- this.button_FacModeMotorRun.Text = "启/停";
- this.button_FacModeMotorRun.UseVisualStyleBackColor = false;
- this.button_FacModeMotorRun.Click += new System.EventHandler(this.button_FacModeMotorRun_Click);
- //
- // radioButton_FacModeDriverMtb
- //
- this.radioButton_FacModeDriverMtb.AutoSize = true;
- this.radioButton_FacModeDriverMtb.Location = new System.Drawing.Point(109, 53);
- this.radioButton_FacModeDriverMtb.Name = "radioButton_FacModeDriverMtb";
- this.radioButton_FacModeDriverMtb.Size = new System.Drawing.Size(63, 25);
- this.radioButton_FacModeDriverMtb.TabIndex = 1;
- this.radioButton_FacModeDriverMtb.TabStop = true;
- this.radioButton_FacModeDriverMtb.Text = "MTB";
- this.radioButton_FacModeDriverMtb.UseVisualStyleBackColor = true;
- //
- // radioButton_FacModeDriverCity
- //
- this.radioButton_FacModeDriverCity.AutoSize = true;
- this.radioButton_FacModeDriverCity.Location = new System.Drawing.Point(11, 53);
- this.radioButton_FacModeDriverCity.Name = "radioButton_FacModeDriverCity";
- this.radioButton_FacModeDriverCity.Size = new System.Drawing.Size(63, 25);
- this.radioButton_FacModeDriverCity.TabIndex = 0;
- this.radioButton_FacModeDriverCity.TabStop = true;
- this.radioButton_FacModeDriverCity.Text = "CITY";
- this.radioButton_FacModeDriverCity.UseVisualStyleBackColor = true;
- //
- // groupBox21
- //
- this.groupBox21.Controls.Add(this.button_FacModeWorkMode);
- this.groupBox21.Controls.Add(this.checkBox_FacModeCheckCadence);
- this.groupBox21.Controls.Add(this.checkBox_FacModeCheckBikeSpeed);
- this.groupBox21.Controls.Add(this.checkBox_FacModeCheckNTC);
- this.groupBox21.Controls.Add(this.checkBox_FacModeCheckVol);
- this.groupBox21.Location = new System.Drawing.Point(190, 3);
- this.groupBox21.Name = "groupBox21";
- this.groupBox21.Size = new System.Drawing.Size(200, 96);
- this.groupBox21.TabIndex = 9;
- this.groupBox21.TabStop = false;
- this.groupBox21.Text = "传感器测试";
- //
- // button_FacModeWorkMode
- //
- this.button_FacModeWorkMode.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
- this.button_FacModeWorkMode.Location = new System.Drawing.Point(6, 27);
- this.button_FacModeWorkMode.Name = "button_FacModeWorkMode";
- this.button_FacModeWorkMode.Size = new System.Drawing.Size(54, 51);
- this.button_FacModeWorkMode.TabIndex = 17;
- this.button_FacModeWorkMode.Text = "开始";
- this.button_FacModeWorkMode.UseVisualStyleBackColor = false;
- this.button_FacModeWorkMode.Click += new System.EventHandler(this.button_FacModeWorkMode_Click);
- //
- // checkBox_FacModeCheckCadence
- //
- this.checkBox_FacModeCheckCadence.AutoSize = true;
- this.checkBox_FacModeCheckCadence.Location = new System.Drawing.Point(133, 58);
- this.checkBox_FacModeCheckCadence.Name = "checkBox_FacModeCheckCadence";
- this.checkBox_FacModeCheckCadence.Size = new System.Drawing.Size(61, 25);
- this.checkBox_FacModeCheckCadence.TabIndex = 3;
- this.checkBox_FacModeCheckCadence.Text = "踏频";
- this.checkBox_FacModeCheckCadence.UseVisualStyleBackColor = true;
- //
- // checkBox_FacModeCheckBikeSpeed
- //
- this.checkBox_FacModeCheckBikeSpeed.AutoSize = true;
- this.checkBox_FacModeCheckBikeSpeed.Location = new System.Drawing.Point(66, 58);
- this.checkBox_FacModeCheckBikeSpeed.Name = "checkBox_FacModeCheckBikeSpeed";
- this.checkBox_FacModeCheckBikeSpeed.Size = new System.Drawing.Size(61, 25);
- this.checkBox_FacModeCheckBikeSpeed.TabIndex = 2;
- this.checkBox_FacModeCheckBikeSpeed.Text = "车速";
- this.checkBox_FacModeCheckBikeSpeed.UseVisualStyleBackColor = true;
- //
- // checkBox_FacModeCheckNTC
- //
- this.checkBox_FacModeCheckNTC.AutoSize = true;
- this.checkBox_FacModeCheckNTC.Location = new System.Drawing.Point(133, 27);
- this.checkBox_FacModeCheckNTC.Name = "checkBox_FacModeCheckNTC";
- this.checkBox_FacModeCheckNTC.Size = new System.Drawing.Size(61, 25);
- this.checkBox_FacModeCheckNTC.TabIndex = 1;
- this.checkBox_FacModeCheckNTC.Text = "温度";
- this.checkBox_FacModeCheckNTC.UseVisualStyleBackColor = true;
- //
- // checkBox_FacModeCheckVol
- //
- this.checkBox_FacModeCheckVol.AutoSize = true;
- this.checkBox_FacModeCheckVol.Location = new System.Drawing.Point(66, 27);
- this.checkBox_FacModeCheckVol.Name = "checkBox_FacModeCheckVol";
- this.checkBox_FacModeCheckVol.Size = new System.Drawing.Size(61, 25);
- this.checkBox_FacModeCheckVol.TabIndex = 0;
- this.checkBox_FacModeCheckVol.Text = "电压";
- this.checkBox_FacModeCheckVol.UseVisualStyleBackColor = true;
- //
- // groupBox20
- //
- this.groupBox20.Controls.Add(this.textBox10);
- this.groupBox20.Controls.Add(this.button_FacModeSensorRead);
- this.groupBox20.Controls.Add(this.textBox_FacModeSensorADC0);
- this.groupBox20.Controls.Add(this.textBox_FacModeSensorADC4);
- this.groupBox20.Controls.Add(this.buttonFacModeSet1);
- this.groupBox20.Controls.Add(this.buttonFacModeSet2);
- this.groupBox20.Controls.Add(this.textBox_FacModeSensorADC3);
- this.groupBox20.Controls.Add(this.buttonFacModeSet3);
- this.groupBox20.Controls.Add(this.textBox_FacModeSensorADC1);
- this.groupBox20.Controls.Add(this.buttonFacModeSet4);
- this.groupBox20.Controls.Add(this.textBox_FacModeSensorADC2);
- this.groupBox20.Controls.Add(this.textBox_FacModeSensorCal4);
- this.groupBox20.Controls.Add(this.textBox_FacModeSensorCal3);
- this.groupBox20.Controls.Add(this.textBox_FacModeSensorCal1);
- this.groupBox20.Controls.Add(this.textBox_FacModeSensorCal2);
- this.groupBox20.Location = new System.Drawing.Point(3, 109);
- this.groupBox20.Name = "groupBox20";
- this.groupBox20.Size = new System.Drawing.Size(181, 203);
- this.groupBox20.TabIndex = 8;
- this.groupBox20.TabStop = false;
- this.groupBox20.Text = "标定";
- //
- // textBox10
- //
- this.textBox10.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
- this.textBox10.Location = new System.Drawing.Point(6, 35);
- this.textBox10.Name = "textBox10";
- this.textBox10.ReadOnly = true;
- this.textBox10.Size = new System.Drawing.Size(47, 28);
- this.textBox10.TabIndex = 16;
- this.textBox10.Text = "0";
- this.textBox10.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // button_FacModeSensorRead
- //
- this.button_FacModeSensorRead.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
- this.button_FacModeSensorRead.Location = new System.Drawing.Point(115, 33);
- this.button_FacModeSensorRead.Name = "button_FacModeSensorRead";
- this.button_FacModeSensorRead.Size = new System.Drawing.Size(60, 30);
- this.button_FacModeSensorRead.TabIndex = 15;
- this.button_FacModeSensorRead.Text = "读取";
- this.button_FacModeSensorRead.UseVisualStyleBackColor = false;
- this.button_FacModeSensorRead.Click += new System.EventHandler(this.button_FacModeSensorRead_Click);
- //
- // textBox_FacModeSensorADC0
- //
- this.textBox_FacModeSensorADC0.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_FacModeSensorADC0.Location = new System.Drawing.Point(59, 35);
- this.textBox_FacModeSensorADC0.Name = "textBox_FacModeSensorADC0";
- this.textBox_FacModeSensorADC0.ReadOnly = true;
- this.textBox_FacModeSensorADC0.Size = new System.Drawing.Size(50, 28);
- this.textBox_FacModeSensorADC0.TabIndex = 15;
- this.textBox_FacModeSensorADC0.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // textBox_FacModeSensorADC4
- //
- this.textBox_FacModeSensorADC4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_FacModeSensorADC4.Location = new System.Drawing.Point(59, 168);
- this.textBox_FacModeSensorADC4.Name = "textBox_FacModeSensorADC4";
- this.textBox_FacModeSensorADC4.ReadOnly = true;
- this.textBox_FacModeSensorADC4.Size = new System.Drawing.Size(50, 28);
- this.textBox_FacModeSensorADC4.TabIndex = 14;
- this.textBox_FacModeSensorADC4.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // buttonFacModeSet1
- //
- this.buttonFacModeSet1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.buttonFacModeSet1.Location = new System.Drawing.Point(115, 67);
- this.buttonFacModeSet1.Name = "buttonFacModeSet1";
- this.buttonFacModeSet1.Size = new System.Drawing.Size(60, 30);
- this.buttonFacModeSet1.TabIndex = 7;
- this.buttonFacModeSet1.Text = "加载1";
- this.buttonFacModeSet1.UseVisualStyleBackColor = false;
- this.buttonFacModeSet1.Click += new System.EventHandler(this.buttonFacModeSet1_Click);
- //
- // buttonFacModeSet2
- //
- this.buttonFacModeSet2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.buttonFacModeSet2.Location = new System.Drawing.Point(115, 100);
- this.buttonFacModeSet2.Name = "buttonFacModeSet2";
- this.buttonFacModeSet2.Size = new System.Drawing.Size(60, 30);
- this.buttonFacModeSet2.TabIndex = 8;
- this.buttonFacModeSet2.Text = "加载2";
- this.buttonFacModeSet2.UseVisualStyleBackColor = false;
- this.buttonFacModeSet2.Click += new System.EventHandler(this.buttonFacModeSet2_Click);
- //
- // textBox_FacModeSensorADC3
- //
- this.textBox_FacModeSensorADC3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_FacModeSensorADC3.Location = new System.Drawing.Point(59, 135);
- this.textBox_FacModeSensorADC3.Name = "textBox_FacModeSensorADC3";
- this.textBox_FacModeSensorADC3.ReadOnly = true;
- this.textBox_FacModeSensorADC3.Size = new System.Drawing.Size(50, 28);
- this.textBox_FacModeSensorADC3.TabIndex = 13;
- this.textBox_FacModeSensorADC3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // buttonFacModeSet3
- //
- this.buttonFacModeSet3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.buttonFacModeSet3.Location = new System.Drawing.Point(115, 133);
- this.buttonFacModeSet3.Name = "buttonFacModeSet3";
- this.buttonFacModeSet3.Size = new System.Drawing.Size(60, 30);
- this.buttonFacModeSet3.TabIndex = 9;
- this.buttonFacModeSet3.Text = "加载3";
- this.buttonFacModeSet3.UseVisualStyleBackColor = false;
- this.buttonFacModeSet3.Click += new System.EventHandler(this.buttonFacModeSet3_Click);
- //
- // textBox_FacModeSensorADC1
- //
- this.textBox_FacModeSensorADC1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_FacModeSensorADC1.Location = new System.Drawing.Point(59, 69);
- this.textBox_FacModeSensorADC1.Name = "textBox_FacModeSensorADC1";
- this.textBox_FacModeSensorADC1.ReadOnly = true;
- this.textBox_FacModeSensorADC1.Size = new System.Drawing.Size(50, 28);
- this.textBox_FacModeSensorADC1.TabIndex = 12;
- this.textBox_FacModeSensorADC1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // buttonFacModeSet4
- //
- this.buttonFacModeSet4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.buttonFacModeSet4.Location = new System.Drawing.Point(115, 166);
- this.buttonFacModeSet4.Name = "buttonFacModeSet4";
- this.buttonFacModeSet4.Size = new System.Drawing.Size(60, 30);
- this.buttonFacModeSet4.TabIndex = 10;
- this.buttonFacModeSet4.Text = "加载4";
- this.buttonFacModeSet4.UseVisualStyleBackColor = false;
- this.buttonFacModeSet4.Click += new System.EventHandler(this.buttonFacModeSet4_Click);
- //
- // textBox_FacModeSensorADC2
- //
- this.textBox_FacModeSensorADC2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_FacModeSensorADC2.Location = new System.Drawing.Point(59, 102);
- this.textBox_FacModeSensorADC2.Name = "textBox_FacModeSensorADC2";
- this.textBox_FacModeSensorADC2.ReadOnly = true;
- this.textBox_FacModeSensorADC2.Size = new System.Drawing.Size(50, 28);
- this.textBox_FacModeSensorADC2.TabIndex = 11;
- this.textBox_FacModeSensorADC2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // textBox_FacModeSensorCal4
- //
- this.textBox_FacModeSensorCal4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_FacModeSensorCal4.Location = new System.Drawing.Point(6, 168);
- this.textBox_FacModeSensorCal4.Name = "textBox_FacModeSensorCal4";
- this.textBox_FacModeSensorCal4.Size = new System.Drawing.Size(47, 28);
- this.textBox_FacModeSensorCal4.TabIndex = 5;
- this.textBox_FacModeSensorCal4.Text = "96";
- this.textBox_FacModeSensorCal4.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // textBox_FacModeSensorCal3
- //
- this.textBox_FacModeSensorCal3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_FacModeSensorCal3.Location = new System.Drawing.Point(6, 135);
- this.textBox_FacModeSensorCal3.Name = "textBox_FacModeSensorCal3";
- this.textBox_FacModeSensorCal3.Size = new System.Drawing.Size(47, 28);
- this.textBox_FacModeSensorCal3.TabIndex = 4;
- this.textBox_FacModeSensorCal3.Text = "72";
- this.textBox_FacModeSensorCal3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // textBox_FacModeSensorCal1
- //
- this.textBox_FacModeSensorCal1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_FacModeSensorCal1.Location = new System.Drawing.Point(6, 69);
- this.textBox_FacModeSensorCal1.Name = "textBox_FacModeSensorCal1";
- this.textBox_FacModeSensorCal1.Size = new System.Drawing.Size(47, 28);
- this.textBox_FacModeSensorCal1.TabIndex = 3;
- this.textBox_FacModeSensorCal1.Text = "24";
- this.textBox_FacModeSensorCal1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // textBox_FacModeSensorCal2
- //
- this.textBox_FacModeSensorCal2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_FacModeSensorCal2.Location = new System.Drawing.Point(6, 102);
- this.textBox_FacModeSensorCal2.Name = "textBox_FacModeSensorCal2";
- this.textBox_FacModeSensorCal2.Size = new System.Drawing.Size(47, 28);
- this.textBox_FacModeSensorCal2.TabIndex = 2;
- this.textBox_FacModeSensorCal2.Text = "48";
- this.textBox_FacModeSensorCal2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // groupBox19
- //
- this.groupBox19.Controls.Add(this.button_FacModeInit);
- this.groupBox19.Location = new System.Drawing.Point(3, 3);
- this.groupBox19.Name = "groupBox19";
- this.groupBox19.Size = new System.Drawing.Size(181, 96);
- this.groupBox19.TabIndex = 7;
- this.groupBox19.TabStop = false;
- this.groupBox19.Text = "初始化";
- //
- // button_FacModeInit
- //
- this.button_FacModeInit.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
- this.button_FacModeInit.Location = new System.Drawing.Point(26, 29);
- this.button_FacModeInit.Name = "button_FacModeInit";
- this.button_FacModeInit.Size = new System.Drawing.Size(126, 51);
- this.button_FacModeInit.TabIndex = 0;
- this.button_FacModeInit.Text = "初始化";
- this.button_FacModeInit.UseVisualStyleBackColor = false;
- this.button_FacModeInit.Click += new System.EventHandler(this.button_FacModeInit_Click);
- //
- // label23
- //
- this.label23.AutoSize = true;
- this.label23.BackColor = System.Drawing.Color.DodgerBlue;
- this.label23.Font = new System.Drawing.Font("Microsoft YaHei UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label23.ForeColor = System.Drawing.Color.White;
- this.label23.Location = new System.Drawing.Point(406, 622);
- this.label23.Name = "label23";
- this.label23.Size = new System.Drawing.Size(68, 17);
- this.label23.TabIndex = 7;
- this.label23.Text = "接收计数:";
- //
- // label_RecCount
- //
- this.label_RecCount.AutoSize = true;
- this.label_RecCount.BackColor = System.Drawing.Color.DodgerBlue;
- this.label_RecCount.Font = new System.Drawing.Font("Microsoft YaHei UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label_RecCount.ForeColor = System.Drawing.Color.White;
- this.label_RecCount.Location = new System.Drawing.Point(482, 622);
- this.label_RecCount.Name = "label_RecCount";
- this.label_RecCount.Size = new System.Drawing.Size(15, 17);
- this.label_RecCount.TabIndex = 8;
- this.label_RecCount.Text = "0";
- //
- // timer_1s
- //
- this.timer_1s.Enabled = true;
- this.timer_1s.Interval = 500;
- this.timer_1s.Tick += new System.EventHandler(this.timer_1s_Tick);
- //
- // label_BuildTime
- //
- this.label_BuildTime.AutoSize = true;
- this.label_BuildTime.BackColor = System.Drawing.Color.DodgerBlue;
- this.label_BuildTime.Font = new System.Drawing.Font("Microsoft YaHei UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label_BuildTime.ForeColor = System.Drawing.Color.White;
- this.label_BuildTime.Location = new System.Drawing.Point(664, 622);
- this.label_BuildTime.Name = "label_BuildTime";
- this.label_BuildTime.Size = new System.Drawing.Size(186, 17);
- this.label_BuildTime.TabIndex = 10;
- this.label_BuildTime.Text = "编译时间:2022-05-22 14:00:00";
- //
- // label_SystemTime
- //
- this.label_SystemTime.AutoSize = true;
- this.label_SystemTime.BackColor = System.Drawing.Color.DodgerBlue;
- this.label_SystemTime.Font = new System.Drawing.Font("Microsoft YaHei UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label_SystemTime.ForeColor = System.Drawing.Color.White;
- this.label_SystemTime.Location = new System.Drawing.Point(858, 622);
- this.label_SystemTime.Name = "label_SystemTime";
- this.label_SystemTime.Size = new System.Drawing.Size(162, 17);
- this.label_SystemTime.TabIndex = 11;
- this.label_SystemTime.Text = "当前:2022-05-22 14:00:00";
- //
- // label_COM_Sta
- //
- this.label_COM_Sta.AutoSize = true;
- this.label_COM_Sta.BackColor = System.Drawing.Color.DodgerBlue;
- this.label_COM_Sta.Font = new System.Drawing.Font("Microsoft YaHei UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label_COM_Sta.ForeColor = System.Drawing.Color.White;
- this.label_COM_Sta.Location = new System.Drawing.Point(230, 622);
- this.label_COM_Sta.Name = "label_COM_Sta";
- this.label_COM_Sta.Size = new System.Drawing.Size(80, 17);
- this.label_COM_Sta.TabIndex = 12;
- this.label_COM_Sta.Text = "端口:未连接";
- //
- // label43
- //
- this.label43.BackColor = System.Drawing.Color.Silver;
- this.label43.Location = new System.Drawing.Point(223, 623);
- this.label43.Name = "label43";
- this.label43.Size = new System.Drawing.Size(1, 15);
- this.label43.TabIndex = 8;
- //
- // label44
- //
- this.label44.BackColor = System.Drawing.Color.Silver;
- this.label44.Location = new System.Drawing.Point(399, 623);
- this.label44.Name = "label44";
- this.label44.Size = new System.Drawing.Size(1, 15);
- this.label44.TabIndex = 13;
- //
- // label45
- //
- this.label45.BackColor = System.Drawing.Color.Silver;
- this.label45.Location = new System.Drawing.Point(654, 623);
- this.label45.Name = "label45";
- this.label45.Size = new System.Drawing.Size(1, 15);
- this.label45.TabIndex = 14;
- //
- // label96
- //
- this.label96.BackColor = System.Drawing.Color.Silver;
- this.label96.Location = new System.Drawing.Point(536, 623);
- this.label96.Name = "label96";
- this.label96.Size = new System.Drawing.Size(1, 15);
- this.label96.TabIndex = 17;
- //
- // label_Server_ComStatus
- //
- this.label_Server_ComStatus.AutoSize = true;
- this.label_Server_ComStatus.BackColor = System.Drawing.Color.DodgerBlue;
- this.label_Server_ComStatus.Font = new System.Drawing.Font("Microsoft YaHei UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label_Server_ComStatus.ForeColor = System.Drawing.Color.White;
- this.label_Server_ComStatus.Location = new System.Drawing.Point(543, 622);
- this.label_Server_ComStatus.Name = "label_Server_ComStatus";
- this.label_Server_ComStatus.Size = new System.Drawing.Size(80, 17);
- this.label_Server_ComStatus.TabIndex = 18;
- this.label_Server_ComStatus.Text = "网络:未连接";
- //
- // label_ServerStatus
- //
- this.label_ServerStatus.BackColor = System.Drawing.Color.Red;
- this.label_ServerStatus.Location = new System.Drawing.Point(630, 623);
- this.label_ServerStatus.Name = "label_ServerStatus";
- this.label_ServerStatus.Size = new System.Drawing.Size(15, 15);
- this.label_ServerStatus.TabIndex = 19;
- //
- // label_PortStatus
- //
- this.label_PortStatus.BackColor = System.Drawing.Color.Red;
- this.label_PortStatus.Location = new System.Drawing.Point(373, 623);
- this.label_PortStatus.Name = "label_PortStatus";
- this.label_PortStatus.Size = new System.Drawing.Size(15, 15);
- this.label_PortStatus.TabIndex = 20;
- //
- // Button_FacModeSetNum
- //
- this.Button_FacModeSetNum.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.Button_FacModeSetNum.Location = new System.Drawing.Point(227, 58);
- this.Button_FacModeSetNum.Name = "Button_FacModeSetNum";
- this.Button_FacModeSetNum.Size = new System.Drawing.Size(54, 29);
- this.Button_FacModeSetNum.TabIndex = 8;
- this.Button_FacModeSetNum.Text = "写入";
- this.Button_FacModeSetNum.UseVisualStyleBackColor = false;
- this.Button_FacModeSetNum.Click += new System.EventHandler(this.Button_FacModeSetNum_Click);
- //
- // button_FacModeSetName
- //
- this.button_FacModeSetName.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.button_FacModeSetName.Location = new System.Drawing.Point(227, 29);
- this.button_FacModeSetName.Name = "button_FacModeSetName";
- this.button_FacModeSetName.Size = new System.Drawing.Size(54, 29);
- this.button_FacModeSetName.TabIndex = 28;
- this.button_FacModeSetName.Text = "写入";
- this.button_FacModeSetName.UseVisualStyleBackColor = false;
- this.button_FacModeSetName.Click += new System.EventHandler(this.button_FacModeSetName_Click);
- //
- // button_ScanCode
- //
- this.button_ScanCode.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
- this.button_ScanCode.Location = new System.Drawing.Point(704, 248);
- this.button_ScanCode.Name = "button_ScanCode";
- this.button_ScanCode.Size = new System.Drawing.Size(68, 60);
- this.button_ScanCode.TabIndex = 34;
- this.button_ScanCode.Text = "扫码\r\n写入";
- this.button_ScanCode.UseVisualStyleBackColor = false;
- this.button_ScanCode.Click += new System.EventHandler(this.button_ScanCode_Click);
- //
- // pictureBox2
- //
- this.pictureBox2.BackColor = System.Drawing.Color.DodgerBlue;
- this.pictureBox2.Image = global::Welling_Motor_Debug_Tool.Properties.Resources.about;
- this.pictureBox2.Location = new System.Drawing.Point(896, 5);
- this.pictureBox2.Name = "pictureBox2";
- this.pictureBox2.Size = new System.Drawing.Size(132, 18);
- this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
- this.pictureBox2.TabIndex = 16;
- this.pictureBox2.TabStop = false;
- //
- // Form1
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.ClientSize = new System.Drawing.Size(1034, 641);
- this.Controls.Add(this.label_PortStatus);
- this.Controls.Add(this.label_ServerStatus);
- this.Controls.Add(this.label_Server_ComStatus);
- this.Controls.Add(this.label96);
- this.Controls.Add(this.pictureBox2);
- this.Controls.Add(this.label45);
- this.Controls.Add(this.label44);
- this.Controls.Add(this.label43);
- this.Controls.Add(this.label_COM_Sta);
- this.Controls.Add(this.label_SystemTime);
- this.Controls.Add(this.label_BuildTime);
- this.Controls.Add(this.label_RecCount);
- this.Controls.Add(this.label23);
- this.Controls.Add(this.groupBox3);
- this.Controls.Add(this.groupBox2);
- this.Controls.Add(this.groupBox1);
- this.Controls.Add(this.statusStrip1);
- this.Controls.Add(this.menuStrip_Set);
- this.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.Margin = new System.Windows.Forms.Padding(4);
- this.MaximizeBox = false;
- this.Name = "Form1";
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
- this.Text = "Welling中置电机调试工具V1.2.5";
- this.Load += new System.EventHandler(this.Form1_Load);
- this.menuStrip_Set.ResumeLayout(false);
- this.menuStrip_Set.PerformLayout();
- this.statusStrip1.ResumeLayout(false);
- this.statusStrip1.PerformLayout();
- this.groupBox1.ResumeLayout(false);
- this.groupBox1.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_SpeedAdj)).EndInit();
- this.groupBox2.ResumeLayout(false);
- this.groupBox2.PerformLayout();
- this.groupBox3.ResumeLayout(false);
- this.tabControl1.ResumeLayout(false);
- this.tabPage_MotorParam.ResumeLayout(false);
- this.tabPage_BikeParam.ResumeLayout(false);
- this.tabPage_BikeParam.PerformLayout();
- this.tabPage_ControlParam.ResumeLayout(false);
- this.tabPage_SensorParam.ResumeLayout(false);
- this.tabPage_SensorParam.PerformLayout();
- this.tabPage_AssistParam.ResumeLayout(false);
- this.tabPage_AssistParam.PerformLayout();
- this.tabPage_DebugParam.ResumeLayout(false);
- this.tabPage_RecordInfo.ResumeLayout(false);
- this.tabPage_RecordInfo.PerformLayout();
- this.tabPage_OtherInfo.ResumeLayout(false);
- this.groupBox16.ResumeLayout(false);
- this.groupBox16.PerformLayout();
- this.groupBox18.ResumeLayout(false);
- this.groupBox18.PerformLayout();
- this.groupBox17.ResumeLayout(false);
- this.groupBox17.PerformLayout();
- this.groupBox9.ResumeLayout(false);
- this.groupBox8.ResumeLayout(false);
- this.groupBox8.PerformLayout();
- this.groupBox7.ResumeLayout(false);
- this.groupBox7.PerformLayout();
- this.groupBox6.ResumeLayout(false);
- this.groupBox6.PerformLayout();
- this.groupBox5.ResumeLayout(false);
- this.groupBox5.PerformLayout();
- this.groupBox4.ResumeLayout(false);
- this.groupBox4.PerformLayout();
- this.tabPage_OBC.ResumeLayout(false);
- this.groupBox26.ResumeLayout(false);
- this.groupBox15.ResumeLayout(false);
- this.groupBox15.PerformLayout();
- this.groupBox14.ResumeLayout(false);
- this.groupBox14.PerformLayout();
- this.groupBox13.ResumeLayout(false);
- this.groupBox13.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_OBC_OffTime)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_OBC_WheelAdj)).EndInit();
- this.groupBox12.ResumeLayout(false);
- this.groupBox11.ResumeLayout(false);
- this.groupBox11.PerformLayout();
- this.groupBox10.ResumeLayout(false);
- this.groupBox10.PerformLayout();
- this.tabPage_RAMorFLASH.ResumeLayout(false);
- this.tabPage_RAMorFLASH.PerformLayout();
- this.tabPage_FactoryMode.ResumeLayout(false);
- this.groupBox25.ResumeLayout(false);
- this.groupBox25.PerformLayout();
- this.groupBox24.ResumeLayout(false);
- this.groupBox24.PerformLayout();
- this.groupBox23.ResumeLayout(false);
- this.groupBox23.PerformLayout();
- this.groupBox22.ResumeLayout(false);
- this.groupBox22.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.trackBar_FacModeMotorSpeedAdj)).EndInit();
- this.groupBox21.ResumeLayout(false);
- this.groupBox21.PerformLayout();
- this.groupBox20.ResumeLayout(false);
- this.groupBox20.PerformLayout();
- this.groupBox19.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private MenuStrip menuStrip_Set;
- private ToolStripMenuItem 端口连接ToolStripMenuItem;
- private ToolStripMenuItem 端口号ToolStripMenuItem;
- private ToolStripMenuItem 波特率ToolStripMenuItem;
- private ToolStripMenuItem 工具箱ToolStripMenuItem;
- private ToolStripMenuItem 运行信息记录ToolStripMenuItem;
- private ToolStripMenuItem 关于ToolStripMenuItem;
- private ToolStripMenuItem 帮助ToolStripMenuItem;
- private ToolStripMenuItem 版本ToolStripMenuItem;
- private StatusStrip statusStrip1;
- private ToolStripStatusLabel toolStripStatusLabel1;
- private GroupBox groupBox1;
- private GroupBox groupBox2;
- private GroupBox groupBox3;
- private ToolStripMenuItem 连接ToolStripMenuItem;
- private NumericUpDown numericUpDown_SpeedAdj;
- private Label label4;
- private Label label3;
- private ComboBox comboBox_WorkMode;
- private Label label2;
- private Label label1;
- private Label label10;
- private Label label9;
- private Label label8;
- private Label label7;
- private Label label6;
- private Label label5;
- private Label label28;
- private Label label22;
- private Label label16;
- private Label label21;
- private Label label15;
- private Label label20;
- private Label label14;
- private Label label19;
- private Label label13;
- private Label label18;
- private Label label12;
- private Label label17;
- private Label label11;
- private ToolStripMenuItem 配置ToolStripMenuItem;
- private ToolStripMenuItem 写入存储ToolStripMenuItem;
- private ToolStripMenuItem 计算器ToolStripMenuItem;
- private ToolStripMenuItem 刷新ToolStripMenuItem;
- private ToolStripComboBox toolStripComboBox_ComNum;
- private ToolStripComboBox toolStripComboBox_Baudrate;
- public ComboBox comboBox_LightSwitch;
- public ComboBox comboBox_GearSt;
- private TextBox textBox_RunInfo_Power;
- private TextBox textBox_RunInfo_Current;
- private TextBox textBox_RunInfo_Vol;
- private TextBox textBox_RunInfo_MotorSpeed;
- private TextBox textBox_RunInfo_Cadence;
- private TextBox textBox_RunInfo_BikeSpeed;
- private TextBox textBox_ErrorCode;
- private TextBox textBox_RunInfo_Trip_Time;
- private TextBox textBox_RunInfo_Range;
- private TextBox textBox_RunInfo_Trip;
- private TextBox textBox_RunInfo_SOC;
- private TextBox textBox_RunInfo_T_Coil;
- private TextBox textBox_RunInfo_LightSwitch;
- private TextBox textBox_RunInfo_T_MCU;
- private TextBox textBox_RunInfo_GearSt;
- private TextBox textBox_RunInfo_T_PCB;
- private TextBox textBox_RunInfo_Dir;
- private TextBox textBox_RunInfo_AvgPower;
- private TextBox textBox_RunInfo_Torque;
- private Label label23;
- private Label label_RecCount;
- private Timer timer_1s;
- private Label label24;
- private TabControl tabControl1;
- private TabPage tabPage_MotorParam;
- private TabPage tabPage_BikeParam;
- private TabPage tabPage_ControlParam;
- private TabPage tabPage_SensorParam;
- private TabPage tabPage_AssistParam;
- private TabPage tabPage_DebugParam;
- private TabPage tabPage_RecordInfo;
- private TabPage tabPage_OtherInfo;
- private Button button_Write;
- private Button button_Read_MotorParam;
- private RichTextBox richTextBox_MotorParam;
- private Button button_WriteBikeParam;
- private Button button_ReadBikeParam;
- private RichTextBox richTextBox_BikeParam;
- private Button button_WriteControlParam;
- private Button button_ReadControlParam;
- private RichTextBox richTextBox_ControlParam;
- private Button button_WriteAssistParam;
- private Button button_ReadAssistParam;
- private RichTextBox richTextBox_AssistParam;
- private Button button_WriteDebugParam;
- private Button button_ReadDebugParam;
- private RichTextBox richTextBox_DebugParam;
- private Button button_SaveRecordInfo;
- private Button button_ReadRecord;
- private Button button_ExportLog;
- private RichTextBox richTextBox_Record;
- private Button button_Write_Cal;
- private Button button_WriteSensorParam;
- private Button button_ReadSensorParam;
- private RichTextBox richTextBox_SensorParam;
- private Label label25;
- private TextBox textBox_Load;
- private Label label27;
- private Label label26;
- private Label label29;
- private GroupBox groupBox4;
- private Button button_ReadVersion;
- private Button button_WriteSN;
- private Button button_WriteModel;
- private TextBox textBox_FW;
- private TextBox textBox_HW;
- private TextBox textBox_SN;
- private Label label33;
- private Label label32;
- private TextBox textBox_Model;
- private Label label31;
- private Label label30;
- private GroupBox groupBox6;
- private Button button_ReadUser3;
- private Button button_WriteUser3;
- private Button button_ReadUser2;
- private Button button_WriteUser2;
- private Button button_ReadUser1;
- private Button button_WriteUser1;
- private TextBox textBox_User3;
- private TextBox textBox_User2;
- private Label label35;
- private TextBox textBox_User1;
- private Label label36;
- private Label label38;
- private GroupBox groupBox5;
- private Button button_ReadKey;
- private Button button_WriteKey;
- private TextBox textBox_Key;
- private Label label37;
- private GroupBox groupBox8;
- private Button button_ReadOnLine;
- private TextBox textBox_Online;
- private Label label42;
- private GroupBox groupBox7;
- private Button button_ReadMAC;
- private Button button_WriteMac;
- private TextBox textBox_PP;
- private TextBox textBox_MACDate;
- private TextBox textBox_MACAdd;
- private Label label34;
- private Label label39;
- private TextBox textBox_MAC;
- private Label label40;
- private Label label41;
- private GroupBox groupBox9;
- private Button button_Recovery;
- private Button button_ClearLog;
- private Button button_Reset;
- private Button button_SystemClear;
- private Label label_BuildTime;
- private Label label_SystemTime;
- private Label label_COM_Sta;
- private Label label43;
- private Label label44;
- private Label label45;
- private Label label47;
- private ComboBox comboBox_AssistTorque;
- private ComboBox comboBox_AssistCadence;
- private ComboBox comboBox_TorqueSet;
- private TabPage tabPage_OBC;
- private CheckBox checkBox_OBC_StartSetGearSt;
- public ComboBox comboBox_OBC_SetGearST;
- private GroupBox groupBox15;
- private TextBox textBox_OBC_ODO_TIME;
- private Button button_OBC_ReadRideInfo;
- private TextBox textBox_OBC_ODO_KM;
- private Button button_OBC_ClearTrip;
- private TextBox textBox_OBC_TRIP_TIME;
- private Label label54;
- private TextBox textBox_OBC_TRIP_KM;
- private Label label52;
- private GroupBox groupBox14;
- private Button button_OBC_ReadVerInfo;
- private TextBox textBox_OBC_ReadFW;
- private TextBox textBox_OBC_ReadHW;
- private TextBox textBox_OBC_ReadSN;
- private Label label48;
- private Label label49;
- private TextBox textBox_OBC_ReadModel;
- private Label label50;
- private Label label51;
- private GroupBox groupBox13;
- private Button button_OBC_WriteUserInfo;
- private GroupBox groupBox12;
- private RichTextBox richTextBox_OBC_ReadUserInfo;
- private Button button_OBC_ReadUserInfo;
- private GroupBox groupBox11;
- private RichTextBox richTextBox_OBC_BMS_RunInfo;
- private CheckBox checkBox_OBC_StartReadBMS;
- private GroupBox groupBox10;
- private Label label56;
- private NumericUpDown numericUpDown_OBC_WheelAdj;
- private Label label59;
- public ComboBox comboBox_OBC_AssistFunc;
- public ComboBox comboBox_OBC_StartMode;
- private Label label58;
- private Label label57;
- private Label label60;
- public ComboBox comboBox_OBC_LightSw;
- private Label label61;
- private Label label62;
- private Button button_WriteTqSensorParam;
- private GroupBox groupBox16;
- private RadioButton radioButton_SIP_SaveYes;
- private RadioButton radioButton_SIP_SaveNo;
- private CheckBox checkBox_SaveYes;
- private Button button_ReadSaveFlag;
- private Button button_WriteSaveFlag;
- private GroupBox groupBox18;
- private GroupBox groupBox17;
- private RadioButton radioButton_EE_SaveYes;
- private RadioButton radioButton_EE_SaveNo;
- private Label label64;
- private NumericUpDown numericUpDown_OBC_OffTime;
- private Label label63;
- private TabPage tabPage_RAMorFLASH;
- private TextBox textBox_Address_End;
- private Label label66;
- private TextBox textBox_Address_Begin;
- private Label label65;
- private Button button_ReadRamFlash;
- private RichTextBox richTextBox_RamFlasgData;
- private TabPage tabPage_FactoryMode;
- private PictureBox pictureBox2;
- private GroupBox groupBox25;
- private GroupBox groupBox24;
- private GroupBox groupBox23;
- private GroupBox groupBox22;
- private GroupBox groupBox21;
- private GroupBox groupBox20;
- private GroupBox groupBox19;
- private Button button_FacModeInit;
- private Button buttonFacModeSet1;
- private TextBox textBox_FacModeSensorCal4;
- private TextBox textBox_FacModeSensorCal3;
- private TextBox textBox_FacModeSensorCal1;
- private TextBox textBox_FacModeSensorCal2;
- private TextBox textBox10;
- private Button button_FacModeSensorRead;
- private TextBox textBox_FacModeSensorADC0;
- private TextBox textBox_FacModeSensorADC4;
- private Button buttonFacModeSet2;
- private TextBox textBox_FacModeSensorADC3;
- private Button buttonFacModeSet3;
- private TextBox textBox_FacModeSensorADC1;
- private Button buttonFacModeSet4;
- private TextBox textBox_FacModeSensorADC2;
- private CheckBox checkBox_FacModeCheckNTC;
- private CheckBox checkBox_FacModeCheckVol;
- private RadioButton radioButton_FacModeDriverMtb;
- private RadioButton radioButton_FacModeDriverCity;
- private Button button_FacModeMotorRun;
- private Label label_FacModeMotorSpeedSet;
- private Label label67;
- private TrackBar trackBar_FacModeMotorSpeedAdj;
- private Label label74;
- private Label label73;
- private Label label72;
- private Label label71;
- private TextBox textBox_FacModeSpeedLimit;
- private Label label70;
- private TextBox textBox_FacModeWheelSize;
- private Label label69;
- private Button button_FacModeBikeParaSet;
- private Button button_FacModeBikeParaRead;
- private Button button_FacModeAssistParaSet;
- private Label label80;
- private Button button_FacModeAssistParaRead;
- private TextBox textBox_FacModeStartGain;
- private TextBox textBox_FacModeCadencePer;
- private Label label79;
- private Label label75;
- private TextBox textBox_FacModeCircuitK;
- private TextBox textBox_FacModeSpeedLimitEnd;
- private Label label78;
- private Label label76;
- private TextBox textBox_FacModeFltCounter;
- private TextBox textBox_FacModeSpeedLimitTh;
- private Label label77;
- private Label label84;
- private TextBox textBox_FacModeFW;
- private Button Button_FacModeReadVer;
- private Label label83;
- private TextBox textBox_FacModeHW;
- private Label label82;
- private TextBox textBox_FacModeNum;
- private Label label81;
- private TextBox textBox_FacModeName;
- private Button Button_FacModeSaveResult;
- private Button Button_FacModeSetMacDate;
- private ComboBox comboBox_FacModeStartMode;
- private ComboBox comboBox_FacModeLightVol;
- private ComboBox comboBox_FacModeAssist2;
- private ComboBox comboBox_FacModeAssist1;
- private CheckBox checkBox_FacModeCheckCadence;
- private CheckBox checkBox_FacModeCheckBikeSpeed;
- private Button button_FacModeLightSW;
- private Button button_FacModeWorkMode;
- private ToolStripMenuItem 页面保存ToolStripMenuItem;
- private Label label68;
- private Label label85;
- private TextBox textBox_SP;
- private Label label86;
- private TextBox textBox_FacModeSP;
- private Label label53;
- private TextBox textBox_OBC_ReadSP;
- private Button Button_FacModePowerOff;
- private GroupBox groupBox26;
- private Button button_OBC_ButtonSet;
- private Button button_OBC_ButtonLight;
- private Button button_OBC_ButtonWalk;
- private Button button_OBC_ButtonDec;
- private Button button_OBC_ButtonAcc;
- private Button button_OBC_ButtonPower;
- private TextBox textBox_TorqueReg;
- private Label label55;
- private CheckBox checkBox_ReadRanFlash_AutoSW;
- private CheckBox checkBox_ReadRanFlash_ChangeFormat;
- private CheckBox checkBox_ReadRanFlash_AutoClear;
- private Label label_MotorSensor;
- private Label label_Load;
- private Label label88;
- private TextBox textBox_LogAddrEnd;
- private TextBox textBox_LogAddrBegin;
- private Label label89;
- private Label label_LogAddrBegin;
- private Label label87;
- private TextBox textBox_FacModeGit;
- private ComboBox comboBox_TailLightVol;
- private Label label92;
- private ComboBox comboBox_FrontLightVol;
- private Label label91;
- private ComboBox comboBox_TailLightMode;
- private Label label90;
- private TextBox textBox_PowerOffDelay;
- private TextBox textBox_PowerOnDelay;
- private Label label93;
- private Label label94;
- private TextBox textBox_AutoPowerOff;
- private Label label95;
- private ToolStripMenuItem 系统开关ToolStripMenuItem;
- private ToolStripMenuItem 开机ToolStripMenuItem;
- private ToolStripMenuItem 关机ToolStripMenuItem;
- private ToolStripMenuItem 其它配置项ToolStripMenuItem;
- private ToolStripMenuItem 连接开机ToolStripMenuItem;
- private ToolStripMenuItem 断开关机ToolStripMenuItem;
- private ToolStripMenuItem 识别通讯盒ToolStripMenuItem;
- private ToolStripMenuItem 服务器配置ToolStripMenuItem;
- private ToolStripMenuItem IP地址ToolStripMenuItem;
- private ToolStripMenuItem 端口ToolStripMenuItem;
- private ToolStripMenuItem 用户名ToolStripMenuItem;
- private ToolStripMenuItem 密码ToolStripMenuItem;
- private ToolStripTextBox toolStripTextBox_ServerIP;
- private ToolStripTextBox toolStripTextBox_ServerPort;
- private ToolStripTextBox toolStripTextBox_ServerUser;
- private ToolStripTextBox toolStripTextBox_ServerPasswd;
- private ToolStripSeparator toolStripSeparator1;
- private ToolStripMenuItem 存储路径ToolStripMenuItem;
- private ToolStripTextBox toolStripTextBox_ServerPath;
- private Label label96;
- private Label label_Server_ComStatus;
- private Label label_ServerStatus;
- private Label label_PortStatus;
- private ToolStripMenuItem 离线使用ToolStripMenuItem;
- private ToolStripMenuItem 允许ToolStripMenuItem;
- private ToolStripMenuItem 不允许ToolStripMenuItem;
- private ToolStripMenuItem 生产信息ToolStripMenuItem;
- private ToolStripMenuItem 生产商ToolStripMenuItem;
- private ToolStripMenuItem 生产地ToolStripMenuItem;
- private ToolStripMenuItem 生产日期ToolStripMenuItem;
- private ToolStripMenuItem 产品标识ToolStripMenuItem;
- private ToolStripTextBox toolStripTextBox_MAC;
- private ToolStripTextBox toolStripTextBoxMACAddr;
- private ToolStripTextBox toolStripTextBox_MACDate;
- private ToolStripTextBox toolStripTextBox_MACPD;
- private Button Button_FacModeSetNum;
- private Button button_FacModeSetName;
- private Button button_ScanCode;
- }
- }
|