Form1.Designer.cs 284 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097
  1. using System.Windows.Forms;
  2. namespace Welling_Motor_Debug_Tool
  3. {
  4. partial class Form1
  5. {
  6. /// <summary>
  7. /// Required designer variable.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// Clean up any resources being used.
  12. /// </summary>
  13. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region Windows Form Designer generated code
  23. /// <summary>
  24. /// Required method for Designer support - do not modify
  25. /// the contents of this method with the code editor.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.components = new System.ComponentModel.Container();
  30. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
  31. this.menuStrip_Set = new System.Windows.Forms.MenuStrip();
  32. this.端口连接ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  33. this.刷新ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  34. this.端口号ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  35. this.toolStripComboBox_ComNum = new System.Windows.Forms.ToolStripComboBox();
  36. this.波特率ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  37. this.toolStripComboBox_Baudrate = new System.Windows.Forms.ToolStripComboBox();
  38. this.连接ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  39. this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
  40. this.其它配置项ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  41. this.连接开机ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  42. this.断开关机ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  43. this.识别通讯盒ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  44. this.配置ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  45. this.写入存储ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  46. this.离线使用ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  47. this.允许ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  48. this.不允许ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  49. this.服务器配置ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  50. this.IP地址ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  51. this.toolStripTextBox_ServerIP = new System.Windows.Forms.ToolStripTextBox();
  52. this.端口ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  53. this.toolStripTextBox_ServerPort = new System.Windows.Forms.ToolStripTextBox();
  54. this.用户名ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  55. this.toolStripTextBox_ServerUser = new System.Windows.Forms.ToolStripTextBox();
  56. this.密码ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  57. this.toolStripTextBox_ServerPasswd = new System.Windows.Forms.ToolStripTextBox();
  58. this.存储路径ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  59. this.toolStripTextBox_ServerPath = new System.Windows.Forms.ToolStripTextBox();
  60. this.生产信息ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  61. this.生产商ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  62. this.toolStripTextBox_MAC = new System.Windows.Forms.ToolStripTextBox();
  63. this.生产地ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  64. this.toolStripTextBoxMACAddr = new System.Windows.Forms.ToolStripTextBox();
  65. this.生产日期ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  66. this.toolStripTextBox_MACDate = new System.Windows.Forms.ToolStripTextBox();
  67. this.产品标识ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  68. this.toolStripTextBox_MACPD = new System.Windows.Forms.ToolStripTextBox();
  69. this.工具箱ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  70. this.运行信息记录ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  71. this.计算器ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  72. this.页面保存ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  73. this.系统开关ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  74. this.开机ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  75. this.关机ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  76. this.关于ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  77. this.帮助ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  78. this.版本ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  79. this.statusStrip1 = new System.Windows.Forms.StatusStrip();
  80. this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
  81. this.groupBox1 = new System.Windows.Forms.GroupBox();
  82. this.label24 = new System.Windows.Forms.Label();
  83. this.numericUpDown_SpeedAdj = new System.Windows.Forms.NumericUpDown();
  84. this.label4 = new System.Windows.Forms.Label();
  85. this.comboBox_LightSwitch = new System.Windows.Forms.ComboBox();
  86. this.label3 = new System.Windows.Forms.Label();
  87. this.comboBox_GearSt = new System.Windows.Forms.ComboBox();
  88. this.comboBox_WorkMode = new System.Windows.Forms.ComboBox();
  89. this.label2 = new System.Windows.Forms.Label();
  90. this.label1 = new System.Windows.Forms.Label();
  91. this.groupBox2 = new System.Windows.Forms.GroupBox();
  92. this.textBox_RunInfo_BikeSpeed = new System.Windows.Forms.TextBox();
  93. this.textBox_RunInfo_MotorSpeed = new System.Windows.Forms.TextBox();
  94. this.textBox_RunInfo_Cadence = new System.Windows.Forms.TextBox();
  95. this.textBox_TorqueReg = new System.Windows.Forms.TextBox();
  96. this.textBox_RunInfo_Torque = new System.Windows.Forms.TextBox();
  97. this.textBox_RunInfo_Dir = new System.Windows.Forms.TextBox();
  98. this.textBox_RunInfo_Vol = new System.Windows.Forms.TextBox();
  99. this.textBox_RunInfo_Current = new System.Windows.Forms.TextBox();
  100. this.textBox_RunInfo_Power = new System.Windows.Forms.TextBox();
  101. this.textBox_RunInfo_SOC = new System.Windows.Forms.TextBox();
  102. this.textBox_RunInfo_T_PCB = new System.Windows.Forms.TextBox();
  103. this.textBox_RunInfo_T_MCU = new System.Windows.Forms.TextBox();
  104. this.textBox_RunInfo_T_Coil = new System.Windows.Forms.TextBox();
  105. this.textBox_RunInfo_GearSt = new System.Windows.Forms.TextBox();
  106. this.textBox_RunInfo_LightSwitch = new System.Windows.Forms.TextBox();
  107. this.textBox_RunInfo_Range = new System.Windows.Forms.TextBox();
  108. this.textBox_RunInfo_AvgPower = new System.Windows.Forms.TextBox();
  109. this.textBox_RunInfo_Trip = new System.Windows.Forms.TextBox();
  110. this.textBox_RunInfo_Trip_Time = new System.Windows.Forms.TextBox();
  111. this.textBox_ErrorCode = new System.Windows.Forms.TextBox();
  112. this.label55 = new System.Windows.Forms.Label();
  113. this.label28 = new System.Windows.Forms.Label();
  114. this.label22 = new System.Windows.Forms.Label();
  115. this.label16 = new System.Windows.Forms.Label();
  116. this.label10 = new System.Windows.Forms.Label();
  117. this.label21 = new System.Windows.Forms.Label();
  118. this.label15 = new System.Windows.Forms.Label();
  119. this.label9 = new System.Windows.Forms.Label();
  120. this.label20 = new System.Windows.Forms.Label();
  121. this.label14 = new System.Windows.Forms.Label();
  122. this.label8 = new System.Windows.Forms.Label();
  123. this.label19 = new System.Windows.Forms.Label();
  124. this.label13 = new System.Windows.Forms.Label();
  125. this.label7 = new System.Windows.Forms.Label();
  126. this.label18 = new System.Windows.Forms.Label();
  127. this.label12 = new System.Windows.Forms.Label();
  128. this.label6 = new System.Windows.Forms.Label();
  129. this.label17 = new System.Windows.Forms.Label();
  130. this.label11 = new System.Windows.Forms.Label();
  131. this.label5 = new System.Windows.Forms.Label();
  132. this.groupBox3 = new System.Windows.Forms.GroupBox();
  133. this.tabControl1 = new System.Windows.Forms.TabControl();
  134. this.tabPage_MotorParam = new System.Windows.Forms.TabPage();
  135. this.button_Write = new System.Windows.Forms.Button();
  136. this.button_Read_MotorParam = new System.Windows.Forms.Button();
  137. this.richTextBox_MotorParam = new System.Windows.Forms.RichTextBox();
  138. this.tabPage_BikeParam = new System.Windows.Forms.TabPage();
  139. this.textBox_AutoPowerOff = new System.Windows.Forms.TextBox();
  140. this.label95 = new System.Windows.Forms.Label();
  141. this.textBox_PowerOffDelay = new System.Windows.Forms.TextBox();
  142. this.textBox_PowerOnDelay = new System.Windows.Forms.TextBox();
  143. this.label93 = new System.Windows.Forms.Label();
  144. this.label94 = new System.Windows.Forms.Label();
  145. this.comboBox_TailLightVol = new System.Windows.Forms.ComboBox();
  146. this.label92 = new System.Windows.Forms.Label();
  147. this.comboBox_FrontLightVol = new System.Windows.Forms.ComboBox();
  148. this.label91 = new System.Windows.Forms.Label();
  149. this.comboBox_TailLightMode = new System.Windows.Forms.ComboBox();
  150. this.label90 = new System.Windows.Forms.Label();
  151. this.button_WriteBikeParam = new System.Windows.Forms.Button();
  152. this.button_ReadBikeParam = new System.Windows.Forms.Button();
  153. this.richTextBox_BikeParam = new System.Windows.Forms.RichTextBox();
  154. this.tabPage_ControlParam = new System.Windows.Forms.TabPage();
  155. this.button_WriteControlParam = new System.Windows.Forms.Button();
  156. this.button_ReadControlParam = new System.Windows.Forms.Button();
  157. this.richTextBox_ControlParam = new System.Windows.Forms.RichTextBox();
  158. this.tabPage_SensorParam = new System.Windows.Forms.TabPage();
  159. this.button_WriteTqSensorParam = new System.Windows.Forms.Button();
  160. this.comboBox_TorqueSet = new System.Windows.Forms.ComboBox();
  161. this.label29 = new System.Windows.Forms.Label();
  162. this.textBox_Load = new System.Windows.Forms.TextBox();
  163. this.label27 = new System.Windows.Forms.Label();
  164. this.label26 = new System.Windows.Forms.Label();
  165. this.button_Write_Cal = new System.Windows.Forms.Button();
  166. this.button_WriteSensorParam = new System.Windows.Forms.Button();
  167. this.button_ReadSensorParam = new System.Windows.Forms.Button();
  168. this.richTextBox_SensorParam = new System.Windows.Forms.RichTextBox();
  169. this.tabPage_AssistParam = new System.Windows.Forms.TabPage();
  170. this.label62 = new System.Windows.Forms.Label();
  171. this.label47 = new System.Windows.Forms.Label();
  172. this.comboBox_AssistTorque = new System.Windows.Forms.ComboBox();
  173. this.comboBox_AssistCadence = new System.Windows.Forms.ComboBox();
  174. this.label25 = new System.Windows.Forms.Label();
  175. this.button_WriteAssistParam = new System.Windows.Forms.Button();
  176. this.button_ReadAssistParam = new System.Windows.Forms.Button();
  177. this.richTextBox_AssistParam = new System.Windows.Forms.RichTextBox();
  178. this.tabPage_DebugParam = new System.Windows.Forms.TabPage();
  179. this.button_WriteDebugParam = new System.Windows.Forms.Button();
  180. this.button_ReadDebugParam = new System.Windows.Forms.Button();
  181. this.richTextBox_DebugParam = new System.Windows.Forms.RichTextBox();
  182. this.tabPage_RecordInfo = new System.Windows.Forms.TabPage();
  183. this.label89 = new System.Windows.Forms.Label();
  184. this.label88 = new System.Windows.Forms.Label();
  185. this.textBox_LogAddrEnd = new System.Windows.Forms.TextBox();
  186. this.label_LogAddrBegin = new System.Windows.Forms.Label();
  187. this.textBox_LogAddrBegin = new System.Windows.Forms.TextBox();
  188. this.button_SaveRecordInfo = new System.Windows.Forms.Button();
  189. this.button_ReadRecord = new System.Windows.Forms.Button();
  190. this.button_ExportLog = new System.Windows.Forms.Button();
  191. this.richTextBox_Record = new System.Windows.Forms.RichTextBox();
  192. this.tabPage_OtherInfo = new System.Windows.Forms.TabPage();
  193. this.groupBox16 = new System.Windows.Forms.GroupBox();
  194. this.groupBox18 = new System.Windows.Forms.GroupBox();
  195. this.radioButton_SIP_SaveNo = new System.Windows.Forms.RadioButton();
  196. this.radioButton_SIP_SaveYes = new System.Windows.Forms.RadioButton();
  197. this.groupBox17 = new System.Windows.Forms.GroupBox();
  198. this.radioButton_EE_SaveYes = new System.Windows.Forms.RadioButton();
  199. this.radioButton_EE_SaveNo = new System.Windows.Forms.RadioButton();
  200. this.button_ReadSaveFlag = new System.Windows.Forms.Button();
  201. this.button_WriteSaveFlag = new System.Windows.Forms.Button();
  202. this.checkBox_SaveYes = new System.Windows.Forms.CheckBox();
  203. this.groupBox9 = new System.Windows.Forms.GroupBox();
  204. this.button_Recovery = new System.Windows.Forms.Button();
  205. this.button_ClearLog = new System.Windows.Forms.Button();
  206. this.button_Reset = new System.Windows.Forms.Button();
  207. this.button_SystemClear = new System.Windows.Forms.Button();
  208. this.groupBox8 = new System.Windows.Forms.GroupBox();
  209. this.button_ReadOnLine = new System.Windows.Forms.Button();
  210. this.textBox_Online = new System.Windows.Forms.TextBox();
  211. this.label42 = new System.Windows.Forms.Label();
  212. this.groupBox7 = new System.Windows.Forms.GroupBox();
  213. this.button_ReadMAC = new System.Windows.Forms.Button();
  214. this.button_WriteMac = new System.Windows.Forms.Button();
  215. this.textBox_PP = new System.Windows.Forms.TextBox();
  216. this.textBox_MACDate = new System.Windows.Forms.TextBox();
  217. this.textBox_MACAdd = new System.Windows.Forms.TextBox();
  218. this.label34 = new System.Windows.Forms.Label();
  219. this.label39 = new System.Windows.Forms.Label();
  220. this.textBox_MAC = new System.Windows.Forms.TextBox();
  221. this.label40 = new System.Windows.Forms.Label();
  222. this.label41 = new System.Windows.Forms.Label();
  223. this.groupBox6 = new System.Windows.Forms.GroupBox();
  224. this.button_ReadUser3 = new System.Windows.Forms.Button();
  225. this.button_WriteUser3 = new System.Windows.Forms.Button();
  226. this.button_ReadUser2 = new System.Windows.Forms.Button();
  227. this.button_WriteUser2 = new System.Windows.Forms.Button();
  228. this.button_ReadUser1 = new System.Windows.Forms.Button();
  229. this.button_WriteUser1 = new System.Windows.Forms.Button();
  230. this.textBox_User3 = new System.Windows.Forms.TextBox();
  231. this.textBox_User2 = new System.Windows.Forms.TextBox();
  232. this.label35 = new System.Windows.Forms.Label();
  233. this.textBox_User1 = new System.Windows.Forms.TextBox();
  234. this.label36 = new System.Windows.Forms.Label();
  235. this.label38 = new System.Windows.Forms.Label();
  236. this.groupBox5 = new System.Windows.Forms.GroupBox();
  237. this.button_ReadKey = new System.Windows.Forms.Button();
  238. this.button_WriteKey = new System.Windows.Forms.Button();
  239. this.textBox_Key = new System.Windows.Forms.TextBox();
  240. this.label37 = new System.Windows.Forms.Label();
  241. this.groupBox4 = new System.Windows.Forms.GroupBox();
  242. this.label85 = new System.Windows.Forms.Label();
  243. this.textBox_SP = new System.Windows.Forms.TextBox();
  244. this.button_ReadVersion = new System.Windows.Forms.Button();
  245. this.button_WriteSN = new System.Windows.Forms.Button();
  246. this.button_WriteModel = new System.Windows.Forms.Button();
  247. this.textBox_FW = new System.Windows.Forms.TextBox();
  248. this.textBox_HW = new System.Windows.Forms.TextBox();
  249. this.textBox_SN = new System.Windows.Forms.TextBox();
  250. this.label33 = new System.Windows.Forms.Label();
  251. this.label32 = new System.Windows.Forms.Label();
  252. this.textBox_Model = new System.Windows.Forms.TextBox();
  253. this.label31 = new System.Windows.Forms.Label();
  254. this.label30 = new System.Windows.Forms.Label();
  255. this.tabPage_OBC = new System.Windows.Forms.TabPage();
  256. this.groupBox26 = new System.Windows.Forms.GroupBox();
  257. this.button_OBC_ButtonSet = new System.Windows.Forms.Button();
  258. this.button_OBC_ButtonLight = new System.Windows.Forms.Button();
  259. this.button_OBC_ButtonWalk = new System.Windows.Forms.Button();
  260. this.button_OBC_ButtonDec = new System.Windows.Forms.Button();
  261. this.button_OBC_ButtonAcc = new System.Windows.Forms.Button();
  262. this.button_OBC_ButtonPower = new System.Windows.Forms.Button();
  263. this.groupBox15 = new System.Windows.Forms.GroupBox();
  264. this.textBox_OBC_ODO_TIME = new System.Windows.Forms.TextBox();
  265. this.button_OBC_ReadRideInfo = new System.Windows.Forms.Button();
  266. this.textBox_OBC_ODO_KM = new System.Windows.Forms.TextBox();
  267. this.button_OBC_ClearTrip = new System.Windows.Forms.Button();
  268. this.textBox_OBC_TRIP_TIME = new System.Windows.Forms.TextBox();
  269. this.label54 = new System.Windows.Forms.Label();
  270. this.textBox_OBC_TRIP_KM = new System.Windows.Forms.TextBox();
  271. this.label52 = new System.Windows.Forms.Label();
  272. this.groupBox14 = new System.Windows.Forms.GroupBox();
  273. this.label53 = new System.Windows.Forms.Label();
  274. this.textBox_OBC_ReadSP = new System.Windows.Forms.TextBox();
  275. this.button_OBC_ReadVerInfo = new System.Windows.Forms.Button();
  276. this.textBox_OBC_ReadFW = new System.Windows.Forms.TextBox();
  277. this.textBox_OBC_ReadHW = new System.Windows.Forms.TextBox();
  278. this.textBox_OBC_ReadSN = new System.Windows.Forms.TextBox();
  279. this.label48 = new System.Windows.Forms.Label();
  280. this.label49 = new System.Windows.Forms.Label();
  281. this.textBox_OBC_ReadModel = new System.Windows.Forms.TextBox();
  282. this.label50 = new System.Windows.Forms.Label();
  283. this.label51 = new System.Windows.Forms.Label();
  284. this.groupBox13 = new System.Windows.Forms.GroupBox();
  285. this.label64 = new System.Windows.Forms.Label();
  286. this.numericUpDown_OBC_OffTime = new System.Windows.Forms.NumericUpDown();
  287. this.label63 = new System.Windows.Forms.Label();
  288. this.numericUpDown_OBC_WheelAdj = new System.Windows.Forms.NumericUpDown();
  289. this.label59 = new System.Windows.Forms.Label();
  290. this.comboBox_OBC_AssistFunc = new System.Windows.Forms.ComboBox();
  291. this.comboBox_OBC_StartMode = new System.Windows.Forms.ComboBox();
  292. this.label58 = new System.Windows.Forms.Label();
  293. this.label57 = new System.Windows.Forms.Label();
  294. this.button_OBC_WriteUserInfo = new System.Windows.Forms.Button();
  295. this.label56 = new System.Windows.Forms.Label();
  296. this.groupBox12 = new System.Windows.Forms.GroupBox();
  297. this.richTextBox_OBC_ReadUserInfo = new System.Windows.Forms.RichTextBox();
  298. this.button_OBC_ReadUserInfo = new System.Windows.Forms.Button();
  299. this.groupBox11 = new System.Windows.Forms.GroupBox();
  300. this.richTextBox_OBC_BMS_RunInfo = new System.Windows.Forms.RichTextBox();
  301. this.checkBox_OBC_StartReadBMS = new System.Windows.Forms.CheckBox();
  302. this.groupBox10 = new System.Windows.Forms.GroupBox();
  303. this.label60 = new System.Windows.Forms.Label();
  304. this.comboBox_OBC_LightSw = new System.Windows.Forms.ComboBox();
  305. this.label61 = new System.Windows.Forms.Label();
  306. this.comboBox_OBC_SetGearST = new System.Windows.Forms.ComboBox();
  307. this.checkBox_OBC_StartSetGearSt = new System.Windows.Forms.CheckBox();
  308. this.tabPage_RAMorFLASH = new System.Windows.Forms.TabPage();
  309. this.checkBox_ReadRanFlash_ChangeFormat = new System.Windows.Forms.CheckBox();
  310. this.checkBox_ReadRanFlash_AutoClear = new System.Windows.Forms.CheckBox();
  311. this.checkBox_ReadRanFlash_AutoSW = new System.Windows.Forms.CheckBox();
  312. this.textBox_Address_End = new System.Windows.Forms.TextBox();
  313. this.label66 = new System.Windows.Forms.Label();
  314. this.textBox_Address_Begin = new System.Windows.Forms.TextBox();
  315. this.label65 = new System.Windows.Forms.Label();
  316. this.button_ReadRamFlash = new System.Windows.Forms.Button();
  317. this.richTextBox_RamFlasgData = new System.Windows.Forms.RichTextBox();
  318. this.tabPage_FactoryMode = new System.Windows.Forms.TabPage();
  319. this.Button_FacModePowerOff = new System.Windows.Forms.Button();
  320. this.Button_FacModeSaveResult = new System.Windows.Forms.Button();
  321. this.Button_FacModeSetMacDate = new System.Windows.Forms.Button();
  322. this.groupBox25 = new System.Windows.Forms.GroupBox();
  323. this.label87 = new System.Windows.Forms.Label();
  324. this.textBox_FacModeGit = new System.Windows.Forms.TextBox();
  325. this.label86 = new System.Windows.Forms.Label();
  326. this.textBox_FacModeSP = new System.Windows.Forms.TextBox();
  327. this.label68 = new System.Windows.Forms.Label();
  328. this.label84 = new System.Windows.Forms.Label();
  329. this.textBox_FacModeFW = new System.Windows.Forms.TextBox();
  330. this.Button_FacModeReadVer = new System.Windows.Forms.Button();
  331. this.label83 = new System.Windows.Forms.Label();
  332. this.textBox_FacModeHW = new System.Windows.Forms.TextBox();
  333. this.label82 = new System.Windows.Forms.Label();
  334. this.textBox_FacModeNum = new System.Windows.Forms.TextBox();
  335. this.label81 = new System.Windows.Forms.Label();
  336. this.textBox_FacModeName = new System.Windows.Forms.TextBox();
  337. this.groupBox24 = new System.Windows.Forms.GroupBox();
  338. this.button_FacModeAssistParaSet = new System.Windows.Forms.Button();
  339. this.label80 = new System.Windows.Forms.Label();
  340. this.button_FacModeAssistParaRead = new System.Windows.Forms.Button();
  341. this.textBox_FacModeStartGain = new System.Windows.Forms.TextBox();
  342. this.textBox_FacModeCadencePer = new System.Windows.Forms.TextBox();
  343. this.label79 = new System.Windows.Forms.Label();
  344. this.label75 = new System.Windows.Forms.Label();
  345. this.textBox_FacModeCircuitK = new System.Windows.Forms.TextBox();
  346. this.textBox_FacModeSpeedLimitEnd = new System.Windows.Forms.TextBox();
  347. this.label78 = new System.Windows.Forms.Label();
  348. this.label76 = new System.Windows.Forms.Label();
  349. this.textBox_FacModeFltCounter = new System.Windows.Forms.TextBox();
  350. this.textBox_FacModeSpeedLimitTh = new System.Windows.Forms.TextBox();
  351. this.label77 = new System.Windows.Forms.Label();
  352. this.groupBox23 = new System.Windows.Forms.GroupBox();
  353. this.comboBox_FacModeStartMode = new System.Windows.Forms.ComboBox();
  354. this.comboBox_FacModeLightVol = new System.Windows.Forms.ComboBox();
  355. this.comboBox_FacModeAssist2 = new System.Windows.Forms.ComboBox();
  356. this.comboBox_FacModeAssist1 = new System.Windows.Forms.ComboBox();
  357. this.button_FacModeBikeParaSet = new System.Windows.Forms.Button();
  358. this.button_FacModeBikeParaRead = new System.Windows.Forms.Button();
  359. this.label74 = new System.Windows.Forms.Label();
  360. this.label73 = new System.Windows.Forms.Label();
  361. this.label72 = new System.Windows.Forms.Label();
  362. this.label71 = new System.Windows.Forms.Label();
  363. this.textBox_FacModeSpeedLimit = new System.Windows.Forms.TextBox();
  364. this.label70 = new System.Windows.Forms.Label();
  365. this.textBox_FacModeWheelSize = new System.Windows.Forms.TextBox();
  366. this.label69 = new System.Windows.Forms.Label();
  367. this.groupBox22 = new System.Windows.Forms.GroupBox();
  368. this.label_MotorSensor = new System.Windows.Forms.Label();
  369. this.label_Load = new System.Windows.Forms.Label();
  370. this.button_FacModeLightSW = new System.Windows.Forms.Button();
  371. this.label_FacModeMotorSpeedSet = new System.Windows.Forms.Label();
  372. this.label67 = new System.Windows.Forms.Label();
  373. this.trackBar_FacModeMotorSpeedAdj = new System.Windows.Forms.TrackBar();
  374. this.button_FacModeMotorRun = new System.Windows.Forms.Button();
  375. this.radioButton_FacModeDriverMtb = new System.Windows.Forms.RadioButton();
  376. this.radioButton_FacModeDriverCity = new System.Windows.Forms.RadioButton();
  377. this.groupBox21 = new System.Windows.Forms.GroupBox();
  378. this.button_FacModeWorkMode = new System.Windows.Forms.Button();
  379. this.checkBox_FacModeCheckCadence = new System.Windows.Forms.CheckBox();
  380. this.checkBox_FacModeCheckBikeSpeed = new System.Windows.Forms.CheckBox();
  381. this.checkBox_FacModeCheckNTC = new System.Windows.Forms.CheckBox();
  382. this.checkBox_FacModeCheckVol = new System.Windows.Forms.CheckBox();
  383. this.groupBox20 = new System.Windows.Forms.GroupBox();
  384. this.textBox10 = new System.Windows.Forms.TextBox();
  385. this.button_FacModeSensorRead = new System.Windows.Forms.Button();
  386. this.textBox_FacModeSensorADC0 = new System.Windows.Forms.TextBox();
  387. this.textBox_FacModeSensorADC4 = new System.Windows.Forms.TextBox();
  388. this.buttonFacModeSet1 = new System.Windows.Forms.Button();
  389. this.buttonFacModeSet2 = new System.Windows.Forms.Button();
  390. this.textBox_FacModeSensorADC3 = new System.Windows.Forms.TextBox();
  391. this.buttonFacModeSet3 = new System.Windows.Forms.Button();
  392. this.textBox_FacModeSensorADC1 = new System.Windows.Forms.TextBox();
  393. this.buttonFacModeSet4 = new System.Windows.Forms.Button();
  394. this.textBox_FacModeSensorADC2 = new System.Windows.Forms.TextBox();
  395. this.textBox_FacModeSensorCal4 = new System.Windows.Forms.TextBox();
  396. this.textBox_FacModeSensorCal3 = new System.Windows.Forms.TextBox();
  397. this.textBox_FacModeSensorCal1 = new System.Windows.Forms.TextBox();
  398. this.textBox_FacModeSensorCal2 = new System.Windows.Forms.TextBox();
  399. this.groupBox19 = new System.Windows.Forms.GroupBox();
  400. this.button_FacModeInit = new System.Windows.Forms.Button();
  401. this.label23 = new System.Windows.Forms.Label();
  402. this.label_RecCount = new System.Windows.Forms.Label();
  403. this.timer_1s = new System.Windows.Forms.Timer(this.components);
  404. this.label_BuildTime = new System.Windows.Forms.Label();
  405. this.label_SystemTime = new System.Windows.Forms.Label();
  406. this.label_COM_Sta = new System.Windows.Forms.Label();
  407. this.label43 = new System.Windows.Forms.Label();
  408. this.label44 = new System.Windows.Forms.Label();
  409. this.label45 = new System.Windows.Forms.Label();
  410. this.label96 = new System.Windows.Forms.Label();
  411. this.label_Server_ComStatus = new System.Windows.Forms.Label();
  412. this.label_ServerStatus = new System.Windows.Forms.Label();
  413. this.label_PortStatus = new System.Windows.Forms.Label();
  414. this.Button_FacModeSetNum = new System.Windows.Forms.Button();
  415. this.button_FacModeSetName = new System.Windows.Forms.Button();
  416. this.button_ScanCode = new System.Windows.Forms.Button();
  417. this.pictureBox2 = new System.Windows.Forms.PictureBox();
  418. this.menuStrip_Set.SuspendLayout();
  419. this.statusStrip1.SuspendLayout();
  420. this.groupBox1.SuspendLayout();
  421. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_SpeedAdj)).BeginInit();
  422. this.groupBox2.SuspendLayout();
  423. this.groupBox3.SuspendLayout();
  424. this.tabControl1.SuspendLayout();
  425. this.tabPage_MotorParam.SuspendLayout();
  426. this.tabPage_BikeParam.SuspendLayout();
  427. this.tabPage_ControlParam.SuspendLayout();
  428. this.tabPage_SensorParam.SuspendLayout();
  429. this.tabPage_AssistParam.SuspendLayout();
  430. this.tabPage_DebugParam.SuspendLayout();
  431. this.tabPage_RecordInfo.SuspendLayout();
  432. this.tabPage_OtherInfo.SuspendLayout();
  433. this.groupBox16.SuspendLayout();
  434. this.groupBox18.SuspendLayout();
  435. this.groupBox17.SuspendLayout();
  436. this.groupBox9.SuspendLayout();
  437. this.groupBox8.SuspendLayout();
  438. this.groupBox7.SuspendLayout();
  439. this.groupBox6.SuspendLayout();
  440. this.groupBox5.SuspendLayout();
  441. this.groupBox4.SuspendLayout();
  442. this.tabPage_OBC.SuspendLayout();
  443. this.groupBox26.SuspendLayout();
  444. this.groupBox15.SuspendLayout();
  445. this.groupBox14.SuspendLayout();
  446. this.groupBox13.SuspendLayout();
  447. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_OBC_OffTime)).BeginInit();
  448. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_OBC_WheelAdj)).BeginInit();
  449. this.groupBox12.SuspendLayout();
  450. this.groupBox11.SuspendLayout();
  451. this.groupBox10.SuspendLayout();
  452. this.tabPage_RAMorFLASH.SuspendLayout();
  453. this.tabPage_FactoryMode.SuspendLayout();
  454. this.groupBox25.SuspendLayout();
  455. this.groupBox24.SuspendLayout();
  456. this.groupBox23.SuspendLayout();
  457. this.groupBox22.SuspendLayout();
  458. ((System.ComponentModel.ISupportInitialize)(this.trackBar_FacModeMotorSpeedAdj)).BeginInit();
  459. this.groupBox21.SuspendLayout();
  460. this.groupBox20.SuspendLayout();
  461. this.groupBox19.SuspendLayout();
  462. ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
  463. this.SuspendLayout();
  464. //
  465. // menuStrip_Set
  466. //
  467. this.menuStrip_Set.BackColor = System.Drawing.Color.DodgerBlue;
  468. this.menuStrip_Set.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F);
  469. this.menuStrip_Set.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  470. this.端口连接ToolStripMenuItem,
  471. this.配置ToolStripMenuItem,
  472. this.工具箱ToolStripMenuItem,
  473. this.关于ToolStripMenuItem});
  474. this.menuStrip_Set.Location = new System.Drawing.Point(0, 0);
  475. this.menuStrip_Set.Name = "menuStrip_Set";
  476. this.menuStrip_Set.Size = new System.Drawing.Size(1034, 29);
  477. this.menuStrip_Set.TabIndex = 1;
  478. this.menuStrip_Set.Text = "menuStrip2";
  479. //
  480. // 端口连接ToolStripMenuItem
  481. //
  482. this.端口连接ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  483. this.刷新ToolStripMenuItem,
  484. this.端口号ToolStripMenuItem,
  485. this.波特率ToolStripMenuItem,
  486. this.连接ToolStripMenuItem,
  487. this.toolStripSeparator1,
  488. this.其它配置项ToolStripMenuItem});
  489. this.端口连接ToolStripMenuItem.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  490. this.端口连接ToolStripMenuItem.Name = "端口连接ToolStripMenuItem";
  491. this.端口连接ToolStripMenuItem.Size = new System.Drawing.Size(86, 25);
  492. this.端口连接ToolStripMenuItem.Text = "端口设置";
  493. //
  494. // 刷新ToolStripMenuItem
  495. //
  496. this.刷新ToolStripMenuItem.Name = "刷新ToolStripMenuItem";
  497. this.刷新ToolStripMenuItem.Size = new System.Drawing.Size(160, 26);
  498. this.刷新ToolStripMenuItem.Text = "刷新";
  499. this.刷新ToolStripMenuItem.Click += new System.EventHandler(this.刷新ToolStripMenuItem_Click);
  500. //
  501. // 端口号ToolStripMenuItem
  502. //
  503. this.端口号ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  504. this.toolStripComboBox_ComNum});
  505. this.端口号ToolStripMenuItem.Name = "端口号ToolStripMenuItem";
  506. this.端口号ToolStripMenuItem.Size = new System.Drawing.Size(160, 26);
  507. this.端口号ToolStripMenuItem.Text = "端口号";
  508. this.端口号ToolStripMenuItem.Click += new System.EventHandler(this.ConfigFileSave_Click);
  509. //
  510. // toolStripComboBox_ComNum
  511. //
  512. this.toolStripComboBox_ComNum.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  513. this.toolStripComboBox_ComNum.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  514. this.toolStripComboBox_ComNum.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  515. this.toolStripComboBox_ComNum.Name = "toolStripComboBox_ComNum";
  516. this.toolStripComboBox_ComNum.Size = new System.Drawing.Size(121, 29);
  517. this.toolStripComboBox_ComNum.SelectedIndexChanged += new System.EventHandler(this.ConfigFileSave_Click);
  518. //
  519. // 波特率ToolStripMenuItem
  520. //
  521. this.波特率ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  522. this.toolStripComboBox_Baudrate});
  523. this.波特率ToolStripMenuItem.Name = "波特率ToolStripMenuItem";
  524. this.波特率ToolStripMenuItem.Size = new System.Drawing.Size(160, 26);
  525. this.波特率ToolStripMenuItem.Text = "波特率";
  526. //
  527. // toolStripComboBox_Baudrate
  528. //
  529. this.toolStripComboBox_Baudrate.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  530. this.toolStripComboBox_Baudrate.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  531. this.toolStripComboBox_Baudrate.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  532. this.toolStripComboBox_Baudrate.Items.AddRange(new object[] {
  533. "9600",
  534. "115200",
  535. "230400"});
  536. this.toolStripComboBox_Baudrate.Name = "toolStripComboBox_Baudrate";
  537. this.toolStripComboBox_Baudrate.Size = new System.Drawing.Size(121, 29);
  538. this.toolStripComboBox_Baudrate.SelectedIndexChanged += new System.EventHandler(this.ConfigFileSave_Click);
  539. //
  540. // 连接ToolStripMenuItem
  541. //
  542. this.连接ToolStripMenuItem.Name = "连接ToolStripMenuItem";
  543. this.连接ToolStripMenuItem.Size = new System.Drawing.Size(160, 26);
  544. this.连接ToolStripMenuItem.Text = "连接";
  545. this.连接ToolStripMenuItem.Click += new System.EventHandler(this.连接ToolStripMenuItem_Click);
  546. //
  547. // toolStripSeparator1
  548. //
  549. this.toolStripSeparator1.Name = "toolStripSeparator1";
  550. this.toolStripSeparator1.Size = new System.Drawing.Size(157, 6);
  551. //
  552. // 其它配置项ToolStripMenuItem
  553. //
  554. this.其它配置项ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  555. this.连接开机ToolStripMenuItem,
  556. this.断开关机ToolStripMenuItem,
  557. this.识别通讯盒ToolStripMenuItem});
  558. this.其它配置项ToolStripMenuItem.Name = "其它配置项ToolStripMenuItem";
  559. this.其它配置项ToolStripMenuItem.Size = new System.Drawing.Size(160, 26);
  560. this.其它配置项ToolStripMenuItem.Text = "其它配置项";
  561. //
  562. // 连接开机ToolStripMenuItem
  563. //
  564. this.连接开机ToolStripMenuItem.Checked = true;
  565. this.连接开机ToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
  566. this.连接开机ToolStripMenuItem.Name = "连接开机ToolStripMenuItem";
  567. this.连接开机ToolStripMenuItem.Size = new System.Drawing.Size(192, 26);
  568. this.连接开机ToolStripMenuItem.Text = "连接自动开机";
  569. this.连接开机ToolStripMenuItem.Click += new System.EventHandler(this.连接开机ToolStripMenuItem_Click);
  570. //
  571. // 断开关机ToolStripMenuItem
  572. //
  573. this.断开关机ToolStripMenuItem.Checked = true;
  574. this.断开关机ToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
  575. this.断开关机ToolStripMenuItem.Name = "断开关机ToolStripMenuItem";
  576. this.断开关机ToolStripMenuItem.Size = new System.Drawing.Size(192, 26);
  577. this.断开关机ToolStripMenuItem.Text = "断开自动关机";
  578. this.断开关机ToolStripMenuItem.Click += new System.EventHandler(this.断开关机ToolStripMenuItem_Click);
  579. //
  580. // 识别通讯盒ToolStripMenuItem
  581. //
  582. this.识别通讯盒ToolStripMenuItem.Checked = true;
  583. this.识别通讯盒ToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
  584. this.识别通讯盒ToolStripMenuItem.Name = "识别通讯盒ToolStripMenuItem";
  585. this.识别通讯盒ToolStripMenuItem.Size = new System.Drawing.Size(192, 26);
  586. this.识别通讯盒ToolStripMenuItem.Text = "识别联动装置盒";
  587. this.识别通讯盒ToolStripMenuItem.Click += new System.EventHandler(this.识别通讯盒ToolStripMenuItem_Click);
  588. //
  589. // 配置ToolStripMenuItem
  590. //
  591. this.配置ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  592. this.写入存储ToolStripMenuItem,
  593. this.离线使用ToolStripMenuItem,
  594. this.服务器配置ToolStripMenuItem,
  595. this.生产信息ToolStripMenuItem});
  596. this.配置ToolStripMenuItem.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  597. this.配置ToolStripMenuItem.Name = "配置ToolStripMenuItem";
  598. this.配置ToolStripMenuItem.Size = new System.Drawing.Size(54, 25);
  599. this.配置ToolStripMenuItem.Text = "配置";
  600. //
  601. // 写入存储ToolStripMenuItem
  602. //
  603. this.写入存储ToolStripMenuItem.Checked = true;
  604. this.写入存储ToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
  605. this.写入存储ToolStripMenuItem.Name = "写入存储ToolStripMenuItem";
  606. this.写入存储ToolStripMenuItem.Size = new System.Drawing.Size(192, 26);
  607. this.写入存储ToolStripMenuItem.Text = "写入时执行保存";
  608. this.写入存储ToolStripMenuItem.Click += new System.EventHandler(this.写入存储ToolStripMenuItem_Click);
  609. //
  610. // 离线使用ToolStripMenuItem
  611. //
  612. this.离线使用ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  613. this.允许ToolStripMenuItem,
  614. this.不允许ToolStripMenuItem});
  615. this.离线使用ToolStripMenuItem.Name = "离线使用ToolStripMenuItem";
  616. this.离线使用ToolStripMenuItem.Size = new System.Drawing.Size(192, 26);
  617. this.离线使用ToolStripMenuItem.Text = "离线使用";
  618. //
  619. // 允许ToolStripMenuItem
  620. //
  621. this.允许ToolStripMenuItem.Checked = true;
  622. this.允许ToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
  623. this.允许ToolStripMenuItem.Name = "允许ToolStripMenuItem";
  624. this.允许ToolStripMenuItem.Size = new System.Drawing.Size(128, 26);
  625. this.允许ToolStripMenuItem.Text = "允许";
  626. this.允许ToolStripMenuItem.Click += new System.EventHandler(this.允许ToolStripMenuItem_Click);
  627. //
  628. // 不允许ToolStripMenuItem
  629. //
  630. this.不允许ToolStripMenuItem.Name = "不允许ToolStripMenuItem";
  631. this.不允许ToolStripMenuItem.Size = new System.Drawing.Size(128, 26);
  632. this.不允许ToolStripMenuItem.Text = "不允许";
  633. this.不允许ToolStripMenuItem.Click += new System.EventHandler(this.不允许ToolStripMenuItem_Click);
  634. //
  635. // 服务器配置ToolStripMenuItem
  636. //
  637. this.服务器配置ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  638. this.IP地址ToolStripMenuItem,
  639. this.端口ToolStripMenuItem,
  640. this.用户名ToolStripMenuItem,
  641. this.密码ToolStripMenuItem,
  642. this.存储路径ToolStripMenuItem});
  643. this.服务器配置ToolStripMenuItem.Name = "服务器配置ToolStripMenuItem";
  644. this.服务器配置ToolStripMenuItem.Size = new System.Drawing.Size(192, 26);
  645. this.服务器配置ToolStripMenuItem.Text = "FTP服务器配置";
  646. //
  647. // IP地址ToolStripMenuItem
  648. //
  649. this.IP地址ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  650. this.toolStripTextBox_ServerIP});
  651. this.IP地址ToolStripMenuItem.Name = "IP地址ToolStripMenuItem";
  652. this.IP地址ToolStripMenuItem.Size = new System.Drawing.Size(144, 26);
  653. this.IP地址ToolStripMenuItem.Text = "IP地址";
  654. //
  655. // toolStripTextBox_ServerIP
  656. //
  657. this.toolStripTextBox_ServerIP.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F);
  658. this.toolStripTextBox_ServerIP.Name = "toolStripTextBox_ServerIP";
  659. this.toolStripTextBox_ServerIP.Size = new System.Drawing.Size(200, 28);
  660. this.toolStripTextBox_ServerIP.Text = "10.176.42.30";
  661. this.toolStripTextBox_ServerIP.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ConfigFileSave_KeyDown);
  662. //
  663. // 端口ToolStripMenuItem
  664. //
  665. this.端口ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  666. this.toolStripTextBox_ServerPort});
  667. this.端口ToolStripMenuItem.Name = "端口ToolStripMenuItem";
  668. this.端口ToolStripMenuItem.Size = new System.Drawing.Size(144, 26);
  669. this.端口ToolStripMenuItem.Text = "端口";
  670. //
  671. // toolStripTextBox_ServerPort
  672. //
  673. this.toolStripTextBox_ServerPort.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F);
  674. this.toolStripTextBox_ServerPort.Name = "toolStripTextBox_ServerPort";
  675. this.toolStripTextBox_ServerPort.Size = new System.Drawing.Size(200, 28);
  676. this.toolStripTextBox_ServerPort.Text = "21";
  677. this.toolStripTextBox_ServerPort.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ConfigFileSave_KeyDown);
  678. //
  679. // 用户名ToolStripMenuItem
  680. //
  681. this.用户名ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  682. this.toolStripTextBox_ServerUser});
  683. this.用户名ToolStripMenuItem.Name = "用户名ToolStripMenuItem";
  684. this.用户名ToolStripMenuItem.Size = new System.Drawing.Size(144, 26);
  685. this.用户名ToolStripMenuItem.Text = "用户名";
  686. //
  687. // toolStripTextBox_ServerUser
  688. //
  689. this.toolStripTextBox_ServerUser.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F);
  690. this.toolStripTextBox_ServerUser.Name = "toolStripTextBox_ServerUser";
  691. this.toolStripTextBox_ServerUser.Size = new System.Drawing.Size(200, 28);
  692. this.toolStripTextBox_ServerUser.Text = "factory_test";
  693. this.toolStripTextBox_ServerUser.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ConfigFileSave_KeyDown);
  694. //
  695. // 密码ToolStripMenuItem
  696. //
  697. this.密码ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  698. this.toolStripTextBox_ServerPasswd});
  699. this.密码ToolStripMenuItem.Name = "密码ToolStripMenuItem";
  700. this.密码ToolStripMenuItem.Size = new System.Drawing.Size(144, 26);
  701. this.密码ToolStripMenuItem.Text = "密码";
  702. //
  703. // toolStripTextBox_ServerPasswd
  704. //
  705. this.toolStripTextBox_ServerPasswd.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F);
  706. this.toolStripTextBox_ServerPasswd.Name = "toolStripTextBox_ServerPasswd";
  707. this.toolStripTextBox_ServerPasswd.Size = new System.Drawing.Size(200, 28);
  708. this.toolStripTextBox_ServerPasswd.Text = "ttium";
  709. this.toolStripTextBox_ServerPasswd.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ConfigFileSave_KeyDown);
  710. //
  711. // 存储路径ToolStripMenuItem
  712. //
  713. this.存储路径ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  714. this.toolStripTextBox_ServerPath});
  715. this.存储路径ToolStripMenuItem.Name = "存储路径ToolStripMenuItem";
  716. this.存储路径ToolStripMenuItem.Size = new System.Drawing.Size(144, 26);
  717. this.存储路径ToolStripMenuItem.Text = "存储路径";
  718. //
  719. // toolStripTextBox_ServerPath
  720. //
  721. this.toolStripTextBox_ServerPath.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F);
  722. this.toolStripTextBox_ServerPath.Name = "toolStripTextBox_ServerPath";
  723. this.toolStripTextBox_ServerPath.Size = new System.Drawing.Size(200, 28);
  724. this.toolStripTextBox_ServerPath.Text = "MIGIC_TEST";
  725. this.toolStripTextBox_ServerPath.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ConfigFileSave_KeyDown);
  726. //
  727. // 生产信息ToolStripMenuItem
  728. //
  729. this.生产信息ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  730. this.生产商ToolStripMenuItem,
  731. this.生产地ToolStripMenuItem,
  732. this.生产日期ToolStripMenuItem,
  733. this.产品标识ToolStripMenuItem});
  734. this.生产信息ToolStripMenuItem.Name = "生产信息ToolStripMenuItem";
  735. this.生产信息ToolStripMenuItem.Size = new System.Drawing.Size(192, 26);
  736. this.生产信息ToolStripMenuItem.Text = "生产信息";
  737. //
  738. // 生产商ToolStripMenuItem
  739. //
  740. this.生产商ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  741. this.toolStripTextBox_MAC});
  742. this.生产商ToolStripMenuItem.Name = "生产商ToolStripMenuItem";
  743. this.生产商ToolStripMenuItem.Size = new System.Drawing.Size(144, 26);
  744. this.生产商ToolStripMenuItem.Text = "生产商";
  745. //
  746. // toolStripTextBox_MAC
  747. //
  748. this.toolStripTextBox_MAC.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F);
  749. this.toolStripTextBox_MAC.Name = "toolStripTextBox_MAC";
  750. this.toolStripTextBox_MAC.Size = new System.Drawing.Size(100, 28);
  751. this.toolStripTextBox_MAC.Text = "TTIUM";
  752. this.toolStripTextBox_MAC.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ConfigFileSave_KeyDown);
  753. //
  754. // 生产地ToolStripMenuItem
  755. //
  756. this.生产地ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  757. this.toolStripTextBoxMACAddr});
  758. this.生产地ToolStripMenuItem.Name = "生产地ToolStripMenuItem";
  759. this.生产地ToolStripMenuItem.Size = new System.Drawing.Size(144, 26);
  760. this.生产地ToolStripMenuItem.Text = "生产地";
  761. //
  762. // toolStripTextBoxMACAddr
  763. //
  764. this.toolStripTextBoxMACAddr.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F);
  765. this.toolStripTextBoxMACAddr.Name = "toolStripTextBoxMACAddr";
  766. this.toolStripTextBoxMACAddr.Size = new System.Drawing.Size(100, 28);
  767. this.toolStripTextBoxMACAddr.Text = "WUHAN";
  768. this.toolStripTextBoxMACAddr.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ConfigFileSave_KeyDown);
  769. //
  770. // 生产日期ToolStripMenuItem
  771. //
  772. this.生产日期ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  773. this.toolStripTextBox_MACDate});
  774. this.生产日期ToolStripMenuItem.Name = "生产日期ToolStripMenuItem";
  775. this.生产日期ToolStripMenuItem.Size = new System.Drawing.Size(144, 26);
  776. this.生产日期ToolStripMenuItem.Text = "生产日期";
  777. //
  778. // toolStripTextBox_MACDate
  779. //
  780. this.toolStripTextBox_MACDate.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F);
  781. this.toolStripTextBox_MACDate.Name = "toolStripTextBox_MACDate";
  782. this.toolStripTextBox_MACDate.Size = new System.Drawing.Size(100, 28);
  783. this.toolStripTextBox_MACDate.Text = "20220101";
  784. this.toolStripTextBox_MACDate.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ConfigFileSave_KeyDown);
  785. //
  786. // 产品标识ToolStripMenuItem
  787. //
  788. this.产品标识ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  789. this.toolStripTextBox_MACPD});
  790. this.产品标识ToolStripMenuItem.Name = "产品标识ToolStripMenuItem";
  791. this.产品标识ToolStripMenuItem.Size = new System.Drawing.Size(144, 26);
  792. this.产品标识ToolStripMenuItem.Text = "产品标识";
  793. //
  794. // toolStripTextBox_MACPD
  795. //
  796. this.toolStripTextBox_MACPD.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F);
  797. this.toolStripTextBox_MACPD.Name = "toolStripTextBox_MACPD";
  798. this.toolStripTextBox_MACPD.Size = new System.Drawing.Size(100, 28);
  799. this.toolStripTextBox_MACPD.Text = "MM_MC1";
  800. this.toolStripTextBox_MACPD.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ConfigFileSave_KeyDown);
  801. //
  802. // 工具箱ToolStripMenuItem
  803. //
  804. this.工具箱ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  805. this.运行信息记录ToolStripMenuItem,
  806. this.计算器ToolStripMenuItem,
  807. this.页面保存ToolStripMenuItem,
  808. this.系统开关ToolStripMenuItem});
  809. this.工具箱ToolStripMenuItem.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  810. this.工具箱ToolStripMenuItem.Name = "工具箱ToolStripMenuItem";
  811. this.工具箱ToolStripMenuItem.Size = new System.Drawing.Size(70, 25);
  812. this.工具箱ToolStripMenuItem.Text = "工具箱";
  813. //
  814. // 运行信息记录ToolStripMenuItem
  815. //
  816. this.运行信息记录ToolStripMenuItem.Name = "运行信息记录ToolStripMenuItem";
  817. this.运行信息记录ToolStripMenuItem.Size = new System.Drawing.Size(176, 26);
  818. this.运行信息记录ToolStripMenuItem.Text = "运行信息记录";
  819. this.运行信息记录ToolStripMenuItem.Click += new System.EventHandler(this.记录数据ToolStripMenuItem_Click);
  820. //
  821. // 计算器ToolStripMenuItem
  822. //
  823. this.计算器ToolStripMenuItem.Name = "计算器ToolStripMenuItem";
  824. this.计算器ToolStripMenuItem.Size = new System.Drawing.Size(176, 26);
  825. this.计算器ToolStripMenuItem.Text = "计算器";
  826. this.计算器ToolStripMenuItem.Click += new System.EventHandler(this.计算器ToolStripMenuItem_Click);
  827. //
  828. // 页面保存ToolStripMenuItem
  829. //
  830. this.页面保存ToolStripMenuItem.Name = "页面保存ToolStripMenuItem";
  831. this.页面保存ToolStripMenuItem.Size = new System.Drawing.Size(176, 26);
  832. this.页面保存ToolStripMenuItem.Text = "页面保存";
  833. this.页面保存ToolStripMenuItem.Click += new System.EventHandler(this.页面保存ToolStripMenuItem_Click);
  834. //
  835. // 系统开关ToolStripMenuItem
  836. //
  837. this.系统开关ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  838. this.开机ToolStripMenuItem,
  839. this.关机ToolStripMenuItem});
  840. this.系统开关ToolStripMenuItem.Name = "系统开关ToolStripMenuItem";
  841. this.系统开关ToolStripMenuItem.Size = new System.Drawing.Size(176, 26);
  842. this.系统开关ToolStripMenuItem.Text = "电源控制";
  843. //
  844. // 开机ToolStripMenuItem
  845. //
  846. this.开机ToolStripMenuItem.Name = "开机ToolStripMenuItem";
  847. this.开机ToolStripMenuItem.Size = new System.Drawing.Size(112, 26);
  848. this.开机ToolStripMenuItem.Text = "开机";
  849. this.开机ToolStripMenuItem.Click += new System.EventHandler(this.开机ToolStripMenuItem_Click);
  850. //
  851. // 关机ToolStripMenuItem
  852. //
  853. this.关机ToolStripMenuItem.Name = "关机ToolStripMenuItem";
  854. this.关机ToolStripMenuItem.Size = new System.Drawing.Size(112, 26);
  855. this.关机ToolStripMenuItem.Text = "关机";
  856. this.关机ToolStripMenuItem.Click += new System.EventHandler(this.关机ToolStripMenuItem_Click);
  857. //
  858. // 关于ToolStripMenuItem
  859. //
  860. this.关于ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  861. this.帮助ToolStripMenuItem,
  862. this.版本ToolStripMenuItem});
  863. this.关于ToolStripMenuItem.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  864. this.关于ToolStripMenuItem.Name = "关于ToolStripMenuItem";
  865. this.关于ToolStripMenuItem.Size = new System.Drawing.Size(54, 25);
  866. this.关于ToolStripMenuItem.Text = "关于";
  867. //
  868. // 帮助ToolStripMenuItem
  869. //
  870. this.帮助ToolStripMenuItem.Name = "帮助ToolStripMenuItem";
  871. this.帮助ToolStripMenuItem.Size = new System.Drawing.Size(144, 26);
  872. this.帮助ToolStripMenuItem.Text = "查看帮助";
  873. //
  874. // 版本ToolStripMenuItem
  875. //
  876. this.版本ToolStripMenuItem.Name = "版本ToolStripMenuItem";
  877. this.版本ToolStripMenuItem.Size = new System.Drawing.Size(144, 26);
  878. this.版本ToolStripMenuItem.Text = "版本信息";
  879. //
  880. // statusStrip1
  881. //
  882. this.statusStrip1.BackColor = System.Drawing.Color.DodgerBlue;
  883. this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  884. this.toolStripStatusLabel1});
  885. this.statusStrip1.Location = new System.Drawing.Point(0, 619);
  886. this.statusStrip1.Name = "statusStrip1";
  887. this.statusStrip1.Size = new System.Drawing.Size(1034, 22);
  888. this.statusStrip1.TabIndex = 3;
  889. this.statusStrip1.Text = "statusStrip1";
  890. //
  891. // toolStripStatusLabel1
  892. //
  893. this.toolStripStatusLabel1.ForeColor = System.Drawing.Color.White;
  894. this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
  895. this.toolStripStatusLabel1.Size = new System.Drawing.Size(212, 17);
  896. this.toolStripStatusLabel1.Text = "版权所有:武汉天腾动力科技有限公司";
  897. //
  898. // groupBox1
  899. //
  900. this.groupBox1.Controls.Add(this.label24);
  901. this.groupBox1.Controls.Add(this.numericUpDown_SpeedAdj);
  902. this.groupBox1.Controls.Add(this.label4);
  903. this.groupBox1.Controls.Add(this.comboBox_LightSwitch);
  904. this.groupBox1.Controls.Add(this.label3);
  905. this.groupBox1.Controls.Add(this.comboBox_GearSt);
  906. this.groupBox1.Controls.Add(this.comboBox_WorkMode);
  907. this.groupBox1.Controls.Add(this.label2);
  908. this.groupBox1.Controls.Add(this.label1);
  909. this.groupBox1.Location = new System.Drawing.Point(12, 32);
  910. this.groupBox1.Name = "groupBox1";
  911. this.groupBox1.Size = new System.Drawing.Size(191, 196);
  912. this.groupBox1.TabIndex = 4;
  913. this.groupBox1.TabStop = false;
  914. this.groupBox1.Text = "电机控制";
  915. //
  916. // label24
  917. //
  918. this.label24.AutoSize = true;
  919. this.label24.Location = new System.Drawing.Point(161, 152);
  920. this.label24.Name = "label24";
  921. this.label24.Size = new System.Drawing.Size(24, 21);
  922. this.label24.TabIndex = 6;
  923. this.label24.Text = "%";
  924. //
  925. // numericUpDown_SpeedAdj
  926. //
  927. this.numericUpDown_SpeedAdj.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
  928. this.numericUpDown_SpeedAdj.Location = new System.Drawing.Point(85, 148);
  929. this.numericUpDown_SpeedAdj.Minimum = new decimal(new int[] {
  930. 2,
  931. 0,
  932. 0,
  933. 0});
  934. this.numericUpDown_SpeedAdj.Name = "numericUpDown_SpeedAdj";
  935. this.numericUpDown_SpeedAdj.ReadOnly = true;
  936. this.numericUpDown_SpeedAdj.Size = new System.Drawing.Size(73, 28);
  937. this.numericUpDown_SpeedAdj.TabIndex = 5;
  938. this.numericUpDown_SpeedAdj.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  939. this.numericUpDown_SpeedAdj.Value = new decimal(new int[] {
  940. 2,
  941. 0,
  942. 0,
  943. 0});
  944. this.numericUpDown_SpeedAdj.ValueChanged += new System.EventHandler(this.numericUpDown_SpeedAdj_ValueChanged);
  945. //
  946. // label4
  947. //
  948. this.label4.AutoSize = true;
  949. this.label4.Location = new System.Drawing.Point(6, 152);
  950. this.label4.Name = "label4";
  951. this.label4.Size = new System.Drawing.Size(74, 21);
  952. this.label4.TabIndex = 4;
  953. this.label4.Text = "转速调节";
  954. //
  955. // comboBox_LightSwitch
  956. //
  957. this.comboBox_LightSwitch.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
  958. this.comboBox_LightSwitch.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  959. this.comboBox_LightSwitch.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  960. this.comboBox_LightSwitch.FormattingEnabled = true;
  961. this.comboBox_LightSwitch.Items.AddRange(new object[] {
  962. "ON",
  963. "OFF"});
  964. this.comboBox_LightSwitch.Location = new System.Drawing.Point(85, 109);
  965. this.comboBox_LightSwitch.Name = "comboBox_LightSwitch";
  966. this.comboBox_LightSwitch.Size = new System.Drawing.Size(100, 29);
  967. this.comboBox_LightSwitch.TabIndex = 3;
  968. //
  969. // label3
  970. //
  971. this.label3.AutoSize = true;
  972. this.label3.Location = new System.Drawing.Point(6, 113);
  973. this.label3.Name = "label3";
  974. this.label3.Size = new System.Drawing.Size(74, 21);
  975. this.label3.TabIndex = 2;
  976. this.label3.Text = "大灯开关";
  977. //
  978. // comboBox_GearSt
  979. //
  980. this.comboBox_GearSt.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
  981. this.comboBox_GearSt.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  982. this.comboBox_GearSt.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  983. this.comboBox_GearSt.FormattingEnabled = true;
  984. this.comboBox_GearSt.Items.AddRange(new object[] {
  985. "OFF",
  986. "ECO",
  987. "NORM",
  988. "SPORT",
  989. "TURBO",
  990. "SMART",
  991. "WALK"});
  992. this.comboBox_GearSt.Location = new System.Drawing.Point(85, 70);
  993. this.comboBox_GearSt.Name = "comboBox_GearSt";
  994. this.comboBox_GearSt.Size = new System.Drawing.Size(100, 29);
  995. this.comboBox_GearSt.TabIndex = 1;
  996. //
  997. // comboBox_WorkMode
  998. //
  999. this.comboBox_WorkMode.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
  1000. this.comboBox_WorkMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  1001. this.comboBox_WorkMode.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1002. this.comboBox_WorkMode.FormattingEnabled = true;
  1003. this.comboBox_WorkMode.Items.AddRange(new object[] {
  1004. "运行模式",
  1005. "配置模式"});
  1006. this.comboBox_WorkMode.Location = new System.Drawing.Point(85, 31);
  1007. this.comboBox_WorkMode.Name = "comboBox_WorkMode";
  1008. this.comboBox_WorkMode.Size = new System.Drawing.Size(100, 29);
  1009. this.comboBox_WorkMode.TabIndex = 1;
  1010. //
  1011. // label2
  1012. //
  1013. this.label2.AutoSize = true;
  1014. this.label2.Location = new System.Drawing.Point(6, 74);
  1015. this.label2.Name = "label2";
  1016. this.label2.Size = new System.Drawing.Size(74, 21);
  1017. this.label2.TabIndex = 0;
  1018. this.label2.Text = "助力档位";
  1019. //
  1020. // label1
  1021. //
  1022. this.label1.AutoSize = true;
  1023. this.label1.Location = new System.Drawing.Point(6, 35);
  1024. this.label1.Name = "label1";
  1025. this.label1.Size = new System.Drawing.Size(74, 21);
  1026. this.label1.TabIndex = 0;
  1027. this.label1.Text = "工作模式";
  1028. //
  1029. // groupBox2
  1030. //
  1031. this.groupBox2.Controls.Add(this.textBox_RunInfo_BikeSpeed);
  1032. this.groupBox2.Controls.Add(this.textBox_RunInfo_MotorSpeed);
  1033. this.groupBox2.Controls.Add(this.textBox_RunInfo_Cadence);
  1034. this.groupBox2.Controls.Add(this.textBox_TorqueReg);
  1035. this.groupBox2.Controls.Add(this.textBox_RunInfo_Torque);
  1036. this.groupBox2.Controls.Add(this.textBox_RunInfo_Dir);
  1037. this.groupBox2.Controls.Add(this.textBox_RunInfo_Vol);
  1038. this.groupBox2.Controls.Add(this.textBox_RunInfo_Current);
  1039. this.groupBox2.Controls.Add(this.textBox_RunInfo_Power);
  1040. this.groupBox2.Controls.Add(this.textBox_RunInfo_SOC);
  1041. this.groupBox2.Controls.Add(this.textBox_RunInfo_T_PCB);
  1042. this.groupBox2.Controls.Add(this.textBox_RunInfo_T_MCU);
  1043. this.groupBox2.Controls.Add(this.textBox_RunInfo_T_Coil);
  1044. this.groupBox2.Controls.Add(this.textBox_RunInfo_GearSt);
  1045. this.groupBox2.Controls.Add(this.textBox_RunInfo_LightSwitch);
  1046. this.groupBox2.Controls.Add(this.textBox_RunInfo_Range);
  1047. this.groupBox2.Controls.Add(this.textBox_RunInfo_AvgPower);
  1048. this.groupBox2.Controls.Add(this.textBox_RunInfo_Trip);
  1049. this.groupBox2.Controls.Add(this.textBox_RunInfo_Trip_Time);
  1050. this.groupBox2.Controls.Add(this.textBox_ErrorCode);
  1051. this.groupBox2.Controls.Add(this.label55);
  1052. this.groupBox2.Controls.Add(this.label28);
  1053. this.groupBox2.Controls.Add(this.label22);
  1054. this.groupBox2.Controls.Add(this.label16);
  1055. this.groupBox2.Controls.Add(this.label10);
  1056. this.groupBox2.Controls.Add(this.label21);
  1057. this.groupBox2.Controls.Add(this.label15);
  1058. this.groupBox2.Controls.Add(this.label9);
  1059. this.groupBox2.Controls.Add(this.label20);
  1060. this.groupBox2.Controls.Add(this.label14);
  1061. this.groupBox2.Controls.Add(this.label8);
  1062. this.groupBox2.Controls.Add(this.label19);
  1063. this.groupBox2.Controls.Add(this.label13);
  1064. this.groupBox2.Controls.Add(this.label7);
  1065. this.groupBox2.Controls.Add(this.label18);
  1066. this.groupBox2.Controls.Add(this.label12);
  1067. this.groupBox2.Controls.Add(this.label6);
  1068. this.groupBox2.Controls.Add(this.label17);
  1069. this.groupBox2.Controls.Add(this.label11);
  1070. this.groupBox2.Controls.Add(this.label5);
  1071. this.groupBox2.Location = new System.Drawing.Point(209, 32);
  1072. this.groupBox2.Name = "groupBox2";
  1073. this.groupBox2.Size = new System.Drawing.Size(819, 196);
  1074. this.groupBox2.TabIndex = 5;
  1075. this.groupBox2.TabStop = false;
  1076. this.groupBox2.Text = "运行信息";
  1077. //
  1078. // textBox_RunInfo_BikeSpeed
  1079. //
  1080. this.textBox_RunInfo_BikeSpeed.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1081. this.textBox_RunInfo_BikeSpeed.Location = new System.Drawing.Point(62, 31);
  1082. this.textBox_RunInfo_BikeSpeed.Name = "textBox_RunInfo_BikeSpeed";
  1083. this.textBox_RunInfo_BikeSpeed.ReadOnly = true;
  1084. this.textBox_RunInfo_BikeSpeed.Size = new System.Drawing.Size(90, 28);
  1085. this.textBox_RunInfo_BikeSpeed.TabIndex = 1;
  1086. //
  1087. // textBox_RunInfo_MotorSpeed
  1088. //
  1089. this.textBox_RunInfo_MotorSpeed.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1090. this.textBox_RunInfo_MotorSpeed.Location = new System.Drawing.Point(62, 148);
  1091. this.textBox_RunInfo_MotorSpeed.Name = "textBox_RunInfo_MotorSpeed";
  1092. this.textBox_RunInfo_MotorSpeed.ReadOnly = true;
  1093. this.textBox_RunInfo_MotorSpeed.Size = new System.Drawing.Size(90, 28);
  1094. this.textBox_RunInfo_MotorSpeed.TabIndex = 1;
  1095. //
  1096. // textBox_RunInfo_Cadence
  1097. //
  1098. this.textBox_RunInfo_Cadence.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1099. this.textBox_RunInfo_Cadence.Location = new System.Drawing.Point(62, 70);
  1100. this.textBox_RunInfo_Cadence.Name = "textBox_RunInfo_Cadence";
  1101. this.textBox_RunInfo_Cadence.ReadOnly = true;
  1102. this.textBox_RunInfo_Cadence.Size = new System.Drawing.Size(90, 28);
  1103. this.textBox_RunInfo_Cadence.TabIndex = 1;
  1104. //
  1105. // textBox_TorqueReg
  1106. //
  1107. this.textBox_TorqueReg.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1108. this.textBox_TorqueReg.Location = new System.Drawing.Point(721, 107);
  1109. this.textBox_TorqueReg.Name = "textBox_TorqueReg";
  1110. this.textBox_TorqueReg.ReadOnly = true;
  1111. this.textBox_TorqueReg.Size = new System.Drawing.Size(90, 28);
  1112. this.textBox_TorqueReg.TabIndex = 3;
  1113. //
  1114. // textBox_RunInfo_Torque
  1115. //
  1116. this.textBox_RunInfo_Torque.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1117. this.textBox_RunInfo_Torque.Location = new System.Drawing.Point(62, 109);
  1118. this.textBox_RunInfo_Torque.Name = "textBox_RunInfo_Torque";
  1119. this.textBox_RunInfo_Torque.ReadOnly = true;
  1120. this.textBox_RunInfo_Torque.Size = new System.Drawing.Size(90, 28);
  1121. this.textBox_RunInfo_Torque.TabIndex = 1;
  1122. //
  1123. // textBox_RunInfo_Dir
  1124. //
  1125. this.textBox_RunInfo_Dir.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1126. this.textBox_RunInfo_Dir.Location = new System.Drawing.Point(209, 148);
  1127. this.textBox_RunInfo_Dir.Name = "textBox_RunInfo_Dir";
  1128. this.textBox_RunInfo_Dir.ReadOnly = true;
  1129. this.textBox_RunInfo_Dir.Size = new System.Drawing.Size(90, 28);
  1130. this.textBox_RunInfo_Dir.TabIndex = 1;
  1131. //
  1132. // textBox_RunInfo_Vol
  1133. //
  1134. this.textBox_RunInfo_Vol.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1135. this.textBox_RunInfo_Vol.Location = new System.Drawing.Point(209, 31);
  1136. this.textBox_RunInfo_Vol.Name = "textBox_RunInfo_Vol";
  1137. this.textBox_RunInfo_Vol.ReadOnly = true;
  1138. this.textBox_RunInfo_Vol.Size = new System.Drawing.Size(90, 28);
  1139. this.textBox_RunInfo_Vol.TabIndex = 1;
  1140. //
  1141. // textBox_RunInfo_Current
  1142. //
  1143. this.textBox_RunInfo_Current.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1144. this.textBox_RunInfo_Current.Location = new System.Drawing.Point(209, 70);
  1145. this.textBox_RunInfo_Current.Name = "textBox_RunInfo_Current";
  1146. this.textBox_RunInfo_Current.ReadOnly = true;
  1147. this.textBox_RunInfo_Current.Size = new System.Drawing.Size(90, 28);
  1148. this.textBox_RunInfo_Current.TabIndex = 1;
  1149. //
  1150. // textBox_RunInfo_Power
  1151. //
  1152. this.textBox_RunInfo_Power.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1153. this.textBox_RunInfo_Power.Location = new System.Drawing.Point(209, 108);
  1154. this.textBox_RunInfo_Power.Name = "textBox_RunInfo_Power";
  1155. this.textBox_RunInfo_Power.ReadOnly = true;
  1156. this.textBox_RunInfo_Power.Size = new System.Drawing.Size(90, 28);
  1157. this.textBox_RunInfo_Power.TabIndex = 1;
  1158. //
  1159. // textBox_RunInfo_SOC
  1160. //
  1161. this.textBox_RunInfo_SOC.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1162. this.textBox_RunInfo_SOC.Location = new System.Drawing.Point(541, 30);
  1163. this.textBox_RunInfo_SOC.Name = "textBox_RunInfo_SOC";
  1164. this.textBox_RunInfo_SOC.ReadOnly = true;
  1165. this.textBox_RunInfo_SOC.Size = new System.Drawing.Size(90, 28);
  1166. this.textBox_RunInfo_SOC.TabIndex = 1;
  1167. //
  1168. // textBox_RunInfo_T_PCB
  1169. //
  1170. this.textBox_RunInfo_T_PCB.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1171. this.textBox_RunInfo_T_PCB.Location = new System.Drawing.Point(393, 31);
  1172. this.textBox_RunInfo_T_PCB.Name = "textBox_RunInfo_T_PCB";
  1173. this.textBox_RunInfo_T_PCB.ReadOnly = true;
  1174. this.textBox_RunInfo_T_PCB.Size = new System.Drawing.Size(90, 28);
  1175. this.textBox_RunInfo_T_PCB.TabIndex = 1;
  1176. //
  1177. // textBox_RunInfo_T_MCU
  1178. //
  1179. this.textBox_RunInfo_T_MCU.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1180. this.textBox_RunInfo_T_MCU.Location = new System.Drawing.Point(393, 70);
  1181. this.textBox_RunInfo_T_MCU.Name = "textBox_RunInfo_T_MCU";
  1182. this.textBox_RunInfo_T_MCU.ReadOnly = true;
  1183. this.textBox_RunInfo_T_MCU.Size = new System.Drawing.Size(90, 28);
  1184. this.textBox_RunInfo_T_MCU.TabIndex = 1;
  1185. //
  1186. // textBox_RunInfo_T_Coil
  1187. //
  1188. this.textBox_RunInfo_T_Coil.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1189. this.textBox_RunInfo_T_Coil.Location = new System.Drawing.Point(393, 108);
  1190. this.textBox_RunInfo_T_Coil.Name = "textBox_RunInfo_T_Coil";
  1191. this.textBox_RunInfo_T_Coil.ReadOnly = true;
  1192. this.textBox_RunInfo_T_Coil.Size = new System.Drawing.Size(90, 28);
  1193. this.textBox_RunInfo_T_Coil.TabIndex = 1;
  1194. //
  1195. // textBox_RunInfo_GearSt
  1196. //
  1197. this.textBox_RunInfo_GearSt.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1198. this.textBox_RunInfo_GearSt.Location = new System.Drawing.Point(393, 148);
  1199. this.textBox_RunInfo_GearSt.Name = "textBox_RunInfo_GearSt";
  1200. this.textBox_RunInfo_GearSt.ReadOnly = true;
  1201. this.textBox_RunInfo_GearSt.Size = new System.Drawing.Size(90, 28);
  1202. this.textBox_RunInfo_GearSt.TabIndex = 1;
  1203. //
  1204. // textBox_RunInfo_LightSwitch
  1205. //
  1206. this.textBox_RunInfo_LightSwitch.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1207. this.textBox_RunInfo_LightSwitch.Location = new System.Drawing.Point(541, 147);
  1208. this.textBox_RunInfo_LightSwitch.Name = "textBox_RunInfo_LightSwitch";
  1209. this.textBox_RunInfo_LightSwitch.ReadOnly = true;
  1210. this.textBox_RunInfo_LightSwitch.Size = new System.Drawing.Size(90, 28);
  1211. this.textBox_RunInfo_LightSwitch.TabIndex = 1;
  1212. //
  1213. // textBox_RunInfo_Range
  1214. //
  1215. this.textBox_RunInfo_Range.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1216. this.textBox_RunInfo_Range.Location = new System.Drawing.Point(541, 107);
  1217. this.textBox_RunInfo_Range.Name = "textBox_RunInfo_Range";
  1218. this.textBox_RunInfo_Range.ReadOnly = true;
  1219. this.textBox_RunInfo_Range.Size = new System.Drawing.Size(90, 28);
  1220. this.textBox_RunInfo_Range.TabIndex = 1;
  1221. //
  1222. // textBox_RunInfo_AvgPower
  1223. //
  1224. this.textBox_RunInfo_AvgPower.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1225. this.textBox_RunInfo_AvgPower.Location = new System.Drawing.Point(541, 69);
  1226. this.textBox_RunInfo_AvgPower.Name = "textBox_RunInfo_AvgPower";
  1227. this.textBox_RunInfo_AvgPower.ReadOnly = true;
  1228. this.textBox_RunInfo_AvgPower.Size = new System.Drawing.Size(90, 28);
  1229. this.textBox_RunInfo_AvgPower.TabIndex = 1;
  1230. //
  1231. // textBox_RunInfo_Trip
  1232. //
  1233. this.textBox_RunInfo_Trip.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1234. this.textBox_RunInfo_Trip.Location = new System.Drawing.Point(721, 30);
  1235. this.textBox_RunInfo_Trip.Name = "textBox_RunInfo_Trip";
  1236. this.textBox_RunInfo_Trip.ReadOnly = true;
  1237. this.textBox_RunInfo_Trip.Size = new System.Drawing.Size(90, 28);
  1238. this.textBox_RunInfo_Trip.TabIndex = 1;
  1239. //
  1240. // textBox_RunInfo_Trip_Time
  1241. //
  1242. this.textBox_RunInfo_Trip_Time.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1243. this.textBox_RunInfo_Trip_Time.Location = new System.Drawing.Point(721, 69);
  1244. this.textBox_RunInfo_Trip_Time.Name = "textBox_RunInfo_Trip_Time";
  1245. this.textBox_RunInfo_Trip_Time.ReadOnly = true;
  1246. this.textBox_RunInfo_Trip_Time.Size = new System.Drawing.Size(90, 28);
  1247. this.textBox_RunInfo_Trip_Time.TabIndex = 1;
  1248. //
  1249. // textBox_ErrorCode
  1250. //
  1251. this.textBox_ErrorCode.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1252. this.textBox_ErrorCode.Location = new System.Drawing.Point(721, 147);
  1253. this.textBox_ErrorCode.Name = "textBox_ErrorCode";
  1254. this.textBox_ErrorCode.ReadOnly = true;
  1255. this.textBox_ErrorCode.Size = new System.Drawing.Size(90, 28);
  1256. this.textBox_ErrorCode.TabIndex = 1;
  1257. this.textBox_ErrorCode.MouseHover += new System.EventHandler(this.textBox_ErrorCode_MouseHover);
  1258. //
  1259. // label55
  1260. //
  1261. this.label55.AutoSize = true;
  1262. this.label55.Location = new System.Drawing.Point(641, 111);
  1263. this.label55.Name = "label55";
  1264. this.label55.Size = new System.Drawing.Size(71, 21);
  1265. this.label55.TabIndex = 2;
  1266. this.label55.Text = "力矩Reg";
  1267. //
  1268. // label28
  1269. //
  1270. this.label28.AutoSize = true;
  1271. this.label28.Location = new System.Drawing.Point(641, 151);
  1272. this.label28.Name = "label28";
  1273. this.label28.Size = new System.Drawing.Size(58, 21);
  1274. this.label28.TabIndex = 0;
  1275. this.label28.Text = "故障码";
  1276. //
  1277. // label22
  1278. //
  1279. this.label22.AutoSize = true;
  1280. this.label22.Location = new System.Drawing.Point(641, 73);
  1281. this.label22.Name = "label22";
  1282. this.label22.Size = new System.Drawing.Size(74, 21);
  1283. this.label22.TabIndex = 0;
  1284. this.label22.Text = "单次时间";
  1285. //
  1286. // label16
  1287. //
  1288. this.label16.AutoSize = true;
  1289. this.label16.Location = new System.Drawing.Point(493, 111);
  1290. this.label16.Name = "label16";
  1291. this.label16.Size = new System.Drawing.Size(42, 21);
  1292. this.label16.TabIndex = 0;
  1293. this.label16.Text = "续航";
  1294. //
  1295. // label10
  1296. //
  1297. this.label10.AutoSize = true;
  1298. this.label10.Location = new System.Drawing.Point(161, 113);
  1299. this.label10.Name = "label10";
  1300. this.label10.Size = new System.Drawing.Size(42, 21);
  1301. this.label10.TabIndex = 0;
  1302. this.label10.Text = "功率";
  1303. //
  1304. // label21
  1305. //
  1306. this.label21.AutoSize = true;
  1307. this.label21.Location = new System.Drawing.Point(641, 34);
  1308. this.label21.Name = "label21";
  1309. this.label21.Size = new System.Drawing.Size(74, 21);
  1310. this.label21.TabIndex = 0;
  1311. this.label21.Text = "单次里程";
  1312. //
  1313. // label15
  1314. //
  1315. this.label15.AutoSize = true;
  1316. this.label15.Location = new System.Drawing.Point(493, 34);
  1317. this.label15.Name = "label15";
  1318. this.label15.Size = new System.Drawing.Size(42, 21);
  1319. this.label15.TabIndex = 0;
  1320. this.label15.Text = "电量";
  1321. //
  1322. // label9
  1323. //
  1324. this.label9.AutoSize = true;
  1325. this.label9.Location = new System.Drawing.Point(161, 74);
  1326. this.label9.Name = "label9";
  1327. this.label9.Size = new System.Drawing.Size(42, 21);
  1328. this.label9.TabIndex = 0;
  1329. this.label9.Text = "电流";
  1330. //
  1331. // label20
  1332. //
  1333. this.label20.AutoSize = true;
  1334. this.label20.Location = new System.Drawing.Point(308, 112);
  1335. this.label20.Name = "label20";
  1336. this.label20.Size = new System.Drawing.Size(74, 21);
  1337. this.label20.TabIndex = 0;
  1338. this.label20.Text = "力矩温度";
  1339. //
  1340. // label14
  1341. //
  1342. this.label14.AutoSize = true;
  1343. this.label14.Location = new System.Drawing.Point(493, 151);
  1344. this.label14.Name = "label14";
  1345. this.label14.Size = new System.Drawing.Size(42, 21);
  1346. this.label14.TabIndex = 0;
  1347. this.label14.Text = "大灯";
  1348. //
  1349. // label8
  1350. //
  1351. this.label8.AutoSize = true;
  1352. this.label8.Location = new System.Drawing.Point(161, 35);
  1353. this.label8.Name = "label8";
  1354. this.label8.Size = new System.Drawing.Size(42, 21);
  1355. this.label8.TabIndex = 0;
  1356. this.label8.Text = "电压";
  1357. //
  1358. // label19
  1359. //
  1360. this.label19.AutoSize = true;
  1361. this.label19.Location = new System.Drawing.Point(308, 74);
  1362. this.label19.Name = "label19";
  1363. this.label19.Size = new System.Drawing.Size(81, 21);
  1364. this.label19.TabIndex = 0;
  1365. this.label19.Text = "MCU温度";
  1366. //
  1367. // label13
  1368. //
  1369. this.label13.AutoSize = true;
  1370. this.label13.Location = new System.Drawing.Point(308, 152);
  1371. this.label13.Name = "label13";
  1372. this.label13.Size = new System.Drawing.Size(42, 21);
  1373. this.label13.TabIndex = 0;
  1374. this.label13.Text = "档位";
  1375. //
  1376. // label7
  1377. //
  1378. this.label7.AutoSize = true;
  1379. this.label7.Location = new System.Drawing.Point(14, 152);
  1380. this.label7.Name = "label7";
  1381. this.label7.Size = new System.Drawing.Size(42, 21);
  1382. this.label7.TabIndex = 0;
  1383. this.label7.Text = "转速";
  1384. //
  1385. // label18
  1386. //
  1387. this.label18.AutoSize = true;
  1388. this.label18.Location = new System.Drawing.Point(308, 35);
  1389. this.label18.Name = "label18";
  1390. this.label18.Size = new System.Drawing.Size(73, 21);
  1391. this.label18.TabIndex = 0;
  1392. this.label18.Text = "PCB温度";
  1393. //
  1394. // label12
  1395. //
  1396. this.label12.AutoSize = true;
  1397. this.label12.Location = new System.Drawing.Point(161, 152);
  1398. this.label12.Name = "label12";
  1399. this.label12.Size = new System.Drawing.Size(42, 21);
  1400. this.label12.TabIndex = 0;
  1401. this.label12.Text = "方向";
  1402. //
  1403. // label6
  1404. //
  1405. this.label6.AutoSize = true;
  1406. this.label6.Location = new System.Drawing.Point(14, 74);
  1407. this.label6.Name = "label6";
  1408. this.label6.Size = new System.Drawing.Size(42, 21);
  1409. this.label6.TabIndex = 0;
  1410. this.label6.Text = "踏频";
  1411. //
  1412. // label17
  1413. //
  1414. this.label17.AutoSize = true;
  1415. this.label17.Location = new System.Drawing.Point(493, 73);
  1416. this.label17.Name = "label17";
  1417. this.label17.Size = new System.Drawing.Size(42, 21);
  1418. this.label17.TabIndex = 0;
  1419. this.label17.Text = "功耗";
  1420. //
  1421. // label11
  1422. //
  1423. this.label11.AutoSize = true;
  1424. this.label11.Location = new System.Drawing.Point(14, 113);
  1425. this.label11.Name = "label11";
  1426. this.label11.Size = new System.Drawing.Size(42, 21);
  1427. this.label11.TabIndex = 0;
  1428. this.label11.Text = "力矩";
  1429. //
  1430. // label5
  1431. //
  1432. this.label5.AutoSize = true;
  1433. this.label5.Location = new System.Drawing.Point(14, 35);
  1434. this.label5.Name = "label5";
  1435. this.label5.Size = new System.Drawing.Size(42, 21);
  1436. this.label5.TabIndex = 0;
  1437. this.label5.Text = "车速";
  1438. //
  1439. // groupBox3
  1440. //
  1441. this.groupBox3.Controls.Add(this.tabControl1);
  1442. this.groupBox3.Location = new System.Drawing.Point(12, 234);
  1443. this.groupBox3.Name = "groupBox3";
  1444. this.groupBox3.Size = new System.Drawing.Size(1016, 382);
  1445. this.groupBox3.TabIndex = 6;
  1446. this.groupBox3.TabStop = false;
  1447. this.groupBox3.Text = "参数查询/写入";
  1448. //
  1449. // tabControl1
  1450. //
  1451. this.tabControl1.Controls.Add(this.tabPage_MotorParam);
  1452. this.tabControl1.Controls.Add(this.tabPage_BikeParam);
  1453. this.tabControl1.Controls.Add(this.tabPage_ControlParam);
  1454. this.tabControl1.Controls.Add(this.tabPage_SensorParam);
  1455. this.tabControl1.Controls.Add(this.tabPage_AssistParam);
  1456. this.tabControl1.Controls.Add(this.tabPage_DebugParam);
  1457. this.tabControl1.Controls.Add(this.tabPage_RecordInfo);
  1458. this.tabControl1.Controls.Add(this.tabPage_OtherInfo);
  1459. this.tabControl1.Controls.Add(this.tabPage_OBC);
  1460. this.tabControl1.Controls.Add(this.tabPage_RAMorFLASH);
  1461. this.tabControl1.Controls.Add(this.tabPage_FactoryMode);
  1462. this.tabControl1.Location = new System.Drawing.Point(10, 27);
  1463. this.tabControl1.Name = "tabControl1";
  1464. this.tabControl1.SelectedIndex = 0;
  1465. this.tabControl1.Size = new System.Drawing.Size(998, 349);
  1466. this.tabControl1.TabIndex = 0;
  1467. //
  1468. // tabPage_MotorParam
  1469. //
  1470. this.tabPage_MotorParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1471. this.tabPage_MotorParam.Controls.Add(this.button_Write);
  1472. this.tabPage_MotorParam.Controls.Add(this.button_Read_MotorParam);
  1473. this.tabPage_MotorParam.Controls.Add(this.richTextBox_MotorParam);
  1474. this.tabPage_MotorParam.Location = new System.Drawing.Point(4, 30);
  1475. this.tabPage_MotorParam.Name = "tabPage_MotorParam";
  1476. this.tabPage_MotorParam.Padding = new System.Windows.Forms.Padding(3);
  1477. this.tabPage_MotorParam.Size = new System.Drawing.Size(990, 315);
  1478. this.tabPage_MotorParam.TabIndex = 0;
  1479. this.tabPage_MotorParam.Text = "马达参数";
  1480. //
  1481. // button_Write
  1482. //
  1483. this.button_Write.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  1484. this.button_Write.Location = new System.Drawing.Point(858, 259);
  1485. this.button_Write.Name = "button_Write";
  1486. this.button_Write.Size = new System.Drawing.Size(126, 50);
  1487. this.button_Write.TabIndex = 1;
  1488. this.button_Write.Text = "写入参数";
  1489. this.button_Write.UseVisualStyleBackColor = false;
  1490. this.button_Write.Click += new System.EventHandler(this.button_Write_Click);
  1491. //
  1492. // button_Read_MotorParam
  1493. //
  1494. this.button_Read_MotorParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  1495. this.button_Read_MotorParam.Location = new System.Drawing.Point(858, 203);
  1496. this.button_Read_MotorParam.Name = "button_Read_MotorParam";
  1497. this.button_Read_MotorParam.Size = new System.Drawing.Size(126, 50);
  1498. this.button_Read_MotorParam.TabIndex = 1;
  1499. this.button_Read_MotorParam.Text = "读取参数";
  1500. this.button_Read_MotorParam.UseVisualStyleBackColor = false;
  1501. this.button_Read_MotorParam.Click += new System.EventHandler(this.button_Read_MotorParam_Click);
  1502. //
  1503. // richTextBox_MotorParam
  1504. //
  1505. this.richTextBox_MotorParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1506. this.richTextBox_MotorParam.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1507. this.richTextBox_MotorParam.Location = new System.Drawing.Point(6, 6);
  1508. this.richTextBox_MotorParam.Name = "richTextBox_MotorParam";
  1509. this.richTextBox_MotorParam.Size = new System.Drawing.Size(846, 303);
  1510. this.richTextBox_MotorParam.TabIndex = 0;
  1511. this.richTextBox_MotorParam.Text = "";
  1512. //
  1513. // tabPage_BikeParam
  1514. //
  1515. this.tabPage_BikeParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1516. this.tabPage_BikeParam.Controls.Add(this.textBox_AutoPowerOff);
  1517. this.tabPage_BikeParam.Controls.Add(this.label95);
  1518. this.tabPage_BikeParam.Controls.Add(this.textBox_PowerOffDelay);
  1519. this.tabPage_BikeParam.Controls.Add(this.textBox_PowerOnDelay);
  1520. this.tabPage_BikeParam.Controls.Add(this.label93);
  1521. this.tabPage_BikeParam.Controls.Add(this.label94);
  1522. this.tabPage_BikeParam.Controls.Add(this.comboBox_TailLightVol);
  1523. this.tabPage_BikeParam.Controls.Add(this.label92);
  1524. this.tabPage_BikeParam.Controls.Add(this.comboBox_FrontLightVol);
  1525. this.tabPage_BikeParam.Controls.Add(this.label91);
  1526. this.tabPage_BikeParam.Controls.Add(this.comboBox_TailLightMode);
  1527. this.tabPage_BikeParam.Controls.Add(this.label90);
  1528. this.tabPage_BikeParam.Controls.Add(this.button_WriteBikeParam);
  1529. this.tabPage_BikeParam.Controls.Add(this.button_ReadBikeParam);
  1530. this.tabPage_BikeParam.Controls.Add(this.richTextBox_BikeParam);
  1531. this.tabPage_BikeParam.Location = new System.Drawing.Point(4, 30);
  1532. this.tabPage_BikeParam.Name = "tabPage_BikeParam";
  1533. this.tabPage_BikeParam.Padding = new System.Windows.Forms.Padding(3);
  1534. this.tabPage_BikeParam.Size = new System.Drawing.Size(990, 315);
  1535. this.tabPage_BikeParam.TabIndex = 1;
  1536. this.tabPage_BikeParam.Text = "整车信息";
  1537. //
  1538. // textBox_AutoPowerOff
  1539. //
  1540. this.textBox_AutoPowerOff.Location = new System.Drawing.Point(932, 169);
  1541. this.textBox_AutoPowerOff.Name = "textBox_AutoPowerOff";
  1542. this.textBox_AutoPowerOff.Size = new System.Drawing.Size(55, 28);
  1543. this.textBox_AutoPowerOff.TabIndex = 17;
  1544. //
  1545. // label95
  1546. //
  1547. this.label95.AutoSize = true;
  1548. this.label95.Location = new System.Drawing.Point(855, 173);
  1549. this.label95.Name = "label95";
  1550. this.label95.Size = new System.Drawing.Size(74, 21);
  1551. this.label95.TabIndex = 16;
  1552. this.label95.Text = "自动关机";
  1553. //
  1554. // textBox_PowerOffDelay
  1555. //
  1556. this.textBox_PowerOffDelay.Location = new System.Drawing.Point(932, 138);
  1557. this.textBox_PowerOffDelay.Name = "textBox_PowerOffDelay";
  1558. this.textBox_PowerOffDelay.Size = new System.Drawing.Size(55, 28);
  1559. this.textBox_PowerOffDelay.TabIndex = 15;
  1560. //
  1561. // textBox_PowerOnDelay
  1562. //
  1563. this.textBox_PowerOnDelay.Location = new System.Drawing.Point(932, 107);
  1564. this.textBox_PowerOnDelay.Name = "textBox_PowerOnDelay";
  1565. this.textBox_PowerOnDelay.Size = new System.Drawing.Size(55, 28);
  1566. this.textBox_PowerOnDelay.TabIndex = 14;
  1567. //
  1568. // label93
  1569. //
  1570. this.label93.AutoSize = true;
  1571. this.label93.Location = new System.Drawing.Point(855, 142);
  1572. this.label93.Name = "label93";
  1573. this.label93.Size = new System.Drawing.Size(74, 21);
  1574. this.label93.TabIndex = 13;
  1575. this.label93.Text = "关机延时";
  1576. //
  1577. // label94
  1578. //
  1579. this.label94.AutoSize = true;
  1580. this.label94.Location = new System.Drawing.Point(855, 111);
  1581. this.label94.Name = "label94";
  1582. this.label94.Size = new System.Drawing.Size(74, 21);
  1583. this.label94.TabIndex = 11;
  1584. this.label94.Text = "开机延时";
  1585. //
  1586. // comboBox_TailLightVol
  1587. //
  1588. this.comboBox_TailLightVol.FormattingEnabled = true;
  1589. this.comboBox_TailLightVol.Items.AddRange(new object[] {
  1590. "6V",
  1591. "12V"});
  1592. this.comboBox_TailLightVol.Location = new System.Drawing.Point(932, 76);
  1593. this.comboBox_TailLightVol.Name = "comboBox_TailLightVol";
  1594. this.comboBox_TailLightVol.Size = new System.Drawing.Size(55, 29);
  1595. this.comboBox_TailLightVol.TabIndex = 10;
  1596. //
  1597. // label92
  1598. //
  1599. this.label92.AutoSize = true;
  1600. this.label92.Location = new System.Drawing.Point(855, 80);
  1601. this.label92.Name = "label92";
  1602. this.label92.Size = new System.Drawing.Size(74, 21);
  1603. this.label92.TabIndex = 9;
  1604. this.label92.Text = "尾灯电压";
  1605. //
  1606. // comboBox_FrontLightVol
  1607. //
  1608. this.comboBox_FrontLightVol.FormattingEnabled = true;
  1609. this.comboBox_FrontLightVol.Items.AddRange(new object[] {
  1610. "6V",
  1611. "12V"});
  1612. this.comboBox_FrontLightVol.Location = new System.Drawing.Point(932, 45);
  1613. this.comboBox_FrontLightVol.Name = "comboBox_FrontLightVol";
  1614. this.comboBox_FrontLightVol.Size = new System.Drawing.Size(55, 29);
  1615. this.comboBox_FrontLightVol.TabIndex = 8;
  1616. //
  1617. // label91
  1618. //
  1619. this.label91.AutoSize = true;
  1620. this.label91.Location = new System.Drawing.Point(855, 49);
  1621. this.label91.Name = "label91";
  1622. this.label91.Size = new System.Drawing.Size(74, 21);
  1623. this.label91.TabIndex = 7;
  1624. this.label91.Text = "前灯电压";
  1625. //
  1626. // comboBox_TailLightMode
  1627. //
  1628. this.comboBox_TailLightMode.FormattingEnabled = true;
  1629. this.comboBox_TailLightMode.Items.AddRange(new object[] {
  1630. "1",
  1631. "2",
  1632. "3",
  1633. "4",
  1634. "5",
  1635. "6"});
  1636. this.comboBox_TailLightMode.Location = new System.Drawing.Point(932, 14);
  1637. this.comboBox_TailLightMode.Name = "comboBox_TailLightMode";
  1638. this.comboBox_TailLightMode.Size = new System.Drawing.Size(55, 29);
  1639. this.comboBox_TailLightMode.TabIndex = 6;
  1640. //
  1641. // label90
  1642. //
  1643. this.label90.AutoSize = true;
  1644. this.label90.Location = new System.Drawing.Point(855, 18);
  1645. this.label90.Name = "label90";
  1646. this.label90.Size = new System.Drawing.Size(74, 21);
  1647. this.label90.TabIndex = 5;
  1648. this.label90.Text = "尾灯模式";
  1649. //
  1650. // button_WriteBikeParam
  1651. //
  1652. this.button_WriteBikeParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  1653. this.button_WriteBikeParam.Location = new System.Drawing.Point(858, 259);
  1654. this.button_WriteBikeParam.Name = "button_WriteBikeParam";
  1655. this.button_WriteBikeParam.Size = new System.Drawing.Size(126, 50);
  1656. this.button_WriteBikeParam.TabIndex = 4;
  1657. this.button_WriteBikeParam.Text = "写入参数";
  1658. this.button_WriteBikeParam.UseVisualStyleBackColor = false;
  1659. this.button_WriteBikeParam.Click += new System.EventHandler(this.button_WriteBikeParam_Click);
  1660. //
  1661. // button_ReadBikeParam
  1662. //
  1663. this.button_ReadBikeParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  1664. this.button_ReadBikeParam.Location = new System.Drawing.Point(858, 203);
  1665. this.button_ReadBikeParam.Name = "button_ReadBikeParam";
  1666. this.button_ReadBikeParam.Size = new System.Drawing.Size(126, 50);
  1667. this.button_ReadBikeParam.TabIndex = 3;
  1668. this.button_ReadBikeParam.Text = "读取参数";
  1669. this.button_ReadBikeParam.UseVisualStyleBackColor = false;
  1670. this.button_ReadBikeParam.Click += new System.EventHandler(this.button_ReadBikeParam_Click);
  1671. //
  1672. // richTextBox_BikeParam
  1673. //
  1674. this.richTextBox_BikeParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1675. this.richTextBox_BikeParam.Location = new System.Drawing.Point(6, 6);
  1676. this.richTextBox_BikeParam.Name = "richTextBox_BikeParam";
  1677. this.richTextBox_BikeParam.Size = new System.Drawing.Size(846, 303);
  1678. this.richTextBox_BikeParam.TabIndex = 2;
  1679. this.richTextBox_BikeParam.Text = "";
  1680. //
  1681. // tabPage_ControlParam
  1682. //
  1683. this.tabPage_ControlParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1684. this.tabPage_ControlParam.Controls.Add(this.button_WriteControlParam);
  1685. this.tabPage_ControlParam.Controls.Add(this.button_ReadControlParam);
  1686. this.tabPage_ControlParam.Controls.Add(this.richTextBox_ControlParam);
  1687. this.tabPage_ControlParam.Location = new System.Drawing.Point(4, 30);
  1688. this.tabPage_ControlParam.Name = "tabPage_ControlParam";
  1689. this.tabPage_ControlParam.Size = new System.Drawing.Size(990, 315);
  1690. this.tabPage_ControlParam.TabIndex = 2;
  1691. this.tabPage_ControlParam.Text = "控制参数";
  1692. //
  1693. // button_WriteControlParam
  1694. //
  1695. this.button_WriteControlParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  1696. this.button_WriteControlParam.Location = new System.Drawing.Point(858, 259);
  1697. this.button_WriteControlParam.Name = "button_WriteControlParam";
  1698. this.button_WriteControlParam.Size = new System.Drawing.Size(126, 50);
  1699. this.button_WriteControlParam.TabIndex = 4;
  1700. this.button_WriteControlParam.Text = "写入参数";
  1701. this.button_WriteControlParam.UseVisualStyleBackColor = false;
  1702. this.button_WriteControlParam.Click += new System.EventHandler(this.button_WriteControlParam_Click);
  1703. //
  1704. // button_ReadControlParam
  1705. //
  1706. this.button_ReadControlParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  1707. this.button_ReadControlParam.Location = new System.Drawing.Point(858, 203);
  1708. this.button_ReadControlParam.Name = "button_ReadControlParam";
  1709. this.button_ReadControlParam.Size = new System.Drawing.Size(126, 50);
  1710. this.button_ReadControlParam.TabIndex = 3;
  1711. this.button_ReadControlParam.Text = "读取参数";
  1712. this.button_ReadControlParam.UseVisualStyleBackColor = false;
  1713. this.button_ReadControlParam.Click += new System.EventHandler(this.button_ReadControlParam_Click);
  1714. //
  1715. // richTextBox_ControlParam
  1716. //
  1717. this.richTextBox_ControlParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1718. this.richTextBox_ControlParam.Location = new System.Drawing.Point(6, 6);
  1719. this.richTextBox_ControlParam.Name = "richTextBox_ControlParam";
  1720. this.richTextBox_ControlParam.Size = new System.Drawing.Size(846, 303);
  1721. this.richTextBox_ControlParam.TabIndex = 2;
  1722. this.richTextBox_ControlParam.Text = "";
  1723. //
  1724. // tabPage_SensorParam
  1725. //
  1726. this.tabPage_SensorParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1727. this.tabPage_SensorParam.Controls.Add(this.button_WriteTqSensorParam);
  1728. this.tabPage_SensorParam.Controls.Add(this.comboBox_TorqueSet);
  1729. this.tabPage_SensorParam.Controls.Add(this.label29);
  1730. this.tabPage_SensorParam.Controls.Add(this.textBox_Load);
  1731. this.tabPage_SensorParam.Controls.Add(this.label27);
  1732. this.tabPage_SensorParam.Controls.Add(this.label26);
  1733. this.tabPage_SensorParam.Controls.Add(this.button_Write_Cal);
  1734. this.tabPage_SensorParam.Controls.Add(this.button_WriteSensorParam);
  1735. this.tabPage_SensorParam.Controls.Add(this.button_ReadSensorParam);
  1736. this.tabPage_SensorParam.Controls.Add(this.richTextBox_SensorParam);
  1737. this.tabPage_SensorParam.Location = new System.Drawing.Point(4, 30);
  1738. this.tabPage_SensorParam.Name = "tabPage_SensorParam";
  1739. this.tabPage_SensorParam.Size = new System.Drawing.Size(990, 315);
  1740. this.tabPage_SensorParam.TabIndex = 3;
  1741. this.tabPage_SensorParam.Text = "传感器参数";
  1742. //
  1743. // button_WriteTqSensorParam
  1744. //
  1745. this.button_WriteTqSensorParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
  1746. this.button_WriteTqSensorParam.Location = new System.Drawing.Point(858, 205);
  1747. this.button_WriteTqSensorParam.Name = "button_WriteTqSensorParam";
  1748. this.button_WriteTqSensorParam.Size = new System.Drawing.Size(126, 50);
  1749. this.button_WriteTqSensorParam.TabIndex = 10;
  1750. this.button_WriteTqSensorParam.Text = "写入力矩传感器参数";
  1751. this.button_WriteTqSensorParam.UseVisualStyleBackColor = false;
  1752. this.button_WriteTqSensorParam.Click += new System.EventHandler(this.button_WriteTqSensorParam_Click);
  1753. //
  1754. // comboBox_TorqueSet
  1755. //
  1756. this.comboBox_TorqueSet.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
  1757. this.comboBox_TorqueSet.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  1758. this.comboBox_TorqueSet.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1759. this.comboBox_TorqueSet.FormattingEnabled = true;
  1760. this.comboBox_TorqueSet.Items.AddRange(new object[] {
  1761. "1",
  1762. "2",
  1763. "3",
  1764. "4"});
  1765. this.comboBox_TorqueSet.Location = new System.Drawing.Point(911, 12);
  1766. this.comboBox_TorqueSet.Name = "comboBox_TorqueSet";
  1767. this.comboBox_TorqueSet.Size = new System.Drawing.Size(73, 29);
  1768. this.comboBox_TorqueSet.TabIndex = 9;
  1769. //
  1770. // label29
  1771. //
  1772. this.label29.BackColor = System.Drawing.Color.Silver;
  1773. this.label29.Location = new System.Drawing.Point(858, 146);
  1774. this.label29.Name = "label29";
  1775. this.label29.Size = new System.Drawing.Size(112, 1);
  1776. this.label29.TabIndex = 7;
  1777. //
  1778. // textBox_Load
  1779. //
  1780. this.textBox_Load.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1781. this.textBox_Load.Location = new System.Drawing.Point(911, 52);
  1782. this.textBox_Load.Name = "textBox_Load";
  1783. this.textBox_Load.Size = new System.Drawing.Size(73, 28);
  1784. this.textBox_Load.TabIndex = 6;
  1785. this.textBox_Load.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1786. //
  1787. // label27
  1788. //
  1789. this.label27.AutoSize = true;
  1790. this.label27.Location = new System.Drawing.Point(858, 45);
  1791. this.label27.Name = "label27";
  1792. this.label27.Size = new System.Drawing.Size(42, 42);
  1793. this.label27.TabIndex = 5;
  1794. this.label27.Text = "负载\r\nN.m";
  1795. //
  1796. // label26
  1797. //
  1798. this.label26.AutoSize = true;
  1799. this.label26.Location = new System.Drawing.Point(858, 16);
  1800. this.label26.Name = "label26";
  1801. this.label26.Size = new System.Drawing.Size(42, 21);
  1802. this.label26.TabIndex = 3;
  1803. this.label26.Text = "序号";
  1804. //
  1805. // button_Write_Cal
  1806. //
  1807. this.button_Write_Cal.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(128)))));
  1808. this.button_Write_Cal.Location = new System.Drawing.Point(858, 92);
  1809. this.button_Write_Cal.Name = "button_Write_Cal";
  1810. this.button_Write_Cal.Size = new System.Drawing.Size(126, 50);
  1811. this.button_Write_Cal.TabIndex = 2;
  1812. this.button_Write_Cal.Text = "力矩传感器标定";
  1813. this.button_Write_Cal.UseVisualStyleBackColor = false;
  1814. this.button_Write_Cal.Click += new System.EventHandler(this.button_Write_Cal_Click);
  1815. //
  1816. // button_WriteSensorParam
  1817. //
  1818. this.button_WriteSensorParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  1819. this.button_WriteSensorParam.Location = new System.Drawing.Point(858, 259);
  1820. this.button_WriteSensorParam.Name = "button_WriteSensorParam";
  1821. this.button_WriteSensorParam.Size = new System.Drawing.Size(126, 50);
  1822. this.button_WriteSensorParam.TabIndex = 2;
  1823. this.button_WriteSensorParam.Text = "写入其它传感器参数";
  1824. this.button_WriteSensorParam.UseVisualStyleBackColor = false;
  1825. this.button_WriteSensorParam.Click += new System.EventHandler(this.button_WriteSensorParam_Click);
  1826. //
  1827. // button_ReadSensorParam
  1828. //
  1829. this.button_ReadSensorParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  1830. this.button_ReadSensorParam.Location = new System.Drawing.Point(858, 151);
  1831. this.button_ReadSensorParam.Name = "button_ReadSensorParam";
  1832. this.button_ReadSensorParam.Size = new System.Drawing.Size(126, 50);
  1833. this.button_ReadSensorParam.TabIndex = 2;
  1834. this.button_ReadSensorParam.Text = "读取参数";
  1835. this.button_ReadSensorParam.UseVisualStyleBackColor = false;
  1836. this.button_ReadSensorParam.Click += new System.EventHandler(this.button_ReadSensorParam_Click);
  1837. //
  1838. // richTextBox_SensorParam
  1839. //
  1840. this.richTextBox_SensorParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1841. this.richTextBox_SensorParam.Location = new System.Drawing.Point(6, 6);
  1842. this.richTextBox_SensorParam.Name = "richTextBox_SensorParam";
  1843. this.richTextBox_SensorParam.Size = new System.Drawing.Size(846, 303);
  1844. this.richTextBox_SensorParam.TabIndex = 1;
  1845. this.richTextBox_SensorParam.Text = "";
  1846. //
  1847. // tabPage_AssistParam
  1848. //
  1849. this.tabPage_AssistParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1850. this.tabPage_AssistParam.Controls.Add(this.label62);
  1851. this.tabPage_AssistParam.Controls.Add(this.label47);
  1852. this.tabPage_AssistParam.Controls.Add(this.comboBox_AssistTorque);
  1853. this.tabPage_AssistParam.Controls.Add(this.comboBox_AssistCadence);
  1854. this.tabPage_AssistParam.Controls.Add(this.label25);
  1855. this.tabPage_AssistParam.Controls.Add(this.button_WriteAssistParam);
  1856. this.tabPage_AssistParam.Controls.Add(this.button_ReadAssistParam);
  1857. this.tabPage_AssistParam.Controls.Add(this.richTextBox_AssistParam);
  1858. this.tabPage_AssistParam.Location = new System.Drawing.Point(4, 30);
  1859. this.tabPage_AssistParam.Name = "tabPage_AssistParam";
  1860. this.tabPage_AssistParam.Size = new System.Drawing.Size(990, 315);
  1861. this.tabPage_AssistParam.TabIndex = 4;
  1862. this.tabPage_AssistParam.Text = "助力参数";
  1863. //
  1864. // label62
  1865. //
  1866. this.label62.BackColor = System.Drawing.Color.Silver;
  1867. this.label62.Location = new System.Drawing.Point(858, 237);
  1868. this.label62.Name = "label62";
  1869. this.label62.Size = new System.Drawing.Size(126, 1);
  1870. this.label62.TabIndex = 10;
  1871. //
  1872. // label47
  1873. //
  1874. this.label47.AutoSize = true;
  1875. this.label47.Location = new System.Drawing.Point(883, 10);
  1876. this.label47.Name = "label47";
  1877. this.label47.Size = new System.Drawing.Size(74, 42);
  1878. this.label47.TabIndex = 9;
  1879. this.label47.Text = "助力转矩\r\n曲线编号";
  1880. //
  1881. // comboBox_AssistTorque
  1882. //
  1883. this.comboBox_AssistTorque.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
  1884. this.comboBox_AssistTorque.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  1885. this.comboBox_AssistTorque.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1886. this.comboBox_AssistTorque.FormattingEnabled = true;
  1887. this.comboBox_AssistTorque.Items.AddRange(new object[] {
  1888. "1",
  1889. "2",
  1890. "3",
  1891. "4",
  1892. "5",
  1893. "6",
  1894. "7",
  1895. "8",
  1896. "9",
  1897. "10",
  1898. "11",
  1899. "12",
  1900. "13",
  1901. "14",
  1902. "15"});
  1903. this.comboBox_AssistTorque.Location = new System.Drawing.Point(870, 55);
  1904. this.comboBox_AssistTorque.Name = "comboBox_AssistTorque";
  1905. this.comboBox_AssistTorque.Size = new System.Drawing.Size(100, 29);
  1906. this.comboBox_AssistTorque.TabIndex = 8;
  1907. //
  1908. // comboBox_AssistCadence
  1909. //
  1910. this.comboBox_AssistCadence.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
  1911. this.comboBox_AssistCadence.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  1912. this.comboBox_AssistCadence.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1913. this.comboBox_AssistCadence.FormattingEnabled = true;
  1914. this.comboBox_AssistCadence.Items.AddRange(new object[] {
  1915. "1",
  1916. "2",
  1917. "3",
  1918. "4",
  1919. "5"});
  1920. this.comboBox_AssistCadence.Location = new System.Drawing.Point(870, 132);
  1921. this.comboBox_AssistCadence.Name = "comboBox_AssistCadence";
  1922. this.comboBox_AssistCadence.Size = new System.Drawing.Size(100, 29);
  1923. this.comboBox_AssistCadence.TabIndex = 7;
  1924. //
  1925. // label25
  1926. //
  1927. this.label25.AutoSize = true;
  1928. this.label25.Location = new System.Drawing.Point(883, 87);
  1929. this.label25.Name = "label25";
  1930. this.label25.Size = new System.Drawing.Size(74, 42);
  1931. this.label25.TabIndex = 2;
  1932. this.label25.Text = "助力踏频\r\n曲线编号";
  1933. //
  1934. // button_WriteAssistParam
  1935. //
  1936. this.button_WriteAssistParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  1937. this.button_WriteAssistParam.Location = new System.Drawing.Point(858, 259);
  1938. this.button_WriteAssistParam.Name = "button_WriteAssistParam";
  1939. this.button_WriteAssistParam.Size = new System.Drawing.Size(126, 50);
  1940. this.button_WriteAssistParam.TabIndex = 4;
  1941. this.button_WriteAssistParam.Text = "写入参数";
  1942. this.button_WriteAssistParam.UseVisualStyleBackColor = false;
  1943. this.button_WriteAssistParam.Click += new System.EventHandler(this.button_WriteAssistParam_Click);
  1944. //
  1945. // button_ReadAssistParam
  1946. //
  1947. this.button_ReadAssistParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  1948. this.button_ReadAssistParam.Location = new System.Drawing.Point(858, 167);
  1949. this.button_ReadAssistParam.Name = "button_ReadAssistParam";
  1950. this.button_ReadAssistParam.Size = new System.Drawing.Size(126, 50);
  1951. this.button_ReadAssistParam.TabIndex = 3;
  1952. this.button_ReadAssistParam.Text = "读取参数";
  1953. this.button_ReadAssistParam.UseVisualStyleBackColor = false;
  1954. this.button_ReadAssistParam.Click += new System.EventHandler(this.button_ReadAssistParam_Click);
  1955. //
  1956. // richTextBox_AssistParam
  1957. //
  1958. this.richTextBox_AssistParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1959. this.richTextBox_AssistParam.Location = new System.Drawing.Point(6, 6);
  1960. this.richTextBox_AssistParam.Name = "richTextBox_AssistParam";
  1961. this.richTextBox_AssistParam.Size = new System.Drawing.Size(846, 303);
  1962. this.richTextBox_AssistParam.TabIndex = 2;
  1963. this.richTextBox_AssistParam.Text = "";
  1964. //
  1965. // tabPage_DebugParam
  1966. //
  1967. this.tabPage_DebugParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1968. this.tabPage_DebugParam.Controls.Add(this.button_WriteDebugParam);
  1969. this.tabPage_DebugParam.Controls.Add(this.button_ReadDebugParam);
  1970. this.tabPage_DebugParam.Controls.Add(this.richTextBox_DebugParam);
  1971. this.tabPage_DebugParam.ForeColor = System.Drawing.Color.Black;
  1972. this.tabPage_DebugParam.Location = new System.Drawing.Point(4, 30);
  1973. this.tabPage_DebugParam.Name = "tabPage_DebugParam";
  1974. this.tabPage_DebugParam.Size = new System.Drawing.Size(990, 315);
  1975. this.tabPage_DebugParam.TabIndex = 5;
  1976. this.tabPage_DebugParam.Text = "调试模式";
  1977. //
  1978. // button_WriteDebugParam
  1979. //
  1980. this.button_WriteDebugParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  1981. this.button_WriteDebugParam.Location = new System.Drawing.Point(858, 259);
  1982. this.button_WriteDebugParam.Name = "button_WriteDebugParam";
  1983. this.button_WriteDebugParam.Size = new System.Drawing.Size(126, 50);
  1984. this.button_WriteDebugParam.TabIndex = 4;
  1985. this.button_WriteDebugParam.Text = "写入";
  1986. this.button_WriteDebugParam.UseVisualStyleBackColor = false;
  1987. this.button_WriteDebugParam.Click += new System.EventHandler(this.button_WriteDebugParam_Click);
  1988. //
  1989. // button_ReadDebugParam
  1990. //
  1991. this.button_ReadDebugParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  1992. this.button_ReadDebugParam.Location = new System.Drawing.Point(858, 203);
  1993. this.button_ReadDebugParam.Name = "button_ReadDebugParam";
  1994. this.button_ReadDebugParam.Size = new System.Drawing.Size(126, 50);
  1995. this.button_ReadDebugParam.TabIndex = 3;
  1996. this.button_ReadDebugParam.Text = "读取";
  1997. this.button_ReadDebugParam.UseVisualStyleBackColor = false;
  1998. this.button_ReadDebugParam.Click += new System.EventHandler(this.button_ReadDebugParam_Click);
  1999. //
  2000. // richTextBox_DebugParam
  2001. //
  2002. this.richTextBox_DebugParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  2003. this.richTextBox_DebugParam.Location = new System.Drawing.Point(6, 6);
  2004. this.richTextBox_DebugParam.Name = "richTextBox_DebugParam";
  2005. this.richTextBox_DebugParam.Size = new System.Drawing.Size(846, 303);
  2006. this.richTextBox_DebugParam.TabIndex = 2;
  2007. this.richTextBox_DebugParam.Text = "";
  2008. //
  2009. // tabPage_RecordInfo
  2010. //
  2011. this.tabPage_RecordInfo.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  2012. this.tabPage_RecordInfo.Controls.Add(this.label89);
  2013. this.tabPage_RecordInfo.Controls.Add(this.label88);
  2014. this.tabPage_RecordInfo.Controls.Add(this.textBox_LogAddrEnd);
  2015. this.tabPage_RecordInfo.Controls.Add(this.label_LogAddrBegin);
  2016. this.tabPage_RecordInfo.Controls.Add(this.textBox_LogAddrBegin);
  2017. this.tabPage_RecordInfo.Controls.Add(this.button_SaveRecordInfo);
  2018. this.tabPage_RecordInfo.Controls.Add(this.button_ReadRecord);
  2019. this.tabPage_RecordInfo.Controls.Add(this.button_ExportLog);
  2020. this.tabPage_RecordInfo.Controls.Add(this.richTextBox_Record);
  2021. this.tabPage_RecordInfo.Location = new System.Drawing.Point(4, 30);
  2022. this.tabPage_RecordInfo.Name = "tabPage_RecordInfo";
  2023. this.tabPage_RecordInfo.Size = new System.Drawing.Size(990, 315);
  2024. this.tabPage_RecordInfo.TabIndex = 6;
  2025. this.tabPage_RecordInfo.Text = "历史信息";
  2026. //
  2027. // label89
  2028. //
  2029. this.label89.BackColor = System.Drawing.Color.Silver;
  2030. this.label89.Location = new System.Drawing.Point(858, 136);
  2031. this.label89.Name = "label89";
  2032. this.label89.Size = new System.Drawing.Size(126, 1);
  2033. this.label89.TabIndex = 14;
  2034. //
  2035. // label88
  2036. //
  2037. this.label88.AutoSize = true;
  2038. this.label88.Location = new System.Drawing.Point(868, 70);
  2039. this.label88.Name = "label88";
  2040. this.label88.Size = new System.Drawing.Size(106, 21);
  2041. this.label88.TabIndex = 10;
  2042. this.label88.Text = "日志结束地址";
  2043. this.label88.DoubleClick += new System.EventHandler(this.label88_DoubleClick);
  2044. //
  2045. // textBox_LogAddrEnd
  2046. //
  2047. this.textBox_LogAddrEnd.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  2048. this.textBox_LogAddrEnd.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F);
  2049. this.textBox_LogAddrEnd.Location = new System.Drawing.Point(858, 97);
  2050. this.textBox_LogAddrEnd.Name = "textBox_LogAddrEnd";
  2051. this.textBox_LogAddrEnd.ReadOnly = true;
  2052. this.textBox_LogAddrEnd.Size = new System.Drawing.Size(126, 28);
  2053. this.textBox_LogAddrEnd.TabIndex = 11;
  2054. this.textBox_LogAddrEnd.Text = "0801FFFF";
  2055. this.textBox_LogAddrEnd.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  2056. //
  2057. // label_LogAddrBegin
  2058. //
  2059. this.label_LogAddrBegin.AutoSize = true;
  2060. this.label_LogAddrBegin.Location = new System.Drawing.Point(868, 9);
  2061. this.label_LogAddrBegin.Name = "label_LogAddrBegin";
  2062. this.label_LogAddrBegin.Size = new System.Drawing.Size(106, 21);
  2063. this.label_LogAddrBegin.TabIndex = 8;
  2064. this.label_LogAddrBegin.Text = "日志起始地址";
  2065. this.label_LogAddrBegin.DoubleClick += new System.EventHandler(this.label_LogAddrBegin_DoubleClick_1);
  2066. //
  2067. // textBox_LogAddrBegin
  2068. //
  2069. this.textBox_LogAddrBegin.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  2070. this.textBox_LogAddrBegin.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F);
  2071. this.textBox_LogAddrBegin.Location = new System.Drawing.Point(858, 36);
  2072. this.textBox_LogAddrBegin.Name = "textBox_LogAddrBegin";
  2073. this.textBox_LogAddrBegin.ReadOnly = true;
  2074. this.textBox_LogAddrBegin.Size = new System.Drawing.Size(126, 28);
  2075. this.textBox_LogAddrBegin.TabIndex = 9;
  2076. this.textBox_LogAddrBegin.Text = "0801F800";
  2077. this.textBox_LogAddrBegin.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  2078. //
  2079. // button_SaveRecordInfo
  2080. //
  2081. this.button_SaveRecordInfo.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
  2082. this.button_SaveRecordInfo.Location = new System.Drawing.Point(858, 259);
  2083. this.button_SaveRecordInfo.Name = "button_SaveRecordInfo";
  2084. this.button_SaveRecordInfo.Size = new System.Drawing.Size(126, 50);
  2085. this.button_SaveRecordInfo.TabIndex = 4;
  2086. this.button_SaveRecordInfo.Text = "保存日志";
  2087. this.button_SaveRecordInfo.UseVisualStyleBackColor = false;
  2088. this.button_SaveRecordInfo.Click += new System.EventHandler(this.button_SaveRecordInfo_Click);
  2089. //
  2090. // button_ReadRecord
  2091. //
  2092. this.button_ReadRecord.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  2093. this.button_ReadRecord.Location = new System.Drawing.Point(858, 147);
  2094. this.button_ReadRecord.Name = "button_ReadRecord";
  2095. this.button_ReadRecord.Size = new System.Drawing.Size(126, 50);
  2096. this.button_ReadRecord.TabIndex = 3;
  2097. this.button_ReadRecord.Text = "读取历史";
  2098. this.button_ReadRecord.UseVisualStyleBackColor = false;
  2099. this.button_ReadRecord.Click += new System.EventHandler(this.button_ReadRecord_Click);
  2100. //
  2101. // button_ExportLog
  2102. //
  2103. this.button_ExportLog.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(128)))));
  2104. this.button_ExportLog.Location = new System.Drawing.Point(858, 203);
  2105. this.button_ExportLog.Name = "button_ExportLog";
  2106. this.button_ExportLog.Size = new System.Drawing.Size(126, 50);
  2107. this.button_ExportLog.TabIndex = 3;
  2108. this.button_ExportLog.Text = "导出日志";
  2109. this.button_ExportLog.UseVisualStyleBackColor = false;
  2110. this.button_ExportLog.Click += new System.EventHandler(this.button_ExportLog_Click);
  2111. //
  2112. // richTextBox_Record
  2113. //
  2114. this.richTextBox_Record.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  2115. this.richTextBox_Record.Location = new System.Drawing.Point(6, 6);
  2116. this.richTextBox_Record.Name = "richTextBox_Record";
  2117. this.richTextBox_Record.Size = new System.Drawing.Size(846, 303);
  2118. this.richTextBox_Record.TabIndex = 2;
  2119. this.richTextBox_Record.Text = "";
  2120. //
  2121. // tabPage_OtherInfo
  2122. //
  2123. this.tabPage_OtherInfo.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  2124. this.tabPage_OtherInfo.Controls.Add(this.groupBox16);
  2125. this.tabPage_OtherInfo.Controls.Add(this.groupBox9);
  2126. this.tabPage_OtherInfo.Controls.Add(this.groupBox8);
  2127. this.tabPage_OtherInfo.Controls.Add(this.groupBox7);
  2128. this.tabPage_OtherInfo.Controls.Add(this.groupBox6);
  2129. this.tabPage_OtherInfo.Controls.Add(this.groupBox5);
  2130. this.tabPage_OtherInfo.Controls.Add(this.groupBox4);
  2131. this.tabPage_OtherInfo.Location = new System.Drawing.Point(4, 30);
  2132. this.tabPage_OtherInfo.Name = "tabPage_OtherInfo";
  2133. this.tabPage_OtherInfo.Size = new System.Drawing.Size(990, 315);
  2134. this.tabPage_OtherInfo.TabIndex = 7;
  2135. this.tabPage_OtherInfo.Text = "其它信息";
  2136. //
  2137. // groupBox16
  2138. //
  2139. this.groupBox16.Controls.Add(this.groupBox18);
  2140. this.groupBox16.Controls.Add(this.groupBox17);
  2141. this.groupBox16.Controls.Add(this.button_ReadSaveFlag);
  2142. this.groupBox16.Controls.Add(this.button_WriteSaveFlag);
  2143. this.groupBox16.Controls.Add(this.checkBox_SaveYes);
  2144. this.groupBox16.Location = new System.Drawing.Point(707, 185);
  2145. this.groupBox16.Name = "groupBox16";
  2146. this.groupBox16.Size = new System.Drawing.Size(280, 127);
  2147. this.groupBox16.TabIndex = 5;
  2148. this.groupBox16.TabStop = false;
  2149. this.groupBox16.Text = "存储标志";
  2150. //
  2151. // groupBox18
  2152. //
  2153. this.groupBox18.Controls.Add(this.radioButton_SIP_SaveNo);
  2154. this.groupBox18.Controls.Add(this.radioButton_SIP_SaveYes);
  2155. this.groupBox18.Location = new System.Drawing.Point(107, 30);
  2156. this.groupBox18.Name = "groupBox18";
  2157. this.groupBox18.Size = new System.Drawing.Size(95, 95);
  2158. this.groupBox18.TabIndex = 11;
  2159. this.groupBox18.TabStop = false;
  2160. this.groupBox18.Text = "SIP校准";
  2161. //
  2162. // radioButton_SIP_SaveNo
  2163. //
  2164. this.radioButton_SIP_SaveNo.AutoSize = true;
  2165. this.radioButton_SIP_SaveNo.Location = new System.Drawing.Point(12, 31);
  2166. this.radioButton_SIP_SaveNo.Name = "radioButton_SIP_SaveNo";
  2167. this.radioButton_SIP_SaveNo.Size = new System.Drawing.Size(76, 25);
  2168. this.radioButton_SIP_SaveNo.TabIndex = 9;
  2169. this.radioButton_SIP_SaveNo.TabStop = true;
  2170. this.radioButton_SIP_SaveNo.Text = "未存储";
  2171. this.radioButton_SIP_SaveNo.UseVisualStyleBackColor = true;
  2172. //
  2173. // radioButton_SIP_SaveYes
  2174. //
  2175. this.radioButton_SIP_SaveYes.AutoSize = true;
  2176. this.radioButton_SIP_SaveYes.Location = new System.Drawing.Point(12, 56);
  2177. this.radioButton_SIP_SaveYes.Name = "radioButton_SIP_SaveYes";
  2178. this.radioButton_SIP_SaveYes.Size = new System.Drawing.Size(76, 25);
  2179. this.radioButton_SIP_SaveYes.TabIndex = 8;
  2180. this.radioButton_SIP_SaveYes.TabStop = true;
  2181. this.radioButton_SIP_SaveYes.Text = "已存储";
  2182. this.radioButton_SIP_SaveYes.UseVisualStyleBackColor = true;
  2183. //
  2184. // groupBox17
  2185. //
  2186. this.groupBox17.Controls.Add(this.radioButton_EE_SaveYes);
  2187. this.groupBox17.Controls.Add(this.radioButton_EE_SaveNo);
  2188. this.groupBox17.Location = new System.Drawing.Point(6, 29);
  2189. this.groupBox17.Name = "groupBox17";
  2190. this.groupBox17.Size = new System.Drawing.Size(95, 96);
  2191. this.groupBox17.TabIndex = 10;
  2192. this.groupBox17.TabStop = false;
  2193. this.groupBox17.Text = "EEPROM";
  2194. //
  2195. // radioButton_EE_SaveYes
  2196. //
  2197. this.radioButton_EE_SaveYes.AutoSize = true;
  2198. this.radioButton_EE_SaveYes.Location = new System.Drawing.Point(15, 57);
  2199. this.radioButton_EE_SaveYes.Name = "radioButton_EE_SaveYes";
  2200. this.radioButton_EE_SaveYes.Size = new System.Drawing.Size(76, 25);
  2201. this.radioButton_EE_SaveYes.TabIndex = 8;
  2202. this.radioButton_EE_SaveYes.TabStop = true;
  2203. this.radioButton_EE_SaveYes.Text = "已存储";
  2204. this.radioButton_EE_SaveYes.UseVisualStyleBackColor = true;
  2205. //
  2206. // radioButton_EE_SaveNo
  2207. //
  2208. this.radioButton_EE_SaveNo.AutoSize = true;
  2209. this.radioButton_EE_SaveNo.Location = new System.Drawing.Point(15, 32);
  2210. this.radioButton_EE_SaveNo.Name = "radioButton_EE_SaveNo";
  2211. this.radioButton_EE_SaveNo.Size = new System.Drawing.Size(76, 25);
  2212. this.radioButton_EE_SaveNo.TabIndex = 9;
  2213. this.radioButton_EE_SaveNo.TabStop = true;
  2214. this.radioButton_EE_SaveNo.Text = "未存储";
  2215. this.radioButton_EE_SaveNo.UseVisualStyleBackColor = true;
  2216. //
  2217. // button_ReadSaveFlag
  2218. //
  2219. this.button_ReadSaveFlag.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  2220. this.button_ReadSaveFlag.Location = new System.Drawing.Point(207, 59);
  2221. this.button_ReadSaveFlag.Name = "button_ReadSaveFlag";
  2222. this.button_ReadSaveFlag.Size = new System.Drawing.Size(61, 29);
  2223. this.button_ReadSaveFlag.TabIndex = 3;
  2224. this.button_ReadSaveFlag.Text = "查询";
  2225. this.button_ReadSaveFlag.UseVisualStyleBackColor = false;
  2226. this.button_ReadSaveFlag.Click += new System.EventHandler(this.button_ReadSaveFlag_Click);
  2227. //
  2228. // button_WriteSaveFlag
  2229. //
  2230. this.button_WriteSaveFlag.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(255)))));
  2231. this.button_WriteSaveFlag.Location = new System.Drawing.Point(207, 92);
  2232. this.button_WriteSaveFlag.Name = "button_WriteSaveFlag";
  2233. this.button_WriteSaveFlag.Size = new System.Drawing.Size(61, 29);
  2234. this.button_WriteSaveFlag.TabIndex = 4;
  2235. this.button_WriteSaveFlag.Text = "写入";
  2236. this.button_WriteSaveFlag.UseVisualStyleBackColor = false;
  2237. this.button_WriteSaveFlag.Click += new System.EventHandler(this.button_WriteSaveFlag_Click);
  2238. //
  2239. // checkBox_SaveYes
  2240. //
  2241. this.checkBox_SaveYes.AutoSize = true;
  2242. this.checkBox_SaveYes.Location = new System.Drawing.Point(207, 28);
  2243. this.checkBox_SaveYes.Name = "checkBox_SaveYes";
  2244. this.checkBox_SaveYes.Size = new System.Drawing.Size(61, 25);
  2245. this.checkBox_SaveYes.TabIndex = 5;
  2246. this.checkBox_SaveYes.Text = "保存";
  2247. this.checkBox_SaveYes.UseVisualStyleBackColor = true;
  2248. //
  2249. // groupBox9
  2250. //
  2251. this.groupBox9.Controls.Add(this.button_Recovery);
  2252. this.groupBox9.Controls.Add(this.button_ClearLog);
  2253. this.groupBox9.Controls.Add(this.button_Reset);
  2254. this.groupBox9.Controls.Add(this.button_SystemClear);
  2255. this.groupBox9.Location = new System.Drawing.Point(707, 4);
  2256. this.groupBox9.Name = "groupBox9";
  2257. this.groupBox9.Size = new System.Drawing.Size(280, 175);
  2258. this.groupBox9.TabIndex = 4;
  2259. this.groupBox9.TabStop = false;
  2260. this.groupBox9.Text = "系统操作";
  2261. //
  2262. // button_Recovery
  2263. //
  2264. this.button_Recovery.BackColor = System.Drawing.Color.Fuchsia;
  2265. this.button_Recovery.Location = new System.Drawing.Point(152, 28);
  2266. this.button_Recovery.Name = "button_Recovery";
  2267. this.button_Recovery.Size = new System.Drawing.Size(100, 60);
  2268. this.button_Recovery.TabIndex = 2;
  2269. this.button_Recovery.Text = "参数还原";
  2270. this.button_Recovery.UseVisualStyleBackColor = false;
  2271. this.button_Recovery.Click += new System.EventHandler(this.button_Recovery_Click);
  2272. //
  2273. // button_ClearLog
  2274. //
  2275. this.button_ClearLog.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  2276. this.button_ClearLog.Location = new System.Drawing.Point(152, 92);
  2277. this.button_ClearLog.Name = "button_ClearLog";
  2278. this.button_ClearLog.Size = new System.Drawing.Size(100, 60);
  2279. this.button_ClearLog.TabIndex = 2;
  2280. this.button_ClearLog.Text = "记录清除";
  2281. this.button_ClearLog.UseVisualStyleBackColor = false;
  2282. this.button_ClearLog.Click += new System.EventHandler(this.button_ClearLog_Click);
  2283. //
  2284. // button_Reset
  2285. //
  2286. this.button_Reset.BackColor = System.Drawing.Color.Lime;
  2287. this.button_Reset.Location = new System.Drawing.Point(21, 92);
  2288. this.button_Reset.Name = "button_Reset";
  2289. this.button_Reset.Size = new System.Drawing.Size(100, 60);
  2290. this.button_Reset.TabIndex = 2;
  2291. this.button_Reset.Text = "系统关机";
  2292. this.button_Reset.UseVisualStyleBackColor = false;
  2293. this.button_Reset.Click += new System.EventHandler(this.button_Reset_Click);
  2294. //
  2295. // button_SystemClear
  2296. //
  2297. this.button_SystemClear.BackColor = System.Drawing.Color.Red;
  2298. this.button_SystemClear.Location = new System.Drawing.Point(21, 28);
  2299. this.button_SystemClear.Name = "button_SystemClear";
  2300. this.button_SystemClear.Size = new System.Drawing.Size(100, 60);
  2301. this.button_SystemClear.TabIndex = 2;
  2302. this.button_SystemClear.Text = "系统清除";
  2303. this.button_SystemClear.UseVisualStyleBackColor = false;
  2304. this.button_SystemClear.Click += new System.EventHandler(this.button_SystemClear_Click);
  2305. //
  2306. // groupBox8
  2307. //
  2308. this.groupBox8.Controls.Add(this.button_ReadOnLine);
  2309. this.groupBox8.Controls.Add(this.textBox_Online);
  2310. this.groupBox8.Controls.Add(this.label42);
  2311. this.groupBox8.Location = new System.Drawing.Point(375, 248);
  2312. this.groupBox8.Name = "groupBox8";
  2313. this.groupBox8.Size = new System.Drawing.Size(326, 64);
  2314. this.groupBox8.TabIndex = 3;
  2315. this.groupBox8.TabStop = false;
  2316. this.groupBox8.Text = "在线查询";
  2317. //
  2318. // button_ReadOnLine
  2319. //
  2320. this.button_ReadOnLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  2321. this.button_ReadOnLine.Location = new System.Drawing.Point(201, 25);
  2322. this.button_ReadOnLine.Name = "button_ReadOnLine";
  2323. this.button_ReadOnLine.Size = new System.Drawing.Size(50, 29);
  2324. this.button_ReadOnLine.TabIndex = 2;
  2325. this.button_ReadOnLine.Text = "查询";
  2326. this.button_ReadOnLine.UseVisualStyleBackColor = false;
  2327. this.button_ReadOnLine.Click += new System.EventHandler(this.button_ReadOnLine_Click);
  2328. //
  2329. // textBox_Online
  2330. //
  2331. this.textBox_Online.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  2332. this.textBox_Online.Location = new System.Drawing.Point(82, 25);
  2333. this.textBox_Online.Name = "textBox_Online";
  2334. this.textBox_Online.ReadOnly = true;
  2335. this.textBox_Online.Size = new System.Drawing.Size(95, 28);
  2336. this.textBox_Online.TabIndex = 1;
  2337. //
  2338. // label42
  2339. //
  2340. this.label42.AutoSize = true;
  2341. this.label42.Location = new System.Drawing.Point(6, 29);
  2342. this.label42.Name = "label42";
  2343. this.label42.Size = new System.Drawing.Size(74, 21);
  2344. this.label42.TabIndex = 0;
  2345. this.label42.Text = "在线状态";
  2346. //
  2347. // groupBox7
  2348. //
  2349. this.groupBox7.Controls.Add(this.button_ReadMAC);
  2350. this.groupBox7.Controls.Add(this.button_WriteMac);
  2351. this.groupBox7.Controls.Add(this.textBox_PP);
  2352. this.groupBox7.Controls.Add(this.textBox_MACDate);
  2353. this.groupBox7.Controls.Add(this.textBox_MACAdd);
  2354. this.groupBox7.Controls.Add(this.label34);
  2355. this.groupBox7.Controls.Add(this.label39);
  2356. this.groupBox7.Controls.Add(this.textBox_MAC);
  2357. this.groupBox7.Controls.Add(this.label40);
  2358. this.groupBox7.Controls.Add(this.label41);
  2359. this.groupBox7.Location = new System.Drawing.Point(375, 4);
  2360. this.groupBox7.Name = "groupBox7";
  2361. this.groupBox7.Size = new System.Drawing.Size(326, 175);
  2362. this.groupBox7.TabIndex = 3;
  2363. this.groupBox7.TabStop = false;
  2364. this.groupBox7.Text = "生产信息";
  2365. //
  2366. // button_ReadMAC
  2367. //
  2368. this.button_ReadMAC.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  2369. this.button_ReadMAC.Location = new System.Drawing.Point(269, 106);
  2370. this.button_ReadMAC.Name = "button_ReadMAC";
  2371. this.button_ReadMAC.Size = new System.Drawing.Size(50, 62);
  2372. this.button_ReadMAC.TabIndex = 2;
  2373. this.button_ReadMAC.Text = "查询";
  2374. this.button_ReadMAC.UseVisualStyleBackColor = false;
  2375. this.button_ReadMAC.Click += new System.EventHandler(this.button_ReadMAC_Click);
  2376. //
  2377. // button_WriteMac
  2378. //
  2379. this.button_WriteMac.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  2380. this.button_WriteMac.Location = new System.Drawing.Point(269, 25);
  2381. this.button_WriteMac.Name = "button_WriteMac";
  2382. this.button_WriteMac.Size = new System.Drawing.Size(50, 62);
  2383. this.button_WriteMac.TabIndex = 2;
  2384. this.button_WriteMac.Text = "写入";
  2385. this.button_WriteMac.UseVisualStyleBackColor = false;
  2386. this.button_WriteMac.Click += new System.EventHandler(this.button_WriteMac_Click);
  2387. //
  2388. // textBox_PP
  2389. //
  2390. this.textBox_PP.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  2391. this.textBox_PP.Location = new System.Drawing.Point(82, 140);
  2392. this.textBox_PP.Name = "textBox_PP";
  2393. this.textBox_PP.Size = new System.Drawing.Size(181, 28);
  2394. this.textBox_PP.TabIndex = 1;
  2395. //
  2396. // textBox_MACDate
  2397. //
  2398. this.textBox_MACDate.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  2399. this.textBox_MACDate.Location = new System.Drawing.Point(82, 102);
  2400. this.textBox_MACDate.Name = "textBox_MACDate";
  2401. this.textBox_MACDate.Size = new System.Drawing.Size(181, 28);
  2402. this.textBox_MACDate.TabIndex = 1;
  2403. //
  2404. // textBox_MACAdd
  2405. //
  2406. this.textBox_MACAdd.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  2407. this.textBox_MACAdd.Location = new System.Drawing.Point(82, 64);
  2408. this.textBox_MACAdd.Name = "textBox_MACAdd";
  2409. this.textBox_MACAdd.Size = new System.Drawing.Size(181, 28);
  2410. this.textBox_MACAdd.TabIndex = 1;
  2411. //
  2412. // label34
  2413. //
  2414. this.label34.AutoSize = true;
  2415. this.label34.Location = new System.Drawing.Point(6, 144);
  2416. this.label34.Name = "label34";
  2417. this.label34.Size = new System.Drawing.Size(74, 21);
  2418. this.label34.TabIndex = 0;
  2419. this.label34.Text = "产品标识";
  2420. //
  2421. // label39
  2422. //
  2423. this.label39.AutoSize = true;
  2424. this.label39.Location = new System.Drawing.Point(6, 106);
  2425. this.label39.Name = "label39";
  2426. this.label39.Size = new System.Drawing.Size(74, 21);
  2427. this.label39.TabIndex = 0;
  2428. this.label39.Text = "生产日期";
  2429. //
  2430. // textBox_MAC
  2431. //
  2432. this.textBox_MAC.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  2433. this.textBox_MAC.Location = new System.Drawing.Point(82, 25);
  2434. this.textBox_MAC.Name = "textBox_MAC";
  2435. this.textBox_MAC.Size = new System.Drawing.Size(181, 28);
  2436. this.textBox_MAC.TabIndex = 1;
  2437. //
  2438. // label40
  2439. //
  2440. this.label40.AutoSize = true;
  2441. this.label40.Location = new System.Drawing.Point(6, 68);
  2442. this.label40.Name = "label40";
  2443. this.label40.Size = new System.Drawing.Size(58, 21);
  2444. this.label40.TabIndex = 0;
  2445. this.label40.Text = "生产地";
  2446. //
  2447. // label41
  2448. //
  2449. this.label41.AutoSize = true;
  2450. this.label41.Location = new System.Drawing.Point(7, 29);
  2451. this.label41.Name = "label41";
  2452. this.label41.Size = new System.Drawing.Size(58, 21);
  2453. this.label41.TabIndex = 0;
  2454. this.label41.Text = "生产商";
  2455. //
  2456. // groupBox6
  2457. //
  2458. this.groupBox6.Controls.Add(this.button_ReadUser3);
  2459. this.groupBox6.Controls.Add(this.button_WriteUser3);
  2460. this.groupBox6.Controls.Add(this.button_ReadUser2);
  2461. this.groupBox6.Controls.Add(this.button_WriteUser2);
  2462. this.groupBox6.Controls.Add(this.button_ReadUser1);
  2463. this.groupBox6.Controls.Add(this.button_WriteUser1);
  2464. this.groupBox6.Controls.Add(this.textBox_User3);
  2465. this.groupBox6.Controls.Add(this.textBox_User2);
  2466. this.groupBox6.Controls.Add(this.label35);
  2467. this.groupBox6.Controls.Add(this.textBox_User1);
  2468. this.groupBox6.Controls.Add(this.label36);
  2469. this.groupBox6.Controls.Add(this.label38);
  2470. this.groupBox6.Location = new System.Drawing.Point(4, 185);
  2471. this.groupBox6.Name = "groupBox6";
  2472. this.groupBox6.Size = new System.Drawing.Size(365, 127);
  2473. this.groupBox6.TabIndex = 2;
  2474. this.groupBox6.TabStop = false;
  2475. this.groupBox6.Text = "自定义";
  2476. //
  2477. // button_ReadUser3
  2478. //
  2479. this.button_ReadUser3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  2480. this.button_ReadUser3.Location = new System.Drawing.Point(194, 89);
  2481. this.button_ReadUser3.Name = "button_ReadUser3";
  2482. this.button_ReadUser3.Size = new System.Drawing.Size(50, 29);
  2483. this.button_ReadUser3.TabIndex = 5;
  2484. this.button_ReadUser3.Text = "查询";
  2485. this.button_ReadUser3.UseVisualStyleBackColor = false;
  2486. this.button_ReadUser3.Click += new System.EventHandler(this.button_ReadUser3_Click);
  2487. //
  2488. // button_WriteUser3
  2489. //
  2490. this.button_WriteUser3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  2491. this.button_WriteUser3.Location = new System.Drawing.Point(246, 89);
  2492. this.button_WriteUser3.Name = "button_WriteUser3";
  2493. this.button_WriteUser3.Size = new System.Drawing.Size(50, 29);
  2494. this.button_WriteUser3.TabIndex = 6;
  2495. this.button_WriteUser3.Text = "写入";
  2496. this.button_WriteUser3.UseVisualStyleBackColor = false;
  2497. this.button_WriteUser3.Click += new System.EventHandler(this.button_WriteUser3_Click);
  2498. //
  2499. // button_ReadUser2
  2500. //
  2501. this.button_ReadUser2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  2502. this.button_ReadUser2.Location = new System.Drawing.Point(194, 59);
  2503. this.button_ReadUser2.Name = "button_ReadUser2";
  2504. this.button_ReadUser2.Size = new System.Drawing.Size(50, 29);
  2505. this.button_ReadUser2.TabIndex = 3;
  2506. this.button_ReadUser2.Text = "查询";
  2507. this.button_ReadUser2.UseVisualStyleBackColor = false;
  2508. this.button_ReadUser2.Click += new System.EventHandler(this.button_ReadUser2_Click);
  2509. //
  2510. // button_WriteUser2
  2511. //
  2512. this.button_WriteUser2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  2513. this.button_WriteUser2.Location = new System.Drawing.Point(246, 59);
  2514. this.button_WriteUser2.Name = "button_WriteUser2";
  2515. this.button_WriteUser2.Size = new System.Drawing.Size(50, 29);
  2516. this.button_WriteUser2.TabIndex = 4;
  2517. this.button_WriteUser2.Text = "写入";
  2518. this.button_WriteUser2.UseVisualStyleBackColor = false;
  2519. this.button_WriteUser2.Click += new System.EventHandler(this.button_WriteUser2_Click);
  2520. //
  2521. // button_ReadUser1
  2522. //
  2523. this.button_ReadUser1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  2524. this.button_ReadUser1.Location = new System.Drawing.Point(194, 29);
  2525. this.button_ReadUser1.Name = "button_ReadUser1";
  2526. this.button_ReadUser1.Size = new System.Drawing.Size(50, 29);
  2527. this.button_ReadUser1.TabIndex = 2;
  2528. this.button_ReadUser1.Text = "查询";
  2529. this.button_ReadUser1.UseVisualStyleBackColor = false;
  2530. this.button_ReadUser1.Click += new System.EventHandler(this.button_ReadUser1_Click);
  2531. //
  2532. // button_WriteUser1
  2533. //
  2534. this.button_WriteUser1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  2535. this.button_WriteUser1.Location = new System.Drawing.Point(246, 29);
  2536. this.button_WriteUser1.Name = "button_WriteUser1";
  2537. this.button_WriteUser1.Size = new System.Drawing.Size(50, 29);
  2538. this.button_WriteUser1.TabIndex = 2;
  2539. this.button_WriteUser1.Text = "写入";
  2540. this.button_WriteUser1.UseVisualStyleBackColor = false;
  2541. this.button_WriteUser1.Click += new System.EventHandler(this.button_WriteUser1_Click);
  2542. //
  2543. // textBox_User3
  2544. //
  2545. this.textBox_User3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  2546. this.textBox_User3.Location = new System.Drawing.Point(29, 89);
  2547. this.textBox_User3.Name = "textBox_User3";
  2548. this.textBox_User3.Size = new System.Drawing.Size(164, 28);
  2549. this.textBox_User3.TabIndex = 1;
  2550. //
  2551. // textBox_User2
  2552. //
  2553. this.textBox_User2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  2554. this.textBox_User2.Location = new System.Drawing.Point(29, 59);
  2555. this.textBox_User2.Name = "textBox_User2";
  2556. this.textBox_User2.Size = new System.Drawing.Size(164, 28);
  2557. this.textBox_User2.TabIndex = 1;
  2558. //
  2559. // label35
  2560. //
  2561. this.label35.AutoSize = true;
  2562. this.label35.Location = new System.Drawing.Point(4, 93);
  2563. this.label35.Name = "label35";
  2564. this.label35.Size = new System.Drawing.Size(19, 21);
  2565. this.label35.TabIndex = 0;
  2566. this.label35.Text = "3";
  2567. //
  2568. // textBox_User1
  2569. //
  2570. this.textBox_User1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  2571. this.textBox_User1.Location = new System.Drawing.Point(29, 29);
  2572. this.textBox_User1.Name = "textBox_User1";
  2573. this.textBox_User1.Size = new System.Drawing.Size(164, 28);
  2574. this.textBox_User1.TabIndex = 1;
  2575. //
  2576. // label36
  2577. //
  2578. this.label36.AutoSize = true;
  2579. this.label36.Location = new System.Drawing.Point(4, 63);
  2580. this.label36.Name = "label36";
  2581. this.label36.Size = new System.Drawing.Size(19, 21);
  2582. this.label36.TabIndex = 0;
  2583. this.label36.Text = "2";
  2584. //
  2585. // label38
  2586. //
  2587. this.label38.AutoSize = true;
  2588. this.label38.Location = new System.Drawing.Point(5, 33);
  2589. this.label38.Name = "label38";
  2590. this.label38.Size = new System.Drawing.Size(19, 21);
  2591. this.label38.TabIndex = 0;
  2592. this.label38.Text = "1";
  2593. //
  2594. // groupBox5
  2595. //
  2596. this.groupBox5.Controls.Add(this.button_ReadKey);
  2597. this.groupBox5.Controls.Add(this.button_WriteKey);
  2598. this.groupBox5.Controls.Add(this.textBox_Key);
  2599. this.groupBox5.Controls.Add(this.label37);
  2600. this.groupBox5.Location = new System.Drawing.Point(375, 185);
  2601. this.groupBox5.Name = "groupBox5";
  2602. this.groupBox5.Size = new System.Drawing.Size(326, 62);
  2603. this.groupBox5.TabIndex = 1;
  2604. this.groupBox5.TabStop = false;
  2605. this.groupBox5.Text = "校验密钥";
  2606. //
  2607. // button_ReadKey
  2608. //
  2609. this.button_ReadKey.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  2610. this.button_ReadKey.Location = new System.Drawing.Point(201, 24);
  2611. this.button_ReadKey.Name = "button_ReadKey";
  2612. this.button_ReadKey.Size = new System.Drawing.Size(50, 29);
  2613. this.button_ReadKey.TabIndex = 2;
  2614. this.button_ReadKey.Text = "查询";
  2615. this.button_ReadKey.UseVisualStyleBackColor = false;
  2616. this.button_ReadKey.Click += new System.EventHandler(this.button_ReadKey_Click);
  2617. //
  2618. // button_WriteKey
  2619. //
  2620. this.button_WriteKey.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  2621. this.button_WriteKey.Location = new System.Drawing.Point(265, 24);
  2622. this.button_WriteKey.Name = "button_WriteKey";
  2623. this.button_WriteKey.Size = new System.Drawing.Size(50, 29);
  2624. this.button_WriteKey.TabIndex = 2;
  2625. this.button_WriteKey.Text = "写入";
  2626. this.button_WriteKey.UseVisualStyleBackColor = false;
  2627. this.button_WriteKey.Click += new System.EventHandler(this.button_WriteKey_Click);
  2628. //
  2629. // textBox_Key
  2630. //
  2631. this.textBox_Key.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  2632. this.textBox_Key.Location = new System.Drawing.Point(82, 24);
  2633. this.textBox_Key.Name = "textBox_Key";
  2634. this.textBox_Key.Size = new System.Drawing.Size(95, 28);
  2635. this.textBox_Key.TabIndex = 1;
  2636. //
  2637. // label37
  2638. //
  2639. this.label37.AutoSize = true;
  2640. this.label37.Location = new System.Drawing.Point(7, 28);
  2641. this.label37.Name = "label37";
  2642. this.label37.Size = new System.Drawing.Size(42, 21);
  2643. this.label37.TabIndex = 0;
  2644. this.label37.Text = "密钥";
  2645. //
  2646. // groupBox4
  2647. //
  2648. this.groupBox4.Controls.Add(this.label85);
  2649. this.groupBox4.Controls.Add(this.textBox_SP);
  2650. this.groupBox4.Controls.Add(this.button_ReadVersion);
  2651. this.groupBox4.Controls.Add(this.button_WriteSN);
  2652. this.groupBox4.Controls.Add(this.button_WriteModel);
  2653. this.groupBox4.Controls.Add(this.textBox_FW);
  2654. this.groupBox4.Controls.Add(this.textBox_HW);
  2655. this.groupBox4.Controls.Add(this.textBox_SN);
  2656. this.groupBox4.Controls.Add(this.label33);
  2657. this.groupBox4.Controls.Add(this.label32);
  2658. this.groupBox4.Controls.Add(this.textBox_Model);
  2659. this.groupBox4.Controls.Add(this.label31);
  2660. this.groupBox4.Controls.Add(this.label30);
  2661. this.groupBox4.Location = new System.Drawing.Point(4, 4);
  2662. this.groupBox4.Name = "groupBox4";
  2663. this.groupBox4.Size = new System.Drawing.Size(365, 175);
  2664. this.groupBox4.TabIndex = 0;
  2665. this.groupBox4.TabStop = false;
  2666. this.groupBox4.Text = "版本信息";
  2667. //
  2668. // label85
  2669. //
  2670. this.label85.AutoSize = true;
  2671. this.label85.Location = new System.Drawing.Point(6, 144);
  2672. this.label85.Name = "label85";
  2673. this.label85.Size = new System.Drawing.Size(29, 21);
  2674. this.label85.TabIndex = 4;
  2675. this.label85.Text = "SP";
  2676. //
  2677. // textBox_SP
  2678. //
  2679. this.textBox_SP.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  2680. this.textBox_SP.Location = new System.Drawing.Point(56, 140);
  2681. this.textBox_SP.Name = "textBox_SP";
  2682. this.textBox_SP.ReadOnly = true;
  2683. this.textBox_SP.Size = new System.Drawing.Size(247, 28);
  2684. this.textBox_SP.TabIndex = 3;
  2685. //
  2686. // button_ReadVersion
  2687. //
  2688. this.button_ReadVersion.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  2689. this.button_ReadVersion.Location = new System.Drawing.Point(309, 85);
  2690. this.button_ReadVersion.Name = "button_ReadVersion";
  2691. this.button_ReadVersion.Size = new System.Drawing.Size(50, 83);
  2692. this.button_ReadVersion.TabIndex = 2;
  2693. this.button_ReadVersion.Text = "查询";
  2694. this.button_ReadVersion.UseVisualStyleBackColor = false;
  2695. this.button_ReadVersion.Click += new System.EventHandler(this.button_ReadVersion_Click);
  2696. //
  2697. // button_WriteSN
  2698. //
  2699. this.button_WriteSN.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  2700. this.button_WriteSN.Location = new System.Drawing.Point(309, 53);
  2701. this.button_WriteSN.Name = "button_WriteSN";
  2702. this.button_WriteSN.Size = new System.Drawing.Size(50, 29);
  2703. this.button_WriteSN.TabIndex = 2;
  2704. this.button_WriteSN.Text = "写入";
  2705. this.button_WriteSN.UseVisualStyleBackColor = false;
  2706. this.button_WriteSN.Click += new System.EventHandler(this.button_WriteSN_Click);
  2707. //
  2708. // button_WriteModel
  2709. //
  2710. this.button_WriteModel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  2711. this.button_WriteModel.Location = new System.Drawing.Point(309, 24);
  2712. this.button_WriteModel.Name = "button_WriteModel";
  2713. this.button_WriteModel.Size = new System.Drawing.Size(50, 29);
  2714. this.button_WriteModel.TabIndex = 2;
  2715. this.button_WriteModel.Text = "写入";
  2716. this.button_WriteModel.UseVisualStyleBackColor = false;
  2717. this.button_WriteModel.Click += new System.EventHandler(this.button_WriteModel_Click);
  2718. //
  2719. // textBox_FW
  2720. //
  2721. this.textBox_FW.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  2722. this.textBox_FW.Location = new System.Drawing.Point(56, 111);
  2723. this.textBox_FW.Name = "textBox_FW";
  2724. this.textBox_FW.ReadOnly = true;
  2725. this.textBox_FW.Size = new System.Drawing.Size(247, 28);
  2726. this.textBox_FW.TabIndex = 1;
  2727. //
  2728. // textBox_HW
  2729. //
  2730. this.textBox_HW.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  2731. this.textBox_HW.Location = new System.Drawing.Point(56, 82);
  2732. this.textBox_HW.Name = "textBox_HW";
  2733. this.textBox_HW.ReadOnly = true;
  2734. this.textBox_HW.Size = new System.Drawing.Size(247, 28);
  2735. this.textBox_HW.TabIndex = 1;
  2736. //
  2737. // textBox_SN
  2738. //
  2739. this.textBox_SN.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  2740. this.textBox_SN.Location = new System.Drawing.Point(56, 53);
  2741. this.textBox_SN.Name = "textBox_SN";
  2742. this.textBox_SN.Size = new System.Drawing.Size(247, 28);
  2743. this.textBox_SN.TabIndex = 1;
  2744. //
  2745. // label33
  2746. //
  2747. this.label33.AutoSize = true;
  2748. this.label33.Location = new System.Drawing.Point(6, 115);
  2749. this.label33.Name = "label33";
  2750. this.label33.Size = new System.Drawing.Size(35, 21);
  2751. this.label33.TabIndex = 0;
  2752. this.label33.Text = "FW";
  2753. //
  2754. // label32
  2755. //
  2756. this.label32.AutoSize = true;
  2757. this.label32.Location = new System.Drawing.Point(6, 86);
  2758. this.label32.Name = "label32";
  2759. this.label32.Size = new System.Drawing.Size(38, 21);
  2760. this.label32.TabIndex = 0;
  2761. this.label32.Text = "HW";
  2762. //
  2763. // textBox_Model
  2764. //
  2765. this.textBox_Model.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  2766. this.textBox_Model.Location = new System.Drawing.Point(56, 24);
  2767. this.textBox_Model.Name = "textBox_Model";
  2768. this.textBox_Model.Size = new System.Drawing.Size(247, 28);
  2769. this.textBox_Model.TabIndex = 1;
  2770. //
  2771. // label31
  2772. //
  2773. this.label31.AutoSize = true;
  2774. this.label31.Location = new System.Drawing.Point(6, 57);
  2775. this.label31.Name = "label31";
  2776. this.label31.Size = new System.Drawing.Size(32, 21);
  2777. this.label31.TabIndex = 0;
  2778. this.label31.Text = "SN";
  2779. //
  2780. // label30
  2781. //
  2782. this.label30.AutoSize = true;
  2783. this.label30.Location = new System.Drawing.Point(7, 28);
  2784. this.label30.Name = "label30";
  2785. this.label30.Size = new System.Drawing.Size(42, 21);
  2786. this.label30.TabIndex = 0;
  2787. this.label30.Text = "型号";
  2788. //
  2789. // tabPage_OBC
  2790. //
  2791. this.tabPage_OBC.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  2792. this.tabPage_OBC.Controls.Add(this.groupBox26);
  2793. this.tabPage_OBC.Controls.Add(this.groupBox15);
  2794. this.tabPage_OBC.Controls.Add(this.groupBox14);
  2795. this.tabPage_OBC.Controls.Add(this.groupBox13);
  2796. this.tabPage_OBC.Controls.Add(this.groupBox12);
  2797. this.tabPage_OBC.Controls.Add(this.groupBox11);
  2798. this.tabPage_OBC.Controls.Add(this.groupBox10);
  2799. this.tabPage_OBC.Location = new System.Drawing.Point(4, 30);
  2800. this.tabPage_OBC.Name = "tabPage_OBC";
  2801. this.tabPage_OBC.Size = new System.Drawing.Size(990, 315);
  2802. this.tabPage_OBC.TabIndex = 8;
  2803. this.tabPage_OBC.Text = "模拟仪表";
  2804. //
  2805. // groupBox26
  2806. //
  2807. this.groupBox26.Controls.Add(this.button_OBC_ButtonSet);
  2808. this.groupBox26.Controls.Add(this.button_OBC_ButtonLight);
  2809. this.groupBox26.Controls.Add(this.button_OBC_ButtonWalk);
  2810. this.groupBox26.Controls.Add(this.button_OBC_ButtonDec);
  2811. this.groupBox26.Controls.Add(this.button_OBC_ButtonAcc);
  2812. this.groupBox26.Controls.Add(this.button_OBC_ButtonPower);
  2813. this.groupBox26.Location = new System.Drawing.Point(233, 4);
  2814. this.groupBox26.Name = "groupBox26";
  2815. this.groupBox26.Size = new System.Drawing.Size(76, 305);
  2816. this.groupBox26.TabIndex = 14;
  2817. this.groupBox26.TabStop = false;
  2818. this.groupBox26.Text = "按键";
  2819. //
  2820. // button_OBC_ButtonSet
  2821. //
  2822. this.button_OBC_ButtonSet.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  2823. this.button_OBC_ButtonSet.Location = new System.Drawing.Point(6, 264);
  2824. this.button_OBC_ButtonSet.Name = "button_OBC_ButtonSet";
  2825. this.button_OBC_ButtonSet.Size = new System.Drawing.Size(60, 35);
  2826. this.button_OBC_ButtonSet.TabIndex = 20;
  2827. this.button_OBC_ButtonSet.Text = "Set";
  2828. this.button_OBC_ButtonSet.UseVisualStyleBackColor = false;
  2829. this.button_OBC_ButtonSet.Click += new System.EventHandler(this.button_OBC_ButtonSet_Click);
  2830. //
  2831. // button_OBC_ButtonLight
  2832. //
  2833. this.button_OBC_ButtonLight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  2834. this.button_OBC_ButtonLight.Location = new System.Drawing.Point(6, 216);
  2835. this.button_OBC_ButtonLight.Name = "button_OBC_ButtonLight";
  2836. this.button_OBC_ButtonLight.Size = new System.Drawing.Size(60, 35);
  2837. this.button_OBC_ButtonLight.TabIndex = 19;
  2838. this.button_OBC_ButtonLight.Text = "Light";
  2839. this.button_OBC_ButtonLight.UseVisualStyleBackColor = false;
  2840. this.button_OBC_ButtonLight.Click += new System.EventHandler(this.button_OBC_ButtonLight_Click);
  2841. //
  2842. // button_OBC_ButtonWalk
  2843. //
  2844. this.button_OBC_ButtonWalk.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  2845. this.button_OBC_ButtonWalk.Location = new System.Drawing.Point(6, 169);
  2846. this.button_OBC_ButtonWalk.Name = "button_OBC_ButtonWalk";
  2847. this.button_OBC_ButtonWalk.Size = new System.Drawing.Size(60, 35);
  2848. this.button_OBC_ButtonWalk.TabIndex = 18;
  2849. this.button_OBC_ButtonWalk.Text = "Walk";
  2850. this.button_OBC_ButtonWalk.UseVisualStyleBackColor = false;
  2851. this.button_OBC_ButtonWalk.Click += new System.EventHandler(this.button_OBC_ButtonWalk_Click);
  2852. //
  2853. // button_OBC_ButtonDec
  2854. //
  2855. this.button_OBC_ButtonDec.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  2856. this.button_OBC_ButtonDec.Location = new System.Drawing.Point(6, 122);
  2857. this.button_OBC_ButtonDec.Name = "button_OBC_ButtonDec";
  2858. this.button_OBC_ButtonDec.Size = new System.Drawing.Size(60, 35);
  2859. this.button_OBC_ButtonDec.TabIndex = 17;
  2860. this.button_OBC_ButtonDec.Text = "-";
  2861. this.button_OBC_ButtonDec.UseVisualStyleBackColor = false;
  2862. this.button_OBC_ButtonDec.Click += new System.EventHandler(this.button_OBC_ButtonDec_Click);
  2863. //
  2864. // button_OBC_ButtonAcc
  2865. //
  2866. this.button_OBC_ButtonAcc.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  2867. this.button_OBC_ButtonAcc.Location = new System.Drawing.Point(6, 75);
  2868. this.button_OBC_ButtonAcc.Name = "button_OBC_ButtonAcc";
  2869. this.button_OBC_ButtonAcc.Size = new System.Drawing.Size(60, 35);
  2870. this.button_OBC_ButtonAcc.TabIndex = 16;
  2871. this.button_OBC_ButtonAcc.Text = "+";
  2872. this.button_OBC_ButtonAcc.UseVisualStyleBackColor = false;
  2873. this.button_OBC_ButtonAcc.Click += new System.EventHandler(this.button_OBC_ButtonAcc_Click);
  2874. //
  2875. // button_OBC_ButtonPower
  2876. //
  2877. this.button_OBC_ButtonPower.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  2878. this.button_OBC_ButtonPower.Location = new System.Drawing.Point(6, 27);
  2879. this.button_OBC_ButtonPower.Name = "button_OBC_ButtonPower";
  2880. this.button_OBC_ButtonPower.Size = new System.Drawing.Size(60, 35);
  2881. this.button_OBC_ButtonPower.TabIndex = 15;
  2882. this.button_OBC_ButtonPower.Text = "Power";
  2883. this.button_OBC_ButtonPower.UseVisualStyleBackColor = false;
  2884. this.button_OBC_ButtonPower.Click += new System.EventHandler(this.button_OBC_ButtonPower_Click);
  2885. //
  2886. // groupBox15
  2887. //
  2888. this.groupBox15.Controls.Add(this.textBox_OBC_ODO_TIME);
  2889. this.groupBox15.Controls.Add(this.button_OBC_ReadRideInfo);
  2890. this.groupBox15.Controls.Add(this.textBox_OBC_ODO_KM);
  2891. this.groupBox15.Controls.Add(this.button_OBC_ClearTrip);
  2892. this.groupBox15.Controls.Add(this.textBox_OBC_TRIP_TIME);
  2893. this.groupBox15.Controls.Add(this.label54);
  2894. this.groupBox15.Controls.Add(this.textBox_OBC_TRIP_KM);
  2895. this.groupBox15.Controls.Add(this.label52);
  2896. this.groupBox15.Location = new System.Drawing.Point(672, 178);
  2897. this.groupBox15.Name = "groupBox15";
  2898. this.groupBox15.Size = new System.Drawing.Size(303, 131);
  2899. this.groupBox15.TabIndex = 14;
  2900. this.groupBox15.TabStop = false;
  2901. this.groupBox15.Text = "骑行历史";
  2902. //
  2903. // textBox_OBC_ODO_TIME
  2904. //
  2905. this.textBox_OBC_ODO_TIME.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  2906. this.textBox_OBC_ODO_TIME.Location = new System.Drawing.Point(215, 57);
  2907. this.textBox_OBC_ODO_TIME.Name = "textBox_OBC_ODO_TIME";
  2908. this.textBox_OBC_ODO_TIME.ReadOnly = true;
  2909. this.textBox_OBC_ODO_TIME.Size = new System.Drawing.Size(80, 28);
  2910. this.textBox_OBC_ODO_TIME.TabIndex = 3;
  2911. //
  2912. // button_OBC_ReadRideInfo
  2913. //
  2914. this.button_OBC_ReadRideInfo.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  2915. this.button_OBC_ReadRideInfo.Location = new System.Drawing.Point(131, 89);
  2916. this.button_OBC_ReadRideInfo.Name = "button_OBC_ReadRideInfo";
  2917. this.button_OBC_ReadRideInfo.Size = new System.Drawing.Size(53, 35);
  2918. this.button_OBC_ReadRideInfo.TabIndex = 6;
  2919. this.button_OBC_ReadRideInfo.Text = "读取";
  2920. this.button_OBC_ReadRideInfo.UseVisualStyleBackColor = false;
  2921. this.button_OBC_ReadRideInfo.Click += new System.EventHandler(this.button_OBC_ReadRideInfo_Click);
  2922. //
  2923. // textBox_OBC_ODO_KM
  2924. //
  2925. this.textBox_OBC_ODO_KM.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  2926. this.textBox_OBC_ODO_KM.Location = new System.Drawing.Point(132, 57);
  2927. this.textBox_OBC_ODO_KM.Name = "textBox_OBC_ODO_KM";
  2928. this.textBox_OBC_ODO_KM.ReadOnly = true;
  2929. this.textBox_OBC_ODO_KM.Size = new System.Drawing.Size(80, 28);
  2930. this.textBox_OBC_ODO_KM.TabIndex = 4;
  2931. //
  2932. // button_OBC_ClearTrip
  2933. //
  2934. this.button_OBC_ClearTrip.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  2935. this.button_OBC_ClearTrip.Location = new System.Drawing.Point(194, 88);
  2936. this.button_OBC_ClearTrip.Name = "button_OBC_ClearTrip";
  2937. this.button_OBC_ClearTrip.Size = new System.Drawing.Size(101, 37);
  2938. this.button_OBC_ClearTrip.TabIndex = 6;
  2939. this.button_OBC_ClearTrip.Text = "清除TRIP";
  2940. this.button_OBC_ClearTrip.UseVisualStyleBackColor = false;
  2941. this.button_OBC_ClearTrip.Click += new System.EventHandler(this.button_OBC_ClearTrip_Click);
  2942. //
  2943. // textBox_OBC_TRIP_TIME
  2944. //
  2945. this.textBox_OBC_TRIP_TIME.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  2946. this.textBox_OBC_TRIP_TIME.Location = new System.Drawing.Point(215, 27);
  2947. this.textBox_OBC_TRIP_TIME.Name = "textBox_OBC_TRIP_TIME";
  2948. this.textBox_OBC_TRIP_TIME.ReadOnly = true;
  2949. this.textBox_OBC_TRIP_TIME.Size = new System.Drawing.Size(80, 28);
  2950. this.textBox_OBC_TRIP_TIME.TabIndex = 5;
  2951. //
  2952. // label54
  2953. //
  2954. this.label54.AutoSize = true;
  2955. this.label54.Location = new System.Drawing.Point(7, 61);
  2956. this.label54.Name = "label54";
  2957. this.label54.Size = new System.Drawing.Size(119, 21);
  2958. this.label54.TabIndex = 0;
  2959. this.label54.Text = "ODO里程/时间";
  2960. //
  2961. // textBox_OBC_TRIP_KM
  2962. //
  2963. this.textBox_OBC_TRIP_KM.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  2964. this.textBox_OBC_TRIP_KM.Location = new System.Drawing.Point(132, 27);
  2965. this.textBox_OBC_TRIP_KM.Name = "textBox_OBC_TRIP_KM";
  2966. this.textBox_OBC_TRIP_KM.ReadOnly = true;
  2967. this.textBox_OBC_TRIP_KM.Size = new System.Drawing.Size(80, 28);
  2968. this.textBox_OBC_TRIP_KM.TabIndex = 6;
  2969. //
  2970. // label52
  2971. //
  2972. this.label52.AutoSize = true;
  2973. this.label52.Location = new System.Drawing.Point(7, 31);
  2974. this.label52.Name = "label52";
  2975. this.label52.Size = new System.Drawing.Size(115, 21);
  2976. this.label52.TabIndex = 0;
  2977. this.label52.Text = "TRIP里程/时间";
  2978. //
  2979. // groupBox14
  2980. //
  2981. this.groupBox14.Controls.Add(this.label53);
  2982. this.groupBox14.Controls.Add(this.textBox_OBC_ReadSP);
  2983. this.groupBox14.Controls.Add(this.button_OBC_ReadVerInfo);
  2984. this.groupBox14.Controls.Add(this.textBox_OBC_ReadFW);
  2985. this.groupBox14.Controls.Add(this.textBox_OBC_ReadHW);
  2986. this.groupBox14.Controls.Add(this.textBox_OBC_ReadSN);
  2987. this.groupBox14.Controls.Add(this.label48);
  2988. this.groupBox14.Controls.Add(this.label49);
  2989. this.groupBox14.Controls.Add(this.textBox_OBC_ReadModel);
  2990. this.groupBox14.Controls.Add(this.label50);
  2991. this.groupBox14.Controls.Add(this.label51);
  2992. this.groupBox14.Location = new System.Drawing.Point(672, 4);
  2993. this.groupBox14.Name = "groupBox14";
  2994. this.groupBox14.Size = new System.Drawing.Size(303, 175);
  2995. this.groupBox14.TabIndex = 13;
  2996. this.groupBox14.TabStop = false;
  2997. this.groupBox14.Text = "版本信息";
  2998. //
  2999. // label53
  3000. //
  3001. this.label53.AutoSize = true;
  3002. this.label53.Location = new System.Drawing.Point(7, 144);
  3003. this.label53.Name = "label53";
  3004. this.label53.Size = new System.Drawing.Size(29, 21);
  3005. this.label53.TabIndex = 4;
  3006. this.label53.Text = "SP";
  3007. //
  3008. // textBox_OBC_ReadSP
  3009. //
  3010. this.textBox_OBC_ReadSP.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  3011. this.textBox_OBC_ReadSP.Location = new System.Drawing.Point(56, 140);
  3012. this.textBox_OBC_ReadSP.Name = "textBox_OBC_ReadSP";
  3013. this.textBox_OBC_ReadSP.ReadOnly = true;
  3014. this.textBox_OBC_ReadSP.Size = new System.Drawing.Size(238, 28);
  3015. this.textBox_OBC_ReadSP.TabIndex = 3;
  3016. //
  3017. // button_OBC_ReadVerInfo
  3018. //
  3019. this.button_OBC_ReadVerInfo.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  3020. this.button_OBC_ReadVerInfo.Location = new System.Drawing.Point(241, 24);
  3021. this.button_OBC_ReadVerInfo.Name = "button_OBC_ReadVerInfo";
  3022. this.button_OBC_ReadVerInfo.Size = new System.Drawing.Size(53, 55);
  3023. this.button_OBC_ReadVerInfo.TabIndex = 2;
  3024. this.button_OBC_ReadVerInfo.Text = "查询";
  3025. this.button_OBC_ReadVerInfo.UseVisualStyleBackColor = false;
  3026. this.button_OBC_ReadVerInfo.Click += new System.EventHandler(this.button_OBC_ReadVerInfo_Click);
  3027. //
  3028. // textBox_OBC_ReadFW
  3029. //
  3030. this.textBox_OBC_ReadFW.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  3031. this.textBox_OBC_ReadFW.Location = new System.Drawing.Point(56, 111);
  3032. this.textBox_OBC_ReadFW.Name = "textBox_OBC_ReadFW";
  3033. this.textBox_OBC_ReadFW.ReadOnly = true;
  3034. this.textBox_OBC_ReadFW.Size = new System.Drawing.Size(238, 28);
  3035. this.textBox_OBC_ReadFW.TabIndex = 1;
  3036. //
  3037. // textBox_OBC_ReadHW
  3038. //
  3039. this.textBox_OBC_ReadHW.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  3040. this.textBox_OBC_ReadHW.Location = new System.Drawing.Point(56, 82);
  3041. this.textBox_OBC_ReadHW.Name = "textBox_OBC_ReadHW";
  3042. this.textBox_OBC_ReadHW.ReadOnly = true;
  3043. this.textBox_OBC_ReadHW.Size = new System.Drawing.Size(238, 28);
  3044. this.textBox_OBC_ReadHW.TabIndex = 1;
  3045. //
  3046. // textBox_OBC_ReadSN
  3047. //
  3048. this.textBox_OBC_ReadSN.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  3049. this.textBox_OBC_ReadSN.Location = new System.Drawing.Point(56, 53);
  3050. this.textBox_OBC_ReadSN.Name = "textBox_OBC_ReadSN";
  3051. this.textBox_OBC_ReadSN.ReadOnly = true;
  3052. this.textBox_OBC_ReadSN.Size = new System.Drawing.Size(179, 28);
  3053. this.textBox_OBC_ReadSN.TabIndex = 1;
  3054. //
  3055. // label48
  3056. //
  3057. this.label48.AutoSize = true;
  3058. this.label48.Location = new System.Drawing.Point(6, 115);
  3059. this.label48.Name = "label48";
  3060. this.label48.Size = new System.Drawing.Size(35, 21);
  3061. this.label48.TabIndex = 0;
  3062. this.label48.Text = "FW";
  3063. //
  3064. // label49
  3065. //
  3066. this.label49.AutoSize = true;
  3067. this.label49.Location = new System.Drawing.Point(6, 86);
  3068. this.label49.Name = "label49";
  3069. this.label49.Size = new System.Drawing.Size(38, 21);
  3070. this.label49.TabIndex = 0;
  3071. this.label49.Text = "HW";
  3072. //
  3073. // textBox_OBC_ReadModel
  3074. //
  3075. this.textBox_OBC_ReadModel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  3076. this.textBox_OBC_ReadModel.Location = new System.Drawing.Point(56, 24);
  3077. this.textBox_OBC_ReadModel.Name = "textBox_OBC_ReadModel";
  3078. this.textBox_OBC_ReadModel.ReadOnly = true;
  3079. this.textBox_OBC_ReadModel.Size = new System.Drawing.Size(179, 28);
  3080. this.textBox_OBC_ReadModel.TabIndex = 1;
  3081. //
  3082. // label50
  3083. //
  3084. this.label50.AutoSize = true;
  3085. this.label50.Location = new System.Drawing.Point(6, 57);
  3086. this.label50.Name = "label50";
  3087. this.label50.Size = new System.Drawing.Size(32, 21);
  3088. this.label50.TabIndex = 0;
  3089. this.label50.Text = "SN";
  3090. //
  3091. // label51
  3092. //
  3093. this.label51.AutoSize = true;
  3094. this.label51.Location = new System.Drawing.Point(7, 28);
  3095. this.label51.Name = "label51";
  3096. this.label51.Size = new System.Drawing.Size(42, 21);
  3097. this.label51.TabIndex = 0;
  3098. this.label51.Text = "型号";
  3099. //
  3100. // groupBox13
  3101. //
  3102. this.groupBox13.Controls.Add(this.label64);
  3103. this.groupBox13.Controls.Add(this.numericUpDown_OBC_OffTime);
  3104. this.groupBox13.Controls.Add(this.label63);
  3105. this.groupBox13.Controls.Add(this.numericUpDown_OBC_WheelAdj);
  3106. this.groupBox13.Controls.Add(this.label59);
  3107. this.groupBox13.Controls.Add(this.comboBox_OBC_AssistFunc);
  3108. this.groupBox13.Controls.Add(this.comboBox_OBC_StartMode);
  3109. this.groupBox13.Controls.Add(this.label58);
  3110. this.groupBox13.Controls.Add(this.label57);
  3111. this.groupBox13.Controls.Add(this.button_OBC_WriteUserInfo);
  3112. this.groupBox13.Controls.Add(this.label56);
  3113. this.groupBox13.Location = new System.Drawing.Point(476, 4);
  3114. this.groupBox13.Name = "groupBox13";
  3115. this.groupBox13.Size = new System.Drawing.Size(190, 305);
  3116. this.groupBox13.TabIndex = 14;
  3117. this.groupBox13.TabStop = false;
  3118. this.groupBox13.Text = "设置用户参数";
  3119. //
  3120. // label64
  3121. //
  3122. this.label64.AutoSize = true;
  3123. this.label64.Location = new System.Drawing.Point(146, 119);
  3124. this.label64.Name = "label64";
  3125. this.label64.Size = new System.Drawing.Size(39, 21);
  3126. this.label64.TabIndex = 14;
  3127. this.label64.Text = "min";
  3128. //
  3129. // numericUpDown_OBC_OffTime
  3130. //
  3131. this.numericUpDown_OBC_OffTime.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
  3132. this.numericUpDown_OBC_OffTime.Location = new System.Drawing.Point(83, 115);
  3133. this.numericUpDown_OBC_OffTime.Maximum = new decimal(new int[] {
  3134. 240,
  3135. 0,
  3136. 0,
  3137. 0});
  3138. this.numericUpDown_OBC_OffTime.Name = "numericUpDown_OBC_OffTime";
  3139. this.numericUpDown_OBC_OffTime.ReadOnly = true;
  3140. this.numericUpDown_OBC_OffTime.Size = new System.Drawing.Size(60, 28);
  3141. this.numericUpDown_OBC_OffTime.TabIndex = 13;
  3142. this.numericUpDown_OBC_OffTime.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  3143. //
  3144. // label63
  3145. //
  3146. this.label63.AutoSize = true;
  3147. this.label63.Location = new System.Drawing.Point(6, 119);
  3148. this.label63.Name = "label63";
  3149. this.label63.Size = new System.Drawing.Size(74, 21);
  3150. this.label63.TabIndex = 12;
  3151. this.label63.Text = "关机时间";
  3152. //
  3153. // numericUpDown_OBC_WheelAdj
  3154. //
  3155. this.numericUpDown_OBC_WheelAdj.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
  3156. this.numericUpDown_OBC_WheelAdj.Location = new System.Drawing.Point(83, 24);
  3157. this.numericUpDown_OBC_WheelAdj.Maximum = new decimal(new int[] {
  3158. 10,
  3159. 0,
  3160. 0,
  3161. 0});
  3162. this.numericUpDown_OBC_WheelAdj.Minimum = new decimal(new int[] {
  3163. 10,
  3164. 0,
  3165. 0,
  3166. -2147483648});
  3167. this.numericUpDown_OBC_WheelAdj.Name = "numericUpDown_OBC_WheelAdj";
  3168. this.numericUpDown_OBC_WheelAdj.ReadOnly = true;
  3169. this.numericUpDown_OBC_WheelAdj.Size = new System.Drawing.Size(60, 28);
  3170. this.numericUpDown_OBC_WheelAdj.TabIndex = 7;
  3171. this.numericUpDown_OBC_WheelAdj.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  3172. //
  3173. // label59
  3174. //
  3175. this.label59.AutoSize = true;
  3176. this.label59.Location = new System.Drawing.Point(146, 28);
  3177. this.label59.Name = "label59";
  3178. this.label59.Size = new System.Drawing.Size(33, 21);
  3179. this.label59.TabIndex = 11;
  3180. this.label59.Text = "cm";
  3181. //
  3182. // comboBox_OBC_AssistFunc
  3183. //
  3184. this.comboBox_OBC_AssistFunc.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
  3185. this.comboBox_OBC_AssistFunc.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  3186. this.comboBox_OBC_AssistFunc.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3187. this.comboBox_OBC_AssistFunc.FormattingEnabled = true;
  3188. this.comboBox_OBC_AssistFunc.Items.AddRange(new object[] {
  3189. "方案一",
  3190. "方案二"});
  3191. this.comboBox_OBC_AssistFunc.Location = new System.Drawing.Point(83, 84);
  3192. this.comboBox_OBC_AssistFunc.Name = "comboBox_OBC_AssistFunc";
  3193. this.comboBox_OBC_AssistFunc.Size = new System.Drawing.Size(91, 29);
  3194. this.comboBox_OBC_AssistFunc.TabIndex = 10;
  3195. //
  3196. // comboBox_OBC_StartMode
  3197. //
  3198. this.comboBox_OBC_StartMode.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
  3199. this.comboBox_OBC_StartMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  3200. this.comboBox_OBC_StartMode.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3201. this.comboBox_OBC_StartMode.FormattingEnabled = true;
  3202. this.comboBox_OBC_StartMode.Items.AddRange(new object[] {
  3203. "柔和",
  3204. "正常",
  3205. "强劲"});
  3206. this.comboBox_OBC_StartMode.Location = new System.Drawing.Point(83, 54);
  3207. this.comboBox_OBC_StartMode.Name = "comboBox_OBC_StartMode";
  3208. this.comboBox_OBC_StartMode.Size = new System.Drawing.Size(91, 29);
  3209. this.comboBox_OBC_StartMode.TabIndex = 6;
  3210. //
  3211. // label58
  3212. //
  3213. this.label58.AutoSize = true;
  3214. this.label58.Location = new System.Drawing.Point(6, 88);
  3215. this.label58.Name = "label58";
  3216. this.label58.Size = new System.Drawing.Size(74, 21);
  3217. this.label58.TabIndex = 9;
  3218. this.label58.Text = "助力方案";
  3219. //
  3220. // label57
  3221. //
  3222. this.label57.AutoSize = true;
  3223. this.label57.Location = new System.Drawing.Point(6, 58);
  3224. this.label57.Name = "label57";
  3225. this.label57.Size = new System.Drawing.Size(74, 21);
  3226. this.label57.TabIndex = 9;
  3227. this.label57.Text = "启动模式";
  3228. //
  3229. // button_OBC_WriteUserInfo
  3230. //
  3231. this.button_OBC_WriteUserInfo.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  3232. this.button_OBC_WriteUserInfo.Location = new System.Drawing.Point(126, 264);
  3233. this.button_OBC_WriteUserInfo.Name = "button_OBC_WriteUserInfo";
  3234. this.button_OBC_WriteUserInfo.Size = new System.Drawing.Size(53, 35);
  3235. this.button_OBC_WriteUserInfo.TabIndex = 6;
  3236. this.button_OBC_WriteUserInfo.Text = "写入";
  3237. this.button_OBC_WriteUserInfo.UseVisualStyleBackColor = false;
  3238. this.button_OBC_WriteUserInfo.Click += new System.EventHandler(this.button_OBC_WriteUserInfo_Click);
  3239. //
  3240. // label56
  3241. //
  3242. this.label56.AutoSize = true;
  3243. this.label56.Location = new System.Drawing.Point(6, 28);
  3244. this.label56.Name = "label56";
  3245. this.label56.Size = new System.Drawing.Size(74, 21);
  3246. this.label56.TabIndex = 7;
  3247. this.label56.Text = "周长微调";
  3248. //
  3249. // groupBox12
  3250. //
  3251. this.groupBox12.Controls.Add(this.richTextBox_OBC_ReadUserInfo);
  3252. this.groupBox12.Controls.Add(this.button_OBC_ReadUserInfo);
  3253. this.groupBox12.Location = new System.Drawing.Point(315, 4);
  3254. this.groupBox12.Name = "groupBox12";
  3255. this.groupBox12.Size = new System.Drawing.Size(155, 305);
  3256. this.groupBox12.TabIndex = 13;
  3257. this.groupBox12.TabStop = false;
  3258. this.groupBox12.Text = "查询用户参数";
  3259. //
  3260. // richTextBox_OBC_ReadUserInfo
  3261. //
  3262. this.richTextBox_OBC_ReadUserInfo.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  3263. this.richTextBox_OBC_ReadUserInfo.Location = new System.Drawing.Point(11, 23);
  3264. this.richTextBox_OBC_ReadUserInfo.Name = "richTextBox_OBC_ReadUserInfo";
  3265. this.richTextBox_OBC_ReadUserInfo.ReadOnly = true;
  3266. this.richTextBox_OBC_ReadUserInfo.Size = new System.Drawing.Size(138, 235);
  3267. this.richTextBox_OBC_ReadUserInfo.TabIndex = 12;
  3268. this.richTextBox_OBC_ReadUserInfo.Text = "";
  3269. //
  3270. // button_OBC_ReadUserInfo
  3271. //
  3272. this.button_OBC_ReadUserInfo.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  3273. this.button_OBC_ReadUserInfo.Location = new System.Drawing.Point(96, 264);
  3274. this.button_OBC_ReadUserInfo.Name = "button_OBC_ReadUserInfo";
  3275. this.button_OBC_ReadUserInfo.Size = new System.Drawing.Size(53, 35);
  3276. this.button_OBC_ReadUserInfo.TabIndex = 6;
  3277. this.button_OBC_ReadUserInfo.Text = "读取";
  3278. this.button_OBC_ReadUserInfo.UseVisualStyleBackColor = false;
  3279. this.button_OBC_ReadUserInfo.Click += new System.EventHandler(this.button_OBC_ReadUserInfo_Click);
  3280. //
  3281. // groupBox11
  3282. //
  3283. this.groupBox11.Controls.Add(this.richTextBox_OBC_BMS_RunInfo);
  3284. this.groupBox11.Controls.Add(this.checkBox_OBC_StartReadBMS);
  3285. this.groupBox11.Location = new System.Drawing.Point(4, 72);
  3286. this.groupBox11.Name = "groupBox11";
  3287. this.groupBox11.Size = new System.Drawing.Size(223, 237);
  3288. this.groupBox11.TabIndex = 11;
  3289. this.groupBox11.TabStop = false;
  3290. this.groupBox11.Text = "读取电池运行信息";
  3291. //
  3292. // richTextBox_OBC_BMS_RunInfo
  3293. //
  3294. this.richTextBox_OBC_BMS_RunInfo.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  3295. this.richTextBox_OBC_BMS_RunInfo.Font = new System.Drawing.Font("Microsoft YaHei UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3296. this.richTextBox_OBC_BMS_RunInfo.Location = new System.Drawing.Point(6, 27);
  3297. this.richTextBox_OBC_BMS_RunInfo.Name = "richTextBox_OBC_BMS_RunInfo";
  3298. this.richTextBox_OBC_BMS_RunInfo.ReadOnly = true;
  3299. this.richTextBox_OBC_BMS_RunInfo.Size = new System.Drawing.Size(211, 203);
  3300. this.richTextBox_OBC_BMS_RunInfo.TabIndex = 12;
  3301. this.richTextBox_OBC_BMS_RunInfo.Text = "";
  3302. //
  3303. // checkBox_OBC_StartReadBMS
  3304. //
  3305. this.checkBox_OBC_StartReadBMS.AutoSize = true;
  3306. this.checkBox_OBC_StartReadBMS.Location = new System.Drawing.Point(156, 0);
  3307. this.checkBox_OBC_StartReadBMS.Name = "checkBox_OBC_StartReadBMS";
  3308. this.checkBox_OBC_StartReadBMS.Size = new System.Drawing.Size(61, 25);
  3309. this.checkBox_OBC_StartReadBMS.TabIndex = 5;
  3310. this.checkBox_OBC_StartReadBMS.Text = "启动";
  3311. this.checkBox_OBC_StartReadBMS.UseVisualStyleBackColor = true;
  3312. this.checkBox_OBC_StartReadBMS.CheckedChanged += new System.EventHandler(this.checkBox_OBC_StartReadBMS_CheckedChanged);
  3313. //
  3314. // groupBox10
  3315. //
  3316. this.groupBox10.Controls.Add(this.label60);
  3317. this.groupBox10.Controls.Add(this.comboBox_OBC_LightSw);
  3318. this.groupBox10.Controls.Add(this.label61);
  3319. this.groupBox10.Controls.Add(this.comboBox_OBC_SetGearST);
  3320. this.groupBox10.Controls.Add(this.checkBox_OBC_StartSetGearSt);
  3321. this.groupBox10.Location = new System.Drawing.Point(4, 4);
  3322. this.groupBox10.Name = "groupBox10";
  3323. this.groupBox10.Size = new System.Drawing.Size(223, 62);
  3324. this.groupBox10.TabIndex = 10;
  3325. this.groupBox10.TabStop = false;
  3326. this.groupBox10.Text = "控制电机档位";
  3327. //
  3328. // label60
  3329. //
  3330. this.label60.AutoSize = true;
  3331. this.label60.Location = new System.Drawing.Point(122, 32);
  3332. this.label60.Name = "label60";
  3333. this.label60.Size = new System.Drawing.Size(26, 21);
  3334. this.label60.TabIndex = 8;
  3335. this.label60.Text = "灯";
  3336. //
  3337. // comboBox_OBC_LightSw
  3338. //
  3339. this.comboBox_OBC_LightSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
  3340. this.comboBox_OBC_LightSw.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  3341. this.comboBox_OBC_LightSw.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3342. this.comboBox_OBC_LightSw.FormattingEnabled = true;
  3343. this.comboBox_OBC_LightSw.Items.AddRange(new object[] {
  3344. "ON",
  3345. "OFF"});
  3346. this.comboBox_OBC_LightSw.Location = new System.Drawing.Point(147, 28);
  3347. this.comboBox_OBC_LightSw.Name = "comboBox_OBC_LightSw";
  3348. this.comboBox_OBC_LightSw.Size = new System.Drawing.Size(65, 29);
  3349. this.comboBox_OBC_LightSw.TabIndex = 6;
  3350. //
  3351. // label61
  3352. //
  3353. this.label61.AutoSize = true;
  3354. this.label61.Location = new System.Drawing.Point(6, 32);
  3355. this.label61.Name = "label61";
  3356. this.label61.Size = new System.Drawing.Size(42, 21);
  3357. this.label61.TabIndex = 7;
  3358. this.label61.Text = "档位";
  3359. //
  3360. // comboBox_OBC_SetGearST
  3361. //
  3362. this.comboBox_OBC_SetGearST.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
  3363. this.comboBox_OBC_SetGearST.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  3364. this.comboBox_OBC_SetGearST.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3365. this.comboBox_OBC_SetGearST.FormattingEnabled = true;
  3366. this.comboBox_OBC_SetGearST.Items.AddRange(new object[] {
  3367. "OFF",
  3368. "ECO",
  3369. "NORM",
  3370. "SPORT",
  3371. "TURBO",
  3372. "SMART",
  3373. "WALK"});
  3374. this.comboBox_OBC_SetGearST.Location = new System.Drawing.Point(51, 28);
  3375. this.comboBox_OBC_SetGearST.Name = "comboBox_OBC_SetGearST";
  3376. this.comboBox_OBC_SetGearST.Size = new System.Drawing.Size(65, 29);
  3377. this.comboBox_OBC_SetGearST.TabIndex = 4;
  3378. //
  3379. // checkBox_OBC_StartSetGearSt
  3380. //
  3381. this.checkBox_OBC_StartSetGearSt.AutoSize = true;
  3382. this.checkBox_OBC_StartSetGearSt.Location = new System.Drawing.Point(156, -1);
  3383. this.checkBox_OBC_StartSetGearSt.Name = "checkBox_OBC_StartSetGearSt";
  3384. this.checkBox_OBC_StartSetGearSt.Size = new System.Drawing.Size(61, 25);
  3385. this.checkBox_OBC_StartSetGearSt.TabIndex = 5;
  3386. this.checkBox_OBC_StartSetGearSt.Text = "启动";
  3387. this.checkBox_OBC_StartSetGearSt.UseVisualStyleBackColor = true;
  3388. this.checkBox_OBC_StartSetGearSt.CheckedChanged += new System.EventHandler(this.checkBox_OBC_StartSetGearSt_CheckedChanged);
  3389. //
  3390. // tabPage_RAMorFLASH
  3391. //
  3392. this.tabPage_RAMorFLASH.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  3393. this.tabPage_RAMorFLASH.Controls.Add(this.checkBox_ReadRanFlash_ChangeFormat);
  3394. this.tabPage_RAMorFLASH.Controls.Add(this.checkBox_ReadRanFlash_AutoClear);
  3395. this.tabPage_RAMorFLASH.Controls.Add(this.checkBox_ReadRanFlash_AutoSW);
  3396. this.tabPage_RAMorFLASH.Controls.Add(this.textBox_Address_End);
  3397. this.tabPage_RAMorFLASH.Controls.Add(this.label66);
  3398. this.tabPage_RAMorFLASH.Controls.Add(this.textBox_Address_Begin);
  3399. this.tabPage_RAMorFLASH.Controls.Add(this.label65);
  3400. this.tabPage_RAMorFLASH.Controls.Add(this.button_ReadRamFlash);
  3401. this.tabPage_RAMorFLASH.Controls.Add(this.richTextBox_RamFlasgData);
  3402. this.tabPage_RAMorFLASH.Location = new System.Drawing.Point(4, 30);
  3403. this.tabPage_RAMorFLASH.Name = "tabPage_RAMorFLASH";
  3404. this.tabPage_RAMorFLASH.Size = new System.Drawing.Size(990, 315);
  3405. this.tabPage_RAMorFLASH.TabIndex = 9;
  3406. this.tabPage_RAMorFLASH.Text = "存储器读取";
  3407. //
  3408. // checkBox_ReadRanFlash_ChangeFormat
  3409. //
  3410. this.checkBox_ReadRanFlash_ChangeFormat.AutoSize = true;
  3411. this.checkBox_ReadRanFlash_ChangeFormat.Checked = true;
  3412. this.checkBox_ReadRanFlash_ChangeFormat.CheckState = System.Windows.Forms.CheckState.Checked;
  3413. this.checkBox_ReadRanFlash_ChangeFormat.Location = new System.Drawing.Point(811, 39);
  3414. this.checkBox_ReadRanFlash_ChangeFormat.Name = "checkBox_ReadRanFlash_ChangeFormat";
  3415. this.checkBox_ReadRanFlash_ChangeFormat.Size = new System.Drawing.Size(141, 25);
  3416. this.checkBox_ReadRanFlash_ChangeFormat.TabIndex = 13;
  3417. this.checkBox_ReadRanFlash_ChangeFormat.Text = "转换十进制显示";
  3418. this.checkBox_ReadRanFlash_ChangeFormat.UseVisualStyleBackColor = true;
  3419. //
  3420. // checkBox_ReadRanFlash_AutoClear
  3421. //
  3422. this.checkBox_ReadRanFlash_AutoClear.AutoSize = true;
  3423. this.checkBox_ReadRanFlash_AutoClear.Checked = true;
  3424. this.checkBox_ReadRanFlash_AutoClear.CheckState = System.Windows.Forms.CheckState.Checked;
  3425. this.checkBox_ReadRanFlash_AutoClear.Location = new System.Drawing.Point(811, 8);
  3426. this.checkBox_ReadRanFlash_AutoClear.Name = "checkBox_ReadRanFlash_AutoClear";
  3427. this.checkBox_ReadRanFlash_AutoClear.Size = new System.Drawing.Size(141, 25);
  3428. this.checkBox_ReadRanFlash_AutoClear.TabIndex = 12;
  3429. this.checkBox_ReadRanFlash_AutoClear.Text = "数据更新时清屏";
  3430. this.checkBox_ReadRanFlash_AutoClear.UseVisualStyleBackColor = true;
  3431. //
  3432. // checkBox_ReadRanFlash_AutoSW
  3433. //
  3434. this.checkBox_ReadRanFlash_AutoSW.AutoSize = true;
  3435. this.checkBox_ReadRanFlash_AutoSW.Location = new System.Drawing.Point(811, 194);
  3436. this.checkBox_ReadRanFlash_AutoSW.Name = "checkBox_ReadRanFlash_AutoSW";
  3437. this.checkBox_ReadRanFlash_AutoSW.Size = new System.Drawing.Size(93, 25);
  3438. this.checkBox_ReadRanFlash_AutoSW.TabIndex = 11;
  3439. this.checkBox_ReadRanFlash_AutoSW.Text = "自动读取";
  3440. this.checkBox_ReadRanFlash_AutoSW.UseVisualStyleBackColor = true;
  3441. this.checkBox_ReadRanFlash_AutoSW.CheckedChanged += new System.EventHandler(this.checkBox_ReadRanFlash_AutoSW_CheckedChanged);
  3442. //
  3443. // textBox_Address_End
  3444. //
  3445. this.textBox_Address_End.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  3446. this.textBox_Address_End.Location = new System.Drawing.Point(811, 160);
  3447. this.textBox_Address_End.Name = "textBox_Address_End";
  3448. this.textBox_Address_End.Size = new System.Drawing.Size(130, 28);
  3449. this.textBox_Address_End.TabIndex = 10;
  3450. this.textBox_Address_End.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  3451. //
  3452. // label66
  3453. //
  3454. this.label66.AutoSize = true;
  3455. this.label66.Location = new System.Drawing.Point(831, 136);
  3456. this.label66.Name = "label66";
  3457. this.label66.Size = new System.Drawing.Size(91, 21);
  3458. this.label66.TabIndex = 9;
  3459. this.label66.Text = "结束地址0x";
  3460. //
  3461. // textBox_Address_Begin
  3462. //
  3463. this.textBox_Address_Begin.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  3464. this.textBox_Address_Begin.Location = new System.Drawing.Point(811, 96);
  3465. this.textBox_Address_Begin.Name = "textBox_Address_Begin";
  3466. this.textBox_Address_Begin.Size = new System.Drawing.Size(130, 28);
  3467. this.textBox_Address_Begin.TabIndex = 8;
  3468. this.textBox_Address_Begin.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  3469. //
  3470. // label65
  3471. //
  3472. this.label65.AutoSize = true;
  3473. this.label65.Location = new System.Drawing.Point(831, 72);
  3474. this.label65.Name = "label65";
  3475. this.label65.Size = new System.Drawing.Size(91, 21);
  3476. this.label65.TabIndex = 7;
  3477. this.label65.Text = "起始地址0x";
  3478. //
  3479. // button_ReadRamFlash
  3480. //
  3481. this.button_ReadRamFlash.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  3482. this.button_ReadRamFlash.Location = new System.Drawing.Point(811, 259);
  3483. this.button_ReadRamFlash.Name = "button_ReadRamFlash";
  3484. this.button_ReadRamFlash.Size = new System.Drawing.Size(112, 50);
  3485. this.button_ReadRamFlash.TabIndex = 5;
  3486. this.button_ReadRamFlash.Text = "读取数据";
  3487. this.button_ReadRamFlash.UseVisualStyleBackColor = false;
  3488. this.button_ReadRamFlash.Click += new System.EventHandler(this.button_ReadRamFlash_Click);
  3489. //
  3490. // richTextBox_RamFlasgData
  3491. //
  3492. this.richTextBox_RamFlasgData.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  3493. this.richTextBox_RamFlasgData.Location = new System.Drawing.Point(11, 6);
  3494. this.richTextBox_RamFlasgData.Name = "richTextBox_RamFlasgData";
  3495. this.richTextBox_RamFlasgData.Size = new System.Drawing.Size(796, 303);
  3496. this.richTextBox_RamFlasgData.TabIndex = 4;
  3497. this.richTextBox_RamFlasgData.Text = "";
  3498. //
  3499. // tabPage_FactoryMode
  3500. //
  3501. this.tabPage_FactoryMode.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  3502. this.tabPage_FactoryMode.Controls.Add(this.button_ScanCode);
  3503. this.tabPage_FactoryMode.Controls.Add(this.Button_FacModePowerOff);
  3504. this.tabPage_FactoryMode.Controls.Add(this.Button_FacModeSaveResult);
  3505. this.tabPage_FactoryMode.Controls.Add(this.Button_FacModeSetMacDate);
  3506. this.tabPage_FactoryMode.Controls.Add(this.groupBox25);
  3507. this.tabPage_FactoryMode.Controls.Add(this.groupBox24);
  3508. this.tabPage_FactoryMode.Controls.Add(this.groupBox23);
  3509. this.tabPage_FactoryMode.Controls.Add(this.groupBox22);
  3510. this.tabPage_FactoryMode.Controls.Add(this.groupBox21);
  3511. this.tabPage_FactoryMode.Controls.Add(this.groupBox20);
  3512. this.tabPage_FactoryMode.Controls.Add(this.groupBox19);
  3513. this.tabPage_FactoryMode.Location = new System.Drawing.Point(4, 30);
  3514. this.tabPage_FactoryMode.Name = "tabPage_FactoryMode";
  3515. this.tabPage_FactoryMode.Size = new System.Drawing.Size(990, 315);
  3516. this.tabPage_FactoryMode.TabIndex = 10;
  3517. this.tabPage_FactoryMode.Text = "生产模式";
  3518. //
  3519. // Button_FacModePowerOff
  3520. //
  3521. this.Button_FacModePowerOff.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(128)))));
  3522. this.Button_FacModePowerOff.Location = new System.Drawing.Point(917, 248);
  3523. this.Button_FacModePowerOff.Name = "Button_FacModePowerOff";
  3524. this.Button_FacModePowerOff.Size = new System.Drawing.Size(68, 60);
  3525. this.Button_FacModePowerOff.TabIndex = 33;
  3526. this.Button_FacModePowerOff.Text = "关机";
  3527. this.Button_FacModePowerOff.UseVisualStyleBackColor = false;
  3528. this.Button_FacModePowerOff.Click += new System.EventHandler(this.Button_FacModePowerOff_Click);
  3529. //
  3530. // Button_FacModeSaveResult
  3531. //
  3532. this.Button_FacModeSaveResult.BackColor = System.Drawing.Color.Lime;
  3533. this.Button_FacModeSaveResult.Location = new System.Drawing.Point(846, 248);
  3534. this.Button_FacModeSaveResult.Name = "Button_FacModeSaveResult";
  3535. this.Button_FacModeSaveResult.Size = new System.Drawing.Size(68, 60);
  3536. this.Button_FacModeSaveResult.TabIndex = 1;
  3537. this.Button_FacModeSaveResult.Text = "保存\r\n数据";
  3538. this.Button_FacModeSaveResult.UseVisualStyleBackColor = false;
  3539. this.Button_FacModeSaveResult.Click += new System.EventHandler(this.Button_FacModeSaveResult_Click);
  3540. //
  3541. // Button_FacModeSetMacDate
  3542. //
  3543. this.Button_FacModeSetMacDate.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  3544. this.Button_FacModeSetMacDate.Location = new System.Drawing.Point(775, 248);
  3545. this.Button_FacModeSetMacDate.Name = "Button_FacModeSetMacDate";
  3546. this.Button_FacModeSetMacDate.Size = new System.Drawing.Size(68, 60);
  3547. this.Button_FacModeSetMacDate.TabIndex = 33;
  3548. this.Button_FacModeSetMacDate.Text = "写入生\r\n产信息";
  3549. this.Button_FacModeSetMacDate.UseVisualStyleBackColor = false;
  3550. this.Button_FacModeSetMacDate.Click += new System.EventHandler(this.Button_FacModeSetMacDate_Click);
  3551. //
  3552. // groupBox25
  3553. //
  3554. this.groupBox25.Controls.Add(this.button_FacModeSetName);
  3555. this.groupBox25.Controls.Add(this.label87);
  3556. this.groupBox25.Controls.Add(this.textBox_FacModeGit);
  3557. this.groupBox25.Controls.Add(this.label86);
  3558. this.groupBox25.Controls.Add(this.textBox_FacModeSP);
  3559. this.groupBox25.Controls.Add(this.label68);
  3560. this.groupBox25.Controls.Add(this.label84);
  3561. this.groupBox25.Controls.Add(this.textBox_FacModeFW);
  3562. this.groupBox25.Controls.Add(this.Button_FacModeReadVer);
  3563. this.groupBox25.Controls.Add(this.label83);
  3564. this.groupBox25.Controls.Add(this.textBox_FacModeHW);
  3565. this.groupBox25.Controls.Add(this.Button_FacModeSetNum);
  3566. this.groupBox25.Controls.Add(this.label82);
  3567. this.groupBox25.Controls.Add(this.textBox_FacModeNum);
  3568. this.groupBox25.Controls.Add(this.label81);
  3569. this.groupBox25.Controls.Add(this.textBox_FacModeName);
  3570. this.groupBox25.Location = new System.Drawing.Point(704, 3);
  3571. this.groupBox25.Name = "groupBox25";
  3572. this.groupBox25.Size = new System.Drawing.Size(283, 239);
  3573. this.groupBox25.TabIndex = 8;
  3574. this.groupBox25.TabStop = false;
  3575. this.groupBox25.Text = "版本信息";
  3576. //
  3577. // label87
  3578. //
  3579. this.label87.AutoSize = true;
  3580. this.label87.Location = new System.Drawing.Point(6, 178);
  3581. this.label87.Name = "label87";
  3582. this.label87.Size = new System.Drawing.Size(36, 21);
  3583. this.label87.TabIndex = 27;
  3584. this.label87.Text = "GIT";
  3585. //
  3586. // textBox_FacModeGit
  3587. //
  3588. this.textBox_FacModeGit.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  3589. this.textBox_FacModeGit.Location = new System.Drawing.Point(54, 174);
  3590. this.textBox_FacModeGit.Name = "textBox_FacModeGit";
  3591. this.textBox_FacModeGit.Size = new System.Drawing.Size(227, 28);
  3592. this.textBox_FacModeGit.TabIndex = 26;
  3593. //
  3594. // label86
  3595. //
  3596. this.label86.AutoSize = true;
  3597. this.label86.Location = new System.Drawing.Point(6, 149);
  3598. this.label86.Name = "label86";
  3599. this.label86.Size = new System.Drawing.Size(29, 21);
  3600. this.label86.TabIndex = 25;
  3601. this.label86.Text = "SP";
  3602. //
  3603. // textBox_FacModeSP
  3604. //
  3605. this.textBox_FacModeSP.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  3606. this.textBox_FacModeSP.Location = new System.Drawing.Point(54, 145);
  3607. this.textBox_FacModeSP.Name = "textBox_FacModeSP";
  3608. this.textBox_FacModeSP.Size = new System.Drawing.Size(227, 28);
  3609. this.textBox_FacModeSP.TabIndex = 24;
  3610. //
  3611. // label68
  3612. //
  3613. this.label68.AutoSize = true;
  3614. this.label68.Font = new System.Drawing.Font("Microsoft YaHei UI", 11F, System.Drawing.FontStyle.Bold);
  3615. this.label68.ForeColor = System.Drawing.Color.Red;
  3616. this.label68.Location = new System.Drawing.Point(6, 213);
  3617. this.label68.Name = "label68";
  3618. this.label68.Size = new System.Drawing.Size(134, 19);
  3619. this.label68.TabIndex = 23;
  3620. this.label68.Text = "断电前请执行关机!";
  3621. this.label68.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  3622. //
  3623. // label84
  3624. //
  3625. this.label84.AutoSize = true;
  3626. this.label84.Location = new System.Drawing.Point(6, 120);
  3627. this.label84.Name = "label84";
  3628. this.label84.Size = new System.Drawing.Size(35, 21);
  3629. this.label84.TabIndex = 12;
  3630. this.label84.Text = "FW";
  3631. //
  3632. // textBox_FacModeFW
  3633. //
  3634. this.textBox_FacModeFW.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  3635. this.textBox_FacModeFW.Location = new System.Drawing.Point(54, 116);
  3636. this.textBox_FacModeFW.Name = "textBox_FacModeFW";
  3637. this.textBox_FacModeFW.Size = new System.Drawing.Size(227, 28);
  3638. this.textBox_FacModeFW.TabIndex = 13;
  3639. //
  3640. // Button_FacModeReadVer
  3641. //
  3642. this.Button_FacModeReadVer.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  3643. this.Button_FacModeReadVer.Location = new System.Drawing.Point(213, 202);
  3644. this.Button_FacModeReadVer.Name = "Button_FacModeReadVer";
  3645. this.Button_FacModeReadVer.Size = new System.Drawing.Size(68, 34);
  3646. this.Button_FacModeReadVer.TabIndex = 11;
  3647. this.Button_FacModeReadVer.Text = "查询";
  3648. this.Button_FacModeReadVer.UseVisualStyleBackColor = false;
  3649. this.Button_FacModeReadVer.Click += new System.EventHandler(this.Button_FacModeReadVer_Click_1);
  3650. //
  3651. // label83
  3652. //
  3653. this.label83.AutoSize = true;
  3654. this.label83.Location = new System.Drawing.Point(6, 91);
  3655. this.label83.Name = "label83";
  3656. this.label83.Size = new System.Drawing.Size(38, 21);
  3657. this.label83.TabIndex = 9;
  3658. this.label83.Text = "HW";
  3659. //
  3660. // textBox_FacModeHW
  3661. //
  3662. this.textBox_FacModeHW.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  3663. this.textBox_FacModeHW.Location = new System.Drawing.Point(54, 87);
  3664. this.textBox_FacModeHW.Name = "textBox_FacModeHW";
  3665. this.textBox_FacModeHW.Size = new System.Drawing.Size(227, 28);
  3666. this.textBox_FacModeHW.TabIndex = 10;
  3667. //
  3668. // label82
  3669. //
  3670. this.label82.AutoSize = true;
  3671. this.label82.Location = new System.Drawing.Point(6, 62);
  3672. this.label82.Name = "label82";
  3673. this.label82.Size = new System.Drawing.Size(32, 21);
  3674. this.label82.TabIndex = 6;
  3675. this.label82.Text = "SN";
  3676. //
  3677. // textBox_FacModeNum
  3678. //
  3679. this.textBox_FacModeNum.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  3680. this.textBox_FacModeNum.Location = new System.Drawing.Point(54, 58);
  3681. this.textBox_FacModeNum.Name = "textBox_FacModeNum";
  3682. this.textBox_FacModeNum.Size = new System.Drawing.Size(167, 28);
  3683. this.textBox_FacModeNum.TabIndex = 7;
  3684. //
  3685. // label81
  3686. //
  3687. this.label81.AutoSize = true;
  3688. this.label81.Location = new System.Drawing.Point(6, 33);
  3689. this.label81.Name = "label81";
  3690. this.label81.Size = new System.Drawing.Size(42, 21);
  3691. this.label81.TabIndex = 3;
  3692. this.label81.Text = "型号";
  3693. //
  3694. // textBox_FacModeName
  3695. //
  3696. this.textBox_FacModeName.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  3697. this.textBox_FacModeName.Location = new System.Drawing.Point(54, 29);
  3698. this.textBox_FacModeName.Name = "textBox_FacModeName";
  3699. this.textBox_FacModeName.Size = new System.Drawing.Size(167, 28);
  3700. this.textBox_FacModeName.TabIndex = 4;
  3701. //
  3702. // groupBox24
  3703. //
  3704. this.groupBox24.Controls.Add(this.button_FacModeAssistParaSet);
  3705. this.groupBox24.Controls.Add(this.label80);
  3706. this.groupBox24.Controls.Add(this.button_FacModeAssistParaRead);
  3707. this.groupBox24.Controls.Add(this.textBox_FacModeStartGain);
  3708. this.groupBox24.Controls.Add(this.textBox_FacModeCadencePer);
  3709. this.groupBox24.Controls.Add(this.label79);
  3710. this.groupBox24.Controls.Add(this.label75);
  3711. this.groupBox24.Controls.Add(this.textBox_FacModeCircuitK);
  3712. this.groupBox24.Controls.Add(this.textBox_FacModeSpeedLimitEnd);
  3713. this.groupBox24.Controls.Add(this.label78);
  3714. this.groupBox24.Controls.Add(this.label76);
  3715. this.groupBox24.Controls.Add(this.textBox_FacModeFltCounter);
  3716. this.groupBox24.Controls.Add(this.textBox_FacModeSpeedLimitTh);
  3717. this.groupBox24.Controls.Add(this.label77);
  3718. this.groupBox24.Location = new System.Drawing.Point(550, 3);
  3719. this.groupBox24.Name = "groupBox24";
  3720. this.groupBox24.Size = new System.Drawing.Size(148, 309);
  3721. this.groupBox24.TabIndex = 12;
  3722. this.groupBox24.TabStop = false;
  3723. this.groupBox24.Text = "助力参数";
  3724. //
  3725. // button_FacModeAssistParaSet
  3726. //
  3727. this.button_FacModeAssistParaSet.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  3728. this.button_FacModeAssistParaSet.Location = new System.Drawing.Point(83, 274);
  3729. this.button_FacModeAssistParaSet.Name = "button_FacModeAssistParaSet";
  3730. this.button_FacModeAssistParaSet.Size = new System.Drawing.Size(60, 30);
  3731. this.button_FacModeAssistParaSet.TabIndex = 32;
  3732. this.button_FacModeAssistParaSet.Text = "写入";
  3733. this.button_FacModeAssistParaSet.UseVisualStyleBackColor = false;
  3734. this.button_FacModeAssistParaSet.Click += new System.EventHandler(this.button_FacModeAssistParaSet_Click);
  3735. //
  3736. // label80
  3737. //
  3738. this.label80.AutoSize = true;
  3739. this.label80.Location = new System.Drawing.Point(6, 33);
  3740. this.label80.Name = "label80";
  3741. this.label80.Size = new System.Drawing.Size(74, 21);
  3742. this.label80.TabIndex = 19;
  3743. this.label80.Text = "零速增益";
  3744. this.label80.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  3745. //
  3746. // button_FacModeAssistParaRead
  3747. //
  3748. this.button_FacModeAssistParaRead.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  3749. this.button_FacModeAssistParaRead.Location = new System.Drawing.Point(6, 274);
  3750. this.button_FacModeAssistParaRead.Name = "button_FacModeAssistParaRead";
  3751. this.button_FacModeAssistParaRead.Size = new System.Drawing.Size(60, 30);
  3752. this.button_FacModeAssistParaRead.TabIndex = 31;
  3753. this.button_FacModeAssistParaRead.Text = "读取";
  3754. this.button_FacModeAssistParaRead.UseVisualStyleBackColor = false;
  3755. this.button_FacModeAssistParaRead.Click += new System.EventHandler(this.button_FacModeAssistParaRead_Click);
  3756. //
  3757. // textBox_FacModeStartGain
  3758. //
  3759. this.textBox_FacModeStartGain.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  3760. this.textBox_FacModeStartGain.Location = new System.Drawing.Point(86, 29);
  3761. this.textBox_FacModeStartGain.Name = "textBox_FacModeStartGain";
  3762. this.textBox_FacModeStartGain.Size = new System.Drawing.Size(56, 28);
  3763. this.textBox_FacModeStartGain.TabIndex = 20;
  3764. //
  3765. // textBox_FacModeCadencePer
  3766. //
  3767. this.textBox_FacModeCadencePer.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  3768. this.textBox_FacModeCadencePer.Location = new System.Drawing.Point(87, 239);
  3769. this.textBox_FacModeCadencePer.Name = "textBox_FacModeCadencePer";
  3770. this.textBox_FacModeCadencePer.Size = new System.Drawing.Size(56, 28);
  3771. this.textBox_FacModeCadencePer.TabIndex = 30;
  3772. //
  3773. // label79
  3774. //
  3775. this.label79.AutoSize = true;
  3776. this.label79.Location = new System.Drawing.Point(6, 75);
  3777. this.label79.Name = "label79";
  3778. this.label79.Size = new System.Drawing.Size(74, 21);
  3779. this.label79.TabIndex = 21;
  3780. this.label79.Text = "电流阶梯";
  3781. this.label79.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  3782. //
  3783. // label75
  3784. //
  3785. this.label75.AutoSize = true;
  3786. this.label75.Location = new System.Drawing.Point(6, 243);
  3787. this.label75.Name = "label75";
  3788. this.label75.Size = new System.Drawing.Size(74, 21);
  3789. this.label75.TabIndex = 29;
  3790. this.label75.Text = "踏频占比";
  3791. this.label75.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  3792. //
  3793. // textBox_FacModeCircuitK
  3794. //
  3795. this.textBox_FacModeCircuitK.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  3796. this.textBox_FacModeCircuitK.Location = new System.Drawing.Point(86, 71);
  3797. this.textBox_FacModeCircuitK.Name = "textBox_FacModeCircuitK";
  3798. this.textBox_FacModeCircuitK.Size = new System.Drawing.Size(56, 28);
  3799. this.textBox_FacModeCircuitK.TabIndex = 22;
  3800. //
  3801. // textBox_FacModeSpeedLimitEnd
  3802. //
  3803. this.textBox_FacModeSpeedLimitEnd.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  3804. this.textBox_FacModeSpeedLimitEnd.Location = new System.Drawing.Point(86, 197);
  3805. this.textBox_FacModeSpeedLimitEnd.Name = "textBox_FacModeSpeedLimitEnd";
  3806. this.textBox_FacModeSpeedLimitEnd.Size = new System.Drawing.Size(56, 28);
  3807. this.textBox_FacModeSpeedLimitEnd.TabIndex = 28;
  3808. //
  3809. // label78
  3810. //
  3811. this.label78.AutoSize = true;
  3812. this.label78.Location = new System.Drawing.Point(6, 117);
  3813. this.label78.Name = "label78";
  3814. this.label78.Size = new System.Drawing.Size(74, 21);
  3815. this.label78.TabIndex = 23;
  3816. this.label78.Text = "滤波脉冲";
  3817. this.label78.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  3818. //
  3819. // label76
  3820. //
  3821. this.label76.AutoSize = true;
  3822. this.label76.Location = new System.Drawing.Point(6, 201);
  3823. this.label76.Name = "label76";
  3824. this.label76.Size = new System.Drawing.Size(74, 21);
  3825. this.label76.TabIndex = 27;
  3826. this.label76.Text = "限速停止";
  3827. this.label76.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  3828. //
  3829. // textBox_FacModeFltCounter
  3830. //
  3831. this.textBox_FacModeFltCounter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  3832. this.textBox_FacModeFltCounter.Location = new System.Drawing.Point(86, 113);
  3833. this.textBox_FacModeFltCounter.Name = "textBox_FacModeFltCounter";
  3834. this.textBox_FacModeFltCounter.Size = new System.Drawing.Size(56, 28);
  3835. this.textBox_FacModeFltCounter.TabIndex = 24;
  3836. //
  3837. // textBox_FacModeSpeedLimitTh
  3838. //
  3839. this.textBox_FacModeSpeedLimitTh.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  3840. this.textBox_FacModeSpeedLimitTh.Location = new System.Drawing.Point(87, 155);
  3841. this.textBox_FacModeSpeedLimitTh.Name = "textBox_FacModeSpeedLimitTh";
  3842. this.textBox_FacModeSpeedLimitTh.Size = new System.Drawing.Size(56, 28);
  3843. this.textBox_FacModeSpeedLimitTh.TabIndex = 26;
  3844. //
  3845. // label77
  3846. //
  3847. this.label77.AutoSize = true;
  3848. this.label77.Location = new System.Drawing.Point(6, 159);
  3849. this.label77.Name = "label77";
  3850. this.label77.Size = new System.Drawing.Size(74, 21);
  3851. this.label77.TabIndex = 25;
  3852. this.label77.Text = "限速起始";
  3853. this.label77.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  3854. //
  3855. // groupBox23
  3856. //
  3857. this.groupBox23.Controls.Add(this.comboBox_FacModeStartMode);
  3858. this.groupBox23.Controls.Add(this.comboBox_FacModeLightVol);
  3859. this.groupBox23.Controls.Add(this.comboBox_FacModeAssist2);
  3860. this.groupBox23.Controls.Add(this.comboBox_FacModeAssist1);
  3861. this.groupBox23.Controls.Add(this.button_FacModeBikeParaSet);
  3862. this.groupBox23.Controls.Add(this.button_FacModeBikeParaRead);
  3863. this.groupBox23.Controls.Add(this.label74);
  3864. this.groupBox23.Controls.Add(this.label73);
  3865. this.groupBox23.Controls.Add(this.label72);
  3866. this.groupBox23.Controls.Add(this.label71);
  3867. this.groupBox23.Controls.Add(this.textBox_FacModeSpeedLimit);
  3868. this.groupBox23.Controls.Add(this.label70);
  3869. this.groupBox23.Controls.Add(this.textBox_FacModeWheelSize);
  3870. this.groupBox23.Controls.Add(this.label69);
  3871. this.groupBox23.Location = new System.Drawing.Point(396, 3);
  3872. this.groupBox23.Name = "groupBox23";
  3873. this.groupBox23.Size = new System.Drawing.Size(148, 309);
  3874. this.groupBox23.TabIndex = 11;
  3875. this.groupBox23.TabStop = false;
  3876. this.groupBox23.Text = "整车参数";
  3877. //
  3878. // comboBox_FacModeStartMode
  3879. //
  3880. this.comboBox_FacModeStartMode.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
  3881. this.comboBox_FacModeStartMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  3882. this.comboBox_FacModeStartMode.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3883. this.comboBox_FacModeStartMode.FormattingEnabled = true;
  3884. this.comboBox_FacModeStartMode.Items.AddRange(new object[] {
  3885. "柔和",
  3886. "正常",
  3887. "强劲"});
  3888. this.comboBox_FacModeStartMode.Location = new System.Drawing.Point(62, 239);
  3889. this.comboBox_FacModeStartMode.Name = "comboBox_FacModeStartMode";
  3890. this.comboBox_FacModeStartMode.Size = new System.Drawing.Size(80, 29);
  3891. this.comboBox_FacModeStartMode.TabIndex = 22;
  3892. //
  3893. // comboBox_FacModeLightVol
  3894. //
  3895. this.comboBox_FacModeLightVol.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
  3896. this.comboBox_FacModeLightVol.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  3897. this.comboBox_FacModeLightVol.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3898. this.comboBox_FacModeLightVol.FormattingEnabled = true;
  3899. this.comboBox_FacModeLightVol.Items.AddRange(new object[] {
  3900. "6V",
  3901. "12V",
  3902. "其它"});
  3903. this.comboBox_FacModeLightVol.Location = new System.Drawing.Point(62, 197);
  3904. this.comboBox_FacModeLightVol.Name = "comboBox_FacModeLightVol";
  3905. this.comboBox_FacModeLightVol.Size = new System.Drawing.Size(80, 29);
  3906. this.comboBox_FacModeLightVol.TabIndex = 21;
  3907. //
  3908. // comboBox_FacModeAssist2
  3909. //
  3910. this.comboBox_FacModeAssist2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
  3911. this.comboBox_FacModeAssist2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  3912. this.comboBox_FacModeAssist2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3913. this.comboBox_FacModeAssist2.FormattingEnabled = true;
  3914. this.comboBox_FacModeAssist2.Items.AddRange(new object[] {
  3915. "0",
  3916. "341",
  3917. "682",
  3918. "其它"});
  3919. this.comboBox_FacModeAssist2.Location = new System.Drawing.Point(62, 155);
  3920. this.comboBox_FacModeAssist2.Name = "comboBox_FacModeAssist2";
  3921. this.comboBox_FacModeAssist2.Size = new System.Drawing.Size(80, 29);
  3922. this.comboBox_FacModeAssist2.TabIndex = 20;
  3923. //
  3924. // comboBox_FacModeAssist1
  3925. //
  3926. this.comboBox_FacModeAssist1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
  3927. this.comboBox_FacModeAssist1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  3928. this.comboBox_FacModeAssist1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  3929. this.comboBox_FacModeAssist1.FormattingEnabled = true;
  3930. this.comboBox_FacModeAssist1.Items.AddRange(new object[] {
  3931. "0",
  3932. "341",
  3933. "682",
  3934. "其它"});
  3935. this.comboBox_FacModeAssist1.Location = new System.Drawing.Point(62, 113);
  3936. this.comboBox_FacModeAssist1.Name = "comboBox_FacModeAssist1";
  3937. this.comboBox_FacModeAssist1.Size = new System.Drawing.Size(80, 29);
  3938. this.comboBox_FacModeAssist1.TabIndex = 19;
  3939. //
  3940. // button_FacModeBikeParaSet
  3941. //
  3942. this.button_FacModeBikeParaSet.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  3943. this.button_FacModeBikeParaSet.Location = new System.Drawing.Point(83, 274);
  3944. this.button_FacModeBikeParaSet.Name = "button_FacModeBikeParaSet";
  3945. this.button_FacModeBikeParaSet.Size = new System.Drawing.Size(60, 30);
  3946. this.button_FacModeBikeParaSet.TabIndex = 18;
  3947. this.button_FacModeBikeParaSet.Text = "写入";
  3948. this.button_FacModeBikeParaSet.UseVisualStyleBackColor = false;
  3949. this.button_FacModeBikeParaSet.Click += new System.EventHandler(this.button_FacModeBikeParaSet_Click);
  3950. //
  3951. // button_FacModeBikeParaRead
  3952. //
  3953. this.button_FacModeBikeParaRead.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  3954. this.button_FacModeBikeParaRead.Location = new System.Drawing.Point(6, 274);
  3955. this.button_FacModeBikeParaRead.Name = "button_FacModeBikeParaRead";
  3956. this.button_FacModeBikeParaRead.Size = new System.Drawing.Size(60, 30);
  3957. this.button_FacModeBikeParaRead.TabIndex = 17;
  3958. this.button_FacModeBikeParaRead.Text = "读取";
  3959. this.button_FacModeBikeParaRead.UseVisualStyleBackColor = false;
  3960. this.button_FacModeBikeParaRead.Click += new System.EventHandler(this.button_FacModeBikeParaRead_Click);
  3961. //
  3962. // label74
  3963. //
  3964. this.label74.AutoSize = true;
  3965. this.label74.Location = new System.Drawing.Point(7, 243);
  3966. this.label74.Name = "label74";
  3967. this.label74.Size = new System.Drawing.Size(42, 21);
  3968. this.label74.TabIndex = 12;
  3969. this.label74.Text = "启动";
  3970. this.label74.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  3971. //
  3972. // label73
  3973. //
  3974. this.label73.AutoSize = true;
  3975. this.label73.Location = new System.Drawing.Point(7, 201);
  3976. this.label73.Name = "label73";
  3977. this.label73.Size = new System.Drawing.Size(42, 21);
  3978. this.label73.TabIndex = 10;
  3979. this.label73.Text = "灯压";
  3980. this.label73.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  3981. //
  3982. // label72
  3983. //
  3984. this.label72.AutoSize = true;
  3985. this.label72.Location = new System.Drawing.Point(7, 159);
  3986. this.label72.Name = "label72";
  3987. this.label72.Size = new System.Drawing.Size(51, 21);
  3988. this.label72.TabIndex = 8;
  3989. this.label72.Text = "助力2";
  3990. this.label72.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  3991. //
  3992. // label71
  3993. //
  3994. this.label71.AutoSize = true;
  3995. this.label71.Location = new System.Drawing.Point(7, 117);
  3996. this.label71.Name = "label71";
  3997. this.label71.Size = new System.Drawing.Size(51, 21);
  3998. this.label71.TabIndex = 6;
  3999. this.label71.Text = "助力1";
  4000. this.label71.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  4001. //
  4002. // textBox_FacModeSpeedLimit
  4003. //
  4004. this.textBox_FacModeSpeedLimit.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  4005. this.textBox_FacModeSpeedLimit.Location = new System.Drawing.Point(62, 71);
  4006. this.textBox_FacModeSpeedLimit.Name = "textBox_FacModeSpeedLimit";
  4007. this.textBox_FacModeSpeedLimit.Size = new System.Drawing.Size(80, 28);
  4008. this.textBox_FacModeSpeedLimit.TabIndex = 5;
  4009. //
  4010. // label70
  4011. //
  4012. this.label70.AutoSize = true;
  4013. this.label70.Location = new System.Drawing.Point(7, 75);
  4014. this.label70.Name = "label70";
  4015. this.label70.Size = new System.Drawing.Size(42, 21);
  4016. this.label70.TabIndex = 4;
  4017. this.label70.Text = "限速";
  4018. this.label70.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  4019. //
  4020. // textBox_FacModeWheelSize
  4021. //
  4022. this.textBox_FacModeWheelSize.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  4023. this.textBox_FacModeWheelSize.Location = new System.Drawing.Point(62, 29);
  4024. this.textBox_FacModeWheelSize.Name = "textBox_FacModeWheelSize";
  4025. this.textBox_FacModeWheelSize.Size = new System.Drawing.Size(80, 28);
  4026. this.textBox_FacModeWheelSize.TabIndex = 3;
  4027. //
  4028. // label69
  4029. //
  4030. this.label69.AutoSize = true;
  4031. this.label69.Location = new System.Drawing.Point(7, 33);
  4032. this.label69.Name = "label69";
  4033. this.label69.Size = new System.Drawing.Size(42, 21);
  4034. this.label69.TabIndex = 2;
  4035. this.label69.Text = "周长";
  4036. this.label69.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  4037. //
  4038. // groupBox22
  4039. //
  4040. this.groupBox22.Controls.Add(this.label_MotorSensor);
  4041. this.groupBox22.Controls.Add(this.label_Load);
  4042. this.groupBox22.Controls.Add(this.button_FacModeLightSW);
  4043. this.groupBox22.Controls.Add(this.label_FacModeMotorSpeedSet);
  4044. this.groupBox22.Controls.Add(this.label67);
  4045. this.groupBox22.Controls.Add(this.trackBar_FacModeMotorSpeedAdj);
  4046. this.groupBox22.Controls.Add(this.button_FacModeMotorRun);
  4047. this.groupBox22.Controls.Add(this.radioButton_FacModeDriverMtb);
  4048. this.groupBox22.Controls.Add(this.radioButton_FacModeDriverCity);
  4049. this.groupBox22.Location = new System.Drawing.Point(190, 109);
  4050. this.groupBox22.Name = "groupBox22";
  4051. this.groupBox22.Size = new System.Drawing.Size(200, 203);
  4052. this.groupBox22.TabIndex = 10;
  4053. this.groupBox22.TabStop = false;
  4054. this.groupBox22.Text = "驱动测试";
  4055. //
  4056. // label_MotorSensor
  4057. //
  4058. this.label_MotorSensor.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  4059. this.label_MotorSensor.Font = new System.Drawing.Font("Microsoft YaHei UI", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4060. this.label_MotorSensor.Location = new System.Drawing.Point(148, 26);
  4061. this.label_MotorSensor.Name = "label_MotorSensor";
  4062. this.label_MotorSensor.Size = new System.Drawing.Size(45, 22);
  4063. this.label_MotorSensor.TabIndex = 21;
  4064. this.label_MotorSensor.Text = "有感";
  4065. this.label_MotorSensor.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4066. this.label_MotorSensor.Click += new System.EventHandler(this.label_MotorSensor_Click);
  4067. //
  4068. // label_Load
  4069. //
  4070. this.label_Load.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  4071. this.label_Load.Font = new System.Drawing.Font("Microsoft YaHei UI", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4072. this.label_Load.Location = new System.Drawing.Point(51, 26);
  4073. this.label_Load.Name = "label_Load";
  4074. this.label_Load.Size = new System.Drawing.Size(45, 22);
  4075. this.label_Load.TabIndex = 4;
  4076. this.label_Load.Text = "带载";
  4077. this.label_Load.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4078. this.label_Load.Click += new System.EventHandler(this.label_Load_Click);
  4079. //
  4080. // button_FacModeLightSW
  4081. //
  4082. this.button_FacModeLightSW.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(128)))));
  4083. this.button_FacModeLightSW.Location = new System.Drawing.Point(11, 81);
  4084. this.button_FacModeLightSW.Name = "button_FacModeLightSW";
  4085. this.button_FacModeLightSW.Size = new System.Drawing.Size(85, 45);
  4086. this.button_FacModeLightSW.TabIndex = 20;
  4087. this.button_FacModeLightSW.Text = "开/关灯";
  4088. this.button_FacModeLightSW.UseVisualStyleBackColor = false;
  4089. this.button_FacModeLightSW.Click += new System.EventHandler(this.button_FacModeLightSW_Click);
  4090. //
  4091. // label_FacModeMotorSpeedSet
  4092. //
  4093. this.label_FacModeMotorSpeedSet.AutoSize = true;
  4094. this.label_FacModeMotorSpeedSet.Font = new System.Drawing.Font("Microsoft YaHei UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4095. this.label_FacModeMotorSpeedSet.Location = new System.Drawing.Point(149, 130);
  4096. this.label_FacModeMotorSpeedSet.Name = "label_FacModeMotorSpeedSet";
  4097. this.label_FacModeMotorSpeedSet.Size = new System.Drawing.Size(26, 17);
  4098. this.label_FacModeMotorSpeedSet.TabIndex = 19;
  4099. this.label_FacModeMotorSpeedSet.Text = "2%";
  4100. this.label_FacModeMotorSpeedSet.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  4101. //
  4102. // label67
  4103. //
  4104. this.label67.AutoSize = true;
  4105. this.label67.Font = new System.Drawing.Font("Microsoft YaHei UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4106. this.label67.Location = new System.Drawing.Point(20, 130);
  4107. this.label67.Name = "label67";
  4108. this.label67.Size = new System.Drawing.Size(56, 17);
  4109. this.label67.TabIndex = 18;
  4110. this.label67.Text = "转速调节";
  4111. //
  4112. // trackBar_FacModeMotorSpeedAdj
  4113. //
  4114. this.trackBar_FacModeMotorSpeedAdj.Location = new System.Drawing.Point(6, 153);
  4115. this.trackBar_FacModeMotorSpeedAdj.Maximum = 100;
  4116. this.trackBar_FacModeMotorSpeedAdj.Minimum = 2;
  4117. this.trackBar_FacModeMotorSpeedAdj.Name = "trackBar_FacModeMotorSpeedAdj";
  4118. this.trackBar_FacModeMotorSpeedAdj.Size = new System.Drawing.Size(181, 45);
  4119. this.trackBar_FacModeMotorSpeedAdj.TabIndex = 17;
  4120. this.trackBar_FacModeMotorSpeedAdj.TickStyle = System.Windows.Forms.TickStyle.Both;
  4121. this.trackBar_FacModeMotorSpeedAdj.Value = 2;
  4122. this.trackBar_FacModeMotorSpeedAdj.ValueChanged += new System.EventHandler(this.trackBar_FacModeMotorSpeedAdj_ValueChanged);
  4123. //
  4124. // button_FacModeMotorRun
  4125. //
  4126. this.button_FacModeMotorRun.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  4127. this.button_FacModeMotorRun.Location = new System.Drawing.Point(109, 81);
  4128. this.button_FacModeMotorRun.Name = "button_FacModeMotorRun";
  4129. this.button_FacModeMotorRun.Size = new System.Drawing.Size(85, 45);
  4130. this.button_FacModeMotorRun.TabIndex = 16;
  4131. this.button_FacModeMotorRun.Text = "启/停";
  4132. this.button_FacModeMotorRun.UseVisualStyleBackColor = false;
  4133. this.button_FacModeMotorRun.Click += new System.EventHandler(this.button_FacModeMotorRun_Click);
  4134. //
  4135. // radioButton_FacModeDriverMtb
  4136. //
  4137. this.radioButton_FacModeDriverMtb.AutoSize = true;
  4138. this.radioButton_FacModeDriverMtb.Location = new System.Drawing.Point(109, 53);
  4139. this.radioButton_FacModeDriverMtb.Name = "radioButton_FacModeDriverMtb";
  4140. this.radioButton_FacModeDriverMtb.Size = new System.Drawing.Size(63, 25);
  4141. this.radioButton_FacModeDriverMtb.TabIndex = 1;
  4142. this.radioButton_FacModeDriverMtb.TabStop = true;
  4143. this.radioButton_FacModeDriverMtb.Text = "MTB";
  4144. this.radioButton_FacModeDriverMtb.UseVisualStyleBackColor = true;
  4145. //
  4146. // radioButton_FacModeDriverCity
  4147. //
  4148. this.radioButton_FacModeDriverCity.AutoSize = true;
  4149. this.radioButton_FacModeDriverCity.Location = new System.Drawing.Point(11, 53);
  4150. this.radioButton_FacModeDriverCity.Name = "radioButton_FacModeDriverCity";
  4151. this.radioButton_FacModeDriverCity.Size = new System.Drawing.Size(63, 25);
  4152. this.radioButton_FacModeDriverCity.TabIndex = 0;
  4153. this.radioButton_FacModeDriverCity.TabStop = true;
  4154. this.radioButton_FacModeDriverCity.Text = "CITY";
  4155. this.radioButton_FacModeDriverCity.UseVisualStyleBackColor = true;
  4156. //
  4157. // groupBox21
  4158. //
  4159. this.groupBox21.Controls.Add(this.button_FacModeWorkMode);
  4160. this.groupBox21.Controls.Add(this.checkBox_FacModeCheckCadence);
  4161. this.groupBox21.Controls.Add(this.checkBox_FacModeCheckBikeSpeed);
  4162. this.groupBox21.Controls.Add(this.checkBox_FacModeCheckNTC);
  4163. this.groupBox21.Controls.Add(this.checkBox_FacModeCheckVol);
  4164. this.groupBox21.Location = new System.Drawing.Point(190, 3);
  4165. this.groupBox21.Name = "groupBox21";
  4166. this.groupBox21.Size = new System.Drawing.Size(200, 96);
  4167. this.groupBox21.TabIndex = 9;
  4168. this.groupBox21.TabStop = false;
  4169. this.groupBox21.Text = "传感器测试";
  4170. //
  4171. // button_FacModeWorkMode
  4172. //
  4173. this.button_FacModeWorkMode.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  4174. this.button_FacModeWorkMode.Location = new System.Drawing.Point(6, 27);
  4175. this.button_FacModeWorkMode.Name = "button_FacModeWorkMode";
  4176. this.button_FacModeWorkMode.Size = new System.Drawing.Size(54, 51);
  4177. this.button_FacModeWorkMode.TabIndex = 17;
  4178. this.button_FacModeWorkMode.Text = "开始";
  4179. this.button_FacModeWorkMode.UseVisualStyleBackColor = false;
  4180. this.button_FacModeWorkMode.Click += new System.EventHandler(this.button_FacModeWorkMode_Click);
  4181. //
  4182. // checkBox_FacModeCheckCadence
  4183. //
  4184. this.checkBox_FacModeCheckCadence.AutoSize = true;
  4185. this.checkBox_FacModeCheckCadence.Location = new System.Drawing.Point(133, 58);
  4186. this.checkBox_FacModeCheckCadence.Name = "checkBox_FacModeCheckCadence";
  4187. this.checkBox_FacModeCheckCadence.Size = new System.Drawing.Size(61, 25);
  4188. this.checkBox_FacModeCheckCadence.TabIndex = 3;
  4189. this.checkBox_FacModeCheckCadence.Text = "踏频";
  4190. this.checkBox_FacModeCheckCadence.UseVisualStyleBackColor = true;
  4191. //
  4192. // checkBox_FacModeCheckBikeSpeed
  4193. //
  4194. this.checkBox_FacModeCheckBikeSpeed.AutoSize = true;
  4195. this.checkBox_FacModeCheckBikeSpeed.Location = new System.Drawing.Point(66, 58);
  4196. this.checkBox_FacModeCheckBikeSpeed.Name = "checkBox_FacModeCheckBikeSpeed";
  4197. this.checkBox_FacModeCheckBikeSpeed.Size = new System.Drawing.Size(61, 25);
  4198. this.checkBox_FacModeCheckBikeSpeed.TabIndex = 2;
  4199. this.checkBox_FacModeCheckBikeSpeed.Text = "车速";
  4200. this.checkBox_FacModeCheckBikeSpeed.UseVisualStyleBackColor = true;
  4201. //
  4202. // checkBox_FacModeCheckNTC
  4203. //
  4204. this.checkBox_FacModeCheckNTC.AutoSize = true;
  4205. this.checkBox_FacModeCheckNTC.Location = new System.Drawing.Point(133, 27);
  4206. this.checkBox_FacModeCheckNTC.Name = "checkBox_FacModeCheckNTC";
  4207. this.checkBox_FacModeCheckNTC.Size = new System.Drawing.Size(61, 25);
  4208. this.checkBox_FacModeCheckNTC.TabIndex = 1;
  4209. this.checkBox_FacModeCheckNTC.Text = "温度";
  4210. this.checkBox_FacModeCheckNTC.UseVisualStyleBackColor = true;
  4211. //
  4212. // checkBox_FacModeCheckVol
  4213. //
  4214. this.checkBox_FacModeCheckVol.AutoSize = true;
  4215. this.checkBox_FacModeCheckVol.Location = new System.Drawing.Point(66, 27);
  4216. this.checkBox_FacModeCheckVol.Name = "checkBox_FacModeCheckVol";
  4217. this.checkBox_FacModeCheckVol.Size = new System.Drawing.Size(61, 25);
  4218. this.checkBox_FacModeCheckVol.TabIndex = 0;
  4219. this.checkBox_FacModeCheckVol.Text = "电压";
  4220. this.checkBox_FacModeCheckVol.UseVisualStyleBackColor = true;
  4221. //
  4222. // groupBox20
  4223. //
  4224. this.groupBox20.Controls.Add(this.textBox10);
  4225. this.groupBox20.Controls.Add(this.button_FacModeSensorRead);
  4226. this.groupBox20.Controls.Add(this.textBox_FacModeSensorADC0);
  4227. this.groupBox20.Controls.Add(this.textBox_FacModeSensorADC4);
  4228. this.groupBox20.Controls.Add(this.buttonFacModeSet1);
  4229. this.groupBox20.Controls.Add(this.buttonFacModeSet2);
  4230. this.groupBox20.Controls.Add(this.textBox_FacModeSensorADC3);
  4231. this.groupBox20.Controls.Add(this.buttonFacModeSet3);
  4232. this.groupBox20.Controls.Add(this.textBox_FacModeSensorADC1);
  4233. this.groupBox20.Controls.Add(this.buttonFacModeSet4);
  4234. this.groupBox20.Controls.Add(this.textBox_FacModeSensorADC2);
  4235. this.groupBox20.Controls.Add(this.textBox_FacModeSensorCal4);
  4236. this.groupBox20.Controls.Add(this.textBox_FacModeSensorCal3);
  4237. this.groupBox20.Controls.Add(this.textBox_FacModeSensorCal1);
  4238. this.groupBox20.Controls.Add(this.textBox_FacModeSensorCal2);
  4239. this.groupBox20.Location = new System.Drawing.Point(3, 109);
  4240. this.groupBox20.Name = "groupBox20";
  4241. this.groupBox20.Size = new System.Drawing.Size(181, 203);
  4242. this.groupBox20.TabIndex = 8;
  4243. this.groupBox20.TabStop = false;
  4244. this.groupBox20.Text = "标定";
  4245. //
  4246. // textBox10
  4247. //
  4248. this.textBox10.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
  4249. this.textBox10.Location = new System.Drawing.Point(6, 35);
  4250. this.textBox10.Name = "textBox10";
  4251. this.textBox10.ReadOnly = true;
  4252. this.textBox10.Size = new System.Drawing.Size(47, 28);
  4253. this.textBox10.TabIndex = 16;
  4254. this.textBox10.Text = "0";
  4255. this.textBox10.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  4256. //
  4257. // button_FacModeSensorRead
  4258. //
  4259. this.button_FacModeSensorRead.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  4260. this.button_FacModeSensorRead.Location = new System.Drawing.Point(115, 33);
  4261. this.button_FacModeSensorRead.Name = "button_FacModeSensorRead";
  4262. this.button_FacModeSensorRead.Size = new System.Drawing.Size(60, 30);
  4263. this.button_FacModeSensorRead.TabIndex = 15;
  4264. this.button_FacModeSensorRead.Text = "读取";
  4265. this.button_FacModeSensorRead.UseVisualStyleBackColor = false;
  4266. this.button_FacModeSensorRead.Click += new System.EventHandler(this.button_FacModeSensorRead_Click);
  4267. //
  4268. // textBox_FacModeSensorADC0
  4269. //
  4270. this.textBox_FacModeSensorADC0.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  4271. this.textBox_FacModeSensorADC0.Location = new System.Drawing.Point(59, 35);
  4272. this.textBox_FacModeSensorADC0.Name = "textBox_FacModeSensorADC0";
  4273. this.textBox_FacModeSensorADC0.ReadOnly = true;
  4274. this.textBox_FacModeSensorADC0.Size = new System.Drawing.Size(50, 28);
  4275. this.textBox_FacModeSensorADC0.TabIndex = 15;
  4276. this.textBox_FacModeSensorADC0.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  4277. //
  4278. // textBox_FacModeSensorADC4
  4279. //
  4280. this.textBox_FacModeSensorADC4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  4281. this.textBox_FacModeSensorADC4.Location = new System.Drawing.Point(59, 168);
  4282. this.textBox_FacModeSensorADC4.Name = "textBox_FacModeSensorADC4";
  4283. this.textBox_FacModeSensorADC4.ReadOnly = true;
  4284. this.textBox_FacModeSensorADC4.Size = new System.Drawing.Size(50, 28);
  4285. this.textBox_FacModeSensorADC4.TabIndex = 14;
  4286. this.textBox_FacModeSensorADC4.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  4287. //
  4288. // buttonFacModeSet1
  4289. //
  4290. this.buttonFacModeSet1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  4291. this.buttonFacModeSet1.Location = new System.Drawing.Point(115, 67);
  4292. this.buttonFacModeSet1.Name = "buttonFacModeSet1";
  4293. this.buttonFacModeSet1.Size = new System.Drawing.Size(60, 30);
  4294. this.buttonFacModeSet1.TabIndex = 7;
  4295. this.buttonFacModeSet1.Text = "加载1";
  4296. this.buttonFacModeSet1.UseVisualStyleBackColor = false;
  4297. this.buttonFacModeSet1.Click += new System.EventHandler(this.buttonFacModeSet1_Click);
  4298. //
  4299. // buttonFacModeSet2
  4300. //
  4301. this.buttonFacModeSet2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  4302. this.buttonFacModeSet2.Location = new System.Drawing.Point(115, 100);
  4303. this.buttonFacModeSet2.Name = "buttonFacModeSet2";
  4304. this.buttonFacModeSet2.Size = new System.Drawing.Size(60, 30);
  4305. this.buttonFacModeSet2.TabIndex = 8;
  4306. this.buttonFacModeSet2.Text = "加载2";
  4307. this.buttonFacModeSet2.UseVisualStyleBackColor = false;
  4308. this.buttonFacModeSet2.Click += new System.EventHandler(this.buttonFacModeSet2_Click);
  4309. //
  4310. // textBox_FacModeSensorADC3
  4311. //
  4312. this.textBox_FacModeSensorADC3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  4313. this.textBox_FacModeSensorADC3.Location = new System.Drawing.Point(59, 135);
  4314. this.textBox_FacModeSensorADC3.Name = "textBox_FacModeSensorADC3";
  4315. this.textBox_FacModeSensorADC3.ReadOnly = true;
  4316. this.textBox_FacModeSensorADC3.Size = new System.Drawing.Size(50, 28);
  4317. this.textBox_FacModeSensorADC3.TabIndex = 13;
  4318. this.textBox_FacModeSensorADC3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  4319. //
  4320. // buttonFacModeSet3
  4321. //
  4322. this.buttonFacModeSet3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  4323. this.buttonFacModeSet3.Location = new System.Drawing.Point(115, 133);
  4324. this.buttonFacModeSet3.Name = "buttonFacModeSet3";
  4325. this.buttonFacModeSet3.Size = new System.Drawing.Size(60, 30);
  4326. this.buttonFacModeSet3.TabIndex = 9;
  4327. this.buttonFacModeSet3.Text = "加载3";
  4328. this.buttonFacModeSet3.UseVisualStyleBackColor = false;
  4329. this.buttonFacModeSet3.Click += new System.EventHandler(this.buttonFacModeSet3_Click);
  4330. //
  4331. // textBox_FacModeSensorADC1
  4332. //
  4333. this.textBox_FacModeSensorADC1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  4334. this.textBox_FacModeSensorADC1.Location = new System.Drawing.Point(59, 69);
  4335. this.textBox_FacModeSensorADC1.Name = "textBox_FacModeSensorADC1";
  4336. this.textBox_FacModeSensorADC1.ReadOnly = true;
  4337. this.textBox_FacModeSensorADC1.Size = new System.Drawing.Size(50, 28);
  4338. this.textBox_FacModeSensorADC1.TabIndex = 12;
  4339. this.textBox_FacModeSensorADC1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  4340. //
  4341. // buttonFacModeSet4
  4342. //
  4343. this.buttonFacModeSet4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  4344. this.buttonFacModeSet4.Location = new System.Drawing.Point(115, 166);
  4345. this.buttonFacModeSet4.Name = "buttonFacModeSet4";
  4346. this.buttonFacModeSet4.Size = new System.Drawing.Size(60, 30);
  4347. this.buttonFacModeSet4.TabIndex = 10;
  4348. this.buttonFacModeSet4.Text = "加载4";
  4349. this.buttonFacModeSet4.UseVisualStyleBackColor = false;
  4350. this.buttonFacModeSet4.Click += new System.EventHandler(this.buttonFacModeSet4_Click);
  4351. //
  4352. // textBox_FacModeSensorADC2
  4353. //
  4354. this.textBox_FacModeSensorADC2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  4355. this.textBox_FacModeSensorADC2.Location = new System.Drawing.Point(59, 102);
  4356. this.textBox_FacModeSensorADC2.Name = "textBox_FacModeSensorADC2";
  4357. this.textBox_FacModeSensorADC2.ReadOnly = true;
  4358. this.textBox_FacModeSensorADC2.Size = new System.Drawing.Size(50, 28);
  4359. this.textBox_FacModeSensorADC2.TabIndex = 11;
  4360. this.textBox_FacModeSensorADC2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  4361. //
  4362. // textBox_FacModeSensorCal4
  4363. //
  4364. this.textBox_FacModeSensorCal4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  4365. this.textBox_FacModeSensorCal4.Location = new System.Drawing.Point(6, 168);
  4366. this.textBox_FacModeSensorCal4.Name = "textBox_FacModeSensorCal4";
  4367. this.textBox_FacModeSensorCal4.Size = new System.Drawing.Size(47, 28);
  4368. this.textBox_FacModeSensorCal4.TabIndex = 5;
  4369. this.textBox_FacModeSensorCal4.Text = "96";
  4370. this.textBox_FacModeSensorCal4.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  4371. //
  4372. // textBox_FacModeSensorCal3
  4373. //
  4374. this.textBox_FacModeSensorCal3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  4375. this.textBox_FacModeSensorCal3.Location = new System.Drawing.Point(6, 135);
  4376. this.textBox_FacModeSensorCal3.Name = "textBox_FacModeSensorCal3";
  4377. this.textBox_FacModeSensorCal3.Size = new System.Drawing.Size(47, 28);
  4378. this.textBox_FacModeSensorCal3.TabIndex = 4;
  4379. this.textBox_FacModeSensorCal3.Text = "72";
  4380. this.textBox_FacModeSensorCal3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  4381. //
  4382. // textBox_FacModeSensorCal1
  4383. //
  4384. this.textBox_FacModeSensorCal1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  4385. this.textBox_FacModeSensorCal1.Location = new System.Drawing.Point(6, 69);
  4386. this.textBox_FacModeSensorCal1.Name = "textBox_FacModeSensorCal1";
  4387. this.textBox_FacModeSensorCal1.Size = new System.Drawing.Size(47, 28);
  4388. this.textBox_FacModeSensorCal1.TabIndex = 3;
  4389. this.textBox_FacModeSensorCal1.Text = "24";
  4390. this.textBox_FacModeSensorCal1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  4391. //
  4392. // textBox_FacModeSensorCal2
  4393. //
  4394. this.textBox_FacModeSensorCal2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  4395. this.textBox_FacModeSensorCal2.Location = new System.Drawing.Point(6, 102);
  4396. this.textBox_FacModeSensorCal2.Name = "textBox_FacModeSensorCal2";
  4397. this.textBox_FacModeSensorCal2.Size = new System.Drawing.Size(47, 28);
  4398. this.textBox_FacModeSensorCal2.TabIndex = 2;
  4399. this.textBox_FacModeSensorCal2.Text = "48";
  4400. this.textBox_FacModeSensorCal2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  4401. //
  4402. // groupBox19
  4403. //
  4404. this.groupBox19.Controls.Add(this.button_FacModeInit);
  4405. this.groupBox19.Location = new System.Drawing.Point(3, 3);
  4406. this.groupBox19.Name = "groupBox19";
  4407. this.groupBox19.Size = new System.Drawing.Size(181, 96);
  4408. this.groupBox19.TabIndex = 7;
  4409. this.groupBox19.TabStop = false;
  4410. this.groupBox19.Text = "初始化";
  4411. //
  4412. // button_FacModeInit
  4413. //
  4414. this.button_FacModeInit.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
  4415. this.button_FacModeInit.Location = new System.Drawing.Point(26, 29);
  4416. this.button_FacModeInit.Name = "button_FacModeInit";
  4417. this.button_FacModeInit.Size = new System.Drawing.Size(126, 51);
  4418. this.button_FacModeInit.TabIndex = 0;
  4419. this.button_FacModeInit.Text = "初始化";
  4420. this.button_FacModeInit.UseVisualStyleBackColor = false;
  4421. this.button_FacModeInit.Click += new System.EventHandler(this.button_FacModeInit_Click);
  4422. //
  4423. // label23
  4424. //
  4425. this.label23.AutoSize = true;
  4426. this.label23.BackColor = System.Drawing.Color.DodgerBlue;
  4427. this.label23.Font = new System.Drawing.Font("Microsoft YaHei UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4428. this.label23.ForeColor = System.Drawing.Color.White;
  4429. this.label23.Location = new System.Drawing.Point(406, 622);
  4430. this.label23.Name = "label23";
  4431. this.label23.Size = new System.Drawing.Size(68, 17);
  4432. this.label23.TabIndex = 7;
  4433. this.label23.Text = "接收计数:";
  4434. //
  4435. // label_RecCount
  4436. //
  4437. this.label_RecCount.AutoSize = true;
  4438. this.label_RecCount.BackColor = System.Drawing.Color.DodgerBlue;
  4439. this.label_RecCount.Font = new System.Drawing.Font("Microsoft YaHei UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4440. this.label_RecCount.ForeColor = System.Drawing.Color.White;
  4441. this.label_RecCount.Location = new System.Drawing.Point(482, 622);
  4442. this.label_RecCount.Name = "label_RecCount";
  4443. this.label_RecCount.Size = new System.Drawing.Size(15, 17);
  4444. this.label_RecCount.TabIndex = 8;
  4445. this.label_RecCount.Text = "0";
  4446. //
  4447. // timer_1s
  4448. //
  4449. this.timer_1s.Enabled = true;
  4450. this.timer_1s.Interval = 500;
  4451. this.timer_1s.Tick += new System.EventHandler(this.timer_1s_Tick);
  4452. //
  4453. // label_BuildTime
  4454. //
  4455. this.label_BuildTime.AutoSize = true;
  4456. this.label_BuildTime.BackColor = System.Drawing.Color.DodgerBlue;
  4457. this.label_BuildTime.Font = new System.Drawing.Font("Microsoft YaHei UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4458. this.label_BuildTime.ForeColor = System.Drawing.Color.White;
  4459. this.label_BuildTime.Location = new System.Drawing.Point(664, 622);
  4460. this.label_BuildTime.Name = "label_BuildTime";
  4461. this.label_BuildTime.Size = new System.Drawing.Size(186, 17);
  4462. this.label_BuildTime.TabIndex = 10;
  4463. this.label_BuildTime.Text = "编译时间:2022-05-22 14:00:00";
  4464. //
  4465. // label_SystemTime
  4466. //
  4467. this.label_SystemTime.AutoSize = true;
  4468. this.label_SystemTime.BackColor = System.Drawing.Color.DodgerBlue;
  4469. this.label_SystemTime.Font = new System.Drawing.Font("Microsoft YaHei UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4470. this.label_SystemTime.ForeColor = System.Drawing.Color.White;
  4471. this.label_SystemTime.Location = new System.Drawing.Point(858, 622);
  4472. this.label_SystemTime.Name = "label_SystemTime";
  4473. this.label_SystemTime.Size = new System.Drawing.Size(162, 17);
  4474. this.label_SystemTime.TabIndex = 11;
  4475. this.label_SystemTime.Text = "当前:2022-05-22 14:00:00";
  4476. //
  4477. // label_COM_Sta
  4478. //
  4479. this.label_COM_Sta.AutoSize = true;
  4480. this.label_COM_Sta.BackColor = System.Drawing.Color.DodgerBlue;
  4481. this.label_COM_Sta.Font = new System.Drawing.Font("Microsoft YaHei UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4482. this.label_COM_Sta.ForeColor = System.Drawing.Color.White;
  4483. this.label_COM_Sta.Location = new System.Drawing.Point(230, 622);
  4484. this.label_COM_Sta.Name = "label_COM_Sta";
  4485. this.label_COM_Sta.Size = new System.Drawing.Size(80, 17);
  4486. this.label_COM_Sta.TabIndex = 12;
  4487. this.label_COM_Sta.Text = "端口:未连接";
  4488. //
  4489. // label43
  4490. //
  4491. this.label43.BackColor = System.Drawing.Color.Silver;
  4492. this.label43.Location = new System.Drawing.Point(223, 623);
  4493. this.label43.Name = "label43";
  4494. this.label43.Size = new System.Drawing.Size(1, 15);
  4495. this.label43.TabIndex = 8;
  4496. //
  4497. // label44
  4498. //
  4499. this.label44.BackColor = System.Drawing.Color.Silver;
  4500. this.label44.Location = new System.Drawing.Point(399, 623);
  4501. this.label44.Name = "label44";
  4502. this.label44.Size = new System.Drawing.Size(1, 15);
  4503. this.label44.TabIndex = 13;
  4504. //
  4505. // label45
  4506. //
  4507. this.label45.BackColor = System.Drawing.Color.Silver;
  4508. this.label45.Location = new System.Drawing.Point(654, 623);
  4509. this.label45.Name = "label45";
  4510. this.label45.Size = new System.Drawing.Size(1, 15);
  4511. this.label45.TabIndex = 14;
  4512. //
  4513. // label96
  4514. //
  4515. this.label96.BackColor = System.Drawing.Color.Silver;
  4516. this.label96.Location = new System.Drawing.Point(536, 623);
  4517. this.label96.Name = "label96";
  4518. this.label96.Size = new System.Drawing.Size(1, 15);
  4519. this.label96.TabIndex = 17;
  4520. //
  4521. // label_Server_ComStatus
  4522. //
  4523. this.label_Server_ComStatus.AutoSize = true;
  4524. this.label_Server_ComStatus.BackColor = System.Drawing.Color.DodgerBlue;
  4525. this.label_Server_ComStatus.Font = new System.Drawing.Font("Microsoft YaHei UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4526. this.label_Server_ComStatus.ForeColor = System.Drawing.Color.White;
  4527. this.label_Server_ComStatus.Location = new System.Drawing.Point(543, 622);
  4528. this.label_Server_ComStatus.Name = "label_Server_ComStatus";
  4529. this.label_Server_ComStatus.Size = new System.Drawing.Size(80, 17);
  4530. this.label_Server_ComStatus.TabIndex = 18;
  4531. this.label_Server_ComStatus.Text = "网络:未连接";
  4532. //
  4533. // label_ServerStatus
  4534. //
  4535. this.label_ServerStatus.BackColor = System.Drawing.Color.Red;
  4536. this.label_ServerStatus.Location = new System.Drawing.Point(630, 623);
  4537. this.label_ServerStatus.Name = "label_ServerStatus";
  4538. this.label_ServerStatus.Size = new System.Drawing.Size(15, 15);
  4539. this.label_ServerStatus.TabIndex = 19;
  4540. //
  4541. // label_PortStatus
  4542. //
  4543. this.label_PortStatus.BackColor = System.Drawing.Color.Red;
  4544. this.label_PortStatus.Location = new System.Drawing.Point(373, 623);
  4545. this.label_PortStatus.Name = "label_PortStatus";
  4546. this.label_PortStatus.Size = new System.Drawing.Size(15, 15);
  4547. this.label_PortStatus.TabIndex = 20;
  4548. //
  4549. // Button_FacModeSetNum
  4550. //
  4551. this.Button_FacModeSetNum.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  4552. this.Button_FacModeSetNum.Location = new System.Drawing.Point(227, 58);
  4553. this.Button_FacModeSetNum.Name = "Button_FacModeSetNum";
  4554. this.Button_FacModeSetNum.Size = new System.Drawing.Size(54, 29);
  4555. this.Button_FacModeSetNum.TabIndex = 8;
  4556. this.Button_FacModeSetNum.Text = "写入";
  4557. this.Button_FacModeSetNum.UseVisualStyleBackColor = false;
  4558. this.Button_FacModeSetNum.Click += new System.EventHandler(this.Button_FacModeSetNum_Click);
  4559. //
  4560. // button_FacModeSetName
  4561. //
  4562. this.button_FacModeSetName.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  4563. this.button_FacModeSetName.Location = new System.Drawing.Point(227, 29);
  4564. this.button_FacModeSetName.Name = "button_FacModeSetName";
  4565. this.button_FacModeSetName.Size = new System.Drawing.Size(54, 29);
  4566. this.button_FacModeSetName.TabIndex = 28;
  4567. this.button_FacModeSetName.Text = "写入";
  4568. this.button_FacModeSetName.UseVisualStyleBackColor = false;
  4569. this.button_FacModeSetName.Click += new System.EventHandler(this.button_FacModeSetName_Click);
  4570. //
  4571. // button_ScanCode
  4572. //
  4573. this.button_ScanCode.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
  4574. this.button_ScanCode.Location = new System.Drawing.Point(704, 248);
  4575. this.button_ScanCode.Name = "button_ScanCode";
  4576. this.button_ScanCode.Size = new System.Drawing.Size(68, 60);
  4577. this.button_ScanCode.TabIndex = 34;
  4578. this.button_ScanCode.Text = "扫码\r\n写入";
  4579. this.button_ScanCode.UseVisualStyleBackColor = false;
  4580. this.button_ScanCode.Click += new System.EventHandler(this.button_ScanCode_Click);
  4581. //
  4582. // pictureBox2
  4583. //
  4584. this.pictureBox2.BackColor = System.Drawing.Color.DodgerBlue;
  4585. this.pictureBox2.Image = global::Welling_Motor_Debug_Tool.Properties.Resources.about;
  4586. this.pictureBox2.Location = new System.Drawing.Point(896, 5);
  4587. this.pictureBox2.Name = "pictureBox2";
  4588. this.pictureBox2.Size = new System.Drawing.Size(132, 18);
  4589. this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  4590. this.pictureBox2.TabIndex = 16;
  4591. this.pictureBox2.TabStop = false;
  4592. //
  4593. // Form1
  4594. //
  4595. this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F);
  4596. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  4597. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  4598. this.ClientSize = new System.Drawing.Size(1034, 641);
  4599. this.Controls.Add(this.label_PortStatus);
  4600. this.Controls.Add(this.label_ServerStatus);
  4601. this.Controls.Add(this.label_Server_ComStatus);
  4602. this.Controls.Add(this.label96);
  4603. this.Controls.Add(this.pictureBox2);
  4604. this.Controls.Add(this.label45);
  4605. this.Controls.Add(this.label44);
  4606. this.Controls.Add(this.label43);
  4607. this.Controls.Add(this.label_COM_Sta);
  4608. this.Controls.Add(this.label_SystemTime);
  4609. this.Controls.Add(this.label_BuildTime);
  4610. this.Controls.Add(this.label_RecCount);
  4611. this.Controls.Add(this.label23);
  4612. this.Controls.Add(this.groupBox3);
  4613. this.Controls.Add(this.groupBox2);
  4614. this.Controls.Add(this.groupBox1);
  4615. this.Controls.Add(this.statusStrip1);
  4616. this.Controls.Add(this.menuStrip_Set);
  4617. this.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F);
  4618. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  4619. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  4620. this.Margin = new System.Windows.Forms.Padding(4);
  4621. this.MaximizeBox = false;
  4622. this.Name = "Form1";
  4623. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  4624. this.Text = "Welling中置电机调试工具V1.2.5";
  4625. this.Load += new System.EventHandler(this.Form1_Load);
  4626. this.menuStrip_Set.ResumeLayout(false);
  4627. this.menuStrip_Set.PerformLayout();
  4628. this.statusStrip1.ResumeLayout(false);
  4629. this.statusStrip1.PerformLayout();
  4630. this.groupBox1.ResumeLayout(false);
  4631. this.groupBox1.PerformLayout();
  4632. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_SpeedAdj)).EndInit();
  4633. this.groupBox2.ResumeLayout(false);
  4634. this.groupBox2.PerformLayout();
  4635. this.groupBox3.ResumeLayout(false);
  4636. this.tabControl1.ResumeLayout(false);
  4637. this.tabPage_MotorParam.ResumeLayout(false);
  4638. this.tabPage_BikeParam.ResumeLayout(false);
  4639. this.tabPage_BikeParam.PerformLayout();
  4640. this.tabPage_ControlParam.ResumeLayout(false);
  4641. this.tabPage_SensorParam.ResumeLayout(false);
  4642. this.tabPage_SensorParam.PerformLayout();
  4643. this.tabPage_AssistParam.ResumeLayout(false);
  4644. this.tabPage_AssistParam.PerformLayout();
  4645. this.tabPage_DebugParam.ResumeLayout(false);
  4646. this.tabPage_RecordInfo.ResumeLayout(false);
  4647. this.tabPage_RecordInfo.PerformLayout();
  4648. this.tabPage_OtherInfo.ResumeLayout(false);
  4649. this.groupBox16.ResumeLayout(false);
  4650. this.groupBox16.PerformLayout();
  4651. this.groupBox18.ResumeLayout(false);
  4652. this.groupBox18.PerformLayout();
  4653. this.groupBox17.ResumeLayout(false);
  4654. this.groupBox17.PerformLayout();
  4655. this.groupBox9.ResumeLayout(false);
  4656. this.groupBox8.ResumeLayout(false);
  4657. this.groupBox8.PerformLayout();
  4658. this.groupBox7.ResumeLayout(false);
  4659. this.groupBox7.PerformLayout();
  4660. this.groupBox6.ResumeLayout(false);
  4661. this.groupBox6.PerformLayout();
  4662. this.groupBox5.ResumeLayout(false);
  4663. this.groupBox5.PerformLayout();
  4664. this.groupBox4.ResumeLayout(false);
  4665. this.groupBox4.PerformLayout();
  4666. this.tabPage_OBC.ResumeLayout(false);
  4667. this.groupBox26.ResumeLayout(false);
  4668. this.groupBox15.ResumeLayout(false);
  4669. this.groupBox15.PerformLayout();
  4670. this.groupBox14.ResumeLayout(false);
  4671. this.groupBox14.PerformLayout();
  4672. this.groupBox13.ResumeLayout(false);
  4673. this.groupBox13.PerformLayout();
  4674. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_OBC_OffTime)).EndInit();
  4675. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_OBC_WheelAdj)).EndInit();
  4676. this.groupBox12.ResumeLayout(false);
  4677. this.groupBox11.ResumeLayout(false);
  4678. this.groupBox11.PerformLayout();
  4679. this.groupBox10.ResumeLayout(false);
  4680. this.groupBox10.PerformLayout();
  4681. this.tabPage_RAMorFLASH.ResumeLayout(false);
  4682. this.tabPage_RAMorFLASH.PerformLayout();
  4683. this.tabPage_FactoryMode.ResumeLayout(false);
  4684. this.groupBox25.ResumeLayout(false);
  4685. this.groupBox25.PerformLayout();
  4686. this.groupBox24.ResumeLayout(false);
  4687. this.groupBox24.PerformLayout();
  4688. this.groupBox23.ResumeLayout(false);
  4689. this.groupBox23.PerformLayout();
  4690. this.groupBox22.ResumeLayout(false);
  4691. this.groupBox22.PerformLayout();
  4692. ((System.ComponentModel.ISupportInitialize)(this.trackBar_FacModeMotorSpeedAdj)).EndInit();
  4693. this.groupBox21.ResumeLayout(false);
  4694. this.groupBox21.PerformLayout();
  4695. this.groupBox20.ResumeLayout(false);
  4696. this.groupBox20.PerformLayout();
  4697. this.groupBox19.ResumeLayout(false);
  4698. ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
  4699. this.ResumeLayout(false);
  4700. this.PerformLayout();
  4701. }
  4702. #endregion
  4703. private MenuStrip menuStrip_Set;
  4704. private ToolStripMenuItem 端口连接ToolStripMenuItem;
  4705. private ToolStripMenuItem 端口号ToolStripMenuItem;
  4706. private ToolStripMenuItem 波特率ToolStripMenuItem;
  4707. private ToolStripMenuItem 工具箱ToolStripMenuItem;
  4708. private ToolStripMenuItem 运行信息记录ToolStripMenuItem;
  4709. private ToolStripMenuItem 关于ToolStripMenuItem;
  4710. private ToolStripMenuItem 帮助ToolStripMenuItem;
  4711. private ToolStripMenuItem 版本ToolStripMenuItem;
  4712. private StatusStrip statusStrip1;
  4713. private ToolStripStatusLabel toolStripStatusLabel1;
  4714. private GroupBox groupBox1;
  4715. private GroupBox groupBox2;
  4716. private GroupBox groupBox3;
  4717. private ToolStripMenuItem 连接ToolStripMenuItem;
  4718. private NumericUpDown numericUpDown_SpeedAdj;
  4719. private Label label4;
  4720. private Label label3;
  4721. private ComboBox comboBox_WorkMode;
  4722. private Label label2;
  4723. private Label label1;
  4724. private Label label10;
  4725. private Label label9;
  4726. private Label label8;
  4727. private Label label7;
  4728. private Label label6;
  4729. private Label label5;
  4730. private Label label28;
  4731. private Label label22;
  4732. private Label label16;
  4733. private Label label21;
  4734. private Label label15;
  4735. private Label label20;
  4736. private Label label14;
  4737. private Label label19;
  4738. private Label label13;
  4739. private Label label18;
  4740. private Label label12;
  4741. private Label label17;
  4742. private Label label11;
  4743. private ToolStripMenuItem 配置ToolStripMenuItem;
  4744. private ToolStripMenuItem 写入存储ToolStripMenuItem;
  4745. private ToolStripMenuItem 计算器ToolStripMenuItem;
  4746. private ToolStripMenuItem 刷新ToolStripMenuItem;
  4747. private ToolStripComboBox toolStripComboBox_ComNum;
  4748. private ToolStripComboBox toolStripComboBox_Baudrate;
  4749. public ComboBox comboBox_LightSwitch;
  4750. public ComboBox comboBox_GearSt;
  4751. private TextBox textBox_RunInfo_Power;
  4752. private TextBox textBox_RunInfo_Current;
  4753. private TextBox textBox_RunInfo_Vol;
  4754. private TextBox textBox_RunInfo_MotorSpeed;
  4755. private TextBox textBox_RunInfo_Cadence;
  4756. private TextBox textBox_RunInfo_BikeSpeed;
  4757. private TextBox textBox_ErrorCode;
  4758. private TextBox textBox_RunInfo_Trip_Time;
  4759. private TextBox textBox_RunInfo_Range;
  4760. private TextBox textBox_RunInfo_Trip;
  4761. private TextBox textBox_RunInfo_SOC;
  4762. private TextBox textBox_RunInfo_T_Coil;
  4763. private TextBox textBox_RunInfo_LightSwitch;
  4764. private TextBox textBox_RunInfo_T_MCU;
  4765. private TextBox textBox_RunInfo_GearSt;
  4766. private TextBox textBox_RunInfo_T_PCB;
  4767. private TextBox textBox_RunInfo_Dir;
  4768. private TextBox textBox_RunInfo_AvgPower;
  4769. private TextBox textBox_RunInfo_Torque;
  4770. private Label label23;
  4771. private Label label_RecCount;
  4772. private Timer timer_1s;
  4773. private Label label24;
  4774. private TabControl tabControl1;
  4775. private TabPage tabPage_MotorParam;
  4776. private TabPage tabPage_BikeParam;
  4777. private TabPage tabPage_ControlParam;
  4778. private TabPage tabPage_SensorParam;
  4779. private TabPage tabPage_AssistParam;
  4780. private TabPage tabPage_DebugParam;
  4781. private TabPage tabPage_RecordInfo;
  4782. private TabPage tabPage_OtherInfo;
  4783. private Button button_Write;
  4784. private Button button_Read_MotorParam;
  4785. private RichTextBox richTextBox_MotorParam;
  4786. private Button button_WriteBikeParam;
  4787. private Button button_ReadBikeParam;
  4788. private RichTextBox richTextBox_BikeParam;
  4789. private Button button_WriteControlParam;
  4790. private Button button_ReadControlParam;
  4791. private RichTextBox richTextBox_ControlParam;
  4792. private Button button_WriteAssistParam;
  4793. private Button button_ReadAssistParam;
  4794. private RichTextBox richTextBox_AssistParam;
  4795. private Button button_WriteDebugParam;
  4796. private Button button_ReadDebugParam;
  4797. private RichTextBox richTextBox_DebugParam;
  4798. private Button button_SaveRecordInfo;
  4799. private Button button_ReadRecord;
  4800. private Button button_ExportLog;
  4801. private RichTextBox richTextBox_Record;
  4802. private Button button_Write_Cal;
  4803. private Button button_WriteSensorParam;
  4804. private Button button_ReadSensorParam;
  4805. private RichTextBox richTextBox_SensorParam;
  4806. private Label label25;
  4807. private TextBox textBox_Load;
  4808. private Label label27;
  4809. private Label label26;
  4810. private Label label29;
  4811. private GroupBox groupBox4;
  4812. private Button button_ReadVersion;
  4813. private Button button_WriteSN;
  4814. private Button button_WriteModel;
  4815. private TextBox textBox_FW;
  4816. private TextBox textBox_HW;
  4817. private TextBox textBox_SN;
  4818. private Label label33;
  4819. private Label label32;
  4820. private TextBox textBox_Model;
  4821. private Label label31;
  4822. private Label label30;
  4823. private GroupBox groupBox6;
  4824. private Button button_ReadUser3;
  4825. private Button button_WriteUser3;
  4826. private Button button_ReadUser2;
  4827. private Button button_WriteUser2;
  4828. private Button button_ReadUser1;
  4829. private Button button_WriteUser1;
  4830. private TextBox textBox_User3;
  4831. private TextBox textBox_User2;
  4832. private Label label35;
  4833. private TextBox textBox_User1;
  4834. private Label label36;
  4835. private Label label38;
  4836. private GroupBox groupBox5;
  4837. private Button button_ReadKey;
  4838. private Button button_WriteKey;
  4839. private TextBox textBox_Key;
  4840. private Label label37;
  4841. private GroupBox groupBox8;
  4842. private Button button_ReadOnLine;
  4843. private TextBox textBox_Online;
  4844. private Label label42;
  4845. private GroupBox groupBox7;
  4846. private Button button_ReadMAC;
  4847. private Button button_WriteMac;
  4848. private TextBox textBox_PP;
  4849. private TextBox textBox_MACDate;
  4850. private TextBox textBox_MACAdd;
  4851. private Label label34;
  4852. private Label label39;
  4853. private TextBox textBox_MAC;
  4854. private Label label40;
  4855. private Label label41;
  4856. private GroupBox groupBox9;
  4857. private Button button_Recovery;
  4858. private Button button_ClearLog;
  4859. private Button button_Reset;
  4860. private Button button_SystemClear;
  4861. private Label label_BuildTime;
  4862. private Label label_SystemTime;
  4863. private Label label_COM_Sta;
  4864. private Label label43;
  4865. private Label label44;
  4866. private Label label45;
  4867. private Label label47;
  4868. private ComboBox comboBox_AssistTorque;
  4869. private ComboBox comboBox_AssistCadence;
  4870. private ComboBox comboBox_TorqueSet;
  4871. private TabPage tabPage_OBC;
  4872. private CheckBox checkBox_OBC_StartSetGearSt;
  4873. public ComboBox comboBox_OBC_SetGearST;
  4874. private GroupBox groupBox15;
  4875. private TextBox textBox_OBC_ODO_TIME;
  4876. private Button button_OBC_ReadRideInfo;
  4877. private TextBox textBox_OBC_ODO_KM;
  4878. private Button button_OBC_ClearTrip;
  4879. private TextBox textBox_OBC_TRIP_TIME;
  4880. private Label label54;
  4881. private TextBox textBox_OBC_TRIP_KM;
  4882. private Label label52;
  4883. private GroupBox groupBox14;
  4884. private Button button_OBC_ReadVerInfo;
  4885. private TextBox textBox_OBC_ReadFW;
  4886. private TextBox textBox_OBC_ReadHW;
  4887. private TextBox textBox_OBC_ReadSN;
  4888. private Label label48;
  4889. private Label label49;
  4890. private TextBox textBox_OBC_ReadModel;
  4891. private Label label50;
  4892. private Label label51;
  4893. private GroupBox groupBox13;
  4894. private Button button_OBC_WriteUserInfo;
  4895. private GroupBox groupBox12;
  4896. private RichTextBox richTextBox_OBC_ReadUserInfo;
  4897. private Button button_OBC_ReadUserInfo;
  4898. private GroupBox groupBox11;
  4899. private RichTextBox richTextBox_OBC_BMS_RunInfo;
  4900. private CheckBox checkBox_OBC_StartReadBMS;
  4901. private GroupBox groupBox10;
  4902. private Label label56;
  4903. private NumericUpDown numericUpDown_OBC_WheelAdj;
  4904. private Label label59;
  4905. public ComboBox comboBox_OBC_AssistFunc;
  4906. public ComboBox comboBox_OBC_StartMode;
  4907. private Label label58;
  4908. private Label label57;
  4909. private Label label60;
  4910. public ComboBox comboBox_OBC_LightSw;
  4911. private Label label61;
  4912. private Label label62;
  4913. private Button button_WriteTqSensorParam;
  4914. private GroupBox groupBox16;
  4915. private RadioButton radioButton_SIP_SaveYes;
  4916. private RadioButton radioButton_SIP_SaveNo;
  4917. private CheckBox checkBox_SaveYes;
  4918. private Button button_ReadSaveFlag;
  4919. private Button button_WriteSaveFlag;
  4920. private GroupBox groupBox18;
  4921. private GroupBox groupBox17;
  4922. private RadioButton radioButton_EE_SaveYes;
  4923. private RadioButton radioButton_EE_SaveNo;
  4924. private Label label64;
  4925. private NumericUpDown numericUpDown_OBC_OffTime;
  4926. private Label label63;
  4927. private TabPage tabPage_RAMorFLASH;
  4928. private TextBox textBox_Address_End;
  4929. private Label label66;
  4930. private TextBox textBox_Address_Begin;
  4931. private Label label65;
  4932. private Button button_ReadRamFlash;
  4933. private RichTextBox richTextBox_RamFlasgData;
  4934. private TabPage tabPage_FactoryMode;
  4935. private PictureBox pictureBox2;
  4936. private GroupBox groupBox25;
  4937. private GroupBox groupBox24;
  4938. private GroupBox groupBox23;
  4939. private GroupBox groupBox22;
  4940. private GroupBox groupBox21;
  4941. private GroupBox groupBox20;
  4942. private GroupBox groupBox19;
  4943. private Button button_FacModeInit;
  4944. private Button buttonFacModeSet1;
  4945. private TextBox textBox_FacModeSensorCal4;
  4946. private TextBox textBox_FacModeSensorCal3;
  4947. private TextBox textBox_FacModeSensorCal1;
  4948. private TextBox textBox_FacModeSensorCal2;
  4949. private TextBox textBox10;
  4950. private Button button_FacModeSensorRead;
  4951. private TextBox textBox_FacModeSensorADC0;
  4952. private TextBox textBox_FacModeSensorADC4;
  4953. private Button buttonFacModeSet2;
  4954. private TextBox textBox_FacModeSensorADC3;
  4955. private Button buttonFacModeSet3;
  4956. private TextBox textBox_FacModeSensorADC1;
  4957. private Button buttonFacModeSet4;
  4958. private TextBox textBox_FacModeSensorADC2;
  4959. private CheckBox checkBox_FacModeCheckNTC;
  4960. private CheckBox checkBox_FacModeCheckVol;
  4961. private RadioButton radioButton_FacModeDriverMtb;
  4962. private RadioButton radioButton_FacModeDriverCity;
  4963. private Button button_FacModeMotorRun;
  4964. private Label label_FacModeMotorSpeedSet;
  4965. private Label label67;
  4966. private TrackBar trackBar_FacModeMotorSpeedAdj;
  4967. private Label label74;
  4968. private Label label73;
  4969. private Label label72;
  4970. private Label label71;
  4971. private TextBox textBox_FacModeSpeedLimit;
  4972. private Label label70;
  4973. private TextBox textBox_FacModeWheelSize;
  4974. private Label label69;
  4975. private Button button_FacModeBikeParaSet;
  4976. private Button button_FacModeBikeParaRead;
  4977. private Button button_FacModeAssistParaSet;
  4978. private Label label80;
  4979. private Button button_FacModeAssistParaRead;
  4980. private TextBox textBox_FacModeStartGain;
  4981. private TextBox textBox_FacModeCadencePer;
  4982. private Label label79;
  4983. private Label label75;
  4984. private TextBox textBox_FacModeCircuitK;
  4985. private TextBox textBox_FacModeSpeedLimitEnd;
  4986. private Label label78;
  4987. private Label label76;
  4988. private TextBox textBox_FacModeFltCounter;
  4989. private TextBox textBox_FacModeSpeedLimitTh;
  4990. private Label label77;
  4991. private Label label84;
  4992. private TextBox textBox_FacModeFW;
  4993. private Button Button_FacModeReadVer;
  4994. private Label label83;
  4995. private TextBox textBox_FacModeHW;
  4996. private Label label82;
  4997. private TextBox textBox_FacModeNum;
  4998. private Label label81;
  4999. private TextBox textBox_FacModeName;
  5000. private Button Button_FacModeSaveResult;
  5001. private Button Button_FacModeSetMacDate;
  5002. private ComboBox comboBox_FacModeStartMode;
  5003. private ComboBox comboBox_FacModeLightVol;
  5004. private ComboBox comboBox_FacModeAssist2;
  5005. private ComboBox comboBox_FacModeAssist1;
  5006. private CheckBox checkBox_FacModeCheckCadence;
  5007. private CheckBox checkBox_FacModeCheckBikeSpeed;
  5008. private Button button_FacModeLightSW;
  5009. private Button button_FacModeWorkMode;
  5010. private ToolStripMenuItem 页面保存ToolStripMenuItem;
  5011. private Label label68;
  5012. private Label label85;
  5013. private TextBox textBox_SP;
  5014. private Label label86;
  5015. private TextBox textBox_FacModeSP;
  5016. private Label label53;
  5017. private TextBox textBox_OBC_ReadSP;
  5018. private Button Button_FacModePowerOff;
  5019. private GroupBox groupBox26;
  5020. private Button button_OBC_ButtonSet;
  5021. private Button button_OBC_ButtonLight;
  5022. private Button button_OBC_ButtonWalk;
  5023. private Button button_OBC_ButtonDec;
  5024. private Button button_OBC_ButtonAcc;
  5025. private Button button_OBC_ButtonPower;
  5026. private TextBox textBox_TorqueReg;
  5027. private Label label55;
  5028. private CheckBox checkBox_ReadRanFlash_AutoSW;
  5029. private CheckBox checkBox_ReadRanFlash_ChangeFormat;
  5030. private CheckBox checkBox_ReadRanFlash_AutoClear;
  5031. private Label label_MotorSensor;
  5032. private Label label_Load;
  5033. private Label label88;
  5034. private TextBox textBox_LogAddrEnd;
  5035. private TextBox textBox_LogAddrBegin;
  5036. private Label label89;
  5037. private Label label_LogAddrBegin;
  5038. private Label label87;
  5039. private TextBox textBox_FacModeGit;
  5040. private ComboBox comboBox_TailLightVol;
  5041. private Label label92;
  5042. private ComboBox comboBox_FrontLightVol;
  5043. private Label label91;
  5044. private ComboBox comboBox_TailLightMode;
  5045. private Label label90;
  5046. private TextBox textBox_PowerOffDelay;
  5047. private TextBox textBox_PowerOnDelay;
  5048. private Label label93;
  5049. private Label label94;
  5050. private TextBox textBox_AutoPowerOff;
  5051. private Label label95;
  5052. private ToolStripMenuItem 系统开关ToolStripMenuItem;
  5053. private ToolStripMenuItem 开机ToolStripMenuItem;
  5054. private ToolStripMenuItem 关机ToolStripMenuItem;
  5055. private ToolStripMenuItem 其它配置项ToolStripMenuItem;
  5056. private ToolStripMenuItem 连接开机ToolStripMenuItem;
  5057. private ToolStripMenuItem 断开关机ToolStripMenuItem;
  5058. private ToolStripMenuItem 识别通讯盒ToolStripMenuItem;
  5059. private ToolStripMenuItem 服务器配置ToolStripMenuItem;
  5060. private ToolStripMenuItem IP地址ToolStripMenuItem;
  5061. private ToolStripMenuItem 端口ToolStripMenuItem;
  5062. private ToolStripMenuItem 用户名ToolStripMenuItem;
  5063. private ToolStripMenuItem 密码ToolStripMenuItem;
  5064. private ToolStripTextBox toolStripTextBox_ServerIP;
  5065. private ToolStripTextBox toolStripTextBox_ServerPort;
  5066. private ToolStripTextBox toolStripTextBox_ServerUser;
  5067. private ToolStripTextBox toolStripTextBox_ServerPasswd;
  5068. private ToolStripSeparator toolStripSeparator1;
  5069. private ToolStripMenuItem 存储路径ToolStripMenuItem;
  5070. private ToolStripTextBox toolStripTextBox_ServerPath;
  5071. private Label label96;
  5072. private Label label_Server_ComStatus;
  5073. private Label label_ServerStatus;
  5074. private Label label_PortStatus;
  5075. private ToolStripMenuItem 离线使用ToolStripMenuItem;
  5076. private ToolStripMenuItem 允许ToolStripMenuItem;
  5077. private ToolStripMenuItem 不允许ToolStripMenuItem;
  5078. private ToolStripMenuItem 生产信息ToolStripMenuItem;
  5079. private ToolStripMenuItem 生产商ToolStripMenuItem;
  5080. private ToolStripMenuItem 生产地ToolStripMenuItem;
  5081. private ToolStripMenuItem 生产日期ToolStripMenuItem;
  5082. private ToolStripMenuItem 产品标识ToolStripMenuItem;
  5083. private ToolStripTextBox toolStripTextBox_MAC;
  5084. private ToolStripTextBox toolStripTextBoxMACAddr;
  5085. private ToolStripTextBox toolStripTextBox_MACDate;
  5086. private ToolStripTextBox toolStripTextBox_MACPD;
  5087. private Button Button_FacModeSetNum;
  5088. private Button button_FacModeSetName;
  5089. private Button button_ScanCode;
  5090. }
  5091. }