Form1.Designer.cs 156 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892
  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.配置ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  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.statusStrip1 = new System.Windows.Forms.StatusStrip();
  49. this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
  50. this.groupBox1 = new System.Windows.Forms.GroupBox();
  51. this.label24 = new System.Windows.Forms.Label();
  52. this.numericUpDown_SpeedAdj = new System.Windows.Forms.NumericUpDown();
  53. this.label4 = new System.Windows.Forms.Label();
  54. this.comboBox_LightSwitch = new System.Windows.Forms.ComboBox();
  55. this.label3 = new System.Windows.Forms.Label();
  56. this.comboBox_GearSt = new System.Windows.Forms.ComboBox();
  57. this.comboBox_WorkMode = new System.Windows.Forms.ComboBox();
  58. this.label2 = new System.Windows.Forms.Label();
  59. this.label1 = new System.Windows.Forms.Label();
  60. this.groupBox2 = new System.Windows.Forms.GroupBox();
  61. this.textBox_ErrorCode = new System.Windows.Forms.TextBox();
  62. this.textBox_RunInfo_Trip_Time = new System.Windows.Forms.TextBox();
  63. this.textBox_RunInfo_Range = new System.Windows.Forms.TextBox();
  64. this.textBox_RunInfo_Power = new System.Windows.Forms.TextBox();
  65. this.textBox_RunInfo_Trip = new System.Windows.Forms.TextBox();
  66. this.textBox_RunInfo_SOC = new System.Windows.Forms.TextBox();
  67. this.textBox_RunInfo_Current = new System.Windows.Forms.TextBox();
  68. this.textBox_RunInfo_T_Coil = new System.Windows.Forms.TextBox();
  69. this.textBox_RunInfo_LightSwitch = new System.Windows.Forms.TextBox();
  70. this.textBox_RunInfo_Vol = new System.Windows.Forms.TextBox();
  71. this.textBox_RunInfo_T_MCU = new System.Windows.Forms.TextBox();
  72. this.textBox_RunInfo_GearSt = new System.Windows.Forms.TextBox();
  73. this.textBox_RunInfo_MotorSpeed = new System.Windows.Forms.TextBox();
  74. this.textBox_RunInfo_T_PCB = new System.Windows.Forms.TextBox();
  75. this.textBox_RunInfo_Dir = new System.Windows.Forms.TextBox();
  76. this.textBox_RunInfo_Cadence = new System.Windows.Forms.TextBox();
  77. this.textBox_RunInfo_AvgPower = new System.Windows.Forms.TextBox();
  78. this.textBox_RunInfo_Torque = new System.Windows.Forms.TextBox();
  79. this.textBox_RunInfo_BikeSpeed = new System.Windows.Forms.TextBox();
  80. this.label28 = new System.Windows.Forms.Label();
  81. this.label22 = new System.Windows.Forms.Label();
  82. this.label16 = new System.Windows.Forms.Label();
  83. this.label10 = new System.Windows.Forms.Label();
  84. this.label21 = new System.Windows.Forms.Label();
  85. this.label15 = new System.Windows.Forms.Label();
  86. this.label9 = new System.Windows.Forms.Label();
  87. this.label20 = new System.Windows.Forms.Label();
  88. this.label14 = new System.Windows.Forms.Label();
  89. this.label8 = new System.Windows.Forms.Label();
  90. this.label19 = new System.Windows.Forms.Label();
  91. this.label13 = new System.Windows.Forms.Label();
  92. this.label7 = new System.Windows.Forms.Label();
  93. this.label18 = new System.Windows.Forms.Label();
  94. this.label12 = new System.Windows.Forms.Label();
  95. this.label6 = new System.Windows.Forms.Label();
  96. this.label17 = new System.Windows.Forms.Label();
  97. this.label11 = new System.Windows.Forms.Label();
  98. this.label5 = new System.Windows.Forms.Label();
  99. this.groupBox3 = new System.Windows.Forms.GroupBox();
  100. this.tabControl1 = new System.Windows.Forms.TabControl();
  101. this.tabPage_MotorParam = new System.Windows.Forms.TabPage();
  102. this.button_Write = new System.Windows.Forms.Button();
  103. this.button_Read_MotorParam = new System.Windows.Forms.Button();
  104. this.richTextBox_MotorParam = new System.Windows.Forms.RichTextBox();
  105. this.tabPage_BikeParam = new System.Windows.Forms.TabPage();
  106. this.button_WriteBikeParam = new System.Windows.Forms.Button();
  107. this.button_ReadBikeParam = new System.Windows.Forms.Button();
  108. this.richTextBox_BikeParam = new System.Windows.Forms.RichTextBox();
  109. this.tabPage_ControlParam = new System.Windows.Forms.TabPage();
  110. this.button_WriteControlParam = new System.Windows.Forms.Button();
  111. this.button_ReadControlParam = new System.Windows.Forms.Button();
  112. this.richTextBox_ControlParam = new System.Windows.Forms.RichTextBox();
  113. this.tabPage_SensorParam = new System.Windows.Forms.TabPage();
  114. this.comboBox_TorqueSet = new System.Windows.Forms.ComboBox();
  115. this.label29 = new System.Windows.Forms.Label();
  116. this.textBox_Load = new System.Windows.Forms.TextBox();
  117. this.label27 = new System.Windows.Forms.Label();
  118. this.label26 = new System.Windows.Forms.Label();
  119. this.button_Write_Cal = new System.Windows.Forms.Button();
  120. this.button_WriteSensorParam = new System.Windows.Forms.Button();
  121. this.button_ReadSensorParam = new System.Windows.Forms.Button();
  122. this.richTextBox_SensorParam = new System.Windows.Forms.RichTextBox();
  123. this.tabPage_AssistParam = new System.Windows.Forms.TabPage();
  124. this.label62 = new System.Windows.Forms.Label();
  125. this.label47 = new System.Windows.Forms.Label();
  126. this.comboBox_AssistTorque = new System.Windows.Forms.ComboBox();
  127. this.comboBox_AssistCadence = new System.Windows.Forms.ComboBox();
  128. this.label25 = new System.Windows.Forms.Label();
  129. this.button_WriteAssistParam = new System.Windows.Forms.Button();
  130. this.button_ReadAssistParam = new System.Windows.Forms.Button();
  131. this.richTextBox_AssistParam = new System.Windows.Forms.RichTextBox();
  132. this.tabPage_DebugParam = new System.Windows.Forms.TabPage();
  133. this.button_WriteDebugParam = new System.Windows.Forms.Button();
  134. this.button_ReadDebugParam = new System.Windows.Forms.Button();
  135. this.richTextBox_DebugParam = new System.Windows.Forms.RichTextBox();
  136. this.tabPage_RecordInfo = new System.Windows.Forms.TabPage();
  137. this.button_SaveRecordInfo = new System.Windows.Forms.Button();
  138. this.button_ReadRecord = new System.Windows.Forms.Button();
  139. this.button_ExportLog = new System.Windows.Forms.Button();
  140. this.richTextBox_Record = new System.Windows.Forms.RichTextBox();
  141. this.tabPage_OtherInfo = new System.Windows.Forms.TabPage();
  142. this.groupBox9 = new System.Windows.Forms.GroupBox();
  143. this.button_Recovery = new System.Windows.Forms.Button();
  144. this.button_ClearLog = new System.Windows.Forms.Button();
  145. this.button_Reset = new System.Windows.Forms.Button();
  146. this.button_SystemClear = new System.Windows.Forms.Button();
  147. this.groupBox8 = new System.Windows.Forms.GroupBox();
  148. this.button_ReadOnLine = new System.Windows.Forms.Button();
  149. this.textBox_Online = new System.Windows.Forms.TextBox();
  150. this.label42 = new System.Windows.Forms.Label();
  151. this.groupBox7 = new System.Windows.Forms.GroupBox();
  152. this.button_ReadMAC = new System.Windows.Forms.Button();
  153. this.button_WriteMac = new System.Windows.Forms.Button();
  154. this.textBox_PP = new System.Windows.Forms.TextBox();
  155. this.textBox_MACDate = new System.Windows.Forms.TextBox();
  156. this.textBox_MACAdd = new System.Windows.Forms.TextBox();
  157. this.label34 = new System.Windows.Forms.Label();
  158. this.label39 = new System.Windows.Forms.Label();
  159. this.textBox_MAC = new System.Windows.Forms.TextBox();
  160. this.label40 = new System.Windows.Forms.Label();
  161. this.label41 = new System.Windows.Forms.Label();
  162. this.groupBox6 = new System.Windows.Forms.GroupBox();
  163. this.button_ReadUser3 = new System.Windows.Forms.Button();
  164. this.button_WriteUser3 = new System.Windows.Forms.Button();
  165. this.button_ReadUser2 = new System.Windows.Forms.Button();
  166. this.button_WriteUser2 = new System.Windows.Forms.Button();
  167. this.button_ReadUser1 = new System.Windows.Forms.Button();
  168. this.button_WriteUser1 = new System.Windows.Forms.Button();
  169. this.textBox_User3 = new System.Windows.Forms.TextBox();
  170. this.textBox_User2 = new System.Windows.Forms.TextBox();
  171. this.label35 = new System.Windows.Forms.Label();
  172. this.textBox_User1 = new System.Windows.Forms.TextBox();
  173. this.label36 = new System.Windows.Forms.Label();
  174. this.label38 = new System.Windows.Forms.Label();
  175. this.groupBox5 = new System.Windows.Forms.GroupBox();
  176. this.button_ReadKey = new System.Windows.Forms.Button();
  177. this.button_WriteKey = new System.Windows.Forms.Button();
  178. this.textBox_Key = new System.Windows.Forms.TextBox();
  179. this.label37 = new System.Windows.Forms.Label();
  180. this.groupBox4 = new System.Windows.Forms.GroupBox();
  181. this.button_ReadVersion = new System.Windows.Forms.Button();
  182. this.button_WriteSN = new System.Windows.Forms.Button();
  183. this.button_WriteModel = new System.Windows.Forms.Button();
  184. this.textBox_FW = new System.Windows.Forms.TextBox();
  185. this.textBox_HW = new System.Windows.Forms.TextBox();
  186. this.textBox_SN = new System.Windows.Forms.TextBox();
  187. this.label33 = new System.Windows.Forms.Label();
  188. this.label32 = new System.Windows.Forms.Label();
  189. this.textBox_Model = new System.Windows.Forms.TextBox();
  190. this.label31 = new System.Windows.Forms.Label();
  191. this.label30 = new System.Windows.Forms.Label();
  192. this.tabPage_OBC = new System.Windows.Forms.TabPage();
  193. this.groupBox15 = new System.Windows.Forms.GroupBox();
  194. this.textBox_OBC_ODO_TIME = new System.Windows.Forms.TextBox();
  195. this.button_OBC_ReadRideInfo = new System.Windows.Forms.Button();
  196. this.textBox_OBC_ODO_KM = new System.Windows.Forms.TextBox();
  197. this.button_OBC_ClearTrip = new System.Windows.Forms.Button();
  198. this.label55 = new System.Windows.Forms.Label();
  199. this.textBox_OBC_TRIP_TIME = new System.Windows.Forms.TextBox();
  200. this.label54 = new System.Windows.Forms.Label();
  201. this.textBox_OBC_TRIP_KM = new System.Windows.Forms.TextBox();
  202. this.label52 = new System.Windows.Forms.Label();
  203. this.label53 = new System.Windows.Forms.Label();
  204. this.groupBox14 = new System.Windows.Forms.GroupBox();
  205. this.button_OBC_ReadVerInfo = new System.Windows.Forms.Button();
  206. this.textBox_OBC_ReadFW = new System.Windows.Forms.TextBox();
  207. this.textBox_OBC_ReadHW = new System.Windows.Forms.TextBox();
  208. this.textBox_OBC_ReadSN = new System.Windows.Forms.TextBox();
  209. this.label48 = new System.Windows.Forms.Label();
  210. this.label49 = new System.Windows.Forms.Label();
  211. this.textBox_OBC_ReadModel = new System.Windows.Forms.TextBox();
  212. this.label50 = new System.Windows.Forms.Label();
  213. this.label51 = new System.Windows.Forms.Label();
  214. this.groupBox13 = new System.Windows.Forms.GroupBox();
  215. this.numericUpDown_OBC_WheelAdj = new System.Windows.Forms.NumericUpDown();
  216. this.label59 = new System.Windows.Forms.Label();
  217. this.comboBox_OBC_AssistFunc = new System.Windows.Forms.ComboBox();
  218. this.comboBox_OBC_StartMode = new System.Windows.Forms.ComboBox();
  219. this.label58 = new System.Windows.Forms.Label();
  220. this.label57 = new System.Windows.Forms.Label();
  221. this.button_OBC_WriteUserInfo = new System.Windows.Forms.Button();
  222. this.label56 = new System.Windows.Forms.Label();
  223. this.groupBox12 = new System.Windows.Forms.GroupBox();
  224. this.richTextBox_OBC_ReadUserInfo = new System.Windows.Forms.RichTextBox();
  225. this.button_OBC_ReadUserInfo = new System.Windows.Forms.Button();
  226. this.groupBox11 = new System.Windows.Forms.GroupBox();
  227. this.richTextBox_OBC_BMS_RunInfo = new System.Windows.Forms.RichTextBox();
  228. this.checkBox_OBC_StartReadBMS = new System.Windows.Forms.CheckBox();
  229. this.groupBox10 = new System.Windows.Forms.GroupBox();
  230. this.label60 = new System.Windows.Forms.Label();
  231. this.comboBox_OBC_LightSw = new System.Windows.Forms.ComboBox();
  232. this.label61 = new System.Windows.Forms.Label();
  233. this.comboBox_OBC_SetGearST = new System.Windows.Forms.ComboBox();
  234. this.checkBox_OBC_StartSetGearSt = new System.Windows.Forms.CheckBox();
  235. this.label23 = new System.Windows.Forms.Label();
  236. this.label_RecCount = new System.Windows.Forms.Label();
  237. this.timer_1s = new System.Windows.Forms.Timer(this.components);
  238. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  239. this.label_BuildTime = new System.Windows.Forms.Label();
  240. this.label_SystemTime = new System.Windows.Forms.Label();
  241. this.label_COM_Sta = new System.Windows.Forms.Label();
  242. this.label43 = new System.Windows.Forms.Label();
  243. this.label44 = new System.Windows.Forms.Label();
  244. this.label45 = new System.Windows.Forms.Label();
  245. this.label46 = new System.Windows.Forms.Label();
  246. this.button_WriteTqSensorParam = new System.Windows.Forms.Button();
  247. this.menuStrip_Set.SuspendLayout();
  248. this.statusStrip1.SuspendLayout();
  249. this.groupBox1.SuspendLayout();
  250. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_SpeedAdj)).BeginInit();
  251. this.groupBox2.SuspendLayout();
  252. this.groupBox3.SuspendLayout();
  253. this.tabControl1.SuspendLayout();
  254. this.tabPage_MotorParam.SuspendLayout();
  255. this.tabPage_BikeParam.SuspendLayout();
  256. this.tabPage_ControlParam.SuspendLayout();
  257. this.tabPage_SensorParam.SuspendLayout();
  258. this.tabPage_AssistParam.SuspendLayout();
  259. this.tabPage_DebugParam.SuspendLayout();
  260. this.tabPage_RecordInfo.SuspendLayout();
  261. this.tabPage_OtherInfo.SuspendLayout();
  262. this.groupBox9.SuspendLayout();
  263. this.groupBox8.SuspendLayout();
  264. this.groupBox7.SuspendLayout();
  265. this.groupBox6.SuspendLayout();
  266. this.groupBox5.SuspendLayout();
  267. this.groupBox4.SuspendLayout();
  268. this.tabPage_OBC.SuspendLayout();
  269. this.groupBox15.SuspendLayout();
  270. this.groupBox14.SuspendLayout();
  271. this.groupBox13.SuspendLayout();
  272. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_OBC_WheelAdj)).BeginInit();
  273. this.groupBox12.SuspendLayout();
  274. this.groupBox11.SuspendLayout();
  275. this.groupBox10.SuspendLayout();
  276. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  277. this.SuspendLayout();
  278. //
  279. // menuStrip_Set
  280. //
  281. this.menuStrip_Set.BackColor = System.Drawing.Color.DodgerBlue;
  282. this.menuStrip_Set.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F);
  283. this.menuStrip_Set.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  284. this.端口连接ToolStripMenuItem,
  285. this.配置ToolStripMenuItem,
  286. this.工具箱ToolStripMenuItem,
  287. this.关于ToolStripMenuItem});
  288. this.menuStrip_Set.Location = new System.Drawing.Point(0, 0);
  289. this.menuStrip_Set.Name = "menuStrip_Set";
  290. this.menuStrip_Set.Size = new System.Drawing.Size(984, 29);
  291. this.menuStrip_Set.TabIndex = 1;
  292. this.menuStrip_Set.Text = "menuStrip2";
  293. //
  294. // 端口连接ToolStripMenuItem
  295. //
  296. this.端口连接ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  297. this.刷新ToolStripMenuItem,
  298. this.端口号ToolStripMenuItem,
  299. this.波特率ToolStripMenuItem,
  300. this.连接ToolStripMenuItem});
  301. this.端口连接ToolStripMenuItem.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  302. this.端口连接ToolStripMenuItem.Name = "端口连接ToolStripMenuItem";
  303. this.端口连接ToolStripMenuItem.Size = new System.Drawing.Size(86, 25);
  304. this.端口连接ToolStripMenuItem.Text = "端口设置";
  305. //
  306. // 刷新ToolStripMenuItem
  307. //
  308. this.刷新ToolStripMenuItem.Name = "刷新ToolStripMenuItem";
  309. this.刷新ToolStripMenuItem.Size = new System.Drawing.Size(180, 26);
  310. this.刷新ToolStripMenuItem.Text = "刷新";
  311. this.刷新ToolStripMenuItem.Click += new System.EventHandler(this.刷新ToolStripMenuItem_Click);
  312. //
  313. // 端口号ToolStripMenuItem
  314. //
  315. this.端口号ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  316. this.toolStripComboBox_ComNum});
  317. this.端口号ToolStripMenuItem.Name = "端口号ToolStripMenuItem";
  318. this.端口号ToolStripMenuItem.Size = new System.Drawing.Size(180, 26);
  319. this.端口号ToolStripMenuItem.Text = "端口号";
  320. //
  321. // toolStripComboBox_ComNum
  322. //
  323. this.toolStripComboBox_ComNum.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  324. this.toolStripComboBox_ComNum.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  325. this.toolStripComboBox_ComNum.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  326. this.toolStripComboBox_ComNum.Name = "toolStripComboBox_ComNum";
  327. this.toolStripComboBox_ComNum.Size = new System.Drawing.Size(121, 29);
  328. //
  329. // 波特率ToolStripMenuItem
  330. //
  331. this.波特率ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  332. this.toolStripComboBox_Baudrate});
  333. this.波特率ToolStripMenuItem.Name = "波特率ToolStripMenuItem";
  334. this.波特率ToolStripMenuItem.Size = new System.Drawing.Size(180, 26);
  335. this.波特率ToolStripMenuItem.Text = "波特率";
  336. //
  337. // toolStripComboBox_Baudrate
  338. //
  339. this.toolStripComboBox_Baudrate.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  340. this.toolStripComboBox_Baudrate.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  341. this.toolStripComboBox_Baudrate.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  342. this.toolStripComboBox_Baudrate.Items.AddRange(new object[] {
  343. "9600",
  344. "115200",
  345. "230400"});
  346. this.toolStripComboBox_Baudrate.Name = "toolStripComboBox_Baudrate";
  347. this.toolStripComboBox_Baudrate.Size = new System.Drawing.Size(121, 29);
  348. //
  349. // 连接ToolStripMenuItem
  350. //
  351. this.连接ToolStripMenuItem.Name = "连接ToolStripMenuItem";
  352. this.连接ToolStripMenuItem.Size = new System.Drawing.Size(180, 26);
  353. this.连接ToolStripMenuItem.Text = "连接";
  354. this.连接ToolStripMenuItem.Click += new System.EventHandler(this.连接ToolStripMenuItem_Click);
  355. //
  356. // 配置ToolStripMenuItem
  357. //
  358. this.配置ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  359. this.写入存储ToolStripMenuItem});
  360. this.配置ToolStripMenuItem.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  361. this.配置ToolStripMenuItem.Name = "配置ToolStripMenuItem";
  362. this.配置ToolStripMenuItem.Size = new System.Drawing.Size(54, 25);
  363. this.配置ToolStripMenuItem.Text = "配置";
  364. //
  365. // 写入存储ToolStripMenuItem
  366. //
  367. this.写入存储ToolStripMenuItem.Name = "写入存储ToolStripMenuItem";
  368. this.写入存储ToolStripMenuItem.Size = new System.Drawing.Size(180, 26);
  369. this.写入存储ToolStripMenuItem.Text = "存储执行";
  370. this.写入存储ToolStripMenuItem.Click += new System.EventHandler(this.写入存储ToolStripMenuItem_Click);
  371. //
  372. // 工具箱ToolStripMenuItem
  373. //
  374. this.工具箱ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  375. this.记录数据ToolStripMenuItem,
  376. this.一键查询ToolStripMenuItem,
  377. this.计算器ToolStripMenuItem});
  378. this.工具箱ToolStripMenuItem.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  379. this.工具箱ToolStripMenuItem.Name = "工具箱ToolStripMenuItem";
  380. this.工具箱ToolStripMenuItem.Size = new System.Drawing.Size(70, 25);
  381. this.工具箱ToolStripMenuItem.Text = "工具箱";
  382. //
  383. // 记录数据ToolStripMenuItem
  384. //
  385. this.记录数据ToolStripMenuItem.Name = "记录数据ToolStripMenuItem";
  386. this.记录数据ToolStripMenuItem.Size = new System.Drawing.Size(180, 26);
  387. this.记录数据ToolStripMenuItem.Text = "记录数据";
  388. this.记录数据ToolStripMenuItem.Click += new System.EventHandler(this.记录数据ToolStripMenuItem_Click);
  389. //
  390. // 一键查询ToolStripMenuItem
  391. //
  392. this.一键查询ToolStripMenuItem.Name = "一键查询ToolStripMenuItem";
  393. this.一键查询ToolStripMenuItem.Size = new System.Drawing.Size(180, 26);
  394. this.一键查询ToolStripMenuItem.Text = "一键查询";
  395. //
  396. // 计算器ToolStripMenuItem
  397. //
  398. this.计算器ToolStripMenuItem.Name = "计算器ToolStripMenuItem";
  399. this.计算器ToolStripMenuItem.Size = new System.Drawing.Size(180, 26);
  400. this.计算器ToolStripMenuItem.Text = "计算器";
  401. this.计算器ToolStripMenuItem.Click += new System.EventHandler(this.计算器ToolStripMenuItem_Click);
  402. //
  403. // 关于ToolStripMenuItem
  404. //
  405. this.关于ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  406. this.帮助ToolStripMenuItem,
  407. this.版本ToolStripMenuItem});
  408. this.关于ToolStripMenuItem.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  409. this.关于ToolStripMenuItem.Name = "关于ToolStripMenuItem";
  410. this.关于ToolStripMenuItem.Size = new System.Drawing.Size(54, 25);
  411. this.关于ToolStripMenuItem.Text = "关于";
  412. //
  413. // 帮助ToolStripMenuItem
  414. //
  415. this.帮助ToolStripMenuItem.Name = "帮助ToolStripMenuItem";
  416. this.帮助ToolStripMenuItem.Size = new System.Drawing.Size(180, 26);
  417. this.帮助ToolStripMenuItem.Text = "查看帮助";
  418. //
  419. // 版本ToolStripMenuItem
  420. //
  421. this.版本ToolStripMenuItem.Name = "版本ToolStripMenuItem";
  422. this.版本ToolStripMenuItem.Size = new System.Drawing.Size(180, 26);
  423. this.版本ToolStripMenuItem.Text = "版本信息";
  424. //
  425. // statusStrip1
  426. //
  427. this.statusStrip1.BackColor = System.Drawing.Color.DodgerBlue;
  428. this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  429. this.toolStripStatusLabel1});
  430. this.statusStrip1.Location = new System.Drawing.Point(0, 619);
  431. this.statusStrip1.Name = "statusStrip1";
  432. this.statusStrip1.Size = new System.Drawing.Size(984, 22);
  433. this.statusStrip1.TabIndex = 3;
  434. this.statusStrip1.Text = "statusStrip1";
  435. //
  436. // toolStripStatusLabel1
  437. //
  438. this.toolStripStatusLabel1.ForeColor = System.Drawing.Color.White;
  439. this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
  440. this.toolStripStatusLabel1.Size = new System.Drawing.Size(212, 17);
  441. this.toolStripStatusLabel1.Text = "版权所有:武汉天腾动力科技有限公司";
  442. //
  443. // groupBox1
  444. //
  445. this.groupBox1.Controls.Add(this.label24);
  446. this.groupBox1.Controls.Add(this.numericUpDown_SpeedAdj);
  447. this.groupBox1.Controls.Add(this.label4);
  448. this.groupBox1.Controls.Add(this.comboBox_LightSwitch);
  449. this.groupBox1.Controls.Add(this.label3);
  450. this.groupBox1.Controls.Add(this.comboBox_GearSt);
  451. this.groupBox1.Controls.Add(this.comboBox_WorkMode);
  452. this.groupBox1.Controls.Add(this.label2);
  453. this.groupBox1.Controls.Add(this.label1);
  454. this.groupBox1.Location = new System.Drawing.Point(12, 32);
  455. this.groupBox1.Name = "groupBox1";
  456. this.groupBox1.Size = new System.Drawing.Size(191, 196);
  457. this.groupBox1.TabIndex = 4;
  458. this.groupBox1.TabStop = false;
  459. this.groupBox1.Text = "电机控制";
  460. //
  461. // label24
  462. //
  463. this.label24.AutoSize = true;
  464. this.label24.Location = new System.Drawing.Point(161, 152);
  465. this.label24.Name = "label24";
  466. this.label24.Size = new System.Drawing.Size(24, 21);
  467. this.label24.TabIndex = 6;
  468. this.label24.Text = "%";
  469. //
  470. // numericUpDown_SpeedAdj
  471. //
  472. this.numericUpDown_SpeedAdj.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
  473. this.numericUpDown_SpeedAdj.Location = new System.Drawing.Point(85, 148);
  474. this.numericUpDown_SpeedAdj.Minimum = new decimal(new int[] {
  475. 5,
  476. 0,
  477. 0,
  478. 0});
  479. this.numericUpDown_SpeedAdj.Name = "numericUpDown_SpeedAdj";
  480. this.numericUpDown_SpeedAdj.ReadOnly = true;
  481. this.numericUpDown_SpeedAdj.Size = new System.Drawing.Size(73, 28);
  482. this.numericUpDown_SpeedAdj.TabIndex = 5;
  483. this.numericUpDown_SpeedAdj.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  484. this.numericUpDown_SpeedAdj.Value = new decimal(new int[] {
  485. 5,
  486. 0,
  487. 0,
  488. 0});
  489. this.numericUpDown_SpeedAdj.ValueChanged += new System.EventHandler(this.numericUpDown_SpeedAdj_ValueChanged);
  490. //
  491. // label4
  492. //
  493. this.label4.AutoSize = true;
  494. this.label4.Location = new System.Drawing.Point(6, 152);
  495. this.label4.Name = "label4";
  496. this.label4.Size = new System.Drawing.Size(74, 21);
  497. this.label4.TabIndex = 4;
  498. this.label4.Text = "转速调节";
  499. //
  500. // comboBox_LightSwitch
  501. //
  502. this.comboBox_LightSwitch.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
  503. this.comboBox_LightSwitch.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  504. this.comboBox_LightSwitch.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  505. this.comboBox_LightSwitch.FormattingEnabled = true;
  506. this.comboBox_LightSwitch.Items.AddRange(new object[] {
  507. "ON",
  508. "OFF"});
  509. this.comboBox_LightSwitch.Location = new System.Drawing.Point(85, 109);
  510. this.comboBox_LightSwitch.Name = "comboBox_LightSwitch";
  511. this.comboBox_LightSwitch.Size = new System.Drawing.Size(100, 29);
  512. this.comboBox_LightSwitch.TabIndex = 3;
  513. this.comboBox_LightSwitch.SelectionChangeCommitted += new System.EventHandler(this.comboBox_GearSt_SelectionChangeCommitted);
  514. //
  515. // label3
  516. //
  517. this.label3.AutoSize = true;
  518. this.label3.Location = new System.Drawing.Point(6, 113);
  519. this.label3.Name = "label3";
  520. this.label3.Size = new System.Drawing.Size(74, 21);
  521. this.label3.TabIndex = 2;
  522. this.label3.Text = "大灯开关";
  523. //
  524. // comboBox_GearSt
  525. //
  526. this.comboBox_GearSt.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
  527. this.comboBox_GearSt.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  528. this.comboBox_GearSt.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  529. this.comboBox_GearSt.FormattingEnabled = true;
  530. this.comboBox_GearSt.Items.AddRange(new object[] {
  531. "0",
  532. "1",
  533. "2",
  534. "3",
  535. "4",
  536. "5",
  537. "Walk"});
  538. this.comboBox_GearSt.Location = new System.Drawing.Point(85, 70);
  539. this.comboBox_GearSt.Name = "comboBox_GearSt";
  540. this.comboBox_GearSt.Size = new System.Drawing.Size(100, 29);
  541. this.comboBox_GearSt.TabIndex = 1;
  542. this.comboBox_GearSt.SelectionChangeCommitted += new System.EventHandler(this.comboBox_GearSt_SelectionChangeCommitted);
  543. //
  544. // comboBox_WorkMode
  545. //
  546. this.comboBox_WorkMode.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
  547. this.comboBox_WorkMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  548. this.comboBox_WorkMode.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  549. this.comboBox_WorkMode.FormattingEnabled = true;
  550. this.comboBox_WorkMode.Items.AddRange(new object[] {
  551. "运行模式",
  552. "配置模式"});
  553. this.comboBox_WorkMode.Location = new System.Drawing.Point(85, 31);
  554. this.comboBox_WorkMode.Name = "comboBox_WorkMode";
  555. this.comboBox_WorkMode.Size = new System.Drawing.Size(100, 29);
  556. this.comboBox_WorkMode.TabIndex = 1;
  557. this.comboBox_WorkMode.SelectionChangeCommitted += new System.EventHandler(this.comboBox_WorkMode_SelectionChangeCommitted);
  558. //
  559. // label2
  560. //
  561. this.label2.AutoSize = true;
  562. this.label2.Location = new System.Drawing.Point(6, 74);
  563. this.label2.Name = "label2";
  564. this.label2.Size = new System.Drawing.Size(74, 21);
  565. this.label2.TabIndex = 0;
  566. this.label2.Text = "助力档位";
  567. //
  568. // label1
  569. //
  570. this.label1.AutoSize = true;
  571. this.label1.Location = new System.Drawing.Point(6, 35);
  572. this.label1.Name = "label1";
  573. this.label1.Size = new System.Drawing.Size(74, 21);
  574. this.label1.TabIndex = 0;
  575. this.label1.Text = "工作模式";
  576. //
  577. // groupBox2
  578. //
  579. this.groupBox2.Controls.Add(this.textBox_ErrorCode);
  580. this.groupBox2.Controls.Add(this.textBox_RunInfo_Trip_Time);
  581. this.groupBox2.Controls.Add(this.textBox_RunInfo_Range);
  582. this.groupBox2.Controls.Add(this.textBox_RunInfo_Power);
  583. this.groupBox2.Controls.Add(this.textBox_RunInfo_Trip);
  584. this.groupBox2.Controls.Add(this.textBox_RunInfo_SOC);
  585. this.groupBox2.Controls.Add(this.textBox_RunInfo_Current);
  586. this.groupBox2.Controls.Add(this.textBox_RunInfo_T_Coil);
  587. this.groupBox2.Controls.Add(this.textBox_RunInfo_LightSwitch);
  588. this.groupBox2.Controls.Add(this.textBox_RunInfo_Vol);
  589. this.groupBox2.Controls.Add(this.textBox_RunInfo_T_MCU);
  590. this.groupBox2.Controls.Add(this.textBox_RunInfo_GearSt);
  591. this.groupBox2.Controls.Add(this.textBox_RunInfo_MotorSpeed);
  592. this.groupBox2.Controls.Add(this.textBox_RunInfo_T_PCB);
  593. this.groupBox2.Controls.Add(this.textBox_RunInfo_Dir);
  594. this.groupBox2.Controls.Add(this.textBox_RunInfo_Cadence);
  595. this.groupBox2.Controls.Add(this.textBox_RunInfo_AvgPower);
  596. this.groupBox2.Controls.Add(this.textBox_RunInfo_Torque);
  597. this.groupBox2.Controls.Add(this.textBox_RunInfo_BikeSpeed);
  598. this.groupBox2.Controls.Add(this.label28);
  599. this.groupBox2.Controls.Add(this.label22);
  600. this.groupBox2.Controls.Add(this.label16);
  601. this.groupBox2.Controls.Add(this.label10);
  602. this.groupBox2.Controls.Add(this.label21);
  603. this.groupBox2.Controls.Add(this.label15);
  604. this.groupBox2.Controls.Add(this.label9);
  605. this.groupBox2.Controls.Add(this.label20);
  606. this.groupBox2.Controls.Add(this.label14);
  607. this.groupBox2.Controls.Add(this.label8);
  608. this.groupBox2.Controls.Add(this.label19);
  609. this.groupBox2.Controls.Add(this.label13);
  610. this.groupBox2.Controls.Add(this.label7);
  611. this.groupBox2.Controls.Add(this.label18);
  612. this.groupBox2.Controls.Add(this.label12);
  613. this.groupBox2.Controls.Add(this.label6);
  614. this.groupBox2.Controls.Add(this.label17);
  615. this.groupBox2.Controls.Add(this.label11);
  616. this.groupBox2.Controls.Add(this.label5);
  617. this.groupBox2.Location = new System.Drawing.Point(209, 32);
  618. this.groupBox2.Name = "groupBox2";
  619. this.groupBox2.Size = new System.Drawing.Size(764, 196);
  620. this.groupBox2.TabIndex = 5;
  621. this.groupBox2.TabStop = false;
  622. this.groupBox2.Text = "运行信息";
  623. //
  624. // textBox_ErrorCode
  625. //
  626. this.textBox_ErrorCode.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  627. this.textBox_ErrorCode.Location = new System.Drawing.Point(667, 107);
  628. this.textBox_ErrorCode.Name = "textBox_ErrorCode";
  629. this.textBox_ErrorCode.ReadOnly = true;
  630. this.textBox_ErrorCode.Size = new System.Drawing.Size(80, 28);
  631. this.textBox_ErrorCode.TabIndex = 1;
  632. this.textBox_ErrorCode.MouseHover += new System.EventHandler(this.textBox_ErrorCode_MouseHover);
  633. //
  634. // textBox_RunInfo_Trip_Time
  635. //
  636. this.textBox_RunInfo_Trip_Time.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  637. this.textBox_RunInfo_Trip_Time.Location = new System.Drawing.Point(667, 69);
  638. this.textBox_RunInfo_Trip_Time.Name = "textBox_RunInfo_Trip_Time";
  639. this.textBox_RunInfo_Trip_Time.ReadOnly = true;
  640. this.textBox_RunInfo_Trip_Time.Size = new System.Drawing.Size(80, 28);
  641. this.textBox_RunInfo_Trip_Time.TabIndex = 1;
  642. //
  643. // textBox_RunInfo_Range
  644. //
  645. this.textBox_RunInfo_Range.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  646. this.textBox_RunInfo_Range.Location = new System.Drawing.Point(501, 107);
  647. this.textBox_RunInfo_Range.Name = "textBox_RunInfo_Range";
  648. this.textBox_RunInfo_Range.ReadOnly = true;
  649. this.textBox_RunInfo_Range.Size = new System.Drawing.Size(80, 28);
  650. this.textBox_RunInfo_Range.TabIndex = 1;
  651. //
  652. // textBox_RunInfo_Power
  653. //
  654. this.textBox_RunInfo_Power.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  655. this.textBox_RunInfo_Power.Location = new System.Drawing.Point(196, 108);
  656. this.textBox_RunInfo_Power.Name = "textBox_RunInfo_Power";
  657. this.textBox_RunInfo_Power.ReadOnly = true;
  658. this.textBox_RunInfo_Power.Size = new System.Drawing.Size(80, 28);
  659. this.textBox_RunInfo_Power.TabIndex = 1;
  660. //
  661. // textBox_RunInfo_Trip
  662. //
  663. this.textBox_RunInfo_Trip.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  664. this.textBox_RunInfo_Trip.Location = new System.Drawing.Point(667, 30);
  665. this.textBox_RunInfo_Trip.Name = "textBox_RunInfo_Trip";
  666. this.textBox_RunInfo_Trip.ReadOnly = true;
  667. this.textBox_RunInfo_Trip.Size = new System.Drawing.Size(80, 28);
  668. this.textBox_RunInfo_Trip.TabIndex = 1;
  669. //
  670. // textBox_RunInfo_SOC
  671. //
  672. this.textBox_RunInfo_SOC.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  673. this.textBox_RunInfo_SOC.Location = new System.Drawing.Point(501, 30);
  674. this.textBox_RunInfo_SOC.Name = "textBox_RunInfo_SOC";
  675. this.textBox_RunInfo_SOC.ReadOnly = true;
  676. this.textBox_RunInfo_SOC.Size = new System.Drawing.Size(80, 28);
  677. this.textBox_RunInfo_SOC.TabIndex = 1;
  678. //
  679. // textBox_RunInfo_Current
  680. //
  681. this.textBox_RunInfo_Current.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  682. this.textBox_RunInfo_Current.Location = new System.Drawing.Point(196, 70);
  683. this.textBox_RunInfo_Current.Name = "textBox_RunInfo_Current";
  684. this.textBox_RunInfo_Current.ReadOnly = true;
  685. this.textBox_RunInfo_Current.Size = new System.Drawing.Size(80, 28);
  686. this.textBox_RunInfo_Current.TabIndex = 1;
  687. //
  688. // textBox_RunInfo_T_Coil
  689. //
  690. this.textBox_RunInfo_T_Coil.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  691. this.textBox_RunInfo_T_Coil.Location = new System.Drawing.Point(367, 108);
  692. this.textBox_RunInfo_T_Coil.Name = "textBox_RunInfo_T_Coil";
  693. this.textBox_RunInfo_T_Coil.ReadOnly = true;
  694. this.textBox_RunInfo_T_Coil.Size = new System.Drawing.Size(80, 28);
  695. this.textBox_RunInfo_T_Coil.TabIndex = 1;
  696. //
  697. // textBox_RunInfo_LightSwitch
  698. //
  699. this.textBox_RunInfo_LightSwitch.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  700. this.textBox_RunInfo_LightSwitch.Location = new System.Drawing.Point(501, 147);
  701. this.textBox_RunInfo_LightSwitch.Name = "textBox_RunInfo_LightSwitch";
  702. this.textBox_RunInfo_LightSwitch.ReadOnly = true;
  703. this.textBox_RunInfo_LightSwitch.Size = new System.Drawing.Size(80, 28);
  704. this.textBox_RunInfo_LightSwitch.TabIndex = 1;
  705. //
  706. // textBox_RunInfo_Vol
  707. //
  708. this.textBox_RunInfo_Vol.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  709. this.textBox_RunInfo_Vol.Location = new System.Drawing.Point(196, 31);
  710. this.textBox_RunInfo_Vol.Name = "textBox_RunInfo_Vol";
  711. this.textBox_RunInfo_Vol.ReadOnly = true;
  712. this.textBox_RunInfo_Vol.Size = new System.Drawing.Size(80, 28);
  713. this.textBox_RunInfo_Vol.TabIndex = 1;
  714. //
  715. // textBox_RunInfo_T_MCU
  716. //
  717. this.textBox_RunInfo_T_MCU.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  718. this.textBox_RunInfo_T_MCU.Location = new System.Drawing.Point(367, 70);
  719. this.textBox_RunInfo_T_MCU.Name = "textBox_RunInfo_T_MCU";
  720. this.textBox_RunInfo_T_MCU.ReadOnly = true;
  721. this.textBox_RunInfo_T_MCU.Size = new System.Drawing.Size(80, 28);
  722. this.textBox_RunInfo_T_MCU.TabIndex = 1;
  723. //
  724. // textBox_RunInfo_GearSt
  725. //
  726. this.textBox_RunInfo_GearSt.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  727. this.textBox_RunInfo_GearSt.Location = new System.Drawing.Point(367, 148);
  728. this.textBox_RunInfo_GearSt.Name = "textBox_RunInfo_GearSt";
  729. this.textBox_RunInfo_GearSt.ReadOnly = true;
  730. this.textBox_RunInfo_GearSt.Size = new System.Drawing.Size(80, 28);
  731. this.textBox_RunInfo_GearSt.TabIndex = 1;
  732. //
  733. // textBox_RunInfo_MotorSpeed
  734. //
  735. this.textBox_RunInfo_MotorSpeed.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  736. this.textBox_RunInfo_MotorSpeed.Location = new System.Drawing.Point(62, 148);
  737. this.textBox_RunInfo_MotorSpeed.Name = "textBox_RunInfo_MotorSpeed";
  738. this.textBox_RunInfo_MotorSpeed.ReadOnly = true;
  739. this.textBox_RunInfo_MotorSpeed.Size = new System.Drawing.Size(80, 28);
  740. this.textBox_RunInfo_MotorSpeed.TabIndex = 1;
  741. //
  742. // textBox_RunInfo_T_PCB
  743. //
  744. this.textBox_RunInfo_T_PCB.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  745. this.textBox_RunInfo_T_PCB.Location = new System.Drawing.Point(367, 31);
  746. this.textBox_RunInfo_T_PCB.Name = "textBox_RunInfo_T_PCB";
  747. this.textBox_RunInfo_T_PCB.ReadOnly = true;
  748. this.textBox_RunInfo_T_PCB.Size = new System.Drawing.Size(80, 28);
  749. this.textBox_RunInfo_T_PCB.TabIndex = 1;
  750. //
  751. // textBox_RunInfo_Dir
  752. //
  753. this.textBox_RunInfo_Dir.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  754. this.textBox_RunInfo_Dir.Location = new System.Drawing.Point(196, 148);
  755. this.textBox_RunInfo_Dir.Name = "textBox_RunInfo_Dir";
  756. this.textBox_RunInfo_Dir.ReadOnly = true;
  757. this.textBox_RunInfo_Dir.Size = new System.Drawing.Size(80, 28);
  758. this.textBox_RunInfo_Dir.TabIndex = 1;
  759. //
  760. // textBox_RunInfo_Cadence
  761. //
  762. this.textBox_RunInfo_Cadence.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  763. this.textBox_RunInfo_Cadence.Location = new System.Drawing.Point(62, 70);
  764. this.textBox_RunInfo_Cadence.Name = "textBox_RunInfo_Cadence";
  765. this.textBox_RunInfo_Cadence.ReadOnly = true;
  766. this.textBox_RunInfo_Cadence.Size = new System.Drawing.Size(80, 28);
  767. this.textBox_RunInfo_Cadence.TabIndex = 1;
  768. //
  769. // textBox_RunInfo_AvgPower
  770. //
  771. this.textBox_RunInfo_AvgPower.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  772. this.textBox_RunInfo_AvgPower.Location = new System.Drawing.Point(501, 69);
  773. this.textBox_RunInfo_AvgPower.Name = "textBox_RunInfo_AvgPower";
  774. this.textBox_RunInfo_AvgPower.ReadOnly = true;
  775. this.textBox_RunInfo_AvgPower.Size = new System.Drawing.Size(80, 28);
  776. this.textBox_RunInfo_AvgPower.TabIndex = 1;
  777. //
  778. // textBox_RunInfo_Torque
  779. //
  780. this.textBox_RunInfo_Torque.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  781. this.textBox_RunInfo_Torque.Location = new System.Drawing.Point(62, 109);
  782. this.textBox_RunInfo_Torque.Name = "textBox_RunInfo_Torque";
  783. this.textBox_RunInfo_Torque.ReadOnly = true;
  784. this.textBox_RunInfo_Torque.Size = new System.Drawing.Size(80, 28);
  785. this.textBox_RunInfo_Torque.TabIndex = 1;
  786. //
  787. // textBox_RunInfo_BikeSpeed
  788. //
  789. this.textBox_RunInfo_BikeSpeed.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  790. this.textBox_RunInfo_BikeSpeed.Location = new System.Drawing.Point(62, 31);
  791. this.textBox_RunInfo_BikeSpeed.Name = "textBox_RunInfo_BikeSpeed";
  792. this.textBox_RunInfo_BikeSpeed.ReadOnly = true;
  793. this.textBox_RunInfo_BikeSpeed.Size = new System.Drawing.Size(80, 28);
  794. this.textBox_RunInfo_BikeSpeed.TabIndex = 1;
  795. //
  796. // label28
  797. //
  798. this.label28.AutoSize = true;
  799. this.label28.Location = new System.Drawing.Point(587, 111);
  800. this.label28.Name = "label28";
  801. this.label28.Size = new System.Drawing.Size(58, 21);
  802. this.label28.TabIndex = 0;
  803. this.label28.Text = "故障码";
  804. //
  805. // label22
  806. //
  807. this.label22.AutoSize = true;
  808. this.label22.Location = new System.Drawing.Point(587, 73);
  809. this.label22.Name = "label22";
  810. this.label22.Size = new System.Drawing.Size(74, 21);
  811. this.label22.TabIndex = 0;
  812. this.label22.Text = "单次时间";
  813. //
  814. // label16
  815. //
  816. this.label16.AutoSize = true;
  817. this.label16.Location = new System.Drawing.Point(453, 111);
  818. this.label16.Name = "label16";
  819. this.label16.Size = new System.Drawing.Size(42, 21);
  820. this.label16.TabIndex = 0;
  821. this.label16.Text = "续航";
  822. //
  823. // label10
  824. //
  825. this.label10.AutoSize = true;
  826. this.label10.Location = new System.Drawing.Point(148, 113);
  827. this.label10.Name = "label10";
  828. this.label10.Size = new System.Drawing.Size(42, 21);
  829. this.label10.TabIndex = 0;
  830. this.label10.Text = "功率";
  831. //
  832. // label21
  833. //
  834. this.label21.AutoSize = true;
  835. this.label21.Location = new System.Drawing.Point(587, 34);
  836. this.label21.Name = "label21";
  837. this.label21.Size = new System.Drawing.Size(74, 21);
  838. this.label21.TabIndex = 0;
  839. this.label21.Text = "单次里程";
  840. //
  841. // label15
  842. //
  843. this.label15.AutoSize = true;
  844. this.label15.Location = new System.Drawing.Point(453, 34);
  845. this.label15.Name = "label15";
  846. this.label15.Size = new System.Drawing.Size(42, 21);
  847. this.label15.TabIndex = 0;
  848. this.label15.Text = "电量";
  849. //
  850. // label9
  851. //
  852. this.label9.AutoSize = true;
  853. this.label9.Location = new System.Drawing.Point(148, 74);
  854. this.label9.Name = "label9";
  855. this.label9.Size = new System.Drawing.Size(42, 21);
  856. this.label9.TabIndex = 0;
  857. this.label9.Text = "电流";
  858. //
  859. // label20
  860. //
  861. this.label20.AutoSize = true;
  862. this.label20.Location = new System.Drawing.Point(282, 112);
  863. this.label20.Name = "label20";
  864. this.label20.Size = new System.Drawing.Size(74, 21);
  865. this.label20.TabIndex = 0;
  866. this.label20.Text = "绕组温度";
  867. //
  868. // label14
  869. //
  870. this.label14.AutoSize = true;
  871. this.label14.Location = new System.Drawing.Point(453, 151);
  872. this.label14.Name = "label14";
  873. this.label14.Size = new System.Drawing.Size(42, 21);
  874. this.label14.TabIndex = 0;
  875. this.label14.Text = "大灯";
  876. //
  877. // label8
  878. //
  879. this.label8.AutoSize = true;
  880. this.label8.Location = new System.Drawing.Point(148, 35);
  881. this.label8.Name = "label8";
  882. this.label8.Size = new System.Drawing.Size(42, 21);
  883. this.label8.TabIndex = 0;
  884. this.label8.Text = "电压";
  885. //
  886. // label19
  887. //
  888. this.label19.AutoSize = true;
  889. this.label19.Location = new System.Drawing.Point(282, 74);
  890. this.label19.Name = "label19";
  891. this.label19.Size = new System.Drawing.Size(81, 21);
  892. this.label19.TabIndex = 0;
  893. this.label19.Text = "MCU温度";
  894. //
  895. // label13
  896. //
  897. this.label13.AutoSize = true;
  898. this.label13.Location = new System.Drawing.Point(282, 152);
  899. this.label13.Name = "label13";
  900. this.label13.Size = new System.Drawing.Size(42, 21);
  901. this.label13.TabIndex = 0;
  902. this.label13.Text = "档位";
  903. //
  904. // label7
  905. //
  906. this.label7.AutoSize = true;
  907. this.label7.Location = new System.Drawing.Point(14, 152);
  908. this.label7.Name = "label7";
  909. this.label7.Size = new System.Drawing.Size(42, 21);
  910. this.label7.TabIndex = 0;
  911. this.label7.Text = "转速";
  912. //
  913. // label18
  914. //
  915. this.label18.AutoSize = true;
  916. this.label18.Location = new System.Drawing.Point(282, 35);
  917. this.label18.Name = "label18";
  918. this.label18.Size = new System.Drawing.Size(73, 21);
  919. this.label18.TabIndex = 0;
  920. this.label18.Text = "PCB温度";
  921. //
  922. // label12
  923. //
  924. this.label12.AutoSize = true;
  925. this.label12.Location = new System.Drawing.Point(148, 152);
  926. this.label12.Name = "label12";
  927. this.label12.Size = new System.Drawing.Size(42, 21);
  928. this.label12.TabIndex = 0;
  929. this.label12.Text = "方向";
  930. //
  931. // label6
  932. //
  933. this.label6.AutoSize = true;
  934. this.label6.Location = new System.Drawing.Point(14, 74);
  935. this.label6.Name = "label6";
  936. this.label6.Size = new System.Drawing.Size(42, 21);
  937. this.label6.TabIndex = 0;
  938. this.label6.Text = "踏频";
  939. //
  940. // label17
  941. //
  942. this.label17.AutoSize = true;
  943. this.label17.Location = new System.Drawing.Point(453, 73);
  944. this.label17.Name = "label17";
  945. this.label17.Size = new System.Drawing.Size(42, 21);
  946. this.label17.TabIndex = 0;
  947. this.label17.Text = "功耗";
  948. //
  949. // label11
  950. //
  951. this.label11.AutoSize = true;
  952. this.label11.Location = new System.Drawing.Point(14, 113);
  953. this.label11.Name = "label11";
  954. this.label11.Size = new System.Drawing.Size(42, 21);
  955. this.label11.TabIndex = 0;
  956. this.label11.Text = "力矩";
  957. //
  958. // label5
  959. //
  960. this.label5.AutoSize = true;
  961. this.label5.Location = new System.Drawing.Point(14, 35);
  962. this.label5.Name = "label5";
  963. this.label5.Size = new System.Drawing.Size(42, 21);
  964. this.label5.TabIndex = 0;
  965. this.label5.Text = "车速";
  966. //
  967. // groupBox3
  968. //
  969. this.groupBox3.Controls.Add(this.tabControl1);
  970. this.groupBox3.Location = new System.Drawing.Point(12, 234);
  971. this.groupBox3.Name = "groupBox3";
  972. this.groupBox3.Size = new System.Drawing.Size(961, 382);
  973. this.groupBox3.TabIndex = 6;
  974. this.groupBox3.TabStop = false;
  975. this.groupBox3.Text = "参数查询/写入";
  976. //
  977. // tabControl1
  978. //
  979. this.tabControl1.Controls.Add(this.tabPage_MotorParam);
  980. this.tabControl1.Controls.Add(this.tabPage_BikeParam);
  981. this.tabControl1.Controls.Add(this.tabPage_ControlParam);
  982. this.tabControl1.Controls.Add(this.tabPage_SensorParam);
  983. this.tabControl1.Controls.Add(this.tabPage_AssistParam);
  984. this.tabControl1.Controls.Add(this.tabPage_DebugParam);
  985. this.tabControl1.Controls.Add(this.tabPage_RecordInfo);
  986. this.tabControl1.Controls.Add(this.tabPage_OtherInfo);
  987. this.tabControl1.Controls.Add(this.tabPage_OBC);
  988. this.tabControl1.Location = new System.Drawing.Point(10, 27);
  989. this.tabControl1.Name = "tabControl1";
  990. this.tabControl1.SelectedIndex = 0;
  991. this.tabControl1.Size = new System.Drawing.Size(945, 349);
  992. this.tabControl1.TabIndex = 0;
  993. //
  994. // tabPage_MotorParam
  995. //
  996. this.tabPage_MotorParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  997. this.tabPage_MotorParam.Controls.Add(this.button_Write);
  998. this.tabPage_MotorParam.Controls.Add(this.button_Read_MotorParam);
  999. this.tabPage_MotorParam.Controls.Add(this.richTextBox_MotorParam);
  1000. this.tabPage_MotorParam.Location = new System.Drawing.Point(4, 30);
  1001. this.tabPage_MotorParam.Name = "tabPage_MotorParam";
  1002. this.tabPage_MotorParam.Padding = new System.Windows.Forms.Padding(3);
  1003. this.tabPage_MotorParam.Size = new System.Drawing.Size(937, 315);
  1004. this.tabPage_MotorParam.TabIndex = 0;
  1005. this.tabPage_MotorParam.Text = "马达参数";
  1006. //
  1007. // button_Write
  1008. //
  1009. this.button_Write.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  1010. this.button_Write.Location = new System.Drawing.Point(808, 259);
  1011. this.button_Write.Name = "button_Write";
  1012. this.button_Write.Size = new System.Drawing.Size(112, 50);
  1013. this.button_Write.TabIndex = 1;
  1014. this.button_Write.Text = "写入参数";
  1015. this.button_Write.UseVisualStyleBackColor = false;
  1016. this.button_Write.Click += new System.EventHandler(this.button_Write_Click);
  1017. //
  1018. // button_Read_MotorParam
  1019. //
  1020. this.button_Read_MotorParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  1021. this.button_Read_MotorParam.Location = new System.Drawing.Point(808, 203);
  1022. this.button_Read_MotorParam.Name = "button_Read_MotorParam";
  1023. this.button_Read_MotorParam.Size = new System.Drawing.Size(112, 50);
  1024. this.button_Read_MotorParam.TabIndex = 1;
  1025. this.button_Read_MotorParam.Text = "读取参数";
  1026. this.button_Read_MotorParam.UseVisualStyleBackColor = false;
  1027. this.button_Read_MotorParam.Click += new System.EventHandler(this.button_Read_MotorParam_Click);
  1028. //
  1029. // richTextBox_MotorParam
  1030. //
  1031. this.richTextBox_MotorParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1032. this.richTextBox_MotorParam.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1033. this.richTextBox_MotorParam.Location = new System.Drawing.Point(6, 6);
  1034. this.richTextBox_MotorParam.Name = "richTextBox_MotorParam";
  1035. this.richTextBox_MotorParam.Size = new System.Drawing.Size(796, 303);
  1036. this.richTextBox_MotorParam.TabIndex = 0;
  1037. this.richTextBox_MotorParam.Text = "";
  1038. //
  1039. // tabPage_BikeParam
  1040. //
  1041. this.tabPage_BikeParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1042. this.tabPage_BikeParam.Controls.Add(this.button_WriteBikeParam);
  1043. this.tabPage_BikeParam.Controls.Add(this.button_ReadBikeParam);
  1044. this.tabPage_BikeParam.Controls.Add(this.richTextBox_BikeParam);
  1045. this.tabPage_BikeParam.Location = new System.Drawing.Point(4, 30);
  1046. this.tabPage_BikeParam.Name = "tabPage_BikeParam";
  1047. this.tabPage_BikeParam.Padding = new System.Windows.Forms.Padding(3);
  1048. this.tabPage_BikeParam.Size = new System.Drawing.Size(937, 315);
  1049. this.tabPage_BikeParam.TabIndex = 1;
  1050. this.tabPage_BikeParam.Text = "整车信息";
  1051. //
  1052. // button_WriteBikeParam
  1053. //
  1054. this.button_WriteBikeParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  1055. this.button_WriteBikeParam.Location = new System.Drawing.Point(808, 259);
  1056. this.button_WriteBikeParam.Name = "button_WriteBikeParam";
  1057. this.button_WriteBikeParam.Size = new System.Drawing.Size(112, 50);
  1058. this.button_WriteBikeParam.TabIndex = 4;
  1059. this.button_WriteBikeParam.Text = "写入参数";
  1060. this.button_WriteBikeParam.UseVisualStyleBackColor = false;
  1061. this.button_WriteBikeParam.Click += new System.EventHandler(this.button_WriteBikeParam_Click);
  1062. //
  1063. // button_ReadBikeParam
  1064. //
  1065. this.button_ReadBikeParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  1066. this.button_ReadBikeParam.Location = new System.Drawing.Point(808, 203);
  1067. this.button_ReadBikeParam.Name = "button_ReadBikeParam";
  1068. this.button_ReadBikeParam.Size = new System.Drawing.Size(112, 50);
  1069. this.button_ReadBikeParam.TabIndex = 3;
  1070. this.button_ReadBikeParam.Text = "读取参数";
  1071. this.button_ReadBikeParam.UseVisualStyleBackColor = false;
  1072. this.button_ReadBikeParam.Click += new System.EventHandler(this.button_ReadBikeParam_Click);
  1073. //
  1074. // richTextBox_BikeParam
  1075. //
  1076. this.richTextBox_BikeParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1077. this.richTextBox_BikeParam.Location = new System.Drawing.Point(6, 6);
  1078. this.richTextBox_BikeParam.Name = "richTextBox_BikeParam";
  1079. this.richTextBox_BikeParam.Size = new System.Drawing.Size(796, 303);
  1080. this.richTextBox_BikeParam.TabIndex = 2;
  1081. this.richTextBox_BikeParam.Text = "";
  1082. //
  1083. // tabPage_ControlParam
  1084. //
  1085. this.tabPage_ControlParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1086. this.tabPage_ControlParam.Controls.Add(this.button_WriteControlParam);
  1087. this.tabPage_ControlParam.Controls.Add(this.button_ReadControlParam);
  1088. this.tabPage_ControlParam.Controls.Add(this.richTextBox_ControlParam);
  1089. this.tabPage_ControlParam.Location = new System.Drawing.Point(4, 30);
  1090. this.tabPage_ControlParam.Name = "tabPage_ControlParam";
  1091. this.tabPage_ControlParam.Size = new System.Drawing.Size(937, 315);
  1092. this.tabPage_ControlParam.TabIndex = 2;
  1093. this.tabPage_ControlParam.Text = "控制参数";
  1094. //
  1095. // button_WriteControlParam
  1096. //
  1097. this.button_WriteControlParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  1098. this.button_WriteControlParam.Location = new System.Drawing.Point(808, 259);
  1099. this.button_WriteControlParam.Name = "button_WriteControlParam";
  1100. this.button_WriteControlParam.Size = new System.Drawing.Size(112, 50);
  1101. this.button_WriteControlParam.TabIndex = 4;
  1102. this.button_WriteControlParam.Text = "写入参数";
  1103. this.button_WriteControlParam.UseVisualStyleBackColor = false;
  1104. this.button_WriteControlParam.Click += new System.EventHandler(this.button_WriteControlParam_Click);
  1105. //
  1106. // button_ReadControlParam
  1107. //
  1108. this.button_ReadControlParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  1109. this.button_ReadControlParam.Location = new System.Drawing.Point(808, 203);
  1110. this.button_ReadControlParam.Name = "button_ReadControlParam";
  1111. this.button_ReadControlParam.Size = new System.Drawing.Size(112, 50);
  1112. this.button_ReadControlParam.TabIndex = 3;
  1113. this.button_ReadControlParam.Text = "读取参数";
  1114. this.button_ReadControlParam.UseVisualStyleBackColor = false;
  1115. this.button_ReadControlParam.Click += new System.EventHandler(this.button_ReadControlParam_Click);
  1116. //
  1117. // richTextBox_ControlParam
  1118. //
  1119. this.richTextBox_ControlParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1120. this.richTextBox_ControlParam.Location = new System.Drawing.Point(6, 6);
  1121. this.richTextBox_ControlParam.Name = "richTextBox_ControlParam";
  1122. this.richTextBox_ControlParam.Size = new System.Drawing.Size(796, 303);
  1123. this.richTextBox_ControlParam.TabIndex = 2;
  1124. this.richTextBox_ControlParam.Text = "";
  1125. //
  1126. // tabPage_SensorParam
  1127. //
  1128. this.tabPage_SensorParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1129. this.tabPage_SensorParam.Controls.Add(this.button_WriteTqSensorParam);
  1130. this.tabPage_SensorParam.Controls.Add(this.comboBox_TorqueSet);
  1131. this.tabPage_SensorParam.Controls.Add(this.label29);
  1132. this.tabPage_SensorParam.Controls.Add(this.textBox_Load);
  1133. this.tabPage_SensorParam.Controls.Add(this.label27);
  1134. this.tabPage_SensorParam.Controls.Add(this.label26);
  1135. this.tabPage_SensorParam.Controls.Add(this.button_Write_Cal);
  1136. this.tabPage_SensorParam.Controls.Add(this.button_WriteSensorParam);
  1137. this.tabPage_SensorParam.Controls.Add(this.button_ReadSensorParam);
  1138. this.tabPage_SensorParam.Controls.Add(this.richTextBox_SensorParam);
  1139. this.tabPage_SensorParam.Location = new System.Drawing.Point(4, 30);
  1140. this.tabPage_SensorParam.Name = "tabPage_SensorParam";
  1141. this.tabPage_SensorParam.Size = new System.Drawing.Size(937, 315);
  1142. this.tabPage_SensorParam.TabIndex = 3;
  1143. this.tabPage_SensorParam.Text = "传感器参数";
  1144. //
  1145. // comboBox_TorqueSet
  1146. //
  1147. this.comboBox_TorqueSet.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
  1148. this.comboBox_TorqueSet.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  1149. this.comboBox_TorqueSet.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1150. this.comboBox_TorqueSet.FormattingEnabled = true;
  1151. this.comboBox_TorqueSet.Items.AddRange(new object[] {
  1152. "1",
  1153. "2",
  1154. "3",
  1155. "4"});
  1156. this.comboBox_TorqueSet.Location = new System.Drawing.Point(861, 12);
  1157. this.comboBox_TorqueSet.Name = "comboBox_TorqueSet";
  1158. this.comboBox_TorqueSet.Size = new System.Drawing.Size(59, 29);
  1159. this.comboBox_TorqueSet.TabIndex = 9;
  1160. //
  1161. // label29
  1162. //
  1163. this.label29.BackColor = System.Drawing.Color.Silver;
  1164. this.label29.Location = new System.Drawing.Point(808, 146);
  1165. this.label29.Name = "label29";
  1166. this.label29.Size = new System.Drawing.Size(112, 1);
  1167. this.label29.TabIndex = 7;
  1168. //
  1169. // textBox_Load
  1170. //
  1171. this.textBox_Load.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1172. this.textBox_Load.Location = new System.Drawing.Point(861, 52);
  1173. this.textBox_Load.Name = "textBox_Load";
  1174. this.textBox_Load.Size = new System.Drawing.Size(59, 28);
  1175. this.textBox_Load.TabIndex = 6;
  1176. this.textBox_Load.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1177. //
  1178. // label27
  1179. //
  1180. this.label27.AutoSize = true;
  1181. this.label27.Location = new System.Drawing.Point(808, 45);
  1182. this.label27.Name = "label27";
  1183. this.label27.Size = new System.Drawing.Size(42, 42);
  1184. this.label27.TabIndex = 5;
  1185. this.label27.Text = "负载\r\nN.m";
  1186. //
  1187. // label26
  1188. //
  1189. this.label26.AutoSize = true;
  1190. this.label26.Location = new System.Drawing.Point(808, 16);
  1191. this.label26.Name = "label26";
  1192. this.label26.Size = new System.Drawing.Size(42, 21);
  1193. this.label26.TabIndex = 3;
  1194. this.label26.Text = "序号";
  1195. //
  1196. // button_Write_Cal
  1197. //
  1198. this.button_Write_Cal.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(128)))));
  1199. this.button_Write_Cal.Location = new System.Drawing.Point(808, 92);
  1200. this.button_Write_Cal.Name = "button_Write_Cal";
  1201. this.button_Write_Cal.Size = new System.Drawing.Size(112, 50);
  1202. this.button_Write_Cal.TabIndex = 2;
  1203. this.button_Write_Cal.Text = "力矩传感器标定";
  1204. this.button_Write_Cal.UseVisualStyleBackColor = false;
  1205. this.button_Write_Cal.Click += new System.EventHandler(this.button_Write_Cal_Click);
  1206. //
  1207. // button_WriteSensorParam
  1208. //
  1209. this.button_WriteSensorParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  1210. this.button_WriteSensorParam.Location = new System.Drawing.Point(808, 259);
  1211. this.button_WriteSensorParam.Name = "button_WriteSensorParam";
  1212. this.button_WriteSensorParam.Size = new System.Drawing.Size(112, 50);
  1213. this.button_WriteSensorParam.TabIndex = 2;
  1214. this.button_WriteSensorParam.Text = "写入其它传感器参数";
  1215. this.button_WriteSensorParam.UseVisualStyleBackColor = false;
  1216. this.button_WriteSensorParam.Click += new System.EventHandler(this.button_WriteSensorParam_Click);
  1217. //
  1218. // button_ReadSensorParam
  1219. //
  1220. this.button_ReadSensorParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  1221. this.button_ReadSensorParam.Location = new System.Drawing.Point(808, 151);
  1222. this.button_ReadSensorParam.Name = "button_ReadSensorParam";
  1223. this.button_ReadSensorParam.Size = new System.Drawing.Size(112, 50);
  1224. this.button_ReadSensorParam.TabIndex = 2;
  1225. this.button_ReadSensorParam.Text = "读取参数";
  1226. this.button_ReadSensorParam.UseVisualStyleBackColor = false;
  1227. this.button_ReadSensorParam.Click += new System.EventHandler(this.button_ReadSensorParam_Click);
  1228. //
  1229. // richTextBox_SensorParam
  1230. //
  1231. this.richTextBox_SensorParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1232. this.richTextBox_SensorParam.Location = new System.Drawing.Point(6, 6);
  1233. this.richTextBox_SensorParam.Name = "richTextBox_SensorParam";
  1234. this.richTextBox_SensorParam.Size = new System.Drawing.Size(796, 303);
  1235. this.richTextBox_SensorParam.TabIndex = 1;
  1236. this.richTextBox_SensorParam.Text = "";
  1237. //
  1238. // tabPage_AssistParam
  1239. //
  1240. this.tabPage_AssistParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1241. this.tabPage_AssistParam.Controls.Add(this.label62);
  1242. this.tabPage_AssistParam.Controls.Add(this.label47);
  1243. this.tabPage_AssistParam.Controls.Add(this.comboBox_AssistTorque);
  1244. this.tabPage_AssistParam.Controls.Add(this.comboBox_AssistCadence);
  1245. this.tabPage_AssistParam.Controls.Add(this.label25);
  1246. this.tabPage_AssistParam.Controls.Add(this.button_WriteAssistParam);
  1247. this.tabPage_AssistParam.Controls.Add(this.button_ReadAssistParam);
  1248. this.tabPage_AssistParam.Controls.Add(this.richTextBox_AssistParam);
  1249. this.tabPage_AssistParam.Location = new System.Drawing.Point(4, 30);
  1250. this.tabPage_AssistParam.Name = "tabPage_AssistParam";
  1251. this.tabPage_AssistParam.Size = new System.Drawing.Size(937, 315);
  1252. this.tabPage_AssistParam.TabIndex = 4;
  1253. this.tabPage_AssistParam.Text = "助力参数";
  1254. //
  1255. // label62
  1256. //
  1257. this.label62.BackColor = System.Drawing.Color.Silver;
  1258. this.label62.Location = new System.Drawing.Point(808, 237);
  1259. this.label62.Name = "label62";
  1260. this.label62.Size = new System.Drawing.Size(112, 1);
  1261. this.label62.TabIndex = 10;
  1262. //
  1263. // label47
  1264. //
  1265. this.label47.AutoSize = true;
  1266. this.label47.Location = new System.Drawing.Point(827, 10);
  1267. this.label47.Name = "label47";
  1268. this.label47.Size = new System.Drawing.Size(74, 42);
  1269. this.label47.TabIndex = 9;
  1270. this.label47.Text = "助力转矩\r\n曲线编号";
  1271. //
  1272. // comboBox_AssistTorque
  1273. //
  1274. this.comboBox_AssistTorque.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
  1275. this.comboBox_AssistTorque.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  1276. this.comboBox_AssistTorque.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1277. this.comboBox_AssistTorque.FormattingEnabled = true;
  1278. this.comboBox_AssistTorque.Items.AddRange(new object[] {
  1279. "1",
  1280. "2",
  1281. "3",
  1282. "4",
  1283. "5",
  1284. "6",
  1285. "7",
  1286. "8",
  1287. "9",
  1288. "10",
  1289. "11",
  1290. "12",
  1291. "13",
  1292. "14",
  1293. "15"});
  1294. this.comboBox_AssistTorque.Location = new System.Drawing.Point(820, 55);
  1295. this.comboBox_AssistTorque.Name = "comboBox_AssistTorque";
  1296. this.comboBox_AssistTorque.Size = new System.Drawing.Size(89, 29);
  1297. this.comboBox_AssistTorque.TabIndex = 8;
  1298. //
  1299. // comboBox_AssistCadence
  1300. //
  1301. this.comboBox_AssistCadence.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
  1302. this.comboBox_AssistCadence.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  1303. this.comboBox_AssistCadence.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1304. this.comboBox_AssistCadence.FormattingEnabled = true;
  1305. this.comboBox_AssistCadence.Items.AddRange(new object[] {
  1306. "1",
  1307. "2",
  1308. "3",
  1309. "4",
  1310. "5"});
  1311. this.comboBox_AssistCadence.Location = new System.Drawing.Point(820, 132);
  1312. this.comboBox_AssistCadence.Name = "comboBox_AssistCadence";
  1313. this.comboBox_AssistCadence.Size = new System.Drawing.Size(89, 29);
  1314. this.comboBox_AssistCadence.TabIndex = 7;
  1315. //
  1316. // label25
  1317. //
  1318. this.label25.AutoSize = true;
  1319. this.label25.Location = new System.Drawing.Point(827, 87);
  1320. this.label25.Name = "label25";
  1321. this.label25.Size = new System.Drawing.Size(74, 42);
  1322. this.label25.TabIndex = 2;
  1323. this.label25.Text = "助力踏频\r\n曲线编号";
  1324. //
  1325. // button_WriteAssistParam
  1326. //
  1327. this.button_WriteAssistParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  1328. this.button_WriteAssistParam.Location = new System.Drawing.Point(808, 259);
  1329. this.button_WriteAssistParam.Name = "button_WriteAssistParam";
  1330. this.button_WriteAssistParam.Size = new System.Drawing.Size(112, 50);
  1331. this.button_WriteAssistParam.TabIndex = 4;
  1332. this.button_WriteAssistParam.Text = "写入参数";
  1333. this.button_WriteAssistParam.UseVisualStyleBackColor = false;
  1334. this.button_WriteAssistParam.Click += new System.EventHandler(this.button_WriteAssistParam_Click);
  1335. //
  1336. // button_ReadAssistParam
  1337. //
  1338. this.button_ReadAssistParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  1339. this.button_ReadAssistParam.Location = new System.Drawing.Point(808, 167);
  1340. this.button_ReadAssistParam.Name = "button_ReadAssistParam";
  1341. this.button_ReadAssistParam.Size = new System.Drawing.Size(112, 50);
  1342. this.button_ReadAssistParam.TabIndex = 3;
  1343. this.button_ReadAssistParam.Text = "读取参数";
  1344. this.button_ReadAssistParam.UseVisualStyleBackColor = false;
  1345. this.button_ReadAssistParam.Click += new System.EventHandler(this.button_ReadAssistParam_Click);
  1346. //
  1347. // richTextBox_AssistParam
  1348. //
  1349. this.richTextBox_AssistParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1350. this.richTextBox_AssistParam.Location = new System.Drawing.Point(6, 6);
  1351. this.richTextBox_AssistParam.Name = "richTextBox_AssistParam";
  1352. this.richTextBox_AssistParam.Size = new System.Drawing.Size(796, 303);
  1353. this.richTextBox_AssistParam.TabIndex = 2;
  1354. this.richTextBox_AssistParam.Text = "";
  1355. //
  1356. // tabPage_DebugParam
  1357. //
  1358. this.tabPage_DebugParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1359. this.tabPage_DebugParam.Controls.Add(this.button_WriteDebugParam);
  1360. this.tabPage_DebugParam.Controls.Add(this.button_ReadDebugParam);
  1361. this.tabPage_DebugParam.Controls.Add(this.richTextBox_DebugParam);
  1362. this.tabPage_DebugParam.Location = new System.Drawing.Point(4, 30);
  1363. this.tabPage_DebugParam.Name = "tabPage_DebugParam";
  1364. this.tabPage_DebugParam.Size = new System.Drawing.Size(937, 315);
  1365. this.tabPage_DebugParam.TabIndex = 5;
  1366. this.tabPage_DebugParam.Text = "调试参数";
  1367. //
  1368. // button_WriteDebugParam
  1369. //
  1370. this.button_WriteDebugParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  1371. this.button_WriteDebugParam.Location = new System.Drawing.Point(808, 259);
  1372. this.button_WriteDebugParam.Name = "button_WriteDebugParam";
  1373. this.button_WriteDebugParam.Size = new System.Drawing.Size(112, 50);
  1374. this.button_WriteDebugParam.TabIndex = 4;
  1375. this.button_WriteDebugParam.Text = "写入";
  1376. this.button_WriteDebugParam.UseVisualStyleBackColor = false;
  1377. this.button_WriteDebugParam.Click += new System.EventHandler(this.button_WriteDebugParam_Click);
  1378. //
  1379. // button_ReadDebugParam
  1380. //
  1381. this.button_ReadDebugParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  1382. this.button_ReadDebugParam.Location = new System.Drawing.Point(808, 203);
  1383. this.button_ReadDebugParam.Name = "button_ReadDebugParam";
  1384. this.button_ReadDebugParam.Size = new System.Drawing.Size(112, 50);
  1385. this.button_ReadDebugParam.TabIndex = 3;
  1386. this.button_ReadDebugParam.Text = "读取";
  1387. this.button_ReadDebugParam.UseVisualStyleBackColor = false;
  1388. this.button_ReadDebugParam.Click += new System.EventHandler(this.button_ReadDebugParam_Click);
  1389. //
  1390. // richTextBox_DebugParam
  1391. //
  1392. this.richTextBox_DebugParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1393. this.richTextBox_DebugParam.Location = new System.Drawing.Point(6, 6);
  1394. this.richTextBox_DebugParam.Name = "richTextBox_DebugParam";
  1395. this.richTextBox_DebugParam.Size = new System.Drawing.Size(796, 303);
  1396. this.richTextBox_DebugParam.TabIndex = 2;
  1397. this.richTextBox_DebugParam.Text = "";
  1398. //
  1399. // tabPage_RecordInfo
  1400. //
  1401. this.tabPage_RecordInfo.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1402. this.tabPage_RecordInfo.Controls.Add(this.button_SaveRecordInfo);
  1403. this.tabPage_RecordInfo.Controls.Add(this.button_ReadRecord);
  1404. this.tabPage_RecordInfo.Controls.Add(this.button_ExportLog);
  1405. this.tabPage_RecordInfo.Controls.Add(this.richTextBox_Record);
  1406. this.tabPage_RecordInfo.Location = new System.Drawing.Point(4, 30);
  1407. this.tabPage_RecordInfo.Name = "tabPage_RecordInfo";
  1408. this.tabPage_RecordInfo.Size = new System.Drawing.Size(937, 315);
  1409. this.tabPage_RecordInfo.TabIndex = 6;
  1410. this.tabPage_RecordInfo.Text = "历史信息";
  1411. //
  1412. // button_SaveRecordInfo
  1413. //
  1414. this.button_SaveRecordInfo.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
  1415. this.button_SaveRecordInfo.Location = new System.Drawing.Point(808, 259);
  1416. this.button_SaveRecordInfo.Name = "button_SaveRecordInfo";
  1417. this.button_SaveRecordInfo.Size = new System.Drawing.Size(112, 50);
  1418. this.button_SaveRecordInfo.TabIndex = 4;
  1419. this.button_SaveRecordInfo.Text = "保存信息";
  1420. this.button_SaveRecordInfo.UseVisualStyleBackColor = false;
  1421. //
  1422. // button_ReadRecord
  1423. //
  1424. this.button_ReadRecord.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  1425. this.button_ReadRecord.Location = new System.Drawing.Point(808, 147);
  1426. this.button_ReadRecord.Name = "button_ReadRecord";
  1427. this.button_ReadRecord.Size = new System.Drawing.Size(112, 50);
  1428. this.button_ReadRecord.TabIndex = 3;
  1429. this.button_ReadRecord.Text = "读取历史";
  1430. this.button_ReadRecord.UseVisualStyleBackColor = false;
  1431. this.button_ReadRecord.Click += new System.EventHandler(this.button_ReadRecord_Click);
  1432. //
  1433. // button_ExportLog
  1434. //
  1435. this.button_ExportLog.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(128)))));
  1436. this.button_ExportLog.Location = new System.Drawing.Point(808, 203);
  1437. this.button_ExportLog.Name = "button_ExportLog";
  1438. this.button_ExportLog.Size = new System.Drawing.Size(112, 50);
  1439. this.button_ExportLog.TabIndex = 3;
  1440. this.button_ExportLog.Text = "导出日志";
  1441. this.button_ExportLog.UseVisualStyleBackColor = false;
  1442. //
  1443. // richTextBox_Record
  1444. //
  1445. this.richTextBox_Record.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1446. this.richTextBox_Record.Location = new System.Drawing.Point(6, 6);
  1447. this.richTextBox_Record.Name = "richTextBox_Record";
  1448. this.richTextBox_Record.Size = new System.Drawing.Size(796, 303);
  1449. this.richTextBox_Record.TabIndex = 2;
  1450. this.richTextBox_Record.Text = "";
  1451. //
  1452. // tabPage_OtherInfo
  1453. //
  1454. this.tabPage_OtherInfo.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1455. this.tabPage_OtherInfo.Controls.Add(this.groupBox9);
  1456. this.tabPage_OtherInfo.Controls.Add(this.groupBox8);
  1457. this.tabPage_OtherInfo.Controls.Add(this.groupBox7);
  1458. this.tabPage_OtherInfo.Controls.Add(this.groupBox6);
  1459. this.tabPage_OtherInfo.Controls.Add(this.groupBox5);
  1460. this.tabPage_OtherInfo.Controls.Add(this.groupBox4);
  1461. this.tabPage_OtherInfo.Location = new System.Drawing.Point(4, 30);
  1462. this.tabPage_OtherInfo.Name = "tabPage_OtherInfo";
  1463. this.tabPage_OtherInfo.Size = new System.Drawing.Size(937, 315);
  1464. this.tabPage_OtherInfo.TabIndex = 7;
  1465. this.tabPage_OtherInfo.Text = "其它信息";
  1466. //
  1467. // groupBox9
  1468. //
  1469. this.groupBox9.Controls.Add(this.button_Recovery);
  1470. this.groupBox9.Controls.Add(this.button_ClearLog);
  1471. this.groupBox9.Controls.Add(this.button_Reset);
  1472. this.groupBox9.Controls.Add(this.button_SystemClear);
  1473. this.groupBox9.Location = new System.Drawing.Point(627, 4);
  1474. this.groupBox9.Name = "groupBox9";
  1475. this.groupBox9.Size = new System.Drawing.Size(303, 162);
  1476. this.groupBox9.TabIndex = 4;
  1477. this.groupBox9.TabStop = false;
  1478. this.groupBox9.Text = "系统操作";
  1479. //
  1480. // button_Recovery
  1481. //
  1482. this.button_Recovery.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(255)))));
  1483. this.button_Recovery.Location = new System.Drawing.Point(168, 26);
  1484. this.button_Recovery.Name = "button_Recovery";
  1485. this.button_Recovery.Size = new System.Drawing.Size(100, 60);
  1486. this.button_Recovery.TabIndex = 2;
  1487. this.button_Recovery.Text = "参数还原";
  1488. this.button_Recovery.UseVisualStyleBackColor = false;
  1489. this.button_Recovery.Click += new System.EventHandler(this.button_Recovery_Click);
  1490. //
  1491. // button_ClearLog
  1492. //
  1493. this.button_ClearLog.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
  1494. this.button_ClearLog.Location = new System.Drawing.Point(168, 90);
  1495. this.button_ClearLog.Name = "button_ClearLog";
  1496. this.button_ClearLog.Size = new System.Drawing.Size(100, 60);
  1497. this.button_ClearLog.TabIndex = 2;
  1498. this.button_ClearLog.Text = "记录清除";
  1499. this.button_ClearLog.UseVisualStyleBackColor = false;
  1500. this.button_ClearLog.Click += new System.EventHandler(this.button_ClearLog_Click);
  1501. //
  1502. // button_Reset
  1503. //
  1504. this.button_Reset.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(128)))));
  1505. this.button_Reset.Location = new System.Drawing.Point(37, 90);
  1506. this.button_Reset.Name = "button_Reset";
  1507. this.button_Reset.Size = new System.Drawing.Size(100, 60);
  1508. this.button_Reset.TabIndex = 2;
  1509. this.button_Reset.Text = "系统复位";
  1510. this.button_Reset.UseVisualStyleBackColor = false;
  1511. this.button_Reset.Click += new System.EventHandler(this.button_Reset_Click);
  1512. //
  1513. // button_SystemClear
  1514. //
  1515. this.button_SystemClear.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(255)))));
  1516. this.button_SystemClear.Location = new System.Drawing.Point(37, 26);
  1517. this.button_SystemClear.Name = "button_SystemClear";
  1518. this.button_SystemClear.Size = new System.Drawing.Size(100, 60);
  1519. this.button_SystemClear.TabIndex = 2;
  1520. this.button_SystemClear.Text = "系统清除";
  1521. this.button_SystemClear.UseVisualStyleBackColor = false;
  1522. this.button_SystemClear.Click += new System.EventHandler(this.button_SystemClear_Click);
  1523. //
  1524. // groupBox8
  1525. //
  1526. this.groupBox8.Controls.Add(this.button_ReadOnLine);
  1527. this.groupBox8.Controls.Add(this.textBox_Online);
  1528. this.groupBox8.Controls.Add(this.label42);
  1529. this.groupBox8.Location = new System.Drawing.Point(313, 238);
  1530. this.groupBox8.Name = "groupBox8";
  1531. this.groupBox8.Size = new System.Drawing.Size(303, 66);
  1532. this.groupBox8.TabIndex = 3;
  1533. this.groupBox8.TabStop = false;
  1534. this.groupBox8.Text = "在线查询";
  1535. //
  1536. // button_ReadOnLine
  1537. //
  1538. this.button_ReadOnLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  1539. this.button_ReadOnLine.Location = new System.Drawing.Point(244, 24);
  1540. this.button_ReadOnLine.Name = "button_ReadOnLine";
  1541. this.button_ReadOnLine.Size = new System.Drawing.Size(50, 29);
  1542. this.button_ReadOnLine.TabIndex = 2;
  1543. this.button_ReadOnLine.Text = "查询";
  1544. this.button_ReadOnLine.UseVisualStyleBackColor = false;
  1545. this.button_ReadOnLine.Click += new System.EventHandler(this.button_ReadOnLine_Click);
  1546. //
  1547. // textBox_Online
  1548. //
  1549. this.textBox_Online.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1550. this.textBox_Online.Location = new System.Drawing.Point(82, 24);
  1551. this.textBox_Online.Name = "textBox_Online";
  1552. this.textBox_Online.ReadOnly = true;
  1553. this.textBox_Online.Size = new System.Drawing.Size(100, 28);
  1554. this.textBox_Online.TabIndex = 1;
  1555. //
  1556. // label42
  1557. //
  1558. this.label42.AutoSize = true;
  1559. this.label42.Location = new System.Drawing.Point(7, 28);
  1560. this.label42.Name = "label42";
  1561. this.label42.Size = new System.Drawing.Size(74, 21);
  1562. this.label42.TabIndex = 0;
  1563. this.label42.Text = "在线状态";
  1564. //
  1565. // groupBox7
  1566. //
  1567. this.groupBox7.Controls.Add(this.button_ReadMAC);
  1568. this.groupBox7.Controls.Add(this.button_WriteMac);
  1569. this.groupBox7.Controls.Add(this.textBox_PP);
  1570. this.groupBox7.Controls.Add(this.textBox_MACDate);
  1571. this.groupBox7.Controls.Add(this.textBox_MACAdd);
  1572. this.groupBox7.Controls.Add(this.label34);
  1573. this.groupBox7.Controls.Add(this.label39);
  1574. this.groupBox7.Controls.Add(this.textBox_MAC);
  1575. this.groupBox7.Controls.Add(this.label40);
  1576. this.groupBox7.Controls.Add(this.label41);
  1577. this.groupBox7.Location = new System.Drawing.Point(313, 4);
  1578. this.groupBox7.Name = "groupBox7";
  1579. this.groupBox7.Size = new System.Drawing.Size(303, 162);
  1580. this.groupBox7.TabIndex = 3;
  1581. this.groupBox7.TabStop = false;
  1582. this.groupBox7.Text = "生产信息";
  1583. //
  1584. // button_ReadMAC
  1585. //
  1586. this.button_ReadMAC.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  1587. this.button_ReadMAC.Location = new System.Drawing.Point(219, 89);
  1588. this.button_ReadMAC.Name = "button_ReadMAC";
  1589. this.button_ReadMAC.Size = new System.Drawing.Size(75, 62);
  1590. this.button_ReadMAC.TabIndex = 2;
  1591. this.button_ReadMAC.Text = "查询";
  1592. this.button_ReadMAC.UseVisualStyleBackColor = false;
  1593. this.button_ReadMAC.Click += new System.EventHandler(this.button_ReadMAC_Click);
  1594. //
  1595. // button_WriteMac
  1596. //
  1597. this.button_WriteMac.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  1598. this.button_WriteMac.Location = new System.Drawing.Point(219, 25);
  1599. this.button_WriteMac.Name = "button_WriteMac";
  1600. this.button_WriteMac.Size = new System.Drawing.Size(75, 62);
  1601. this.button_WriteMac.TabIndex = 2;
  1602. this.button_WriteMac.Text = "写入";
  1603. this.button_WriteMac.UseVisualStyleBackColor = false;
  1604. this.button_WriteMac.Click += new System.EventHandler(this.button_WriteMac_Click);
  1605. //
  1606. // textBox_PP
  1607. //
  1608. this.textBox_PP.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1609. this.textBox_PP.Location = new System.Drawing.Point(82, 123);
  1610. this.textBox_PP.Name = "textBox_PP";
  1611. this.textBox_PP.Size = new System.Drawing.Size(100, 28);
  1612. this.textBox_PP.TabIndex = 1;
  1613. //
  1614. // textBox_MACDate
  1615. //
  1616. this.textBox_MACDate.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1617. this.textBox_MACDate.Location = new System.Drawing.Point(82, 90);
  1618. this.textBox_MACDate.Name = "textBox_MACDate";
  1619. this.textBox_MACDate.Size = new System.Drawing.Size(100, 28);
  1620. this.textBox_MACDate.TabIndex = 1;
  1621. //
  1622. // textBox_MACAdd
  1623. //
  1624. this.textBox_MACAdd.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1625. this.textBox_MACAdd.Location = new System.Drawing.Point(82, 57);
  1626. this.textBox_MACAdd.Name = "textBox_MACAdd";
  1627. this.textBox_MACAdd.Size = new System.Drawing.Size(100, 28);
  1628. this.textBox_MACAdd.TabIndex = 1;
  1629. //
  1630. // label34
  1631. //
  1632. this.label34.AutoSize = true;
  1633. this.label34.Location = new System.Drawing.Point(6, 127);
  1634. this.label34.Name = "label34";
  1635. this.label34.Size = new System.Drawing.Size(74, 21);
  1636. this.label34.TabIndex = 0;
  1637. this.label34.Text = "产品品牌";
  1638. //
  1639. // label39
  1640. //
  1641. this.label39.AutoSize = true;
  1642. this.label39.Location = new System.Drawing.Point(6, 94);
  1643. this.label39.Name = "label39";
  1644. this.label39.Size = new System.Drawing.Size(74, 21);
  1645. this.label39.TabIndex = 0;
  1646. this.label39.Text = "生产日期";
  1647. //
  1648. // textBox_MAC
  1649. //
  1650. this.textBox_MAC.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1651. this.textBox_MAC.Location = new System.Drawing.Point(82, 25);
  1652. this.textBox_MAC.Name = "textBox_MAC";
  1653. this.textBox_MAC.Size = new System.Drawing.Size(100, 28);
  1654. this.textBox_MAC.TabIndex = 1;
  1655. //
  1656. // label40
  1657. //
  1658. this.label40.AutoSize = true;
  1659. this.label40.Location = new System.Drawing.Point(6, 61);
  1660. this.label40.Name = "label40";
  1661. this.label40.Size = new System.Drawing.Size(58, 21);
  1662. this.label40.TabIndex = 0;
  1663. this.label40.Text = "生产地";
  1664. //
  1665. // label41
  1666. //
  1667. this.label41.AutoSize = true;
  1668. this.label41.Location = new System.Drawing.Point(7, 28);
  1669. this.label41.Name = "label41";
  1670. this.label41.Size = new System.Drawing.Size(58, 21);
  1671. this.label41.TabIndex = 0;
  1672. this.label41.Text = "生产商";
  1673. //
  1674. // groupBox6
  1675. //
  1676. this.groupBox6.Controls.Add(this.button_ReadUser3);
  1677. this.groupBox6.Controls.Add(this.button_WriteUser3);
  1678. this.groupBox6.Controls.Add(this.button_ReadUser2);
  1679. this.groupBox6.Controls.Add(this.button_WriteUser2);
  1680. this.groupBox6.Controls.Add(this.button_ReadUser1);
  1681. this.groupBox6.Controls.Add(this.button_WriteUser1);
  1682. this.groupBox6.Controls.Add(this.textBox_User3);
  1683. this.groupBox6.Controls.Add(this.textBox_User2);
  1684. this.groupBox6.Controls.Add(this.label35);
  1685. this.groupBox6.Controls.Add(this.textBox_User1);
  1686. this.groupBox6.Controls.Add(this.label36);
  1687. this.groupBox6.Controls.Add(this.label38);
  1688. this.groupBox6.Location = new System.Drawing.Point(4, 172);
  1689. this.groupBox6.Name = "groupBox6";
  1690. this.groupBox6.Size = new System.Drawing.Size(303, 132);
  1691. this.groupBox6.TabIndex = 2;
  1692. this.groupBox6.TabStop = false;
  1693. this.groupBox6.Text = "自定义";
  1694. //
  1695. // button_ReadUser3
  1696. //
  1697. this.button_ReadUser3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  1698. this.button_ReadUser3.Location = new System.Drawing.Point(196, 94);
  1699. this.button_ReadUser3.Name = "button_ReadUser3";
  1700. this.button_ReadUser3.Size = new System.Drawing.Size(50, 29);
  1701. this.button_ReadUser3.TabIndex = 5;
  1702. this.button_ReadUser3.Text = "查询";
  1703. this.button_ReadUser3.UseVisualStyleBackColor = false;
  1704. this.button_ReadUser3.Click += new System.EventHandler(this.button_ReadUser3_Click);
  1705. //
  1706. // button_WriteUser3
  1707. //
  1708. this.button_WriteUser3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  1709. this.button_WriteUser3.Location = new System.Drawing.Point(248, 94);
  1710. this.button_WriteUser3.Name = "button_WriteUser3";
  1711. this.button_WriteUser3.Size = new System.Drawing.Size(50, 29);
  1712. this.button_WriteUser3.TabIndex = 6;
  1713. this.button_WriteUser3.Text = "写入";
  1714. this.button_WriteUser3.UseVisualStyleBackColor = false;
  1715. this.button_WriteUser3.Click += new System.EventHandler(this.button_WriteUser3_Click);
  1716. //
  1717. // button_ReadUser2
  1718. //
  1719. this.button_ReadUser2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  1720. this.button_ReadUser2.Location = new System.Drawing.Point(196, 61);
  1721. this.button_ReadUser2.Name = "button_ReadUser2";
  1722. this.button_ReadUser2.Size = new System.Drawing.Size(50, 29);
  1723. this.button_ReadUser2.TabIndex = 3;
  1724. this.button_ReadUser2.Text = "查询";
  1725. this.button_ReadUser2.UseVisualStyleBackColor = false;
  1726. this.button_ReadUser2.Click += new System.EventHandler(this.button_ReadUser2_Click);
  1727. //
  1728. // button_WriteUser2
  1729. //
  1730. this.button_WriteUser2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  1731. this.button_WriteUser2.Location = new System.Drawing.Point(248, 61);
  1732. this.button_WriteUser2.Name = "button_WriteUser2";
  1733. this.button_WriteUser2.Size = new System.Drawing.Size(50, 29);
  1734. this.button_WriteUser2.TabIndex = 4;
  1735. this.button_WriteUser2.Text = "写入";
  1736. this.button_WriteUser2.UseVisualStyleBackColor = false;
  1737. this.button_WriteUser2.Click += new System.EventHandler(this.button_WriteUser2_Click);
  1738. //
  1739. // button_ReadUser1
  1740. //
  1741. this.button_ReadUser1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  1742. this.button_ReadUser1.Location = new System.Drawing.Point(196, 24);
  1743. this.button_ReadUser1.Name = "button_ReadUser1";
  1744. this.button_ReadUser1.Size = new System.Drawing.Size(50, 29);
  1745. this.button_ReadUser1.TabIndex = 2;
  1746. this.button_ReadUser1.Text = "查询";
  1747. this.button_ReadUser1.UseVisualStyleBackColor = false;
  1748. this.button_ReadUser1.Click += new System.EventHandler(this.button_ReadUser1_Click);
  1749. //
  1750. // button_WriteUser1
  1751. //
  1752. this.button_WriteUser1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  1753. this.button_WriteUser1.Location = new System.Drawing.Point(248, 24);
  1754. this.button_WriteUser1.Name = "button_WriteUser1";
  1755. this.button_WriteUser1.Size = new System.Drawing.Size(50, 29);
  1756. this.button_WriteUser1.TabIndex = 2;
  1757. this.button_WriteUser1.Text = "写入";
  1758. this.button_WriteUser1.UseVisualStyleBackColor = false;
  1759. this.button_WriteUser1.Click += new System.EventHandler(this.button_WriteUser1_Click);
  1760. //
  1761. // textBox_User3
  1762. //
  1763. this.textBox_User3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1764. this.textBox_User3.Location = new System.Drawing.Point(31, 94);
  1765. this.textBox_User3.Name = "textBox_User3";
  1766. this.textBox_User3.Size = new System.Drawing.Size(164, 28);
  1767. this.textBox_User3.TabIndex = 1;
  1768. //
  1769. // textBox_User2
  1770. //
  1771. this.textBox_User2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1772. this.textBox_User2.Location = new System.Drawing.Point(31, 61);
  1773. this.textBox_User2.Name = "textBox_User2";
  1774. this.textBox_User2.Size = new System.Drawing.Size(164, 28);
  1775. this.textBox_User2.TabIndex = 1;
  1776. //
  1777. // label35
  1778. //
  1779. this.label35.AutoSize = true;
  1780. this.label35.Location = new System.Drawing.Point(6, 94);
  1781. this.label35.Name = "label35";
  1782. this.label35.Size = new System.Drawing.Size(19, 21);
  1783. this.label35.TabIndex = 0;
  1784. this.label35.Text = "3";
  1785. //
  1786. // textBox_User1
  1787. //
  1788. this.textBox_User1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1789. this.textBox_User1.Location = new System.Drawing.Point(32, 24);
  1790. this.textBox_User1.Name = "textBox_User1";
  1791. this.textBox_User1.Size = new System.Drawing.Size(164, 28);
  1792. this.textBox_User1.TabIndex = 1;
  1793. //
  1794. // label36
  1795. //
  1796. this.label36.AutoSize = true;
  1797. this.label36.Location = new System.Drawing.Point(6, 61);
  1798. this.label36.Name = "label36";
  1799. this.label36.Size = new System.Drawing.Size(19, 21);
  1800. this.label36.TabIndex = 0;
  1801. this.label36.Text = "2";
  1802. //
  1803. // label38
  1804. //
  1805. this.label38.AutoSize = true;
  1806. this.label38.Location = new System.Drawing.Point(7, 28);
  1807. this.label38.Name = "label38";
  1808. this.label38.Size = new System.Drawing.Size(19, 21);
  1809. this.label38.TabIndex = 0;
  1810. this.label38.Text = "1";
  1811. //
  1812. // groupBox5
  1813. //
  1814. this.groupBox5.Controls.Add(this.button_ReadKey);
  1815. this.groupBox5.Controls.Add(this.button_WriteKey);
  1816. this.groupBox5.Controls.Add(this.textBox_Key);
  1817. this.groupBox5.Controls.Add(this.label37);
  1818. this.groupBox5.Location = new System.Drawing.Point(313, 172);
  1819. this.groupBox5.Name = "groupBox5";
  1820. this.groupBox5.Size = new System.Drawing.Size(303, 66);
  1821. this.groupBox5.TabIndex = 1;
  1822. this.groupBox5.TabStop = false;
  1823. this.groupBox5.Text = "校验密钥";
  1824. //
  1825. // button_ReadKey
  1826. //
  1827. this.button_ReadKey.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  1828. this.button_ReadKey.Location = new System.Drawing.Point(190, 24);
  1829. this.button_ReadKey.Name = "button_ReadKey";
  1830. this.button_ReadKey.Size = new System.Drawing.Size(50, 29);
  1831. this.button_ReadKey.TabIndex = 2;
  1832. this.button_ReadKey.Text = "查询";
  1833. this.button_ReadKey.UseVisualStyleBackColor = false;
  1834. this.button_ReadKey.Click += new System.EventHandler(this.button_ReadKey_Click);
  1835. //
  1836. // button_WriteKey
  1837. //
  1838. this.button_WriteKey.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  1839. this.button_WriteKey.Location = new System.Drawing.Point(244, 24);
  1840. this.button_WriteKey.Name = "button_WriteKey";
  1841. this.button_WriteKey.Size = new System.Drawing.Size(50, 29);
  1842. this.button_WriteKey.TabIndex = 2;
  1843. this.button_WriteKey.Text = "写入";
  1844. this.button_WriteKey.UseVisualStyleBackColor = false;
  1845. this.button_WriteKey.Click += new System.EventHandler(this.button_WriteKey_Click);
  1846. //
  1847. // textBox_Key
  1848. //
  1849. this.textBox_Key.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1850. this.textBox_Key.Location = new System.Drawing.Point(82, 24);
  1851. this.textBox_Key.Name = "textBox_Key";
  1852. this.textBox_Key.Size = new System.Drawing.Size(100, 28);
  1853. this.textBox_Key.TabIndex = 1;
  1854. //
  1855. // label37
  1856. //
  1857. this.label37.AutoSize = true;
  1858. this.label37.Location = new System.Drawing.Point(7, 28);
  1859. this.label37.Name = "label37";
  1860. this.label37.Size = new System.Drawing.Size(42, 21);
  1861. this.label37.TabIndex = 0;
  1862. this.label37.Text = "密钥";
  1863. //
  1864. // groupBox4
  1865. //
  1866. this.groupBox4.Controls.Add(this.button_ReadVersion);
  1867. this.groupBox4.Controls.Add(this.button_WriteSN);
  1868. this.groupBox4.Controls.Add(this.button_WriteModel);
  1869. this.groupBox4.Controls.Add(this.textBox_FW);
  1870. this.groupBox4.Controls.Add(this.textBox_HW);
  1871. this.groupBox4.Controls.Add(this.textBox_SN);
  1872. this.groupBox4.Controls.Add(this.label33);
  1873. this.groupBox4.Controls.Add(this.label32);
  1874. this.groupBox4.Controls.Add(this.textBox_Model);
  1875. this.groupBox4.Controls.Add(this.label31);
  1876. this.groupBox4.Controls.Add(this.label30);
  1877. this.groupBox4.Location = new System.Drawing.Point(4, 4);
  1878. this.groupBox4.Name = "groupBox4";
  1879. this.groupBox4.Size = new System.Drawing.Size(303, 162);
  1880. this.groupBox4.TabIndex = 0;
  1881. this.groupBox4.TabStop = false;
  1882. this.groupBox4.Text = "版本信息";
  1883. //
  1884. // button_ReadVersion
  1885. //
  1886. this.button_ReadVersion.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  1887. this.button_ReadVersion.Location = new System.Drawing.Point(248, 90);
  1888. this.button_ReadVersion.Name = "button_ReadVersion";
  1889. this.button_ReadVersion.Size = new System.Drawing.Size(50, 62);
  1890. this.button_ReadVersion.TabIndex = 2;
  1891. this.button_ReadVersion.Text = "查询";
  1892. this.button_ReadVersion.UseVisualStyleBackColor = false;
  1893. this.button_ReadVersion.Click += new System.EventHandler(this.button_ReadVersion_Click);
  1894. //
  1895. // button_WriteSN
  1896. //
  1897. this.button_WriteSN.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  1898. this.button_WriteSN.Location = new System.Drawing.Point(248, 57);
  1899. this.button_WriteSN.Name = "button_WriteSN";
  1900. this.button_WriteSN.Size = new System.Drawing.Size(50, 29);
  1901. this.button_WriteSN.TabIndex = 2;
  1902. this.button_WriteSN.Text = "写入";
  1903. this.button_WriteSN.UseVisualStyleBackColor = false;
  1904. this.button_WriteSN.Click += new System.EventHandler(this.button_WriteSN_Click);
  1905. //
  1906. // button_WriteModel
  1907. //
  1908. this.button_WriteModel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  1909. this.button_WriteModel.Location = new System.Drawing.Point(248, 24);
  1910. this.button_WriteModel.Name = "button_WriteModel";
  1911. this.button_WriteModel.Size = new System.Drawing.Size(50, 29);
  1912. this.button_WriteModel.TabIndex = 2;
  1913. this.button_WriteModel.Text = "写入";
  1914. this.button_WriteModel.UseVisualStyleBackColor = false;
  1915. this.button_WriteModel.Click += new System.EventHandler(this.button_WriteModel_Click);
  1916. //
  1917. // textBox_FW
  1918. //
  1919. this.textBox_FW.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1920. this.textBox_FW.Location = new System.Drawing.Point(55, 123);
  1921. this.textBox_FW.Name = "textBox_FW";
  1922. this.textBox_FW.ReadOnly = true;
  1923. this.textBox_FW.Size = new System.Drawing.Size(191, 28);
  1924. this.textBox_FW.TabIndex = 1;
  1925. //
  1926. // textBox_HW
  1927. //
  1928. this.textBox_HW.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1929. this.textBox_HW.Location = new System.Drawing.Point(55, 90);
  1930. this.textBox_HW.Name = "textBox_HW";
  1931. this.textBox_HW.ReadOnly = true;
  1932. this.textBox_HW.Size = new System.Drawing.Size(191, 28);
  1933. this.textBox_HW.TabIndex = 1;
  1934. //
  1935. // textBox_SN
  1936. //
  1937. this.textBox_SN.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1938. this.textBox_SN.Location = new System.Drawing.Point(55, 57);
  1939. this.textBox_SN.Name = "textBox_SN";
  1940. this.textBox_SN.Size = new System.Drawing.Size(191, 28);
  1941. this.textBox_SN.TabIndex = 1;
  1942. //
  1943. // label33
  1944. //
  1945. this.label33.AutoSize = true;
  1946. this.label33.Location = new System.Drawing.Point(6, 127);
  1947. this.label33.Name = "label33";
  1948. this.label33.Size = new System.Drawing.Size(35, 21);
  1949. this.label33.TabIndex = 0;
  1950. this.label33.Text = "FW";
  1951. //
  1952. // label32
  1953. //
  1954. this.label32.AutoSize = true;
  1955. this.label32.Location = new System.Drawing.Point(6, 94);
  1956. this.label32.Name = "label32";
  1957. this.label32.Size = new System.Drawing.Size(38, 21);
  1958. this.label32.TabIndex = 0;
  1959. this.label32.Text = "HW";
  1960. //
  1961. // textBox_Model
  1962. //
  1963. this.textBox_Model.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1964. this.textBox_Model.Location = new System.Drawing.Point(56, 24);
  1965. this.textBox_Model.Name = "textBox_Model";
  1966. this.textBox_Model.Size = new System.Drawing.Size(190, 28);
  1967. this.textBox_Model.TabIndex = 1;
  1968. //
  1969. // label31
  1970. //
  1971. this.label31.AutoSize = true;
  1972. this.label31.Location = new System.Drawing.Point(6, 61);
  1973. this.label31.Name = "label31";
  1974. this.label31.Size = new System.Drawing.Size(32, 21);
  1975. this.label31.TabIndex = 0;
  1976. this.label31.Text = "SN";
  1977. //
  1978. // label30
  1979. //
  1980. this.label30.AutoSize = true;
  1981. this.label30.Location = new System.Drawing.Point(7, 28);
  1982. this.label30.Name = "label30";
  1983. this.label30.Size = new System.Drawing.Size(42, 21);
  1984. this.label30.TabIndex = 0;
  1985. this.label30.Text = "型号";
  1986. //
  1987. // tabPage_OBC
  1988. //
  1989. this.tabPage_OBC.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1990. this.tabPage_OBC.Controls.Add(this.groupBox15);
  1991. this.tabPage_OBC.Controls.Add(this.groupBox14);
  1992. this.tabPage_OBC.Controls.Add(this.groupBox13);
  1993. this.tabPage_OBC.Controls.Add(this.groupBox12);
  1994. this.tabPage_OBC.Controls.Add(this.groupBox11);
  1995. this.tabPage_OBC.Controls.Add(this.groupBox10);
  1996. this.tabPage_OBC.Location = new System.Drawing.Point(4, 30);
  1997. this.tabPage_OBC.Name = "tabPage_OBC";
  1998. this.tabPage_OBC.Size = new System.Drawing.Size(937, 315);
  1999. this.tabPage_OBC.TabIndex = 8;
  2000. this.tabPage_OBC.Text = "模拟仪表";
  2001. //
  2002. // groupBox15
  2003. //
  2004. this.groupBox15.Controls.Add(this.textBox_OBC_ODO_TIME);
  2005. this.groupBox15.Controls.Add(this.button_OBC_ReadRideInfo);
  2006. this.groupBox15.Controls.Add(this.textBox_OBC_ODO_KM);
  2007. this.groupBox15.Controls.Add(this.button_OBC_ClearTrip);
  2008. this.groupBox15.Controls.Add(this.label55);
  2009. this.groupBox15.Controls.Add(this.textBox_OBC_TRIP_TIME);
  2010. this.groupBox15.Controls.Add(this.label54);
  2011. this.groupBox15.Controls.Add(this.textBox_OBC_TRIP_KM);
  2012. this.groupBox15.Controls.Add(this.label52);
  2013. this.groupBox15.Controls.Add(this.label53);
  2014. this.groupBox15.Location = new System.Drawing.Point(622, 160);
  2015. this.groupBox15.Name = "groupBox15";
  2016. this.groupBox15.Size = new System.Drawing.Size(303, 149);
  2017. this.groupBox15.TabIndex = 14;
  2018. this.groupBox15.TabStop = false;
  2019. this.groupBox15.Text = "骑行历史";
  2020. //
  2021. // textBox_OBC_ODO_TIME
  2022. //
  2023. this.textBox_OBC_ODO_TIME.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  2024. this.textBox_OBC_ODO_TIME.Location = new System.Drawing.Point(104, 117);
  2025. this.textBox_OBC_ODO_TIME.Name = "textBox_OBC_ODO_TIME";
  2026. this.textBox_OBC_ODO_TIME.ReadOnly = true;
  2027. this.textBox_OBC_ODO_TIME.Size = new System.Drawing.Size(131, 28);
  2028. this.textBox_OBC_ODO_TIME.TabIndex = 3;
  2029. //
  2030. // button_OBC_ReadRideInfo
  2031. //
  2032. this.button_OBC_ReadRideInfo.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  2033. this.button_OBC_ReadRideInfo.Location = new System.Drawing.Point(241, 53);
  2034. this.button_OBC_ReadRideInfo.Name = "button_OBC_ReadRideInfo";
  2035. this.button_OBC_ReadRideInfo.Size = new System.Drawing.Size(53, 35);
  2036. this.button_OBC_ReadRideInfo.TabIndex = 6;
  2037. this.button_OBC_ReadRideInfo.Text = "读取";
  2038. this.button_OBC_ReadRideInfo.UseVisualStyleBackColor = false;
  2039. this.button_OBC_ReadRideInfo.Click += new System.EventHandler(this.button_OBC_ReadRideInfo_Click);
  2040. //
  2041. // textBox_OBC_ODO_KM
  2042. //
  2043. this.textBox_OBC_ODO_KM.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  2044. this.textBox_OBC_ODO_KM.Location = new System.Drawing.Point(104, 87);
  2045. this.textBox_OBC_ODO_KM.Name = "textBox_OBC_ODO_KM";
  2046. this.textBox_OBC_ODO_KM.ReadOnly = true;
  2047. this.textBox_OBC_ODO_KM.Size = new System.Drawing.Size(131, 28);
  2048. this.textBox_OBC_ODO_KM.TabIndex = 4;
  2049. //
  2050. // button_OBC_ClearTrip
  2051. //
  2052. this.button_OBC_ClearTrip.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  2053. this.button_OBC_ClearTrip.Location = new System.Drawing.Point(241, 90);
  2054. this.button_OBC_ClearTrip.Name = "button_OBC_ClearTrip";
  2055. this.button_OBC_ClearTrip.Size = new System.Drawing.Size(53, 55);
  2056. this.button_OBC_ClearTrip.TabIndex = 6;
  2057. this.button_OBC_ClearTrip.Text = "清除TRIP";
  2058. this.button_OBC_ClearTrip.UseVisualStyleBackColor = false;
  2059. this.button_OBC_ClearTrip.Click += new System.EventHandler(this.button_OBC_ClearTrip_Click);
  2060. //
  2061. // label55
  2062. //
  2063. this.label55.AutoSize = true;
  2064. this.label55.Location = new System.Drawing.Point(6, 121);
  2065. this.label55.Name = "label55";
  2066. this.label55.Size = new System.Drawing.Size(80, 21);
  2067. this.label55.TabIndex = 0;
  2068. this.label55.Text = "ODO时间";
  2069. //
  2070. // textBox_OBC_TRIP_TIME
  2071. //
  2072. this.textBox_OBC_TRIP_TIME.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  2073. this.textBox_OBC_TRIP_TIME.Location = new System.Drawing.Point(104, 57);
  2074. this.textBox_OBC_TRIP_TIME.Name = "textBox_OBC_TRIP_TIME";
  2075. this.textBox_OBC_TRIP_TIME.ReadOnly = true;
  2076. this.textBox_OBC_TRIP_TIME.Size = new System.Drawing.Size(131, 28);
  2077. this.textBox_OBC_TRIP_TIME.TabIndex = 5;
  2078. //
  2079. // label54
  2080. //
  2081. this.label54.AutoSize = true;
  2082. this.label54.Location = new System.Drawing.Point(6, 91);
  2083. this.label54.Name = "label54";
  2084. this.label54.Size = new System.Drawing.Size(80, 21);
  2085. this.label54.TabIndex = 0;
  2086. this.label54.Text = "ODO里程";
  2087. //
  2088. // textBox_OBC_TRIP_KM
  2089. //
  2090. this.textBox_OBC_TRIP_KM.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  2091. this.textBox_OBC_TRIP_KM.Location = new System.Drawing.Point(104, 27);
  2092. this.textBox_OBC_TRIP_KM.Name = "textBox_OBC_TRIP_KM";
  2093. this.textBox_OBC_TRIP_KM.ReadOnly = true;
  2094. this.textBox_OBC_TRIP_KM.Size = new System.Drawing.Size(131, 28);
  2095. this.textBox_OBC_TRIP_KM.TabIndex = 6;
  2096. //
  2097. // label52
  2098. //
  2099. this.label52.AutoSize = true;
  2100. this.label52.Location = new System.Drawing.Point(7, 31);
  2101. this.label52.Name = "label52";
  2102. this.label52.Size = new System.Drawing.Size(76, 21);
  2103. this.label52.TabIndex = 0;
  2104. this.label52.Text = "TRIP里程";
  2105. //
  2106. // label53
  2107. //
  2108. this.label53.AutoSize = true;
  2109. this.label53.Location = new System.Drawing.Point(6, 61);
  2110. this.label53.Name = "label53";
  2111. this.label53.Size = new System.Drawing.Size(76, 21);
  2112. this.label53.TabIndex = 0;
  2113. this.label53.Text = "TRIP时间";
  2114. //
  2115. // groupBox14
  2116. //
  2117. this.groupBox14.Controls.Add(this.button_OBC_ReadVerInfo);
  2118. this.groupBox14.Controls.Add(this.textBox_OBC_ReadFW);
  2119. this.groupBox14.Controls.Add(this.textBox_OBC_ReadHW);
  2120. this.groupBox14.Controls.Add(this.textBox_OBC_ReadSN);
  2121. this.groupBox14.Controls.Add(this.label48);
  2122. this.groupBox14.Controls.Add(this.label49);
  2123. this.groupBox14.Controls.Add(this.textBox_OBC_ReadModel);
  2124. this.groupBox14.Controls.Add(this.label50);
  2125. this.groupBox14.Controls.Add(this.label51);
  2126. this.groupBox14.Location = new System.Drawing.Point(622, 4);
  2127. this.groupBox14.Name = "groupBox14";
  2128. this.groupBox14.Size = new System.Drawing.Size(303, 150);
  2129. this.groupBox14.TabIndex = 13;
  2130. this.groupBox14.TabStop = false;
  2131. this.groupBox14.Text = "版本信息";
  2132. //
  2133. // button_OBC_ReadVerInfo
  2134. //
  2135. this.button_OBC_ReadVerInfo.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  2136. this.button_OBC_ReadVerInfo.Location = new System.Drawing.Point(241, 81);
  2137. this.button_OBC_ReadVerInfo.Name = "button_OBC_ReadVerInfo";
  2138. this.button_OBC_ReadVerInfo.Size = new System.Drawing.Size(53, 62);
  2139. this.button_OBC_ReadVerInfo.TabIndex = 2;
  2140. this.button_OBC_ReadVerInfo.Text = "查询";
  2141. this.button_OBC_ReadVerInfo.UseVisualStyleBackColor = false;
  2142. this.button_OBC_ReadVerInfo.Click += new System.EventHandler(this.button_OBC_ReadVerInfo_Click);
  2143. //
  2144. // textBox_OBC_ReadFW
  2145. //
  2146. this.textBox_OBC_ReadFW.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  2147. this.textBox_OBC_ReadFW.Location = new System.Drawing.Point(56, 114);
  2148. this.textBox_OBC_ReadFW.Name = "textBox_OBC_ReadFW";
  2149. this.textBox_OBC_ReadFW.ReadOnly = true;
  2150. this.textBox_OBC_ReadFW.Size = new System.Drawing.Size(179, 28);
  2151. this.textBox_OBC_ReadFW.TabIndex = 1;
  2152. //
  2153. // textBox_OBC_ReadHW
  2154. //
  2155. this.textBox_OBC_ReadHW.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  2156. this.textBox_OBC_ReadHW.Location = new System.Drawing.Point(56, 84);
  2157. this.textBox_OBC_ReadHW.Name = "textBox_OBC_ReadHW";
  2158. this.textBox_OBC_ReadHW.ReadOnly = true;
  2159. this.textBox_OBC_ReadHW.Size = new System.Drawing.Size(179, 28);
  2160. this.textBox_OBC_ReadHW.TabIndex = 1;
  2161. //
  2162. // textBox_OBC_ReadSN
  2163. //
  2164. this.textBox_OBC_ReadSN.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  2165. this.textBox_OBC_ReadSN.Location = new System.Drawing.Point(56, 54);
  2166. this.textBox_OBC_ReadSN.Name = "textBox_OBC_ReadSN";
  2167. this.textBox_OBC_ReadSN.ReadOnly = true;
  2168. this.textBox_OBC_ReadSN.Size = new System.Drawing.Size(179, 28);
  2169. this.textBox_OBC_ReadSN.TabIndex = 1;
  2170. //
  2171. // label48
  2172. //
  2173. this.label48.AutoSize = true;
  2174. this.label48.Location = new System.Drawing.Point(6, 118);
  2175. this.label48.Name = "label48";
  2176. this.label48.Size = new System.Drawing.Size(35, 21);
  2177. this.label48.TabIndex = 0;
  2178. this.label48.Text = "FW";
  2179. //
  2180. // label49
  2181. //
  2182. this.label49.AutoSize = true;
  2183. this.label49.Location = new System.Drawing.Point(6, 88);
  2184. this.label49.Name = "label49";
  2185. this.label49.Size = new System.Drawing.Size(38, 21);
  2186. this.label49.TabIndex = 0;
  2187. this.label49.Text = "HW";
  2188. //
  2189. // textBox_OBC_ReadModel
  2190. //
  2191. this.textBox_OBC_ReadModel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  2192. this.textBox_OBC_ReadModel.Location = new System.Drawing.Point(56, 24);
  2193. this.textBox_OBC_ReadModel.Name = "textBox_OBC_ReadModel";
  2194. this.textBox_OBC_ReadModel.ReadOnly = true;
  2195. this.textBox_OBC_ReadModel.Size = new System.Drawing.Size(179, 28);
  2196. this.textBox_OBC_ReadModel.TabIndex = 1;
  2197. //
  2198. // label50
  2199. //
  2200. this.label50.AutoSize = true;
  2201. this.label50.Location = new System.Drawing.Point(6, 58);
  2202. this.label50.Name = "label50";
  2203. this.label50.Size = new System.Drawing.Size(32, 21);
  2204. this.label50.TabIndex = 0;
  2205. this.label50.Text = "SN";
  2206. //
  2207. // label51
  2208. //
  2209. this.label51.AutoSize = true;
  2210. this.label51.Location = new System.Drawing.Point(7, 28);
  2211. this.label51.Name = "label51";
  2212. this.label51.Size = new System.Drawing.Size(42, 21);
  2213. this.label51.TabIndex = 0;
  2214. this.label51.Text = "型号";
  2215. //
  2216. // groupBox13
  2217. //
  2218. this.groupBox13.Controls.Add(this.numericUpDown_OBC_WheelAdj);
  2219. this.groupBox13.Controls.Add(this.label59);
  2220. this.groupBox13.Controls.Add(this.comboBox_OBC_AssistFunc);
  2221. this.groupBox13.Controls.Add(this.comboBox_OBC_StartMode);
  2222. this.groupBox13.Controls.Add(this.label58);
  2223. this.groupBox13.Controls.Add(this.label57);
  2224. this.groupBox13.Controls.Add(this.button_OBC_WriteUserInfo);
  2225. this.groupBox13.Controls.Add(this.label56);
  2226. this.groupBox13.Location = new System.Drawing.Point(416, 4);
  2227. this.groupBox13.Name = "groupBox13";
  2228. this.groupBox13.Size = new System.Drawing.Size(200, 305);
  2229. this.groupBox13.TabIndex = 14;
  2230. this.groupBox13.TabStop = false;
  2231. this.groupBox13.Text = "设置用户参数";
  2232. //
  2233. // numericUpDown_OBC_WheelAdj
  2234. //
  2235. this.numericUpDown_OBC_WheelAdj.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
  2236. this.numericUpDown_OBC_WheelAdj.Location = new System.Drawing.Point(83, 24);
  2237. this.numericUpDown_OBC_WheelAdj.Maximum = new decimal(new int[] {
  2238. 10,
  2239. 0,
  2240. 0,
  2241. 0});
  2242. this.numericUpDown_OBC_WheelAdj.Minimum = new decimal(new int[] {
  2243. 10,
  2244. 0,
  2245. 0,
  2246. -2147483648});
  2247. this.numericUpDown_OBC_WheelAdj.Name = "numericUpDown_OBC_WheelAdj";
  2248. this.numericUpDown_OBC_WheelAdj.ReadOnly = true;
  2249. this.numericUpDown_OBC_WheelAdj.Size = new System.Drawing.Size(72, 28);
  2250. this.numericUpDown_OBC_WheelAdj.TabIndex = 7;
  2251. this.numericUpDown_OBC_WheelAdj.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  2252. //
  2253. // label59
  2254. //
  2255. this.label59.AutoSize = true;
  2256. this.label59.Location = new System.Drawing.Point(161, 28);
  2257. this.label59.Name = "label59";
  2258. this.label59.Size = new System.Drawing.Size(33, 21);
  2259. this.label59.TabIndex = 11;
  2260. this.label59.Text = "cm";
  2261. //
  2262. // comboBox_OBC_AssistFunc
  2263. //
  2264. this.comboBox_OBC_AssistFunc.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
  2265. this.comboBox_OBC_AssistFunc.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  2266. this.comboBox_OBC_AssistFunc.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2267. this.comboBox_OBC_AssistFunc.FormattingEnabled = true;
  2268. this.comboBox_OBC_AssistFunc.Items.AddRange(new object[] {
  2269. "方案一",
  2270. "方案二"});
  2271. this.comboBox_OBC_AssistFunc.Location = new System.Drawing.Point(83, 84);
  2272. this.comboBox_OBC_AssistFunc.Name = "comboBox_OBC_AssistFunc";
  2273. this.comboBox_OBC_AssistFunc.Size = new System.Drawing.Size(111, 29);
  2274. this.comboBox_OBC_AssistFunc.TabIndex = 10;
  2275. //
  2276. // comboBox_OBC_StartMode
  2277. //
  2278. this.comboBox_OBC_StartMode.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
  2279. this.comboBox_OBC_StartMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  2280. this.comboBox_OBC_StartMode.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2281. this.comboBox_OBC_StartMode.FormattingEnabled = true;
  2282. this.comboBox_OBC_StartMode.Items.AddRange(new object[] {
  2283. "柔和",
  2284. "正常",
  2285. "强劲"});
  2286. this.comboBox_OBC_StartMode.Location = new System.Drawing.Point(83, 54);
  2287. this.comboBox_OBC_StartMode.Name = "comboBox_OBC_StartMode";
  2288. this.comboBox_OBC_StartMode.Size = new System.Drawing.Size(111, 29);
  2289. this.comboBox_OBC_StartMode.TabIndex = 6;
  2290. //
  2291. // label58
  2292. //
  2293. this.label58.AutoSize = true;
  2294. this.label58.Location = new System.Drawing.Point(6, 88);
  2295. this.label58.Name = "label58";
  2296. this.label58.Size = new System.Drawing.Size(74, 21);
  2297. this.label58.TabIndex = 9;
  2298. this.label58.Text = "助力方案";
  2299. //
  2300. // label57
  2301. //
  2302. this.label57.AutoSize = true;
  2303. this.label57.Location = new System.Drawing.Point(6, 58);
  2304. this.label57.Name = "label57";
  2305. this.label57.Size = new System.Drawing.Size(74, 21);
  2306. this.label57.TabIndex = 9;
  2307. this.label57.Text = "启动模式";
  2308. //
  2309. // button_OBC_WriteUserInfo
  2310. //
  2311. this.button_OBC_WriteUserInfo.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  2312. this.button_OBC_WriteUserInfo.Location = new System.Drawing.Point(141, 264);
  2313. this.button_OBC_WriteUserInfo.Name = "button_OBC_WriteUserInfo";
  2314. this.button_OBC_WriteUserInfo.Size = new System.Drawing.Size(53, 35);
  2315. this.button_OBC_WriteUserInfo.TabIndex = 6;
  2316. this.button_OBC_WriteUserInfo.Text = "写入";
  2317. this.button_OBC_WriteUserInfo.UseVisualStyleBackColor = false;
  2318. this.button_OBC_WriteUserInfo.Click += new System.EventHandler(this.button_OBC_WriteUserInfo_Click);
  2319. //
  2320. // label56
  2321. //
  2322. this.label56.AutoSize = true;
  2323. this.label56.Location = new System.Drawing.Point(6, 28);
  2324. this.label56.Name = "label56";
  2325. this.label56.Size = new System.Drawing.Size(74, 21);
  2326. this.label56.TabIndex = 7;
  2327. this.label56.Text = "周长微调";
  2328. //
  2329. // groupBox12
  2330. //
  2331. this.groupBox12.Controls.Add(this.richTextBox_OBC_ReadUserInfo);
  2332. this.groupBox12.Controls.Add(this.button_OBC_ReadUserInfo);
  2333. this.groupBox12.Location = new System.Drawing.Point(235, 4);
  2334. this.groupBox12.Name = "groupBox12";
  2335. this.groupBox12.Size = new System.Drawing.Size(175, 305);
  2336. this.groupBox12.TabIndex = 13;
  2337. this.groupBox12.TabStop = false;
  2338. this.groupBox12.Text = "查询用户参数";
  2339. //
  2340. // richTextBox_OBC_ReadUserInfo
  2341. //
  2342. this.richTextBox_OBC_ReadUserInfo.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  2343. this.richTextBox_OBC_ReadUserInfo.Location = new System.Drawing.Point(6, 27);
  2344. this.richTextBox_OBC_ReadUserInfo.Name = "richTextBox_OBC_ReadUserInfo";
  2345. this.richTextBox_OBC_ReadUserInfo.ReadOnly = true;
  2346. this.richTextBox_OBC_ReadUserInfo.Size = new System.Drawing.Size(159, 231);
  2347. this.richTextBox_OBC_ReadUserInfo.TabIndex = 12;
  2348. this.richTextBox_OBC_ReadUserInfo.Text = "";
  2349. //
  2350. // button_OBC_ReadUserInfo
  2351. //
  2352. this.button_OBC_ReadUserInfo.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  2353. this.button_OBC_ReadUserInfo.Location = new System.Drawing.Point(112, 264);
  2354. this.button_OBC_ReadUserInfo.Name = "button_OBC_ReadUserInfo";
  2355. this.button_OBC_ReadUserInfo.Size = new System.Drawing.Size(53, 35);
  2356. this.button_OBC_ReadUserInfo.TabIndex = 6;
  2357. this.button_OBC_ReadUserInfo.Text = "读取";
  2358. this.button_OBC_ReadUserInfo.UseVisualStyleBackColor = false;
  2359. this.button_OBC_ReadUserInfo.Click += new System.EventHandler(this.button_OBC_ReadUserInfo_Click);
  2360. //
  2361. // groupBox11
  2362. //
  2363. this.groupBox11.Controls.Add(this.richTextBox_OBC_BMS_RunInfo);
  2364. this.groupBox11.Controls.Add(this.checkBox_OBC_StartReadBMS);
  2365. this.groupBox11.Location = new System.Drawing.Point(4, 108);
  2366. this.groupBox11.Name = "groupBox11";
  2367. this.groupBox11.Size = new System.Drawing.Size(225, 201);
  2368. this.groupBox11.TabIndex = 11;
  2369. this.groupBox11.TabStop = false;
  2370. this.groupBox11.Text = "读取电池运行信息";
  2371. //
  2372. // richTextBox_OBC_BMS_RunInfo
  2373. //
  2374. this.richTextBox_OBC_BMS_RunInfo.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  2375. this.richTextBox_OBC_BMS_RunInfo.Location = new System.Drawing.Point(6, 27);
  2376. this.richTextBox_OBC_BMS_RunInfo.Name = "richTextBox_OBC_BMS_RunInfo";
  2377. this.richTextBox_OBC_BMS_RunInfo.ReadOnly = true;
  2378. this.richTextBox_OBC_BMS_RunInfo.Size = new System.Drawing.Size(213, 127);
  2379. this.richTextBox_OBC_BMS_RunInfo.TabIndex = 12;
  2380. this.richTextBox_OBC_BMS_RunInfo.Text = "";
  2381. //
  2382. // checkBox_OBC_StartReadBMS
  2383. //
  2384. this.checkBox_OBC_StartReadBMS.AutoSize = true;
  2385. this.checkBox_OBC_StartReadBMS.Location = new System.Drawing.Point(158, 169);
  2386. this.checkBox_OBC_StartReadBMS.Name = "checkBox_OBC_StartReadBMS";
  2387. this.checkBox_OBC_StartReadBMS.Size = new System.Drawing.Size(61, 25);
  2388. this.checkBox_OBC_StartReadBMS.TabIndex = 5;
  2389. this.checkBox_OBC_StartReadBMS.Text = "启动";
  2390. this.checkBox_OBC_StartReadBMS.UseVisualStyleBackColor = true;
  2391. this.checkBox_OBC_StartReadBMS.CheckedChanged += new System.EventHandler(this.checkBox_OBC_StartReadBMS_CheckedChanged);
  2392. //
  2393. // groupBox10
  2394. //
  2395. this.groupBox10.Controls.Add(this.label60);
  2396. this.groupBox10.Controls.Add(this.comboBox_OBC_LightSw);
  2397. this.groupBox10.Controls.Add(this.label61);
  2398. this.groupBox10.Controls.Add(this.comboBox_OBC_SetGearST);
  2399. this.groupBox10.Controls.Add(this.checkBox_OBC_StartSetGearSt);
  2400. this.groupBox10.Location = new System.Drawing.Point(4, 4);
  2401. this.groupBox10.Name = "groupBox10";
  2402. this.groupBox10.Size = new System.Drawing.Size(225, 98);
  2403. this.groupBox10.TabIndex = 10;
  2404. this.groupBox10.TabStop = false;
  2405. this.groupBox10.Text = "控制电机档位";
  2406. //
  2407. // label60
  2408. //
  2409. this.label60.AutoSize = true;
  2410. this.label60.Location = new System.Drawing.Point(6, 62);
  2411. this.label60.Name = "label60";
  2412. this.label60.Size = new System.Drawing.Size(42, 21);
  2413. this.label60.TabIndex = 8;
  2414. this.label60.Text = "大灯";
  2415. //
  2416. // comboBox_OBC_LightSw
  2417. //
  2418. this.comboBox_OBC_LightSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
  2419. this.comboBox_OBC_LightSw.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  2420. this.comboBox_OBC_LightSw.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2421. this.comboBox_OBC_LightSw.FormattingEnabled = true;
  2422. this.comboBox_OBC_LightSw.Items.AddRange(new object[] {
  2423. "ON",
  2424. "OFF"});
  2425. this.comboBox_OBC_LightSw.Location = new System.Drawing.Point(51, 58);
  2426. this.comboBox_OBC_LightSw.Name = "comboBox_OBC_LightSw";
  2427. this.comboBox_OBC_LightSw.Size = new System.Drawing.Size(89, 29);
  2428. this.comboBox_OBC_LightSw.TabIndex = 6;
  2429. //
  2430. // label61
  2431. //
  2432. this.label61.AutoSize = true;
  2433. this.label61.Location = new System.Drawing.Point(6, 32);
  2434. this.label61.Name = "label61";
  2435. this.label61.Size = new System.Drawing.Size(42, 21);
  2436. this.label61.TabIndex = 7;
  2437. this.label61.Text = "档位";
  2438. //
  2439. // comboBox_OBC_SetGearST
  2440. //
  2441. this.comboBox_OBC_SetGearST.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
  2442. this.comboBox_OBC_SetGearST.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  2443. this.comboBox_OBC_SetGearST.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2444. this.comboBox_OBC_SetGearST.FormattingEnabled = true;
  2445. this.comboBox_OBC_SetGearST.Items.AddRange(new object[] {
  2446. "0",
  2447. "1",
  2448. "2",
  2449. "3",
  2450. "4",
  2451. "5",
  2452. "Walk"});
  2453. this.comboBox_OBC_SetGearST.Location = new System.Drawing.Point(51, 28);
  2454. this.comboBox_OBC_SetGearST.Name = "comboBox_OBC_SetGearST";
  2455. this.comboBox_OBC_SetGearST.Size = new System.Drawing.Size(89, 29);
  2456. this.comboBox_OBC_SetGearST.TabIndex = 4;
  2457. //
  2458. // checkBox_OBC_StartSetGearSt
  2459. //
  2460. this.checkBox_OBC_StartSetGearSt.AutoSize = true;
  2461. this.checkBox_OBC_StartSetGearSt.Location = new System.Drawing.Point(158, 61);
  2462. this.checkBox_OBC_StartSetGearSt.Name = "checkBox_OBC_StartSetGearSt";
  2463. this.checkBox_OBC_StartSetGearSt.Size = new System.Drawing.Size(61, 25);
  2464. this.checkBox_OBC_StartSetGearSt.TabIndex = 5;
  2465. this.checkBox_OBC_StartSetGearSt.Text = "启动";
  2466. this.checkBox_OBC_StartSetGearSt.UseVisualStyleBackColor = true;
  2467. this.checkBox_OBC_StartSetGearSt.CheckedChanged += new System.EventHandler(this.checkBox_OBC_StartSetGearSt_CheckedChanged);
  2468. //
  2469. // label23
  2470. //
  2471. this.label23.AutoSize = true;
  2472. this.label23.BackColor = System.Drawing.Color.DodgerBlue;
  2473. this.label23.Font = new System.Drawing.Font("Microsoft YaHei UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2474. this.label23.ForeColor = System.Drawing.Color.White;
  2475. this.label23.Location = new System.Drawing.Point(448, 622);
  2476. this.label23.Name = "label23";
  2477. this.label23.Size = new System.Drawing.Size(68, 17);
  2478. this.label23.TabIndex = 7;
  2479. this.label23.Text = "接收计数:";
  2480. //
  2481. // label_RecCount
  2482. //
  2483. this.label_RecCount.AutoSize = true;
  2484. this.label_RecCount.BackColor = System.Drawing.Color.DodgerBlue;
  2485. this.label_RecCount.Font = new System.Drawing.Font("Microsoft YaHei UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2486. this.label_RecCount.ForeColor = System.Drawing.Color.White;
  2487. this.label_RecCount.Location = new System.Drawing.Point(523, 622);
  2488. this.label_RecCount.Name = "label_RecCount";
  2489. this.label_RecCount.Size = new System.Drawing.Size(15, 17);
  2490. this.label_RecCount.TabIndex = 8;
  2491. this.label_RecCount.Text = "0";
  2492. //
  2493. // timer_1s
  2494. //
  2495. this.timer_1s.Enabled = true;
  2496. this.timer_1s.Interval = 1000;
  2497. this.timer_1s.Tick += new System.EventHandler(this.timer_1s_Tick);
  2498. //
  2499. // pictureBox1
  2500. //
  2501. this.pictureBox1.BackColor = System.Drawing.Color.DodgerBlue;
  2502. this.pictureBox1.Image = global::Welling_Motor_Debug_Tool.Properties.Resources.Welling_Log;
  2503. this.pictureBox1.Location = new System.Drawing.Point(882, 1);
  2504. this.pictureBox1.Name = "pictureBox1";
  2505. this.pictureBox1.Size = new System.Drawing.Size(91, 28);
  2506. this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  2507. this.pictureBox1.TabIndex = 9;
  2508. this.pictureBox1.TabStop = false;
  2509. //
  2510. // label_BuildTime
  2511. //
  2512. this.label_BuildTime.AutoSize = true;
  2513. this.label_BuildTime.BackColor = System.Drawing.Color.DodgerBlue;
  2514. this.label_BuildTime.Font = new System.Drawing.Font("Microsoft YaHei UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2515. this.label_BuildTime.ForeColor = System.Drawing.Color.White;
  2516. this.label_BuildTime.Location = new System.Drawing.Point(595, 622);
  2517. this.label_BuildTime.Name = "label_BuildTime";
  2518. this.label_BuildTime.Size = new System.Drawing.Size(186, 17);
  2519. this.label_BuildTime.TabIndex = 10;
  2520. this.label_BuildTime.Text = "编译时间:2022-05-22 14:00:00";
  2521. //
  2522. // label_SystemTime
  2523. //
  2524. this.label_SystemTime.AutoSize = true;
  2525. this.label_SystemTime.BackColor = System.Drawing.Color.DodgerBlue;
  2526. this.label_SystemTime.Font = new System.Drawing.Font("Microsoft YaHei UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2527. this.label_SystemTime.ForeColor = System.Drawing.Color.White;
  2528. this.label_SystemTime.Location = new System.Drawing.Point(787, 622);
  2529. this.label_SystemTime.Name = "label_SystemTime";
  2530. this.label_SystemTime.Size = new System.Drawing.Size(186, 17);
  2531. this.label_SystemTime.TabIndex = 11;
  2532. this.label_SystemTime.Text = "系统时间:2022-05-22 14:00:00";
  2533. //
  2534. // label_COM_Sta
  2535. //
  2536. this.label_COM_Sta.AutoSize = true;
  2537. this.label_COM_Sta.BackColor = System.Drawing.Color.DodgerBlue;
  2538. this.label_COM_Sta.Font = new System.Drawing.Font("Microsoft YaHei UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2539. this.label_COM_Sta.ForeColor = System.Drawing.Color.White;
  2540. this.label_COM_Sta.Location = new System.Drawing.Point(295, 622);
  2541. this.label_COM_Sta.Name = "label_COM_Sta";
  2542. this.label_COM_Sta.Size = new System.Drawing.Size(104, 17);
  2543. this.label_COM_Sta.TabIndex = 12;
  2544. this.label_COM_Sta.Text = "连接状态:未连接";
  2545. //
  2546. // label43
  2547. //
  2548. this.label43.BackColor = System.Drawing.Color.Silver;
  2549. this.label43.Location = new System.Drawing.Point(288, 623);
  2550. this.label43.Name = "label43";
  2551. this.label43.Size = new System.Drawing.Size(1, 15);
  2552. this.label43.TabIndex = 8;
  2553. //
  2554. // label44
  2555. //
  2556. this.label44.BackColor = System.Drawing.Color.Silver;
  2557. this.label44.Location = new System.Drawing.Point(441, 623);
  2558. this.label44.Name = "label44";
  2559. this.label44.Size = new System.Drawing.Size(1, 15);
  2560. this.label44.TabIndex = 13;
  2561. //
  2562. // label45
  2563. //
  2564. this.label45.BackColor = System.Drawing.Color.Silver;
  2565. this.label45.Location = new System.Drawing.Point(588, 623);
  2566. this.label45.Name = "label45";
  2567. this.label45.Size = new System.Drawing.Size(1, 15);
  2568. this.label45.TabIndex = 14;
  2569. //
  2570. // label46
  2571. //
  2572. this.label46.BackColor = System.Drawing.Color.Silver;
  2573. this.label46.Location = new System.Drawing.Point(780, 623);
  2574. this.label46.Name = "label46";
  2575. this.label46.Size = new System.Drawing.Size(1, 15);
  2576. this.label46.TabIndex = 15;
  2577. //
  2578. // button_WriteTqSensorParam
  2579. //
  2580. this.button_WriteTqSensorParam.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
  2581. this.button_WriteTqSensorParam.Location = new System.Drawing.Point(808, 205);
  2582. this.button_WriteTqSensorParam.Name = "button_WriteTqSensorParam";
  2583. this.button_WriteTqSensorParam.Size = new System.Drawing.Size(112, 50);
  2584. this.button_WriteTqSensorParam.TabIndex = 10;
  2585. this.button_WriteTqSensorParam.Text = "写入力矩传感器参数";
  2586. this.button_WriteTqSensorParam.UseVisualStyleBackColor = false;
  2587. this.button_WriteTqSensorParam.Click += new System.EventHandler(this.button_WriteTqSensorParam_Click);
  2588. //
  2589. // Form1
  2590. //
  2591. this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F);
  2592. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  2593. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  2594. this.ClientSize = new System.Drawing.Size(984, 641);
  2595. this.Controls.Add(this.label46);
  2596. this.Controls.Add(this.label45);
  2597. this.Controls.Add(this.label44);
  2598. this.Controls.Add(this.label43);
  2599. this.Controls.Add(this.label_COM_Sta);
  2600. this.Controls.Add(this.label_SystemTime);
  2601. this.Controls.Add(this.label_BuildTime);
  2602. this.Controls.Add(this.pictureBox1);
  2603. this.Controls.Add(this.label_RecCount);
  2604. this.Controls.Add(this.label23);
  2605. this.Controls.Add(this.groupBox3);
  2606. this.Controls.Add(this.groupBox2);
  2607. this.Controls.Add(this.groupBox1);
  2608. this.Controls.Add(this.statusStrip1);
  2609. this.Controls.Add(this.menuStrip_Set);
  2610. this.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F);
  2611. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  2612. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  2613. this.Margin = new System.Windows.Forms.Padding(4);
  2614. this.MaximizeBox = false;
  2615. this.Name = "Form1";
  2616. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  2617. this.Text = "Welling中置电机调试工具V1.0.5";
  2618. this.Load += new System.EventHandler(this.Form1_Load);
  2619. this.menuStrip_Set.ResumeLayout(false);
  2620. this.menuStrip_Set.PerformLayout();
  2621. this.statusStrip1.ResumeLayout(false);
  2622. this.statusStrip1.PerformLayout();
  2623. this.groupBox1.ResumeLayout(false);
  2624. this.groupBox1.PerformLayout();
  2625. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_SpeedAdj)).EndInit();
  2626. this.groupBox2.ResumeLayout(false);
  2627. this.groupBox2.PerformLayout();
  2628. this.groupBox3.ResumeLayout(false);
  2629. this.tabControl1.ResumeLayout(false);
  2630. this.tabPage_MotorParam.ResumeLayout(false);
  2631. this.tabPage_BikeParam.ResumeLayout(false);
  2632. this.tabPage_ControlParam.ResumeLayout(false);
  2633. this.tabPage_SensorParam.ResumeLayout(false);
  2634. this.tabPage_SensorParam.PerformLayout();
  2635. this.tabPage_AssistParam.ResumeLayout(false);
  2636. this.tabPage_AssistParam.PerformLayout();
  2637. this.tabPage_DebugParam.ResumeLayout(false);
  2638. this.tabPage_RecordInfo.ResumeLayout(false);
  2639. this.tabPage_OtherInfo.ResumeLayout(false);
  2640. this.groupBox9.ResumeLayout(false);
  2641. this.groupBox8.ResumeLayout(false);
  2642. this.groupBox8.PerformLayout();
  2643. this.groupBox7.ResumeLayout(false);
  2644. this.groupBox7.PerformLayout();
  2645. this.groupBox6.ResumeLayout(false);
  2646. this.groupBox6.PerformLayout();
  2647. this.groupBox5.ResumeLayout(false);
  2648. this.groupBox5.PerformLayout();
  2649. this.groupBox4.ResumeLayout(false);
  2650. this.groupBox4.PerformLayout();
  2651. this.tabPage_OBC.ResumeLayout(false);
  2652. this.groupBox15.ResumeLayout(false);
  2653. this.groupBox15.PerformLayout();
  2654. this.groupBox14.ResumeLayout(false);
  2655. this.groupBox14.PerformLayout();
  2656. this.groupBox13.ResumeLayout(false);
  2657. this.groupBox13.PerformLayout();
  2658. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_OBC_WheelAdj)).EndInit();
  2659. this.groupBox12.ResumeLayout(false);
  2660. this.groupBox11.ResumeLayout(false);
  2661. this.groupBox11.PerformLayout();
  2662. this.groupBox10.ResumeLayout(false);
  2663. this.groupBox10.PerformLayout();
  2664. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  2665. this.ResumeLayout(false);
  2666. this.PerformLayout();
  2667. }
  2668. #endregion
  2669. private MenuStrip menuStrip_Set;
  2670. private ToolStripMenuItem 端口连接ToolStripMenuItem;
  2671. private ToolStripMenuItem 端口号ToolStripMenuItem;
  2672. private ToolStripMenuItem 波特率ToolStripMenuItem;
  2673. private ToolStripMenuItem 工具箱ToolStripMenuItem;
  2674. private ToolStripMenuItem 记录数据ToolStripMenuItem;
  2675. private ToolStripMenuItem 一键查询ToolStripMenuItem;
  2676. private ToolStripMenuItem 关于ToolStripMenuItem;
  2677. private ToolStripMenuItem 帮助ToolStripMenuItem;
  2678. private ToolStripMenuItem 版本ToolStripMenuItem;
  2679. private StatusStrip statusStrip1;
  2680. private ToolStripStatusLabel toolStripStatusLabel1;
  2681. private GroupBox groupBox1;
  2682. private GroupBox groupBox2;
  2683. private GroupBox groupBox3;
  2684. private ToolStripMenuItem 连接ToolStripMenuItem;
  2685. private NumericUpDown numericUpDown_SpeedAdj;
  2686. private Label label4;
  2687. private Label label3;
  2688. private ComboBox comboBox_WorkMode;
  2689. private Label label2;
  2690. private Label label1;
  2691. private Label label10;
  2692. private Label label9;
  2693. private Label label8;
  2694. private Label label7;
  2695. private Label label6;
  2696. private Label label5;
  2697. private Label label28;
  2698. private Label label22;
  2699. private Label label16;
  2700. private Label label21;
  2701. private Label label15;
  2702. private Label label20;
  2703. private Label label14;
  2704. private Label label19;
  2705. private Label label13;
  2706. private Label label18;
  2707. private Label label12;
  2708. private Label label17;
  2709. private Label label11;
  2710. private ToolStripMenuItem 配置ToolStripMenuItem;
  2711. private ToolStripMenuItem 写入存储ToolStripMenuItem;
  2712. private ToolStripMenuItem 计算器ToolStripMenuItem;
  2713. private ToolStripMenuItem 刷新ToolStripMenuItem;
  2714. private ToolStripComboBox toolStripComboBox_ComNum;
  2715. private ToolStripComboBox toolStripComboBox_Baudrate;
  2716. public ComboBox comboBox_LightSwitch;
  2717. public ComboBox comboBox_GearSt;
  2718. private TextBox textBox_RunInfo_Power;
  2719. private TextBox textBox_RunInfo_Current;
  2720. private TextBox textBox_RunInfo_Vol;
  2721. private TextBox textBox_RunInfo_MotorSpeed;
  2722. private TextBox textBox_RunInfo_Cadence;
  2723. private TextBox textBox_RunInfo_BikeSpeed;
  2724. private TextBox textBox_ErrorCode;
  2725. private TextBox textBox_RunInfo_Trip_Time;
  2726. private TextBox textBox_RunInfo_Range;
  2727. private TextBox textBox_RunInfo_Trip;
  2728. private TextBox textBox_RunInfo_SOC;
  2729. private TextBox textBox_RunInfo_T_Coil;
  2730. private TextBox textBox_RunInfo_LightSwitch;
  2731. private TextBox textBox_RunInfo_T_MCU;
  2732. private TextBox textBox_RunInfo_GearSt;
  2733. private TextBox textBox_RunInfo_T_PCB;
  2734. private TextBox textBox_RunInfo_Dir;
  2735. private TextBox textBox_RunInfo_AvgPower;
  2736. private TextBox textBox_RunInfo_Torque;
  2737. private Label label23;
  2738. private Label label_RecCount;
  2739. private Timer timer_1s;
  2740. private Label label24;
  2741. private TabControl tabControl1;
  2742. private TabPage tabPage_MotorParam;
  2743. private TabPage tabPage_BikeParam;
  2744. private TabPage tabPage_ControlParam;
  2745. private TabPage tabPage_SensorParam;
  2746. private TabPage tabPage_AssistParam;
  2747. private TabPage tabPage_DebugParam;
  2748. private TabPage tabPage_RecordInfo;
  2749. private TabPage tabPage_OtherInfo;
  2750. private Button button_Write;
  2751. private Button button_Read_MotorParam;
  2752. private RichTextBox richTextBox_MotorParam;
  2753. private Button button_WriteBikeParam;
  2754. private Button button_ReadBikeParam;
  2755. private RichTextBox richTextBox_BikeParam;
  2756. private Button button_WriteControlParam;
  2757. private Button button_ReadControlParam;
  2758. private RichTextBox richTextBox_ControlParam;
  2759. private Button button_WriteAssistParam;
  2760. private Button button_ReadAssistParam;
  2761. private RichTextBox richTextBox_AssistParam;
  2762. private Button button_WriteDebugParam;
  2763. private Button button_ReadDebugParam;
  2764. private RichTextBox richTextBox_DebugParam;
  2765. private Button button_SaveRecordInfo;
  2766. private Button button_ReadRecord;
  2767. private Button button_ExportLog;
  2768. private RichTextBox richTextBox_Record;
  2769. private Button button_Write_Cal;
  2770. private Button button_WriteSensorParam;
  2771. private Button button_ReadSensorParam;
  2772. private RichTextBox richTextBox_SensorParam;
  2773. private Label label25;
  2774. private PictureBox pictureBox1;
  2775. private TextBox textBox_Load;
  2776. private Label label27;
  2777. private Label label26;
  2778. private Label label29;
  2779. private GroupBox groupBox4;
  2780. private Button button_ReadVersion;
  2781. private Button button_WriteSN;
  2782. private Button button_WriteModel;
  2783. private TextBox textBox_FW;
  2784. private TextBox textBox_HW;
  2785. private TextBox textBox_SN;
  2786. private Label label33;
  2787. private Label label32;
  2788. private TextBox textBox_Model;
  2789. private Label label31;
  2790. private Label label30;
  2791. private GroupBox groupBox6;
  2792. private Button button_ReadUser3;
  2793. private Button button_WriteUser3;
  2794. private Button button_ReadUser2;
  2795. private Button button_WriteUser2;
  2796. private Button button_ReadUser1;
  2797. private Button button_WriteUser1;
  2798. private TextBox textBox_User3;
  2799. private TextBox textBox_User2;
  2800. private Label label35;
  2801. private TextBox textBox_User1;
  2802. private Label label36;
  2803. private Label label38;
  2804. private GroupBox groupBox5;
  2805. private Button button_ReadKey;
  2806. private Button button_WriteKey;
  2807. private TextBox textBox_Key;
  2808. private Label label37;
  2809. private GroupBox groupBox8;
  2810. private Button button_ReadOnLine;
  2811. private TextBox textBox_Online;
  2812. private Label label42;
  2813. private GroupBox groupBox7;
  2814. private Button button_ReadMAC;
  2815. private Button button_WriteMac;
  2816. private TextBox textBox_PP;
  2817. private TextBox textBox_MACDate;
  2818. private TextBox textBox_MACAdd;
  2819. private Label label34;
  2820. private Label label39;
  2821. private TextBox textBox_MAC;
  2822. private Label label40;
  2823. private Label label41;
  2824. private GroupBox groupBox9;
  2825. private Button button_Recovery;
  2826. private Button button_ClearLog;
  2827. private Button button_Reset;
  2828. private Button button_SystemClear;
  2829. private Label label_BuildTime;
  2830. private Label label_SystemTime;
  2831. private Label label_COM_Sta;
  2832. private Label label43;
  2833. private Label label44;
  2834. private Label label45;
  2835. private Label label46;
  2836. private Label label47;
  2837. private ComboBox comboBox_AssistTorque;
  2838. private ComboBox comboBox_AssistCadence;
  2839. private ComboBox comboBox_TorqueSet;
  2840. private TabPage tabPage_OBC;
  2841. private CheckBox checkBox_OBC_StartSetGearSt;
  2842. public ComboBox comboBox_OBC_SetGearST;
  2843. private GroupBox groupBox15;
  2844. private TextBox textBox_OBC_ODO_TIME;
  2845. private Button button_OBC_ReadRideInfo;
  2846. private TextBox textBox_OBC_ODO_KM;
  2847. private Button button_OBC_ClearTrip;
  2848. private Label label55;
  2849. private TextBox textBox_OBC_TRIP_TIME;
  2850. private Label label54;
  2851. private TextBox textBox_OBC_TRIP_KM;
  2852. private Label label52;
  2853. private Label label53;
  2854. private GroupBox groupBox14;
  2855. private Button button_OBC_ReadVerInfo;
  2856. private TextBox textBox_OBC_ReadFW;
  2857. private TextBox textBox_OBC_ReadHW;
  2858. private TextBox textBox_OBC_ReadSN;
  2859. private Label label48;
  2860. private Label label49;
  2861. private TextBox textBox_OBC_ReadModel;
  2862. private Label label50;
  2863. private Label label51;
  2864. private GroupBox groupBox13;
  2865. private Button button_OBC_WriteUserInfo;
  2866. private GroupBox groupBox12;
  2867. private RichTextBox richTextBox_OBC_ReadUserInfo;
  2868. private Button button_OBC_ReadUserInfo;
  2869. private GroupBox groupBox11;
  2870. private RichTextBox richTextBox_OBC_BMS_RunInfo;
  2871. private CheckBox checkBox_OBC_StartReadBMS;
  2872. private GroupBox groupBox10;
  2873. private Label label56;
  2874. private NumericUpDown numericUpDown_OBC_WheelAdj;
  2875. private Label label59;
  2876. public ComboBox comboBox_OBC_AssistFunc;
  2877. public ComboBox comboBox_OBC_StartMode;
  2878. private Label label58;
  2879. private Label label57;
  2880. private Label label60;
  2881. public ComboBox comboBox_OBC_LightSw;
  2882. private Label label61;
  2883. private Label label62;
  2884. private Button button_WriteTqSensorParam;
  2885. }
  2886. }