ExportForm.Designer.cs 101 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893
  1. namespace MOTINOVA_Motor_Factory_Set
  2. {
  3. partial class ExportForm
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ExportForm));
  29. this.label2 = new System.Windows.Forms.Label();
  30. this.groupBox2 = new System.Windows.Forms.GroupBox();
  31. this.label1 = new System.Windows.Forms.Label();
  32. this.textBox_WalkSpeed = new System.Windows.Forms.TextBox();
  33. this.textBox_WheelSizeAdj = new System.Windows.Forms.TextBox();
  34. this.label6 = new System.Windows.Forms.Label();
  35. this.textBox_CadenceStart = new System.Windows.Forms.TextBox();
  36. this.label9 = new System.Windows.Forms.Label();
  37. this.textBox_SMART_Gain = new System.Windows.Forms.TextBox();
  38. this.label12 = new System.Windows.Forms.Label();
  39. this.textBox_SPORT_Acc = new System.Windows.Forms.TextBox();
  40. this.label15 = new System.Windows.Forms.Label();
  41. this.textBox_NORM_Gain = new System.Windows.Forms.TextBox();
  42. this.label18 = new System.Windows.Forms.Label();
  43. this.textBox_Serial = new System.Windows.Forms.TextBox();
  44. this.label21 = new System.Windows.Forms.Label();
  45. this.textBox_NTC_Ptotect = new System.Windows.Forms.TextBox();
  46. this.label24 = new System.Windows.Forms.Label();
  47. this.textBox_T_Tail = new System.Windows.Forms.TextBox();
  48. this.label49 = new System.Windows.Forms.Label();
  49. this.label27 = new System.Windows.Forms.Label();
  50. this.textBox_SpeedLimit = new System.Windows.Forms.TextBox();
  51. this.textBox_Walk_SpeedLimit = new System.Windows.Forms.TextBox();
  52. this.label4 = new System.Windows.Forms.Label();
  53. this.label7 = new System.Windows.Forms.Label();
  54. this.textBox_SMART_Acc = new System.Windows.Forms.TextBox();
  55. this.textBox_UV_Protect = new System.Windows.Forms.TextBox();
  56. this.textBox_SpeedSensor = new System.Windows.Forms.TextBox();
  57. this.label10 = new System.Windows.Forms.Label();
  58. this.textBox_TURBO_Gain = new System.Windows.Forms.TextBox();
  59. this.textBox_TURBO_Acc = new System.Windows.Forms.TextBox();
  60. this.label13 = new System.Windows.Forms.Label();
  61. this.textBox_NORM_Acc = new System.Windows.Forms.TextBox();
  62. this.textBox_SPORT_Gain = new System.Windows.Forms.TextBox();
  63. this.label16 = new System.Windows.Forms.Label();
  64. this.textBox_ECO_Gain = new System.Windows.Forms.TextBox();
  65. this.textBox_ECO_Acc = new System.Windows.Forms.TextBox();
  66. this.label19 = new System.Windows.Forms.Label();
  67. this.textBox_WheelSize = new System.Windows.Forms.TextBox();
  68. this.label22 = new System.Windows.Forms.Label();
  69. this.textBox_NTC_Alarm = new System.Windows.Forms.TextBox();
  70. this.label25 = new System.Windows.Forms.Label();
  71. this.label48 = new System.Windows.Forms.Label();
  72. this.textBox_MaxCurrent = new System.Windows.Forms.TextBox();
  73. this.textBox_Dec = new System.Windows.Forms.TextBox();
  74. this.textBox_T_Front = new System.Windows.Forms.TextBox();
  75. this.label28 = new System.Windows.Forms.Label();
  76. this.textBox_StopTime = new System.Windows.Forms.TextBox();
  77. this.label5 = new System.Windows.Forms.Label();
  78. this.comboBox_SpeedSensor = new System.Windows.Forms.ComboBox();
  79. this.comboBox_GasMode = new System.Windows.Forms.ComboBox();
  80. this.label8 = new System.Windows.Forms.Label();
  81. this.label11 = new System.Windows.Forms.Label();
  82. this.label14 = new System.Windows.Forms.Label();
  83. this.label17 = new System.Windows.Forms.Label();
  84. this.label20 = new System.Windows.Forms.Label();
  85. this.comboBox_NoPBU = new System.Windows.Forms.ComboBox();
  86. this.label23 = new System.Windows.Forms.Label();
  87. this.label26 = new System.Windows.Forms.Label();
  88. this.label47 = new System.Windows.Forms.Label();
  89. this.label29 = new System.Windows.Forms.Label();
  90. this.comboBox_StartMode = new System.Windows.Forms.ComboBox();
  91. this.groupBox3 = new System.Windows.Forms.GroupBox();
  92. this.label59 = new System.Windows.Forms.Label();
  93. this.label58 = new System.Windows.Forms.Label();
  94. this.label3 = new System.Windows.Forms.Label();
  95. this.comboBox_TailLightVol = new System.Windows.Forms.ComboBox();
  96. this.label46 = new System.Windows.Forms.Label();
  97. this.comboBox_HeadLightVol = new System.Windows.Forms.ComboBox();
  98. this.textBox_Angle_R = new System.Windows.Forms.TextBox();
  99. this.comboBox_LightMode = new System.Windows.Forms.ComboBox();
  100. this.label44 = new System.Windows.Forms.Label();
  101. this.comboBox_AstSensor = new System.Windows.Forms.ComboBox();
  102. this.label45 = new System.Windows.Forms.Label();
  103. this.textBox_Angle_P = new System.Windows.Forms.TextBox();
  104. this.groupBox7 = new System.Windows.Forms.GroupBox();
  105. this.label43 = new System.Windows.Forms.Label();
  106. this.label42 = new System.Windows.Forms.Label();
  107. this.textBox_Info2 = new System.Windows.Forms.TextBox();
  108. this.label41 = new System.Windows.Forms.Label();
  109. this.textBox_Info1 = new System.Windows.Forms.TextBox();
  110. this.textBox_Info3 = new System.Windows.Forms.TextBox();
  111. this.groupBox4 = new System.Windows.Forms.GroupBox();
  112. this.label35 = new System.Windows.Forms.Label();
  113. this.label30 = new System.Windows.Forms.Label();
  114. this.label31 = new System.Windows.Forms.Label();
  115. this.label32 = new System.Windows.Forms.Label();
  116. this.textBox_RatePower = new System.Windows.Forms.TextBox();
  117. this.textBox_RotorR = new System.Windows.Forms.TextBox();
  118. this.textBox_Rate_Vol = new System.Windows.Forms.TextBox();
  119. this.textBox_Rotor_Ld = new System.Windows.Forms.TextBox();
  120. this.label36 = new System.Windows.Forms.Label();
  121. this.label33 = new System.Windows.Forms.Label();
  122. this.label34 = new System.Windows.Forms.Label();
  123. this.textBox_RateSpeed = new System.Windows.Forms.TextBox();
  124. this.textBox_Rotor_Lq = new System.Windows.Forms.TextBox();
  125. this.textBox_E = new System.Windows.Forms.TextBox();
  126. this.groupBox5 = new System.Windows.Forms.GroupBox();
  127. this.label37 = new System.Windows.Forms.Label();
  128. this.textBox_Secrect = new System.Windows.Forms.TextBox();
  129. this.groupBox6 = new System.Windows.Forms.GroupBox();
  130. this.label40 = new System.Windows.Forms.Label();
  131. this.label38 = new System.Windows.Forms.Label();
  132. this.label39 = new System.Windows.Forms.Label();
  133. this.textBox_Mac_Date = new System.Windows.Forms.TextBox();
  134. this.textBox_Mac = new System.Windows.Forms.TextBox();
  135. this.textBox_Mac_Addr = new System.Windows.Forms.TextBox();
  136. this.button_Generate = new System.Windows.Forms.Button();
  137. this.button_Default = new System.Windows.Forms.Button();
  138. this.groupBox1 = new System.Windows.Forms.GroupBox();
  139. this.label53 = new System.Windows.Forms.Label();
  140. this.label57 = new System.Windows.Forms.Label();
  141. this.label52 = new System.Windows.Forms.Label();
  142. this.label51 = new System.Windows.Forms.Label();
  143. this.textBox_Remark = new System.Windows.Forms.TextBox();
  144. this.textBox_TE_FW_Version = new System.Windows.Forms.TextBox();
  145. this.label50 = new System.Windows.Forms.Label();
  146. this.textBox_FW_Version = new System.Windows.Forms.TextBox();
  147. this.textBox_Client = new System.Windows.Forms.TextBox();
  148. this.textBox_Model = new System.Windows.Forms.TextBox();
  149. this.groupBox8 = new System.Windows.Forms.GroupBox();
  150. this.label54 = new System.Windows.Forms.Label();
  151. this.label62 = new System.Windows.Forms.Label();
  152. this.textBox_Start_Max = new System.Windows.Forms.TextBox();
  153. this.label61 = new System.Windows.Forms.Label();
  154. this.textBox_K_Max = new System.Windows.Forms.TextBox();
  155. this.textBox_Start_Min = new System.Windows.Forms.TextBox();
  156. this.label60 = new System.Windows.Forms.Label();
  157. this.textBox_K_Min = new System.Windows.Forms.TextBox();
  158. this.textBox_Zero_Max = new System.Windows.Forms.TextBox();
  159. this.textBox_Zero_Min = new System.Windows.Forms.TextBox();
  160. this.label56 = new System.Windows.Forms.Label();
  161. this.textBox_GasSpeedTh = new System.Windows.Forms.TextBox();
  162. this.label55 = new System.Windows.Forms.Label();
  163. this.textBox_SpeedTh = new System.Windows.Forms.TextBox();
  164. this.textBox_NC_Current = new System.Windows.Forms.TextBox();
  165. this.pictureBox2 = new System.Windows.Forms.PictureBox();
  166. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  167. this.button_keyboard = new System.Windows.Forms.Button();
  168. this.groupBox2.SuspendLayout();
  169. this.groupBox3.SuspendLayout();
  170. this.groupBox7.SuspendLayout();
  171. this.groupBox4.SuspendLayout();
  172. this.groupBox5.SuspendLayout();
  173. this.groupBox6.SuspendLayout();
  174. this.groupBox1.SuspendLayout();
  175. this.groupBox8.SuspendLayout();
  176. ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
  177. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  178. this.SuspendLayout();
  179. //
  180. // label2
  181. //
  182. this.label2.AutoSize = true;
  183. this.label2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  184. this.label2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  185. this.label2.Location = new System.Drawing.Point(8, 578);
  186. this.label2.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
  187. this.label2.Name = "label2";
  188. this.label2.Size = new System.Drawing.Size(423, 21);
  189. this.label2.TabIndex = 5;
  190. this.label2.Text = "Copyright © 2022 MOTINOVA Inc. All Rights Reserved";
  191. //
  192. // groupBox2
  193. //
  194. this.groupBox2.Controls.Add(this.label1);
  195. this.groupBox2.Controls.Add(this.textBox_WalkSpeed);
  196. this.groupBox2.Controls.Add(this.textBox_WheelSizeAdj);
  197. this.groupBox2.Controls.Add(this.label6);
  198. this.groupBox2.Controls.Add(this.textBox_CadenceStart);
  199. this.groupBox2.Controls.Add(this.label9);
  200. this.groupBox2.Controls.Add(this.textBox_SMART_Gain);
  201. this.groupBox2.Controls.Add(this.label12);
  202. this.groupBox2.Controls.Add(this.textBox_SPORT_Acc);
  203. this.groupBox2.Controls.Add(this.label15);
  204. this.groupBox2.Controls.Add(this.textBox_NORM_Gain);
  205. this.groupBox2.Controls.Add(this.label18);
  206. this.groupBox2.Controls.Add(this.textBox_Serial);
  207. this.groupBox2.Controls.Add(this.label21);
  208. this.groupBox2.Controls.Add(this.textBox_NTC_Ptotect);
  209. this.groupBox2.Controls.Add(this.label24);
  210. this.groupBox2.Controls.Add(this.textBox_T_Tail);
  211. this.groupBox2.Controls.Add(this.label49);
  212. this.groupBox2.Controls.Add(this.label27);
  213. this.groupBox2.Controls.Add(this.textBox_SpeedLimit);
  214. this.groupBox2.Controls.Add(this.textBox_Walk_SpeedLimit);
  215. this.groupBox2.Controls.Add(this.label4);
  216. this.groupBox2.Controls.Add(this.label7);
  217. this.groupBox2.Controls.Add(this.textBox_SMART_Acc);
  218. this.groupBox2.Controls.Add(this.textBox_UV_Protect);
  219. this.groupBox2.Controls.Add(this.textBox_SpeedSensor);
  220. this.groupBox2.Controls.Add(this.label10);
  221. this.groupBox2.Controls.Add(this.textBox_TURBO_Gain);
  222. this.groupBox2.Controls.Add(this.textBox_TURBO_Acc);
  223. this.groupBox2.Controls.Add(this.label13);
  224. this.groupBox2.Controls.Add(this.textBox_NORM_Acc);
  225. this.groupBox2.Controls.Add(this.textBox_SPORT_Gain);
  226. this.groupBox2.Controls.Add(this.label16);
  227. this.groupBox2.Controls.Add(this.textBox_ECO_Gain);
  228. this.groupBox2.Controls.Add(this.textBox_ECO_Acc);
  229. this.groupBox2.Controls.Add(this.label19);
  230. this.groupBox2.Controls.Add(this.textBox_WheelSize);
  231. this.groupBox2.Controls.Add(this.label22);
  232. this.groupBox2.Controls.Add(this.textBox_NTC_Alarm);
  233. this.groupBox2.Controls.Add(this.label25);
  234. this.groupBox2.Controls.Add(this.label48);
  235. this.groupBox2.Controls.Add(this.textBox_MaxCurrent);
  236. this.groupBox2.Controls.Add(this.textBox_Dec);
  237. this.groupBox2.Controls.Add(this.textBox_T_Front);
  238. this.groupBox2.Controls.Add(this.label28);
  239. this.groupBox2.Controls.Add(this.textBox_StopTime);
  240. this.groupBox2.Controls.Add(this.label5);
  241. this.groupBox2.Controls.Add(this.comboBox_SpeedSensor);
  242. this.groupBox2.Controls.Add(this.comboBox_GasMode);
  243. this.groupBox2.Controls.Add(this.label8);
  244. this.groupBox2.Controls.Add(this.label11);
  245. this.groupBox2.Controls.Add(this.label14);
  246. this.groupBox2.Controls.Add(this.label17);
  247. this.groupBox2.Controls.Add(this.label20);
  248. this.groupBox2.Controls.Add(this.comboBox_NoPBU);
  249. this.groupBox2.Controls.Add(this.label23);
  250. this.groupBox2.Controls.Add(this.label26);
  251. this.groupBox2.Controls.Add(this.label47);
  252. this.groupBox2.Controls.Add(this.label29);
  253. this.groupBox2.Controls.Add(this.comboBox_StartMode);
  254. this.groupBox2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  255. this.groupBox2.Location = new System.Drawing.Point(12, 12);
  256. this.groupBox2.Name = "groupBox2";
  257. this.groupBox2.Size = new System.Drawing.Size(547, 396);
  258. this.groupBox2.TabIndex = 3;
  259. this.groupBox2.TabStop = false;
  260. this.groupBox2.Text = "用户参数1";
  261. //
  262. // label1
  263. //
  264. this.label1.AutoSize = true;
  265. this.label1.Location = new System.Drawing.Point(6, 33);
  266. this.label1.Name = "label1";
  267. this.label1.Size = new System.Drawing.Size(74, 21);
  268. this.label1.TabIndex = 0;
  269. this.label1.Text = "启动模式";
  270. //
  271. // textBox_WalkSpeed
  272. //
  273. this.textBox_WalkSpeed.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  274. this.textBox_WalkSpeed.ForeColor = System.Drawing.Color.Black;
  275. this.textBox_WalkSpeed.ImeMode = System.Windows.Forms.ImeMode.Disable;
  276. this.textBox_WalkSpeed.Location = new System.Drawing.Point(463, 353);
  277. this.textBox_WalkSpeed.Name = "textBox_WalkSpeed";
  278. this.textBox_WalkSpeed.Size = new System.Drawing.Size(70, 29);
  279. this.textBox_WalkSpeed.TabIndex = 2;
  280. //
  281. // textBox_WheelSizeAdj
  282. //
  283. this.textBox_WheelSizeAdj.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  284. this.textBox_WheelSizeAdj.ForeColor = System.Drawing.Color.Black;
  285. this.textBox_WheelSizeAdj.ImeMode = System.Windows.Forms.ImeMode.Disable;
  286. this.textBox_WheelSizeAdj.Location = new System.Drawing.Point(463, 317);
  287. this.textBox_WheelSizeAdj.Name = "textBox_WheelSizeAdj";
  288. this.textBox_WheelSizeAdj.Size = new System.Drawing.Size(70, 29);
  289. this.textBox_WheelSizeAdj.TabIndex = 2;
  290. //
  291. // label6
  292. //
  293. this.label6.AutoSize = true;
  294. this.label6.Location = new System.Drawing.Point(6, 69);
  295. this.label6.Name = "label6";
  296. this.label6.Size = new System.Drawing.Size(74, 21);
  297. this.label6.TabIndex = 0;
  298. this.label6.Text = "下降速度";
  299. //
  300. // textBox_CadenceStart
  301. //
  302. this.textBox_CadenceStart.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  303. this.textBox_CadenceStart.ForeColor = System.Drawing.Color.Black;
  304. this.textBox_CadenceStart.ImeMode = System.Windows.Forms.ImeMode.Disable;
  305. this.textBox_CadenceStart.Location = new System.Drawing.Point(463, 281);
  306. this.textBox_CadenceStart.Name = "textBox_CadenceStart";
  307. this.textBox_CadenceStart.Size = new System.Drawing.Size(70, 29);
  308. this.textBox_CadenceStart.TabIndex = 2;
  309. //
  310. // label9
  311. //
  312. this.label9.AutoSize = true;
  313. this.label9.Location = new System.Drawing.Point(6, 105);
  314. this.label9.Name = "label9";
  315. this.label9.Size = new System.Drawing.Size(58, 21);
  316. this.label9.TabIndex = 0;
  317. this.label9.Text = "限流值";
  318. //
  319. // textBox_SMART_Gain
  320. //
  321. this.textBox_SMART_Gain.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  322. this.textBox_SMART_Gain.ForeColor = System.Drawing.Color.Black;
  323. this.textBox_SMART_Gain.ImeMode = System.Windows.Forms.ImeMode.Disable;
  324. this.textBox_SMART_Gain.Location = new System.Drawing.Point(463, 245);
  325. this.textBox_SMART_Gain.Name = "textBox_SMART_Gain";
  326. this.textBox_SMART_Gain.Size = new System.Drawing.Size(70, 29);
  327. this.textBox_SMART_Gain.TabIndex = 2;
  328. //
  329. // label12
  330. //
  331. this.label12.AutoSize = true;
  332. this.label12.Location = new System.Drawing.Point(6, 141);
  333. this.label12.Name = "label12";
  334. this.label12.Size = new System.Drawing.Size(42, 21);
  335. this.label12.TabIndex = 0;
  336. this.label12.Text = "码表";
  337. //
  338. // textBox_SPORT_Acc
  339. //
  340. this.textBox_SPORT_Acc.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  341. this.textBox_SPORT_Acc.ForeColor = System.Drawing.Color.Black;
  342. this.textBox_SPORT_Acc.ImeMode = System.Windows.Forms.ImeMode.Disable;
  343. this.textBox_SPORT_Acc.Location = new System.Drawing.Point(463, 209);
  344. this.textBox_SPORT_Acc.Name = "textBox_SPORT_Acc";
  345. this.textBox_SPORT_Acc.Size = new System.Drawing.Size(70, 29);
  346. this.textBox_SPORT_Acc.TabIndex = 2;
  347. //
  348. // label15
  349. //
  350. this.label15.AutoSize = true;
  351. this.label15.Location = new System.Drawing.Point(6, 177);
  352. this.label15.Name = "label15";
  353. this.label15.Size = new System.Drawing.Size(75, 21);
  354. this.label15.TabIndex = 0;
  355. this.label15.Text = "ECO增益";
  356. //
  357. // textBox_NORM_Gain
  358. //
  359. this.textBox_NORM_Gain.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  360. this.textBox_NORM_Gain.ForeColor = System.Drawing.Color.Black;
  361. this.textBox_NORM_Gain.ImeMode = System.Windows.Forms.ImeMode.Disable;
  362. this.textBox_NORM_Gain.Location = new System.Drawing.Point(463, 173);
  363. this.textBox_NORM_Gain.Name = "textBox_NORM_Gain";
  364. this.textBox_NORM_Gain.Size = new System.Drawing.Size(70, 29);
  365. this.textBox_NORM_Gain.TabIndex = 2;
  366. //
  367. // label18
  368. //
  369. this.label18.AutoSize = true;
  370. this.label18.Location = new System.Drawing.Point(6, 213);
  371. this.label18.Name = "label18";
  372. this.label18.Size = new System.Drawing.Size(94, 21);
  373. this.label18.TabIndex = 0;
  374. this.label18.Text = "NORM加速";
  375. //
  376. // textBox_Serial
  377. //
  378. this.textBox_Serial.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
  379. this.textBox_Serial.ForeColor = System.Drawing.Color.Black;
  380. this.textBox_Serial.ImeMode = System.Windows.Forms.ImeMode.Disable;
  381. this.textBox_Serial.Location = new System.Drawing.Point(463, 137);
  382. this.textBox_Serial.Name = "textBox_Serial";
  383. this.textBox_Serial.Size = new System.Drawing.Size(70, 29);
  384. this.textBox_Serial.TabIndex = 2;
  385. //
  386. // label21
  387. //
  388. this.label21.AutoSize = true;
  389. this.label21.Location = new System.Drawing.Point(6, 249);
  390. this.label21.Name = "label21";
  391. this.label21.Size = new System.Drawing.Size(96, 21);
  392. this.label21.TabIndex = 0;
  393. this.label21.Text = "TURBO增益";
  394. //
  395. // textBox_NTC_Ptotect
  396. //
  397. this.textBox_NTC_Ptotect.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  398. this.textBox_NTC_Ptotect.ForeColor = System.Drawing.Color.Black;
  399. this.textBox_NTC_Ptotect.ImeMode = System.Windows.Forms.ImeMode.Disable;
  400. this.textBox_NTC_Ptotect.Location = new System.Drawing.Point(463, 101);
  401. this.textBox_NTC_Ptotect.Name = "textBox_NTC_Ptotect";
  402. this.textBox_NTC_Ptotect.Size = new System.Drawing.Size(70, 29);
  403. this.textBox_NTC_Ptotect.TabIndex = 2;
  404. //
  405. // label24
  406. //
  407. this.label24.AutoSize = true;
  408. this.label24.Location = new System.Drawing.Point(6, 285);
  409. this.label24.Name = "label24";
  410. this.label24.Size = new System.Drawing.Size(97, 21);
  411. this.label24.TabIndex = 0;
  412. this.label24.Text = "SMART加速";
  413. //
  414. // textBox_T_Tail
  415. //
  416. this.textBox_T_Tail.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  417. this.textBox_T_Tail.ForeColor = System.Drawing.Color.Black;
  418. this.textBox_T_Tail.ImeMode = System.Windows.Forms.ImeMode.Disable;
  419. this.textBox_T_Tail.Location = new System.Drawing.Point(463, 65);
  420. this.textBox_T_Tail.Name = "textBox_T_Tail";
  421. this.textBox_T_Tail.Size = new System.Drawing.Size(70, 29);
  422. this.textBox_T_Tail.TabIndex = 2;
  423. //
  424. // label49
  425. //
  426. this.label49.AutoSize = true;
  427. this.label49.Location = new System.Drawing.Point(7, 357);
  428. this.label49.Name = "label49";
  429. this.label49.Size = new System.Drawing.Size(74, 21);
  430. this.label49.TabIndex = 0;
  431. this.label49.Text = "低压保护";
  432. //
  433. // label27
  434. //
  435. this.label27.AutoSize = true;
  436. this.label27.Location = new System.Drawing.Point(6, 321);
  437. this.label27.Name = "label27";
  438. this.label27.Size = new System.Drawing.Size(74, 21);
  439. this.label27.TabIndex = 0;
  440. this.label27.Text = "指拨模式";
  441. //
  442. // textBox_SpeedLimit
  443. //
  444. this.textBox_SpeedLimit.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  445. this.textBox_SpeedLimit.ForeColor = System.Drawing.Color.Black;
  446. this.textBox_SpeedLimit.ImeMode = System.Windows.Forms.ImeMode.Disable;
  447. this.textBox_SpeedLimit.Location = new System.Drawing.Point(463, 29);
  448. this.textBox_SpeedLimit.Name = "textBox_SpeedLimit";
  449. this.textBox_SpeedLimit.Size = new System.Drawing.Size(70, 29);
  450. this.textBox_SpeedLimit.TabIndex = 2;
  451. //
  452. // textBox_Walk_SpeedLimit
  453. //
  454. this.textBox_Walk_SpeedLimit.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  455. this.textBox_Walk_SpeedLimit.ForeColor = System.Drawing.Color.Black;
  456. this.textBox_Walk_SpeedLimit.ImeMode = System.Windows.Forms.ImeMode.Disable;
  457. this.textBox_Walk_SpeedLimit.Location = new System.Drawing.Point(288, 353);
  458. this.textBox_Walk_SpeedLimit.Name = "textBox_Walk_SpeedLimit";
  459. this.textBox_Walk_SpeedLimit.Size = new System.Drawing.Size(70, 29);
  460. this.textBox_Walk_SpeedLimit.TabIndex = 2;
  461. //
  462. // label4
  463. //
  464. this.label4.AutoSize = true;
  465. this.label4.Location = new System.Drawing.Point(180, 33);
  466. this.label4.Name = "label4";
  467. this.label4.Size = new System.Drawing.Size(74, 21);
  468. this.label4.TabIndex = 0;
  469. this.label4.Text = "停机时间";
  470. //
  471. // label7
  472. //
  473. this.label7.AutoSize = true;
  474. this.label7.Location = new System.Drawing.Point(180, 69);
  475. this.label7.Name = "label7";
  476. this.label7.Size = new System.Drawing.Size(42, 21);
  477. this.label7.TabIndex = 0;
  478. this.label7.Text = "前飞";
  479. //
  480. // textBox_SMART_Acc
  481. //
  482. this.textBox_SMART_Acc.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  483. this.textBox_SMART_Acc.ForeColor = System.Drawing.Color.Black;
  484. this.textBox_SMART_Acc.ImeMode = System.Windows.Forms.ImeMode.Disable;
  485. this.textBox_SMART_Acc.Location = new System.Drawing.Point(105, 281);
  486. this.textBox_SMART_Acc.Name = "textBox_SMART_Acc";
  487. this.textBox_SMART_Acc.Size = new System.Drawing.Size(70, 29);
  488. this.textBox_SMART_Acc.TabIndex = 2;
  489. //
  490. // textBox_UV_Protect
  491. //
  492. this.textBox_UV_Protect.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  493. this.textBox_UV_Protect.ForeColor = System.Drawing.Color.Black;
  494. this.textBox_UV_Protect.ImeMode = System.Windows.Forms.ImeMode.Disable;
  495. this.textBox_UV_Protect.Location = new System.Drawing.Point(105, 353);
  496. this.textBox_UV_Protect.Name = "textBox_UV_Protect";
  497. this.textBox_UV_Protect.Size = new System.Drawing.Size(70, 29);
  498. this.textBox_UV_Protect.TabIndex = 2;
  499. //
  500. // textBox_SpeedSensor
  501. //
  502. this.textBox_SpeedSensor.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  503. this.textBox_SpeedSensor.ForeColor = System.Drawing.Color.Black;
  504. this.textBox_SpeedSensor.ImeMode = System.Windows.Forms.ImeMode.Disable;
  505. this.textBox_SpeedSensor.Location = new System.Drawing.Point(288, 281);
  506. this.textBox_SpeedSensor.Name = "textBox_SpeedSensor";
  507. this.textBox_SpeedSensor.Size = new System.Drawing.Size(70, 29);
  508. this.textBox_SpeedSensor.TabIndex = 2;
  509. //
  510. // label10
  511. //
  512. this.label10.AutoSize = true;
  513. this.label10.Location = new System.Drawing.Point(180, 105);
  514. this.label10.Name = "label10";
  515. this.label10.Size = new System.Drawing.Size(74, 21);
  516. this.label10.TabIndex = 0;
  517. this.label10.Text = "温度预警";
  518. //
  519. // textBox_TURBO_Gain
  520. //
  521. this.textBox_TURBO_Gain.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  522. this.textBox_TURBO_Gain.ForeColor = System.Drawing.Color.Black;
  523. this.textBox_TURBO_Gain.ImeMode = System.Windows.Forms.ImeMode.Disable;
  524. this.textBox_TURBO_Gain.Location = new System.Drawing.Point(105, 245);
  525. this.textBox_TURBO_Gain.Name = "textBox_TURBO_Gain";
  526. this.textBox_TURBO_Gain.Size = new System.Drawing.Size(70, 29);
  527. this.textBox_TURBO_Gain.TabIndex = 2;
  528. //
  529. // textBox_TURBO_Acc
  530. //
  531. this.textBox_TURBO_Acc.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  532. this.textBox_TURBO_Acc.ForeColor = System.Drawing.Color.Black;
  533. this.textBox_TURBO_Acc.ImeMode = System.Windows.Forms.ImeMode.Disable;
  534. this.textBox_TURBO_Acc.Location = new System.Drawing.Point(288, 245);
  535. this.textBox_TURBO_Acc.Name = "textBox_TURBO_Acc";
  536. this.textBox_TURBO_Acc.Size = new System.Drawing.Size(70, 29);
  537. this.textBox_TURBO_Acc.TabIndex = 2;
  538. //
  539. // label13
  540. //
  541. this.label13.AutoSize = true;
  542. this.label13.Location = new System.Drawing.Point(180, 141);
  543. this.label13.Name = "label13";
  544. this.label13.Size = new System.Drawing.Size(74, 21);
  545. this.label13.TabIndex = 0;
  546. this.label13.Text = "轮胎周长";
  547. //
  548. // textBox_NORM_Acc
  549. //
  550. this.textBox_NORM_Acc.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  551. this.textBox_NORM_Acc.ForeColor = System.Drawing.Color.Black;
  552. this.textBox_NORM_Acc.ImeMode = System.Windows.Forms.ImeMode.Disable;
  553. this.textBox_NORM_Acc.Location = new System.Drawing.Point(105, 209);
  554. this.textBox_NORM_Acc.Name = "textBox_NORM_Acc";
  555. this.textBox_NORM_Acc.Size = new System.Drawing.Size(70, 29);
  556. this.textBox_NORM_Acc.TabIndex = 2;
  557. //
  558. // textBox_SPORT_Gain
  559. //
  560. this.textBox_SPORT_Gain.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  561. this.textBox_SPORT_Gain.ForeColor = System.Drawing.Color.Black;
  562. this.textBox_SPORT_Gain.ImeMode = System.Windows.Forms.ImeMode.Disable;
  563. this.textBox_SPORT_Gain.Location = new System.Drawing.Point(288, 209);
  564. this.textBox_SPORT_Gain.Name = "textBox_SPORT_Gain";
  565. this.textBox_SPORT_Gain.Size = new System.Drawing.Size(70, 29);
  566. this.textBox_SPORT_Gain.TabIndex = 2;
  567. //
  568. // label16
  569. //
  570. this.label16.AutoSize = true;
  571. this.label16.Location = new System.Drawing.Point(180, 177);
  572. this.label16.Name = "label16";
  573. this.label16.Size = new System.Drawing.Size(75, 21);
  574. this.label16.TabIndex = 0;
  575. this.label16.Text = "ECO加速";
  576. //
  577. // textBox_ECO_Gain
  578. //
  579. this.textBox_ECO_Gain.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  580. this.textBox_ECO_Gain.ForeColor = System.Drawing.Color.Black;
  581. this.textBox_ECO_Gain.ImeMode = System.Windows.Forms.ImeMode.Disable;
  582. this.textBox_ECO_Gain.Location = new System.Drawing.Point(105, 173);
  583. this.textBox_ECO_Gain.Name = "textBox_ECO_Gain";
  584. this.textBox_ECO_Gain.Size = new System.Drawing.Size(70, 29);
  585. this.textBox_ECO_Gain.TabIndex = 2;
  586. //
  587. // textBox_ECO_Acc
  588. //
  589. this.textBox_ECO_Acc.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  590. this.textBox_ECO_Acc.ForeColor = System.Drawing.Color.Black;
  591. this.textBox_ECO_Acc.ImeMode = System.Windows.Forms.ImeMode.Disable;
  592. this.textBox_ECO_Acc.Location = new System.Drawing.Point(288, 173);
  593. this.textBox_ECO_Acc.Name = "textBox_ECO_Acc";
  594. this.textBox_ECO_Acc.Size = new System.Drawing.Size(70, 29);
  595. this.textBox_ECO_Acc.TabIndex = 2;
  596. //
  597. // label19
  598. //
  599. this.label19.AutoSize = true;
  600. this.label19.Location = new System.Drawing.Point(180, 213);
  601. this.label19.Name = "label19";
  602. this.label19.Size = new System.Drawing.Size(93, 21);
  603. this.label19.TabIndex = 0;
  604. this.label19.Text = "SPORT增益";
  605. //
  606. // textBox_WheelSize
  607. //
  608. this.textBox_WheelSize.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  609. this.textBox_WheelSize.ForeColor = System.Drawing.Color.Black;
  610. this.textBox_WheelSize.ImeMode = System.Windows.Forms.ImeMode.Disable;
  611. this.textBox_WheelSize.Location = new System.Drawing.Point(288, 137);
  612. this.textBox_WheelSize.Name = "textBox_WheelSize";
  613. this.textBox_WheelSize.Size = new System.Drawing.Size(70, 29);
  614. this.textBox_WheelSize.TabIndex = 2;
  615. //
  616. // label22
  617. //
  618. this.label22.AutoSize = true;
  619. this.label22.Location = new System.Drawing.Point(180, 249);
  620. this.label22.Name = "label22";
  621. this.label22.Size = new System.Drawing.Size(96, 21);
  622. this.label22.TabIndex = 0;
  623. this.label22.Text = "TURBO加速";
  624. //
  625. // textBox_NTC_Alarm
  626. //
  627. this.textBox_NTC_Alarm.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  628. this.textBox_NTC_Alarm.ForeColor = System.Drawing.Color.Black;
  629. this.textBox_NTC_Alarm.ImeMode = System.Windows.Forms.ImeMode.Disable;
  630. this.textBox_NTC_Alarm.Location = new System.Drawing.Point(288, 101);
  631. this.textBox_NTC_Alarm.Name = "textBox_NTC_Alarm";
  632. this.textBox_NTC_Alarm.Size = new System.Drawing.Size(70, 29);
  633. this.textBox_NTC_Alarm.TabIndex = 2;
  634. //
  635. // label25
  636. //
  637. this.label25.AutoSize = true;
  638. this.label25.Location = new System.Drawing.Point(180, 285);
  639. this.label25.Name = "label25";
  640. this.label25.Size = new System.Drawing.Size(74, 21);
  641. this.label25.TabIndex = 0;
  642. this.label25.Text = "车速级数";
  643. //
  644. // label48
  645. //
  646. this.label48.AutoSize = true;
  647. this.label48.Location = new System.Drawing.Point(180, 357);
  648. this.label48.Name = "label48";
  649. this.label48.Size = new System.Drawing.Size(74, 21);
  650. this.label48.TabIndex = 0;
  651. this.label48.Text = "推行限速";
  652. //
  653. // textBox_MaxCurrent
  654. //
  655. this.textBox_MaxCurrent.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
  656. this.textBox_MaxCurrent.ForeColor = System.Drawing.Color.Black;
  657. this.textBox_MaxCurrent.ImeMode = System.Windows.Forms.ImeMode.Disable;
  658. this.textBox_MaxCurrent.Location = new System.Drawing.Point(105, 101);
  659. this.textBox_MaxCurrent.Name = "textBox_MaxCurrent";
  660. this.textBox_MaxCurrent.Size = new System.Drawing.Size(70, 29);
  661. this.textBox_MaxCurrent.TabIndex = 2;
  662. //
  663. // textBox_Dec
  664. //
  665. this.textBox_Dec.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  666. this.textBox_Dec.ForeColor = System.Drawing.Color.Black;
  667. this.textBox_Dec.ImeMode = System.Windows.Forms.ImeMode.Disable;
  668. this.textBox_Dec.Location = new System.Drawing.Point(105, 65);
  669. this.textBox_Dec.Name = "textBox_Dec";
  670. this.textBox_Dec.Size = new System.Drawing.Size(70, 29);
  671. this.textBox_Dec.TabIndex = 2;
  672. //
  673. // textBox_T_Front
  674. //
  675. this.textBox_T_Front.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  676. this.textBox_T_Front.ForeColor = System.Drawing.Color.Black;
  677. this.textBox_T_Front.ImeMode = System.Windows.Forms.ImeMode.Disable;
  678. this.textBox_T_Front.Location = new System.Drawing.Point(288, 65);
  679. this.textBox_T_Front.Name = "textBox_T_Front";
  680. this.textBox_T_Front.Size = new System.Drawing.Size(70, 29);
  681. this.textBox_T_Front.TabIndex = 2;
  682. //
  683. // label28
  684. //
  685. this.label28.AutoSize = true;
  686. this.label28.Location = new System.Drawing.Point(180, 321);
  687. this.label28.Name = "label28";
  688. this.label28.Size = new System.Drawing.Size(106, 21);
  689. this.label28.TabIndex = 0;
  690. this.label28.Text = "速度信号来源";
  691. //
  692. // textBox_StopTime
  693. //
  694. this.textBox_StopTime.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  695. this.textBox_StopTime.ForeColor = System.Drawing.Color.Black;
  696. this.textBox_StopTime.ImeMode = System.Windows.Forms.ImeMode.Disable;
  697. this.textBox_StopTime.Location = new System.Drawing.Point(288, 29);
  698. this.textBox_StopTime.Name = "textBox_StopTime";
  699. this.textBox_StopTime.Size = new System.Drawing.Size(70, 29);
  700. this.textBox_StopTime.TabIndex = 2;
  701. //
  702. // label5
  703. //
  704. this.label5.AutoSize = true;
  705. this.label5.Location = new System.Drawing.Point(363, 33);
  706. this.label5.Name = "label5";
  707. this.label5.Size = new System.Drawing.Size(58, 21);
  708. this.label5.TabIndex = 0;
  709. this.label5.Text = "限速值";
  710. //
  711. // comboBox_SpeedSensor
  712. //
  713. this.comboBox_SpeedSensor.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  714. this.comboBox_SpeedSensor.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  715. this.comboBox_SpeedSensor.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  716. this.comboBox_SpeedSensor.ForeColor = System.Drawing.Color.Black;
  717. this.comboBox_SpeedSensor.FormattingEnabled = true;
  718. this.comboBox_SpeedSensor.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  719. this.comboBox_SpeedSensor.Items.AddRange(new object[] {
  720. "传感器",
  721. "踏频",
  722. "通信"});
  723. this.comboBox_SpeedSensor.Location = new System.Drawing.Point(288, 317);
  724. this.comboBox_SpeedSensor.Name = "comboBox_SpeedSensor";
  725. this.comboBox_SpeedSensor.Size = new System.Drawing.Size(70, 29);
  726. this.comboBox_SpeedSensor.TabIndex = 1;
  727. //
  728. // comboBox_GasMode
  729. //
  730. this.comboBox_GasMode.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  731. this.comboBox_GasMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  732. this.comboBox_GasMode.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  733. this.comboBox_GasMode.ForeColor = System.Drawing.Color.Black;
  734. this.comboBox_GasMode.FormattingEnabled = true;
  735. this.comboBox_GasMode.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  736. this.comboBox_GasMode.Items.AddRange(new object[] {
  737. "不支持",
  738. "支持"});
  739. this.comboBox_GasMode.Location = new System.Drawing.Point(105, 317);
  740. this.comboBox_GasMode.Name = "comboBox_GasMode";
  741. this.comboBox_GasMode.Size = new System.Drawing.Size(70, 29);
  742. this.comboBox_GasMode.TabIndex = 1;
  743. //
  744. // label8
  745. //
  746. this.label8.AutoSize = true;
  747. this.label8.Location = new System.Drawing.Point(363, 69);
  748. this.label8.Name = "label8";
  749. this.label8.Size = new System.Drawing.Size(42, 21);
  750. this.label8.TabIndex = 0;
  751. this.label8.Text = "后飞";
  752. //
  753. // label11
  754. //
  755. this.label11.AutoSize = true;
  756. this.label11.Location = new System.Drawing.Point(363, 105);
  757. this.label11.Name = "label11";
  758. this.label11.Size = new System.Drawing.Size(74, 21);
  759. this.label11.TabIndex = 0;
  760. this.label11.Text = "温度保护";
  761. //
  762. // label14
  763. //
  764. this.label14.AutoSize = true;
  765. this.label14.Location = new System.Drawing.Point(363, 141);
  766. this.label14.Name = "label14";
  767. this.label14.Size = new System.Drawing.Size(58, 21);
  768. this.label14.TabIndex = 0;
  769. this.label14.Text = "系列号";
  770. //
  771. // label17
  772. //
  773. this.label17.AutoSize = true;
  774. this.label17.Location = new System.Drawing.Point(363, 177);
  775. this.label17.Name = "label17";
  776. this.label17.Size = new System.Drawing.Size(94, 21);
  777. this.label17.TabIndex = 0;
  778. this.label17.Text = "NORM增益";
  779. //
  780. // label20
  781. //
  782. this.label20.AutoSize = true;
  783. this.label20.Location = new System.Drawing.Point(363, 213);
  784. this.label20.Name = "label20";
  785. this.label20.Size = new System.Drawing.Size(93, 21);
  786. this.label20.TabIndex = 0;
  787. this.label20.Text = "SPORT加速";
  788. //
  789. // comboBox_NoPBU
  790. //
  791. this.comboBox_NoPBU.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  792. this.comboBox_NoPBU.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  793. this.comboBox_NoPBU.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  794. this.comboBox_NoPBU.ForeColor = System.Drawing.Color.Black;
  795. this.comboBox_NoPBU.FormattingEnabled = true;
  796. this.comboBox_NoPBU.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  797. this.comboBox_NoPBU.Items.AddRange(new object[] {
  798. "无",
  799. "有"});
  800. this.comboBox_NoPBU.Location = new System.Drawing.Point(105, 137);
  801. this.comboBox_NoPBU.Name = "comboBox_NoPBU";
  802. this.comboBox_NoPBU.Size = new System.Drawing.Size(70, 29);
  803. this.comboBox_NoPBU.TabIndex = 1;
  804. //
  805. // label23
  806. //
  807. this.label23.AutoSize = true;
  808. this.label23.Location = new System.Drawing.Point(363, 249);
  809. this.label23.Name = "label23";
  810. this.label23.Size = new System.Drawing.Size(97, 21);
  811. this.label23.TabIndex = 0;
  812. this.label23.Text = "SMART增益";
  813. //
  814. // label26
  815. //
  816. this.label26.AutoSize = true;
  817. this.label26.Location = new System.Drawing.Point(363, 285);
  818. this.label26.Name = "label26";
  819. this.label26.Size = new System.Drawing.Size(74, 21);
  820. this.label26.TabIndex = 0;
  821. this.label26.Text = "踏频启动";
  822. //
  823. // label47
  824. //
  825. this.label47.AutoSize = true;
  826. this.label47.Location = new System.Drawing.Point(363, 357);
  827. this.label47.Name = "label47";
  828. this.label47.Size = new System.Drawing.Size(74, 21);
  829. this.label47.TabIndex = 0;
  830. this.label47.Text = "推行转速";
  831. //
  832. // label29
  833. //
  834. this.label29.AutoSize = true;
  835. this.label29.Location = new System.Drawing.Point(363, 321);
  836. this.label29.Name = "label29";
  837. this.label29.Size = new System.Drawing.Size(74, 21);
  838. this.label29.TabIndex = 0;
  839. this.label29.Text = "周长微调";
  840. //
  841. // comboBox_StartMode
  842. //
  843. this.comboBox_StartMode.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  844. this.comboBox_StartMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  845. this.comboBox_StartMode.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  846. this.comboBox_StartMode.ForeColor = System.Drawing.Color.Black;
  847. this.comboBox_StartMode.FormattingEnabled = true;
  848. this.comboBox_StartMode.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  849. this.comboBox_StartMode.Items.AddRange(new object[] {
  850. "柔和",
  851. "正常",
  852. "强劲"});
  853. this.comboBox_StartMode.Location = new System.Drawing.Point(105, 29);
  854. this.comboBox_StartMode.Name = "comboBox_StartMode";
  855. this.comboBox_StartMode.Size = new System.Drawing.Size(70, 29);
  856. this.comboBox_StartMode.TabIndex = 1;
  857. //
  858. // groupBox3
  859. //
  860. this.groupBox3.Controls.Add(this.label59);
  861. this.groupBox3.Controls.Add(this.label58);
  862. this.groupBox3.Controls.Add(this.label3);
  863. this.groupBox3.Controls.Add(this.comboBox_TailLightVol);
  864. this.groupBox3.Controls.Add(this.label46);
  865. this.groupBox3.Controls.Add(this.comboBox_HeadLightVol);
  866. this.groupBox3.Controls.Add(this.textBox_Angle_R);
  867. this.groupBox3.Controls.Add(this.comboBox_LightMode);
  868. this.groupBox3.Controls.Add(this.label44);
  869. this.groupBox3.Controls.Add(this.comboBox_AstSensor);
  870. this.groupBox3.Controls.Add(this.label45);
  871. this.groupBox3.Controls.Add(this.textBox_Angle_P);
  872. this.groupBox3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  873. this.groupBox3.Location = new System.Drawing.Point(12, 413);
  874. this.groupBox3.Name = "groupBox3";
  875. this.groupBox3.Size = new System.Drawing.Size(547, 139);
  876. this.groupBox3.TabIndex = 4;
  877. this.groupBox3.TabStop = false;
  878. this.groupBox3.Text = "用户参数2";
  879. //
  880. // label59
  881. //
  882. this.label59.AutoSize = true;
  883. this.label59.Location = new System.Drawing.Point(363, 71);
  884. this.label59.Name = "label59";
  885. this.label59.Size = new System.Drawing.Size(74, 21);
  886. this.label59.TabIndex = 0;
  887. this.label59.Text = "尾灯电压";
  888. //
  889. // label58
  890. //
  891. this.label58.AutoSize = true;
  892. this.label58.Location = new System.Drawing.Point(181, 71);
  893. this.label58.Name = "label58";
  894. this.label58.Size = new System.Drawing.Size(74, 21);
  895. this.label58.TabIndex = 0;
  896. this.label58.Text = "前灯电压";
  897. //
  898. // label3
  899. //
  900. this.label3.AutoSize = true;
  901. this.label3.Location = new System.Drawing.Point(6, 71);
  902. this.label3.Name = "label3";
  903. this.label3.Size = new System.Drawing.Size(74, 21);
  904. this.label3.TabIndex = 0;
  905. this.label3.Text = "尾灯模式";
  906. //
  907. // comboBox_TailLightVol
  908. //
  909. this.comboBox_TailLightVol.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  910. this.comboBox_TailLightVol.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  911. this.comboBox_TailLightVol.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  912. this.comboBox_TailLightVol.ForeColor = System.Drawing.Color.Black;
  913. this.comboBox_TailLightVol.FormattingEnabled = true;
  914. this.comboBox_TailLightVol.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  915. this.comboBox_TailLightVol.Items.AddRange(new object[] {
  916. "6V",
  917. "12V",
  918. "随电池",
  919. "硬件配置"});
  920. this.comboBox_TailLightVol.Location = new System.Drawing.Point(463, 67);
  921. this.comboBox_TailLightVol.Name = "comboBox_TailLightVol";
  922. this.comboBox_TailLightVol.Size = new System.Drawing.Size(70, 29);
  923. this.comboBox_TailLightVol.TabIndex = 1;
  924. //
  925. // label46
  926. //
  927. this.label46.AutoSize = true;
  928. this.label46.Location = new System.Drawing.Point(6, 34);
  929. this.label46.Name = "label46";
  930. this.label46.Size = new System.Drawing.Size(90, 21);
  931. this.label46.TabIndex = 0;
  932. this.label46.Text = "姿态传感器";
  933. //
  934. // comboBox_HeadLightVol
  935. //
  936. this.comboBox_HeadLightVol.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  937. this.comboBox_HeadLightVol.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  938. this.comboBox_HeadLightVol.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  939. this.comboBox_HeadLightVol.ForeColor = System.Drawing.Color.Black;
  940. this.comboBox_HeadLightVol.FormattingEnabled = true;
  941. this.comboBox_HeadLightVol.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  942. this.comboBox_HeadLightVol.Items.AddRange(new object[] {
  943. "6V",
  944. "12V",
  945. "随电池",
  946. "硬件配置"});
  947. this.comboBox_HeadLightVol.Location = new System.Drawing.Point(288, 67);
  948. this.comboBox_HeadLightVol.Name = "comboBox_HeadLightVol";
  949. this.comboBox_HeadLightVol.Size = new System.Drawing.Size(70, 29);
  950. this.comboBox_HeadLightVol.TabIndex = 1;
  951. //
  952. // textBox_Angle_R
  953. //
  954. this.textBox_Angle_R.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  955. this.textBox_Angle_R.ForeColor = System.Drawing.Color.Black;
  956. this.textBox_Angle_R.ImeMode = System.Windows.Forms.ImeMode.Disable;
  957. this.textBox_Angle_R.Location = new System.Drawing.Point(463, 30);
  958. this.textBox_Angle_R.Name = "textBox_Angle_R";
  959. this.textBox_Angle_R.Size = new System.Drawing.Size(70, 29);
  960. this.textBox_Angle_R.TabIndex = 2;
  961. //
  962. // comboBox_LightMode
  963. //
  964. this.comboBox_LightMode.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  965. this.comboBox_LightMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  966. this.comboBox_LightMode.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  967. this.comboBox_LightMode.ForeColor = System.Drawing.Color.Black;
  968. this.comboBox_LightMode.FormattingEnabled = true;
  969. this.comboBox_LightMode.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  970. this.comboBox_LightMode.Items.AddRange(new object[] {
  971. "模式 1",
  972. "模式 2",
  973. "模式 3",
  974. "模式 4"});
  975. this.comboBox_LightMode.Location = new System.Drawing.Point(105, 67);
  976. this.comboBox_LightMode.Name = "comboBox_LightMode";
  977. this.comboBox_LightMode.Size = new System.Drawing.Size(70, 29);
  978. this.comboBox_LightMode.TabIndex = 1;
  979. //
  980. // label44
  981. //
  982. this.label44.AutoSize = true;
  983. this.label44.Location = new System.Drawing.Point(363, 34);
  984. this.label44.Name = "label44";
  985. this.label44.Size = new System.Drawing.Size(90, 21);
  986. this.label44.TabIndex = 0;
  987. this.label44.Text = "横滚角零偏";
  988. //
  989. // comboBox_AstSensor
  990. //
  991. this.comboBox_AstSensor.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  992. this.comboBox_AstSensor.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  993. this.comboBox_AstSensor.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  994. this.comboBox_AstSensor.ForeColor = System.Drawing.Color.Black;
  995. this.comboBox_AstSensor.FormattingEnabled = true;
  996. this.comboBox_AstSensor.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  997. this.comboBox_AstSensor.Items.AddRange(new object[] {
  998. "不支持",
  999. "支持"});
  1000. this.comboBox_AstSensor.Location = new System.Drawing.Point(105, 30);
  1001. this.comboBox_AstSensor.Name = "comboBox_AstSensor";
  1002. this.comboBox_AstSensor.Size = new System.Drawing.Size(70, 29);
  1003. this.comboBox_AstSensor.TabIndex = 1;
  1004. //
  1005. // label45
  1006. //
  1007. this.label45.AutoSize = true;
  1008. this.label45.Location = new System.Drawing.Point(180, 34);
  1009. this.label45.Name = "label45";
  1010. this.label45.Size = new System.Drawing.Size(90, 21);
  1011. this.label45.TabIndex = 0;
  1012. this.label45.Text = "俯仰角零偏";
  1013. //
  1014. // textBox_Angle_P
  1015. //
  1016. this.textBox_Angle_P.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  1017. this.textBox_Angle_P.ForeColor = System.Drawing.Color.Black;
  1018. this.textBox_Angle_P.ImeMode = System.Windows.Forms.ImeMode.Disable;
  1019. this.textBox_Angle_P.Location = new System.Drawing.Point(288, 30);
  1020. this.textBox_Angle_P.Name = "textBox_Angle_P";
  1021. this.textBox_Angle_P.Size = new System.Drawing.Size(70, 29);
  1022. this.textBox_Angle_P.TabIndex = 2;
  1023. //
  1024. // groupBox7
  1025. //
  1026. this.groupBox7.Controls.Add(this.label43);
  1027. this.groupBox7.Controls.Add(this.label42);
  1028. this.groupBox7.Controls.Add(this.textBox_Info2);
  1029. this.groupBox7.Controls.Add(this.label41);
  1030. this.groupBox7.Controls.Add(this.textBox_Info1);
  1031. this.groupBox7.Controls.Add(this.textBox_Info3);
  1032. this.groupBox7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  1033. this.groupBox7.Location = new System.Drawing.Point(565, 413);
  1034. this.groupBox7.Name = "groupBox7";
  1035. this.groupBox7.Size = new System.Drawing.Size(334, 139);
  1036. this.groupBox7.TabIndex = 4;
  1037. this.groupBox7.TabStop = false;
  1038. this.groupBox7.Text = "自定义信息";
  1039. //
  1040. // label43
  1041. //
  1042. this.label43.AutoSize = true;
  1043. this.label43.Location = new System.Drawing.Point(6, 34);
  1044. this.label43.Name = "label43";
  1045. this.label43.Size = new System.Drawing.Size(51, 21);
  1046. this.label43.TabIndex = 0;
  1047. this.label43.Text = "信息1";
  1048. //
  1049. // label42
  1050. //
  1051. this.label42.AutoSize = true;
  1052. this.label42.Location = new System.Drawing.Point(6, 67);
  1053. this.label42.Name = "label42";
  1054. this.label42.Size = new System.Drawing.Size(51, 21);
  1055. this.label42.TabIndex = 0;
  1056. this.label42.Text = "信息2";
  1057. //
  1058. // textBox_Info2
  1059. //
  1060. this.textBox_Info2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  1061. this.textBox_Info2.ForeColor = System.Drawing.Color.Black;
  1062. this.textBox_Info2.Location = new System.Drawing.Point(82, 63);
  1063. this.textBox_Info2.Name = "textBox_Info2";
  1064. this.textBox_Info2.Size = new System.Drawing.Size(246, 29);
  1065. this.textBox_Info2.TabIndex = 2;
  1066. //
  1067. // label41
  1068. //
  1069. this.label41.AutoSize = true;
  1070. this.label41.Location = new System.Drawing.Point(6, 100);
  1071. this.label41.Name = "label41";
  1072. this.label41.Size = new System.Drawing.Size(51, 21);
  1073. this.label41.TabIndex = 0;
  1074. this.label41.Text = "信息3";
  1075. //
  1076. // textBox_Info1
  1077. //
  1078. this.textBox_Info1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  1079. this.textBox_Info1.ForeColor = System.Drawing.Color.Black;
  1080. this.textBox_Info1.Location = new System.Drawing.Point(82, 30);
  1081. this.textBox_Info1.Name = "textBox_Info1";
  1082. this.textBox_Info1.Size = new System.Drawing.Size(246, 29);
  1083. this.textBox_Info1.TabIndex = 2;
  1084. //
  1085. // textBox_Info3
  1086. //
  1087. this.textBox_Info3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  1088. this.textBox_Info3.ForeColor = System.Drawing.Color.Black;
  1089. this.textBox_Info3.Location = new System.Drawing.Point(82, 96);
  1090. this.textBox_Info3.Name = "textBox_Info3";
  1091. this.textBox_Info3.Size = new System.Drawing.Size(246, 29);
  1092. this.textBox_Info3.TabIndex = 2;
  1093. //
  1094. // groupBox4
  1095. //
  1096. this.groupBox4.BackColor = System.Drawing.SystemColors.Window;
  1097. this.groupBox4.Controls.Add(this.label35);
  1098. this.groupBox4.Controls.Add(this.label30);
  1099. this.groupBox4.Controls.Add(this.label31);
  1100. this.groupBox4.Controls.Add(this.label32);
  1101. this.groupBox4.Controls.Add(this.textBox_RatePower);
  1102. this.groupBox4.Controls.Add(this.textBox_RotorR);
  1103. this.groupBox4.Controls.Add(this.textBox_Rate_Vol);
  1104. this.groupBox4.Controls.Add(this.textBox_Rotor_Ld);
  1105. this.groupBox4.Controls.Add(this.label36);
  1106. this.groupBox4.Controls.Add(this.label33);
  1107. this.groupBox4.Controls.Add(this.label34);
  1108. this.groupBox4.Controls.Add(this.textBox_RateSpeed);
  1109. this.groupBox4.Controls.Add(this.textBox_Rotor_Lq);
  1110. this.groupBox4.Controls.Add(this.textBox_E);
  1111. this.groupBox4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  1112. this.groupBox4.Location = new System.Drawing.Point(565, 12);
  1113. this.groupBox4.Name = "groupBox4";
  1114. this.groupBox4.Size = new System.Drawing.Size(334, 181);
  1115. this.groupBox4.TabIndex = 4;
  1116. this.groupBox4.TabStop = false;
  1117. this.groupBox4.Text = "马达参数";
  1118. //
  1119. // label35
  1120. //
  1121. this.label35.AutoSize = true;
  1122. this.label35.Location = new System.Drawing.Point(6, 33);
  1123. this.label35.Name = "label35";
  1124. this.label35.Size = new System.Drawing.Size(74, 21);
  1125. this.label35.TabIndex = 0;
  1126. this.label35.Text = "额定功率";
  1127. //
  1128. // label30
  1129. //
  1130. this.label30.AutoSize = true;
  1131. this.label30.Location = new System.Drawing.Point(168, 105);
  1132. this.label30.Name = "label30";
  1133. this.label30.Size = new System.Drawing.Size(74, 21);
  1134. this.label30.TabIndex = 0;
  1135. this.label30.Text = "反电动势";
  1136. //
  1137. // label31
  1138. //
  1139. this.label31.AutoSize = true;
  1140. this.label31.Location = new System.Drawing.Point(168, 69);
  1141. this.label31.Name = "label31";
  1142. this.label31.Size = new System.Drawing.Size(60, 21);
  1143. this.label31.TabIndex = 0;
  1144. this.label31.Text = "定子Lq";
  1145. //
  1146. // label32
  1147. //
  1148. this.label32.AutoSize = true;
  1149. this.label32.Location = new System.Drawing.Point(168, 33);
  1150. this.label32.Name = "label32";
  1151. this.label32.Size = new System.Drawing.Size(74, 21);
  1152. this.label32.TabIndex = 0;
  1153. this.label32.Text = "额定转速";
  1154. //
  1155. // textBox_RatePower
  1156. //
  1157. this.textBox_RatePower.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
  1158. this.textBox_RatePower.ForeColor = System.Drawing.Color.Black;
  1159. this.textBox_RatePower.ImeMode = System.Windows.Forms.ImeMode.Disable;
  1160. this.textBox_RatePower.Location = new System.Drawing.Point(82, 29);
  1161. this.textBox_RatePower.Name = "textBox_RatePower";
  1162. this.textBox_RatePower.Size = new System.Drawing.Size(80, 29);
  1163. this.textBox_RatePower.TabIndex = 2;
  1164. //
  1165. // textBox_RotorR
  1166. //
  1167. this.textBox_RotorR.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  1168. this.textBox_RotorR.ForeColor = System.Drawing.Color.Black;
  1169. this.textBox_RotorR.ImeMode = System.Windows.Forms.ImeMode.Disable;
  1170. this.textBox_RotorR.Location = new System.Drawing.Point(82, 65);
  1171. this.textBox_RotorR.Name = "textBox_RotorR";
  1172. this.textBox_RotorR.Size = new System.Drawing.Size(80, 29);
  1173. this.textBox_RotorR.TabIndex = 2;
  1174. //
  1175. // textBox_Rate_Vol
  1176. //
  1177. this.textBox_Rate_Vol.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
  1178. this.textBox_Rate_Vol.ForeColor = System.Drawing.Color.Black;
  1179. this.textBox_Rate_Vol.ImeMode = System.Windows.Forms.ImeMode.Disable;
  1180. this.textBox_Rate_Vol.Location = new System.Drawing.Point(82, 137);
  1181. this.textBox_Rate_Vol.Name = "textBox_Rate_Vol";
  1182. this.textBox_Rate_Vol.Size = new System.Drawing.Size(80, 29);
  1183. this.textBox_Rate_Vol.TabIndex = 2;
  1184. //
  1185. // textBox_Rotor_Ld
  1186. //
  1187. this.textBox_Rotor_Ld.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  1188. this.textBox_Rotor_Ld.ForeColor = System.Drawing.Color.Black;
  1189. this.textBox_Rotor_Ld.ImeMode = System.Windows.Forms.ImeMode.Disable;
  1190. this.textBox_Rotor_Ld.Location = new System.Drawing.Point(82, 101);
  1191. this.textBox_Rotor_Ld.Name = "textBox_Rotor_Ld";
  1192. this.textBox_Rotor_Ld.Size = new System.Drawing.Size(80, 29);
  1193. this.textBox_Rotor_Ld.TabIndex = 2;
  1194. //
  1195. // label36
  1196. //
  1197. this.label36.AutoSize = true;
  1198. this.label36.Location = new System.Drawing.Point(6, 141);
  1199. this.label36.Name = "label36";
  1200. this.label36.Size = new System.Drawing.Size(74, 21);
  1201. this.label36.TabIndex = 0;
  1202. this.label36.Text = "额定电压";
  1203. //
  1204. // label33
  1205. //
  1206. this.label33.AutoSize = true;
  1207. this.label33.Location = new System.Drawing.Point(6, 105);
  1208. this.label33.Name = "label33";
  1209. this.label33.Size = new System.Drawing.Size(60, 21);
  1210. this.label33.TabIndex = 0;
  1211. this.label33.Text = "定子Ld";
  1212. //
  1213. // label34
  1214. //
  1215. this.label34.AutoSize = true;
  1216. this.label34.Location = new System.Drawing.Point(6, 69);
  1217. this.label34.Name = "label34";
  1218. this.label34.Size = new System.Drawing.Size(74, 21);
  1219. this.label34.TabIndex = 0;
  1220. this.label34.Text = "定子电阻";
  1221. //
  1222. // textBox_RateSpeed
  1223. //
  1224. this.textBox_RateSpeed.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
  1225. this.textBox_RateSpeed.ForeColor = System.Drawing.Color.Black;
  1226. this.textBox_RateSpeed.ImeMode = System.Windows.Forms.ImeMode.Disable;
  1227. this.textBox_RateSpeed.Location = new System.Drawing.Point(248, 29);
  1228. this.textBox_RateSpeed.Name = "textBox_RateSpeed";
  1229. this.textBox_RateSpeed.Size = new System.Drawing.Size(80, 29);
  1230. this.textBox_RateSpeed.TabIndex = 2;
  1231. //
  1232. // textBox_Rotor_Lq
  1233. //
  1234. this.textBox_Rotor_Lq.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  1235. this.textBox_Rotor_Lq.ForeColor = System.Drawing.Color.Black;
  1236. this.textBox_Rotor_Lq.ImeMode = System.Windows.Forms.ImeMode.Disable;
  1237. this.textBox_Rotor_Lq.Location = new System.Drawing.Point(248, 65);
  1238. this.textBox_Rotor_Lq.Name = "textBox_Rotor_Lq";
  1239. this.textBox_Rotor_Lq.Size = new System.Drawing.Size(80, 29);
  1240. this.textBox_Rotor_Lq.TabIndex = 2;
  1241. //
  1242. // textBox_E
  1243. //
  1244. this.textBox_E.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  1245. this.textBox_E.ForeColor = System.Drawing.Color.Black;
  1246. this.textBox_E.ImeMode = System.Windows.Forms.ImeMode.Disable;
  1247. this.textBox_E.Location = new System.Drawing.Point(248, 101);
  1248. this.textBox_E.Name = "textBox_E";
  1249. this.textBox_E.Size = new System.Drawing.Size(80, 29);
  1250. this.textBox_E.TabIndex = 2;
  1251. //
  1252. // groupBox5
  1253. //
  1254. this.groupBox5.Controls.Add(this.label37);
  1255. this.groupBox5.Controls.Add(this.textBox_Secrect);
  1256. this.groupBox5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  1257. this.groupBox5.Location = new System.Drawing.Point(565, 340);
  1258. this.groupBox5.Name = "groupBox5";
  1259. this.groupBox5.Size = new System.Drawing.Size(334, 68);
  1260. this.groupBox5.TabIndex = 4;
  1261. this.groupBox5.TabStop = false;
  1262. this.groupBox5.Text = "校验密钥";
  1263. //
  1264. // label37
  1265. //
  1266. this.label37.AutoSize = true;
  1267. this.label37.Location = new System.Drawing.Point(6, 26);
  1268. this.label37.Name = "label37";
  1269. this.label37.Size = new System.Drawing.Size(74, 21);
  1270. this.label37.TabIndex = 0;
  1271. this.label37.Text = "校验密钥";
  1272. //
  1273. // textBox_Secrect
  1274. //
  1275. this.textBox_Secrect.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  1276. this.textBox_Secrect.ForeColor = System.Drawing.Color.Black;
  1277. this.textBox_Secrect.ImeMode = System.Windows.Forms.ImeMode.Disable;
  1278. this.textBox_Secrect.Location = new System.Drawing.Point(82, 22);
  1279. this.textBox_Secrect.Name = "textBox_Secrect";
  1280. this.textBox_Secrect.Size = new System.Drawing.Size(246, 29);
  1281. this.textBox_Secrect.TabIndex = 2;
  1282. //
  1283. // groupBox6
  1284. //
  1285. this.groupBox6.Controls.Add(this.label40);
  1286. this.groupBox6.Controls.Add(this.label38);
  1287. this.groupBox6.Controls.Add(this.label39);
  1288. this.groupBox6.Controls.Add(this.textBox_Mac_Date);
  1289. this.groupBox6.Controls.Add(this.textBox_Mac);
  1290. this.groupBox6.Controls.Add(this.textBox_Mac_Addr);
  1291. this.groupBox6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  1292. this.groupBox6.Location = new System.Drawing.Point(565, 199);
  1293. this.groupBox6.Name = "groupBox6";
  1294. this.groupBox6.Size = new System.Drawing.Size(334, 135);
  1295. this.groupBox6.TabIndex = 4;
  1296. this.groupBox6.TabStop = false;
  1297. this.groupBox6.Text = "生产信息";
  1298. //
  1299. // label40
  1300. //
  1301. this.label40.AutoSize = true;
  1302. this.label40.Location = new System.Drawing.Point(6, 26);
  1303. this.label40.Name = "label40";
  1304. this.label40.Size = new System.Drawing.Size(58, 21);
  1305. this.label40.TabIndex = 0;
  1306. this.label40.Text = "生产商";
  1307. //
  1308. // label38
  1309. //
  1310. this.label38.AutoSize = true;
  1311. this.label38.Location = new System.Drawing.Point(6, 96);
  1312. this.label38.Name = "label38";
  1313. this.label38.Size = new System.Drawing.Size(74, 21);
  1314. this.label38.TabIndex = 0;
  1315. this.label38.Text = "生产时间";
  1316. //
  1317. // label39
  1318. //
  1319. this.label39.AutoSize = true;
  1320. this.label39.Location = new System.Drawing.Point(6, 61);
  1321. this.label39.Name = "label39";
  1322. this.label39.Size = new System.Drawing.Size(58, 21);
  1323. this.label39.TabIndex = 0;
  1324. this.label39.Text = "生产地";
  1325. //
  1326. // textBox_Mac_Date
  1327. //
  1328. this.textBox_Mac_Date.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
  1329. this.textBox_Mac_Date.ForeColor = System.Drawing.Color.Black;
  1330. this.textBox_Mac_Date.ImeMode = System.Windows.Forms.ImeMode.Disable;
  1331. this.textBox_Mac_Date.Location = new System.Drawing.Point(82, 92);
  1332. this.textBox_Mac_Date.Name = "textBox_Mac_Date";
  1333. this.textBox_Mac_Date.Size = new System.Drawing.Size(246, 29);
  1334. this.textBox_Mac_Date.TabIndex = 2;
  1335. //
  1336. // textBox_Mac
  1337. //
  1338. this.textBox_Mac.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
  1339. this.textBox_Mac.ForeColor = System.Drawing.Color.Black;
  1340. this.textBox_Mac.ImeMode = System.Windows.Forms.ImeMode.Disable;
  1341. this.textBox_Mac.Location = new System.Drawing.Point(82, 22);
  1342. this.textBox_Mac.Name = "textBox_Mac";
  1343. this.textBox_Mac.Size = new System.Drawing.Size(246, 29);
  1344. this.textBox_Mac.TabIndex = 2;
  1345. //
  1346. // textBox_Mac_Addr
  1347. //
  1348. this.textBox_Mac_Addr.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
  1349. this.textBox_Mac_Addr.ForeColor = System.Drawing.Color.Black;
  1350. this.textBox_Mac_Addr.ImeMode = System.Windows.Forms.ImeMode.Disable;
  1351. this.textBox_Mac_Addr.Location = new System.Drawing.Point(82, 57);
  1352. this.textBox_Mac_Addr.Name = "textBox_Mac_Addr";
  1353. this.textBox_Mac_Addr.Size = new System.Drawing.Size(246, 29);
  1354. this.textBox_Mac_Addr.TabIndex = 2;
  1355. //
  1356. // button_Generate
  1357. //
  1358. this.button_Generate.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  1359. this.button_Generate.ForeColor = System.Drawing.Color.White;
  1360. this.button_Generate.Location = new System.Drawing.Point(1025, 560);
  1361. this.button_Generate.Name = "button_Generate";
  1362. this.button_Generate.Size = new System.Drawing.Size(80, 41);
  1363. this.button_Generate.TabIndex = 6;
  1364. this.button_Generate.Text = "生成";
  1365. this.button_Generate.UseVisualStyleBackColor = false;
  1366. this.button_Generate.Click += new System.EventHandler(this.button_Generate_Click);
  1367. //
  1368. // button_Default
  1369. //
  1370. this.button_Default.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  1371. this.button_Default.ForeColor = System.Drawing.Color.White;
  1372. this.button_Default.Location = new System.Drawing.Point(905, 560);
  1373. this.button_Default.Name = "button_Default";
  1374. this.button_Default.Size = new System.Drawing.Size(80, 41);
  1375. this.button_Default.TabIndex = 6;
  1376. this.button_Default.Text = "默认";
  1377. this.button_Default.UseVisualStyleBackColor = false;
  1378. this.button_Default.Click += new System.EventHandler(this.button_Default_Click);
  1379. //
  1380. // groupBox1
  1381. //
  1382. this.groupBox1.Controls.Add(this.label53);
  1383. this.groupBox1.Controls.Add(this.label57);
  1384. this.groupBox1.Controls.Add(this.label52);
  1385. this.groupBox1.Controls.Add(this.label51);
  1386. this.groupBox1.Controls.Add(this.textBox_Remark);
  1387. this.groupBox1.Controls.Add(this.textBox_TE_FW_Version);
  1388. this.groupBox1.Controls.Add(this.label50);
  1389. this.groupBox1.Controls.Add(this.textBox_FW_Version);
  1390. this.groupBox1.Controls.Add(this.textBox_Client);
  1391. this.groupBox1.Controls.Add(this.textBox_Model);
  1392. this.groupBox1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  1393. this.groupBox1.Location = new System.Drawing.Point(905, 12);
  1394. this.groupBox1.Name = "groupBox1";
  1395. this.groupBox1.Size = new System.Drawing.Size(200, 322);
  1396. this.groupBox1.TabIndex = 4;
  1397. this.groupBox1.TabStop = false;
  1398. this.groupBox1.Text = "文件信息";
  1399. //
  1400. // label53
  1401. //
  1402. this.label53.AutoSize = true;
  1403. this.label53.Location = new System.Drawing.Point(61, 249);
  1404. this.label53.Name = "label53";
  1405. this.label53.Size = new System.Drawing.Size(74, 21);
  1406. this.label53.TabIndex = 0;
  1407. this.label53.Text = "备注信息";
  1408. //
  1409. // label57
  1410. //
  1411. this.label57.AutoSize = true;
  1412. this.label57.Location = new System.Drawing.Point(52, 195);
  1413. this.label57.Name = "label57";
  1414. this.label57.Size = new System.Drawing.Size(92, 21);
  1415. this.label57.TabIndex = 0;
  1416. this.label57.Text = "TE软件版本";
  1417. //
  1418. // label52
  1419. //
  1420. this.label52.AutoSize = true;
  1421. this.label52.Location = new System.Drawing.Point(45, 141);
  1422. this.label52.Name = "label52";
  1423. this.label52.Size = new System.Drawing.Size(106, 21);
  1424. this.label52.TabIndex = 0;
  1425. this.label52.Text = "主控软件版本";
  1426. //
  1427. // label51
  1428. //
  1429. this.label51.AutoSize = true;
  1430. this.label51.Location = new System.Drawing.Point(69, 87);
  1431. this.label51.Name = "label51";
  1432. this.label51.Size = new System.Drawing.Size(58, 21);
  1433. this.label51.TabIndex = 0;
  1434. this.label51.Text = "订单号";
  1435. //
  1436. // textBox_Remark
  1437. //
  1438. this.textBox_Remark.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1439. this.textBox_Remark.ForeColor = System.Drawing.Color.Black;
  1440. this.textBox_Remark.Location = new System.Drawing.Point(7, 272);
  1441. this.textBox_Remark.Name = "textBox_Remark";
  1442. this.textBox_Remark.Size = new System.Drawing.Size(183, 29);
  1443. this.textBox_Remark.TabIndex = 2;
  1444. //
  1445. // textBox_TE_FW_Version
  1446. //
  1447. this.textBox_TE_FW_Version.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  1448. this.textBox_TE_FW_Version.ForeColor = System.Drawing.Color.Black;
  1449. this.textBox_TE_FW_Version.ImeMode = System.Windows.Forms.ImeMode.Disable;
  1450. this.textBox_TE_FW_Version.Location = new System.Drawing.Point(7, 218);
  1451. this.textBox_TE_FW_Version.Name = "textBox_TE_FW_Version";
  1452. this.textBox_TE_FW_Version.Size = new System.Drawing.Size(183, 29);
  1453. this.textBox_TE_FW_Version.TabIndex = 2;
  1454. //
  1455. // label50
  1456. //
  1457. this.label50.AutoSize = true;
  1458. this.label50.Location = new System.Drawing.Point(61, 33);
  1459. this.label50.Name = "label50";
  1460. this.label50.Size = new System.Drawing.Size(74, 21);
  1461. this.label50.TabIndex = 0;
  1462. this.label50.Text = "电机型号";
  1463. //
  1464. // textBox_FW_Version
  1465. //
  1466. this.textBox_FW_Version.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  1467. this.textBox_FW_Version.ForeColor = System.Drawing.Color.Black;
  1468. this.textBox_FW_Version.ImeMode = System.Windows.Forms.ImeMode.Disable;
  1469. this.textBox_FW_Version.Location = new System.Drawing.Point(7, 164);
  1470. this.textBox_FW_Version.Name = "textBox_FW_Version";
  1471. this.textBox_FW_Version.Size = new System.Drawing.Size(183, 29);
  1472. this.textBox_FW_Version.TabIndex = 2;
  1473. //
  1474. // textBox_Client
  1475. //
  1476. this.textBox_Client.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  1477. this.textBox_Client.ForeColor = System.Drawing.Color.Black;
  1478. this.textBox_Client.ImeMode = System.Windows.Forms.ImeMode.Disable;
  1479. this.textBox_Client.Location = new System.Drawing.Point(7, 110);
  1480. this.textBox_Client.Name = "textBox_Client";
  1481. this.textBox_Client.Size = new System.Drawing.Size(183, 29);
  1482. this.textBox_Client.TabIndex = 2;
  1483. //
  1484. // textBox_Model
  1485. //
  1486. this.textBox_Model.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  1487. this.textBox_Model.ForeColor = System.Drawing.Color.Black;
  1488. this.textBox_Model.ImeMode = System.Windows.Forms.ImeMode.Disable;
  1489. this.textBox_Model.Location = new System.Drawing.Point(7, 56);
  1490. this.textBox_Model.Name = "textBox_Model";
  1491. this.textBox_Model.Size = new System.Drawing.Size(183, 29);
  1492. this.textBox_Model.TabIndex = 2;
  1493. this.textBox_Model.TextChanged += new System.EventHandler(this.textBox_Model_TextChanged);
  1494. //
  1495. // groupBox8
  1496. //
  1497. this.groupBox8.Controls.Add(this.label54);
  1498. this.groupBox8.Controls.Add(this.label62);
  1499. this.groupBox8.Controls.Add(this.textBox_Start_Max);
  1500. this.groupBox8.Controls.Add(this.label61);
  1501. this.groupBox8.Controls.Add(this.textBox_K_Max);
  1502. this.groupBox8.Controls.Add(this.textBox_Start_Min);
  1503. this.groupBox8.Controls.Add(this.label60);
  1504. this.groupBox8.Controls.Add(this.textBox_K_Min);
  1505. this.groupBox8.Controls.Add(this.textBox_Zero_Max);
  1506. this.groupBox8.Controls.Add(this.textBox_Zero_Min);
  1507. this.groupBox8.Controls.Add(this.label56);
  1508. this.groupBox8.Controls.Add(this.textBox_GasSpeedTh);
  1509. this.groupBox8.Controls.Add(this.label55);
  1510. this.groupBox8.Controls.Add(this.textBox_SpeedTh);
  1511. this.groupBox8.Controls.Add(this.textBox_NC_Current);
  1512. this.groupBox8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  1513. this.groupBox8.Location = new System.Drawing.Point(905, 340);
  1514. this.groupBox8.Name = "groupBox8";
  1515. this.groupBox8.Size = new System.Drawing.Size(200, 212);
  1516. this.groupBox8.TabIndex = 5;
  1517. this.groupBox8.TabStop = false;
  1518. this.groupBox8.Text = "测试阈值";
  1519. //
  1520. // label54
  1521. //
  1522. this.label54.AutoSize = true;
  1523. this.label54.Location = new System.Drawing.Point(6, 26);
  1524. this.label54.Name = "label54";
  1525. this.label54.Size = new System.Drawing.Size(74, 21);
  1526. this.label54.TabIndex = 0;
  1527. this.label54.Text = "空载电流";
  1528. //
  1529. // label62
  1530. //
  1531. this.label62.AutoSize = true;
  1532. this.label62.Location = new System.Drawing.Point(6, 180);
  1533. this.label62.Name = "label62";
  1534. this.label62.Size = new System.Drawing.Size(58, 21);
  1535. this.label62.TabIndex = 0;
  1536. this.label62.Text = "启动值";
  1537. //
  1538. // textBox_Start_Max
  1539. //
  1540. this.textBox_Start_Max.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
  1541. this.textBox_Start_Max.ForeColor = System.Drawing.Color.Black;
  1542. this.textBox_Start_Max.ImeMode = System.Windows.Forms.ImeMode.Disable;
  1543. this.textBox_Start_Max.Location = new System.Drawing.Point(140, 176);
  1544. this.textBox_Start_Max.Name = "textBox_Start_Max";
  1545. this.textBox_Start_Max.Size = new System.Drawing.Size(50, 29);
  1546. this.textBox_Start_Max.TabIndex = 2;
  1547. //
  1548. // label61
  1549. //
  1550. this.label61.AutoSize = true;
  1551. this.label61.Location = new System.Drawing.Point(6, 149);
  1552. this.label61.Name = "label61";
  1553. this.label61.Size = new System.Drawing.Size(74, 21);
  1554. this.label61.TabIndex = 0;
  1555. this.label61.Text = "标定系数";
  1556. //
  1557. // textBox_K_Max
  1558. //
  1559. this.textBox_K_Max.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
  1560. this.textBox_K_Max.ForeColor = System.Drawing.Color.Black;
  1561. this.textBox_K_Max.ImeMode = System.Windows.Forms.ImeMode.Disable;
  1562. this.textBox_K_Max.Location = new System.Drawing.Point(140, 145);
  1563. this.textBox_K_Max.Name = "textBox_K_Max";
  1564. this.textBox_K_Max.Size = new System.Drawing.Size(50, 29);
  1565. this.textBox_K_Max.TabIndex = 2;
  1566. //
  1567. // textBox_Start_Min
  1568. //
  1569. this.textBox_Start_Min.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
  1570. this.textBox_Start_Min.ForeColor = System.Drawing.Color.Black;
  1571. this.textBox_Start_Min.ImeMode = System.Windows.Forms.ImeMode.Disable;
  1572. this.textBox_Start_Min.Location = new System.Drawing.Point(82, 176);
  1573. this.textBox_Start_Min.Name = "textBox_Start_Min";
  1574. this.textBox_Start_Min.Size = new System.Drawing.Size(50, 29);
  1575. this.textBox_Start_Min.TabIndex = 2;
  1576. //
  1577. // label60
  1578. //
  1579. this.label60.AutoSize = true;
  1580. this.label60.Location = new System.Drawing.Point(6, 118);
  1581. this.label60.Name = "label60";
  1582. this.label60.Size = new System.Drawing.Size(42, 21);
  1583. this.label60.TabIndex = 0;
  1584. this.label60.Text = "零偏";
  1585. //
  1586. // textBox_K_Min
  1587. //
  1588. this.textBox_K_Min.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
  1589. this.textBox_K_Min.ForeColor = System.Drawing.Color.Black;
  1590. this.textBox_K_Min.ImeMode = System.Windows.Forms.ImeMode.Disable;
  1591. this.textBox_K_Min.Location = new System.Drawing.Point(82, 145);
  1592. this.textBox_K_Min.Name = "textBox_K_Min";
  1593. this.textBox_K_Min.Size = new System.Drawing.Size(50, 29);
  1594. this.textBox_K_Min.TabIndex = 2;
  1595. //
  1596. // textBox_Zero_Max
  1597. //
  1598. this.textBox_Zero_Max.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
  1599. this.textBox_Zero_Max.ForeColor = System.Drawing.Color.Black;
  1600. this.textBox_Zero_Max.ImeMode = System.Windows.Forms.ImeMode.Disable;
  1601. this.textBox_Zero_Max.Location = new System.Drawing.Point(140, 114);
  1602. this.textBox_Zero_Max.Name = "textBox_Zero_Max";
  1603. this.textBox_Zero_Max.Size = new System.Drawing.Size(50, 29);
  1604. this.textBox_Zero_Max.TabIndex = 2;
  1605. //
  1606. // textBox_Zero_Min
  1607. //
  1608. this.textBox_Zero_Min.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
  1609. this.textBox_Zero_Min.ForeColor = System.Drawing.Color.Black;
  1610. this.textBox_Zero_Min.ImeMode = System.Windows.Forms.ImeMode.Disable;
  1611. this.textBox_Zero_Min.Location = new System.Drawing.Point(82, 114);
  1612. this.textBox_Zero_Min.Name = "textBox_Zero_Min";
  1613. this.textBox_Zero_Min.Size = new System.Drawing.Size(50, 29);
  1614. this.textBox_Zero_Min.TabIndex = 2;
  1615. //
  1616. // label56
  1617. //
  1618. this.label56.AutoSize = true;
  1619. this.label56.Location = new System.Drawing.Point(6, 87);
  1620. this.label56.Name = "label56";
  1621. this.label56.Size = new System.Drawing.Size(74, 21);
  1622. this.label56.TabIndex = 0;
  1623. this.label56.Text = "指拨转速";
  1624. //
  1625. // textBox_GasSpeedTh
  1626. //
  1627. this.textBox_GasSpeedTh.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
  1628. this.textBox_GasSpeedTh.ForeColor = System.Drawing.Color.Black;
  1629. this.textBox_GasSpeedTh.ImeMode = System.Windows.Forms.ImeMode.Disable;
  1630. this.textBox_GasSpeedTh.Location = new System.Drawing.Point(82, 83);
  1631. this.textBox_GasSpeedTh.Name = "textBox_GasSpeedTh";
  1632. this.textBox_GasSpeedTh.Size = new System.Drawing.Size(108, 29);
  1633. this.textBox_GasSpeedTh.TabIndex = 2;
  1634. //
  1635. // label55
  1636. //
  1637. this.label55.AutoSize = true;
  1638. this.label55.Location = new System.Drawing.Point(6, 56);
  1639. this.label55.Name = "label55";
  1640. this.label55.Size = new System.Drawing.Size(42, 21);
  1641. this.label55.TabIndex = 0;
  1642. this.label55.Text = "车速";
  1643. //
  1644. // textBox_SpeedTh
  1645. //
  1646. this.textBox_SpeedTh.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
  1647. this.textBox_SpeedTh.ForeColor = System.Drawing.Color.Black;
  1648. this.textBox_SpeedTh.ImeMode = System.Windows.Forms.ImeMode.Disable;
  1649. this.textBox_SpeedTh.Location = new System.Drawing.Point(82, 52);
  1650. this.textBox_SpeedTh.Name = "textBox_SpeedTh";
  1651. this.textBox_SpeedTh.Size = new System.Drawing.Size(108, 29);
  1652. this.textBox_SpeedTh.TabIndex = 2;
  1653. //
  1654. // textBox_NC_Current
  1655. //
  1656. this.textBox_NC_Current.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
  1657. this.textBox_NC_Current.ForeColor = System.Drawing.Color.Black;
  1658. this.textBox_NC_Current.ImeMode = System.Windows.Forms.ImeMode.Disable;
  1659. this.textBox_NC_Current.Location = new System.Drawing.Point(82, 22);
  1660. this.textBox_NC_Current.Name = "textBox_NC_Current";
  1661. this.textBox_NC_Current.Size = new System.Drawing.Size(108, 29);
  1662. this.textBox_NC_Current.TabIndex = 2;
  1663. //
  1664. // pictureBox2
  1665. //
  1666. this.pictureBox2.Image = global::MOTINOVA_Motor_Factory_Set.Properties.Resources._836618239619717251;
  1667. this.pictureBox2.Location = new System.Drawing.Point(565, 558);
  1668. this.pictureBox2.Name = "pictureBox2";
  1669. this.pictureBox2.Size = new System.Drawing.Size(83, 43);
  1670. this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  1671. this.pictureBox2.TabIndex = 29;
  1672. this.pictureBox2.TabStop = false;
  1673. //
  1674. // pictureBox1
  1675. //
  1676. this.pictureBox1.Image = global::MOTINOVA_Motor_Factory_Set.Properties.Resources.title1;
  1677. this.pictureBox1.Location = new System.Drawing.Point(657, 568);
  1678. this.pictureBox1.Name = "pictureBox1";
  1679. this.pictureBox1.Size = new System.Drawing.Size(136, 33);
  1680. this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  1681. this.pictureBox1.TabIndex = 28;
  1682. this.pictureBox1.TabStop = false;
  1683. //
  1684. // button_keyboard
  1685. //
  1686. this.button_keyboard.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  1687. this.button_keyboard.ForeColor = System.Drawing.Color.White;
  1688. this.button_keyboard.Location = new System.Drawing.Point(465, 560);
  1689. this.button_keyboard.Name = "button_keyboard";
  1690. this.button_keyboard.Size = new System.Drawing.Size(94, 41);
  1691. this.button_keyboard.TabIndex = 35;
  1692. this.button_keyboard.Text = "屏幕键盘";
  1693. this.button_keyboard.UseVisualStyleBackColor = false;
  1694. this.button_keyboard.Click += new System.EventHandler(this.button_keyboard_Click);
  1695. //
  1696. // ExportForm
  1697. //
  1698. this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F);
  1699. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  1700. this.BackColor = System.Drawing.Color.White;
  1701. this.ClientSize = new System.Drawing.Size(1115, 608);
  1702. this.Controls.Add(this.button_keyboard);
  1703. this.Controls.Add(this.pictureBox2);
  1704. this.Controls.Add(this.pictureBox1);
  1705. this.Controls.Add(this.groupBox8);
  1706. this.Controls.Add(this.button_Default);
  1707. this.Controls.Add(this.button_Generate);
  1708. this.Controls.Add(this.groupBox1);
  1709. this.Controls.Add(this.groupBox5);
  1710. this.Controls.Add(this.groupBox7);
  1711. this.Controls.Add(this.groupBox6);
  1712. this.Controls.Add(this.groupBox3);
  1713. this.Controls.Add(this.groupBox4);
  1714. this.Controls.Add(this.groupBox2);
  1715. this.Controls.Add(this.label2);
  1716. this.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1717. this.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  1718. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
  1719. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  1720. this.Margin = new System.Windows.Forms.Padding(5);
  1721. this.MaximizeBox = false;
  1722. this.Name = "ExportForm";
  1723. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  1724. this.Text = "生成参数";
  1725. this.Load += new System.EventHandler(this.ExportForm_Load);
  1726. this.groupBox2.ResumeLayout(false);
  1727. this.groupBox2.PerformLayout();
  1728. this.groupBox3.ResumeLayout(false);
  1729. this.groupBox3.PerformLayout();
  1730. this.groupBox7.ResumeLayout(false);
  1731. this.groupBox7.PerformLayout();
  1732. this.groupBox4.ResumeLayout(false);
  1733. this.groupBox4.PerformLayout();
  1734. this.groupBox5.ResumeLayout(false);
  1735. this.groupBox5.PerformLayout();
  1736. this.groupBox6.ResumeLayout(false);
  1737. this.groupBox6.PerformLayout();
  1738. this.groupBox1.ResumeLayout(false);
  1739. this.groupBox1.PerformLayout();
  1740. this.groupBox8.ResumeLayout(false);
  1741. this.groupBox8.PerformLayout();
  1742. ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
  1743. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  1744. this.ResumeLayout(false);
  1745. this.PerformLayout();
  1746. }
  1747. #endregion
  1748. private System.Windows.Forms.Label label2;
  1749. private System.Windows.Forms.GroupBox groupBox2;
  1750. private System.Windows.Forms.Label label1;
  1751. private System.Windows.Forms.TextBox textBox_WheelSizeAdj;
  1752. private System.Windows.Forms.Label label6;
  1753. private System.Windows.Forms.TextBox textBox_CadenceStart;
  1754. private System.Windows.Forms.Label label9;
  1755. private System.Windows.Forms.TextBox textBox_SMART_Gain;
  1756. private System.Windows.Forms.Label label12;
  1757. private System.Windows.Forms.TextBox textBox_SPORT_Acc;
  1758. private System.Windows.Forms.Label label15;
  1759. private System.Windows.Forms.TextBox textBox_NORM_Gain;
  1760. private System.Windows.Forms.Label label18;
  1761. private System.Windows.Forms.TextBox textBox_Serial;
  1762. private System.Windows.Forms.Label label21;
  1763. private System.Windows.Forms.TextBox textBox_NTC_Ptotect;
  1764. private System.Windows.Forms.Label label24;
  1765. private System.Windows.Forms.TextBox textBox_T_Tail;
  1766. private System.Windows.Forms.Label label27;
  1767. private System.Windows.Forms.TextBox textBox_SpeedLimit;
  1768. private System.Windows.Forms.Label label4;
  1769. private System.Windows.Forms.Label label7;
  1770. private System.Windows.Forms.TextBox textBox_SpeedSensor;
  1771. private System.Windows.Forms.Label label10;
  1772. private System.Windows.Forms.TextBox textBox_TURBO_Acc;
  1773. private System.Windows.Forms.Label label13;
  1774. private System.Windows.Forms.TextBox textBox_SPORT_Gain;
  1775. private System.Windows.Forms.Label label16;
  1776. private System.Windows.Forms.TextBox textBox_ECO_Acc;
  1777. private System.Windows.Forms.Label label19;
  1778. private System.Windows.Forms.TextBox textBox_WheelSize;
  1779. private System.Windows.Forms.Label label22;
  1780. private System.Windows.Forms.TextBox textBox_NTC_Alarm;
  1781. private System.Windows.Forms.Label label25;
  1782. private System.Windows.Forms.TextBox textBox_T_Front;
  1783. private System.Windows.Forms.Label label28;
  1784. private System.Windows.Forms.TextBox textBox_StopTime;
  1785. private System.Windows.Forms.Label label5;
  1786. private System.Windows.Forms.ComboBox comboBox_GasMode;
  1787. private System.Windows.Forms.Label label8;
  1788. private System.Windows.Forms.Label label11;
  1789. private System.Windows.Forms.Label label14;
  1790. private System.Windows.Forms.Label label17;
  1791. private System.Windows.Forms.Label label20;
  1792. private System.Windows.Forms.ComboBox comboBox_NoPBU;
  1793. private System.Windows.Forms.Label label23;
  1794. private System.Windows.Forms.Label label26;
  1795. private System.Windows.Forms.Label label29;
  1796. private System.Windows.Forms.ComboBox comboBox_StartMode;
  1797. private System.Windows.Forms.GroupBox groupBox3;
  1798. private System.Windows.Forms.Label label46;
  1799. private System.Windows.Forms.TextBox textBox_Angle_R;
  1800. private System.Windows.Forms.Label label44;
  1801. private System.Windows.Forms.ComboBox comboBox_AstSensor;
  1802. private System.Windows.Forms.Label label45;
  1803. private System.Windows.Forms.TextBox textBox_Angle_P;
  1804. private System.Windows.Forms.GroupBox groupBox7;
  1805. private System.Windows.Forms.Label label43;
  1806. private System.Windows.Forms.Label label42;
  1807. private System.Windows.Forms.TextBox textBox_Info2;
  1808. private System.Windows.Forms.Label label41;
  1809. private System.Windows.Forms.TextBox textBox_Info1;
  1810. private System.Windows.Forms.TextBox textBox_Info3;
  1811. private System.Windows.Forms.GroupBox groupBox4;
  1812. private System.Windows.Forms.Label label35;
  1813. private System.Windows.Forms.Label label30;
  1814. private System.Windows.Forms.Label label31;
  1815. private System.Windows.Forms.Label label32;
  1816. private System.Windows.Forms.TextBox textBox_RatePower;
  1817. private System.Windows.Forms.TextBox textBox_RotorR;
  1818. private System.Windows.Forms.TextBox textBox_Rate_Vol;
  1819. private System.Windows.Forms.TextBox textBox_Rotor_Ld;
  1820. private System.Windows.Forms.Label label36;
  1821. private System.Windows.Forms.Label label33;
  1822. private System.Windows.Forms.Label label34;
  1823. private System.Windows.Forms.TextBox textBox_RateSpeed;
  1824. private System.Windows.Forms.TextBox textBox_Rotor_Lq;
  1825. private System.Windows.Forms.TextBox textBox_E;
  1826. private System.Windows.Forms.GroupBox groupBox5;
  1827. private System.Windows.Forms.Label label37;
  1828. private System.Windows.Forms.TextBox textBox_Secrect;
  1829. private System.Windows.Forms.GroupBox groupBox6;
  1830. private System.Windows.Forms.Label label40;
  1831. private System.Windows.Forms.Label label38;
  1832. private System.Windows.Forms.Label label39;
  1833. private System.Windows.Forms.TextBox textBox_Mac_Date;
  1834. private System.Windows.Forms.TextBox textBox_Mac;
  1835. private System.Windows.Forms.TextBox textBox_Mac_Addr;
  1836. private System.Windows.Forms.TextBox textBox_WalkSpeed;
  1837. private System.Windows.Forms.Label label49;
  1838. private System.Windows.Forms.TextBox textBox_Walk_SpeedLimit;
  1839. private System.Windows.Forms.Label label48;
  1840. private System.Windows.Forms.Label label47;
  1841. private System.Windows.Forms.TextBox textBox_SMART_Acc;
  1842. private System.Windows.Forms.TextBox textBox_UV_Protect;
  1843. private System.Windows.Forms.TextBox textBox_TURBO_Gain;
  1844. private System.Windows.Forms.TextBox textBox_NORM_Acc;
  1845. private System.Windows.Forms.TextBox textBox_ECO_Gain;
  1846. private System.Windows.Forms.TextBox textBox_MaxCurrent;
  1847. private System.Windows.Forms.TextBox textBox_Dec;
  1848. private System.Windows.Forms.ComboBox comboBox_SpeedSensor;
  1849. private System.Windows.Forms.Button button_Generate;
  1850. private System.Windows.Forms.Button button_Default;
  1851. private System.Windows.Forms.GroupBox groupBox1;
  1852. private System.Windows.Forms.Label label50;
  1853. private System.Windows.Forms.TextBox textBox_Model;
  1854. private System.Windows.Forms.Label label51;
  1855. private System.Windows.Forms.TextBox textBox_Client;
  1856. private System.Windows.Forms.Label label52;
  1857. private System.Windows.Forms.TextBox textBox_FW_Version;
  1858. private System.Windows.Forms.Label label3;
  1859. private System.Windows.Forms.ComboBox comboBox_LightMode;
  1860. private System.Windows.Forms.Label label53;
  1861. private System.Windows.Forms.TextBox textBox_Remark;
  1862. private System.Windows.Forms.GroupBox groupBox8;
  1863. private System.Windows.Forms.Label label54;
  1864. private System.Windows.Forms.Label label55;
  1865. private System.Windows.Forms.TextBox textBox_SpeedTh;
  1866. private System.Windows.Forms.TextBox textBox_NC_Current;
  1867. private System.Windows.Forms.Label label56;
  1868. private System.Windows.Forms.TextBox textBox_GasSpeedTh;
  1869. private System.Windows.Forms.Label label57;
  1870. private System.Windows.Forms.TextBox textBox_TE_FW_Version;
  1871. private System.Windows.Forms.Label label59;
  1872. private System.Windows.Forms.Label label58;
  1873. private System.Windows.Forms.ComboBox comboBox_TailLightVol;
  1874. private System.Windows.Forms.ComboBox comboBox_HeadLightVol;
  1875. private System.Windows.Forms.Label label62;
  1876. private System.Windows.Forms.TextBox textBox_Start_Max;
  1877. private System.Windows.Forms.Label label61;
  1878. private System.Windows.Forms.TextBox textBox_K_Max;
  1879. private System.Windows.Forms.TextBox textBox_Start_Min;
  1880. private System.Windows.Forms.Label label60;
  1881. private System.Windows.Forms.TextBox textBox_K_Min;
  1882. private System.Windows.Forms.TextBox textBox_Zero_Max;
  1883. private System.Windows.Forms.TextBox textBox_Zero_Min;
  1884. private System.Windows.Forms.PictureBox pictureBox2;
  1885. private System.Windows.Forms.PictureBox pictureBox1;
  1886. private System.Windows.Forms.Button button_keyboard;
  1887. }
  1888. }