GenerateParams.Designer.cs 86 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506
  1. namespace Welling_Motor_Debug_Tool
  2. {
  3. partial class GenerateParams
  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(GenerateParams));
  29. this.button_ExportParams = new System.Windows.Forms.Button();
  30. this.label1 = new System.Windows.Forms.Label();
  31. this.tabControl1 = new System.Windows.Forms.TabControl();
  32. this.tabPage_Simple = new System.Windows.Forms.TabPage();
  33. this.groupBox5 = new System.Windows.Forms.GroupBox();
  34. this.comboBox_SysDir = new System.Windows.Forms.ComboBox();
  35. this.comboBox_SysRunMode = new System.Windows.Forms.ComboBox();
  36. this.label25 = new System.Windows.Forms.Label();
  37. this.textBox_SysPowerLimit = new System.Windows.Forms.TextBox();
  38. this.label28 = new System.Windows.Forms.Label();
  39. this.label29 = new System.Windows.Forms.Label();
  40. this.groupBox4 = new System.Windows.Forms.GroupBox();
  41. this.label26 = new System.Windows.Forms.Label();
  42. this.textBox_AssistSpeedEnd = new System.Windows.Forms.TextBox();
  43. this.label27 = new System.Windows.Forms.Label();
  44. this.textBox_AssistSpeedBegin = new System.Windows.Forms.TextBox();
  45. this.groupBox3 = new System.Windows.Forms.GroupBox();
  46. this.label34 = new System.Windows.Forms.Label();
  47. this.textBox_MotorUV = new System.Windows.Forms.TextBox();
  48. this.label35 = new System.Windows.Forms.Label();
  49. this.textBox_MotorOV = new System.Windows.Forms.TextBox();
  50. this.label36 = new System.Windows.Forms.Label();
  51. this.textBox_MotorMaxCurr = new System.Windows.Forms.TextBox();
  52. this.groupBox2 = new System.Windows.Forms.GroupBox();
  53. this.comboBox_BikeStartMode = new System.Windows.Forms.ComboBox();
  54. this.comboBox_BikeModeB = new System.Windows.Forms.ComboBox();
  55. this.comboBox_BikeVolB = new System.Windows.Forms.ComboBox();
  56. this.comboBox_BikeVolF = new System.Windows.Forms.ComboBox();
  57. this.label24 = new System.Windows.Forms.Label();
  58. this.textBox_BikeAutoOffTime = new System.Windows.Forms.TextBox();
  59. this.label23 = new System.Windows.Forms.Label();
  60. this.textBox_BikePowerOffTime = new System.Windows.Forms.TextBox();
  61. this.label22 = new System.Windows.Forms.Label();
  62. this.textBox_BikePowerOnTime = new System.Windows.Forms.TextBox();
  63. this.label21 = new System.Windows.Forms.Label();
  64. this.label20 = new System.Windows.Forms.Label();
  65. this.label19 = new System.Windows.Forms.Label();
  66. this.label18 = new System.Windows.Forms.Label();
  67. this.label17 = new System.Windows.Forms.Label();
  68. this.textBox_BikeRealB = new System.Windows.Forms.TextBox();
  69. this.label16 = new System.Windows.Forms.Label();
  70. this.textBox_BikeFrontT = new System.Windows.Forms.TextBox();
  71. this.label15 = new System.Windows.Forms.Label();
  72. this.textBox_BikeWalkSpeed = new System.Windows.Forms.TextBox();
  73. this.label14 = new System.Windows.Forms.Label();
  74. this.textBox_BikeThroSpeed = new System.Windows.Forms.TextBox();
  75. this.label13 = new System.Windows.Forms.Label();
  76. this.textBox_BikeWheel = new System.Windows.Forms.TextBox();
  77. this.label39 = new System.Windows.Forms.Label();
  78. this.tabPage_Advance = new System.Windows.Forms.TabPage();
  79. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  80. this.richTextBox_AdvanceParams = new System.Windows.Forms.RichTextBox();
  81. this.tabPage_Note = new System.Windows.Forms.TabPage();
  82. this.button_NoteRead = new System.Windows.Forms.Button();
  83. this.button_NoteWrite = new System.Windows.Forms.Button();
  84. this.richTextBox_Note = new System.Windows.Forms.RichTextBox();
  85. this.groupBox1 = new System.Windows.Forms.GroupBox();
  86. this.textBox_OtherInfo = new System.Windows.Forms.TextBox();
  87. this.textBox_SoftwareVer = new System.Windows.Forms.TextBox();
  88. this.textBox_PCBA = new System.Windows.Forms.TextBox();
  89. this.textBox_ProductTag = new System.Windows.Forms.TextBox();
  90. this.textBox_ProductDate = new System.Windows.Forms.TextBox();
  91. this.textBox_ProductAddr = new System.Windows.Forms.TextBox();
  92. this.textBox_ProductMac = new System.Windows.Forms.TextBox();
  93. this.textBox_MarkNum = new System.Windows.Forms.TextBox();
  94. this.textBox_ProductName = new System.Windows.Forms.TextBox();
  95. this.textBox_CustomerName = new System.Windows.Forms.TextBox();
  96. this.textBox_MarkCode = new System.Windows.Forms.TextBox();
  97. this.label12 = new System.Windows.Forms.Label();
  98. this.label11 = new System.Windows.Forms.Label();
  99. this.label10 = new System.Windows.Forms.Label();
  100. this.label9 = new System.Windows.Forms.Label();
  101. this.label8 = new System.Windows.Forms.Label();
  102. this.label7 = new System.Windows.Forms.Label();
  103. this.label6 = new System.Windows.Forms.Label();
  104. this.label5 = new System.Windows.Forms.Label();
  105. this.label4 = new System.Windows.Forms.Label();
  106. this.label3 = new System.Windows.Forms.Label();
  107. this.label38 = new System.Windows.Forms.Label();
  108. this.label37 = new System.Windows.Forms.Label();
  109. this.label33 = new System.Windows.Forms.Label();
  110. this.label32 = new System.Windows.Forms.Label();
  111. this.label31 = new System.Windows.Forms.Label();
  112. this.label30 = new System.Windows.Forms.Label();
  113. this.label2 = new System.Windows.Forms.Label();
  114. this.label_ServerStatus = new System.Windows.Forms.Label();
  115. this.label_Server_ComStatus = new System.Windows.Forms.Label();
  116. this.pictureBox2 = new System.Windows.Forms.PictureBox();
  117. this.comboBox_ModelFile = new System.Windows.Forms.ComboBox();
  118. this.button_GenerateModelFile = new System.Windows.Forms.Button();
  119. this.button_ModeRefresh = new System.Windows.Forms.Button();
  120. this.radioButton_MIGIC = new System.Windows.Forms.RadioButton();
  121. this.radioButton_HUB = new System.Windows.Forms.RadioButton();
  122. this.label_BT = new System.Windows.Forms.Label();
  123. this.label_Ver = new System.Windows.Forms.Label();
  124. this.statusStrip1 = new System.Windows.Forms.StatusStrip();
  125. this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
  126. this.label45 = new System.Windows.Forms.Label();
  127. this.label40 = new System.Windows.Forms.Label();
  128. this.label41 = new System.Windows.Forms.Label();
  129. this.button_ChangeModelFile = new System.Windows.Forms.Button();
  130. this.button_DeletModelFile = new System.Windows.Forms.Button();
  131. this.button_LoadFile = new System.Windows.Forms.Button();
  132. this.radioButton_HUB_FCT = new System.Windows.Forms.RadioButton();
  133. this.checkBox_SyncFac = new System.Windows.Forms.CheckBox();
  134. this.groupBox6 = new System.Windows.Forms.GroupBox();
  135. this.radioButton_VP = new System.Windows.Forms.RadioButton();
  136. this.tabControl1.SuspendLayout();
  137. this.tabPage_Simple.SuspendLayout();
  138. this.groupBox5.SuspendLayout();
  139. this.groupBox4.SuspendLayout();
  140. this.groupBox3.SuspendLayout();
  141. this.groupBox2.SuspendLayout();
  142. this.tabPage_Advance.SuspendLayout();
  143. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  144. this.tabPage_Note.SuspendLayout();
  145. this.groupBox1.SuspendLayout();
  146. ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
  147. this.statusStrip1.SuspendLayout();
  148. this.groupBox6.SuspendLayout();
  149. this.SuspendLayout();
  150. //
  151. // button_ExportParams
  152. //
  153. this.button_ExportParams.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  154. this.button_ExportParams.Enabled = false;
  155. this.button_ExportParams.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  156. this.button_ExportParams.ForeColor = System.Drawing.Color.White;
  157. this.button_ExportParams.Location = new System.Drawing.Point(868, 596);
  158. this.button_ExportParams.Name = "button_ExportParams";
  159. this.button_ExportParams.Size = new System.Drawing.Size(149, 73);
  160. this.button_ExportParams.TabIndex = 0;
  161. this.button_ExportParams.Text = "导出配置";
  162. this.button_ExportParams.UseVisualStyleBackColor = false;
  163. this.button_ExportParams.Click += new System.EventHandler(this.button_ExportParams_Click);
  164. //
  165. // label1
  166. //
  167. this.label1.AutoSize = true;
  168. this.label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  169. this.label1.Location = new System.Drawing.Point(22, 25);
  170. this.label1.Name = "label1";
  171. this.label1.Size = new System.Drawing.Size(74, 21);
  172. this.label1.TabIndex = 1;
  173. this.label1.Text = "模板文件";
  174. //
  175. // tabControl1
  176. //
  177. this.tabControl1.Controls.Add(this.tabPage_Simple);
  178. this.tabControl1.Controls.Add(this.tabPage_Advance);
  179. this.tabControl1.Controls.Add(this.tabPage_Note);
  180. this.tabControl1.Location = new System.Drawing.Point(26, 73);
  181. this.tabControl1.Name = "tabControl1";
  182. this.tabControl1.SelectedIndex = 0;
  183. this.tabControl1.Size = new System.Drawing.Size(492, 646);
  184. this.tabControl1.TabIndex = 3;
  185. this.tabControl1.SelectedIndexChanged += new System.EventHandler(this.tabControl1_SelectedIndexChanged);
  186. //
  187. // tabPage_Simple
  188. //
  189. this.tabPage_Simple.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  190. this.tabPage_Simple.Controls.Add(this.groupBox5);
  191. this.tabPage_Simple.Controls.Add(this.groupBox4);
  192. this.tabPage_Simple.Controls.Add(this.groupBox3);
  193. this.tabPage_Simple.Controls.Add(this.groupBox2);
  194. this.tabPage_Simple.Controls.Add(this.label39);
  195. this.tabPage_Simple.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  196. this.tabPage_Simple.Location = new System.Drawing.Point(4, 30);
  197. this.tabPage_Simple.Name = "tabPage_Simple";
  198. this.tabPage_Simple.Padding = new System.Windows.Forms.Padding(3);
  199. this.tabPage_Simple.Size = new System.Drawing.Size(484, 612);
  200. this.tabPage_Simple.TabIndex = 0;
  201. this.tabPage_Simple.Text = "简易参数";
  202. //
  203. // groupBox5
  204. //
  205. this.groupBox5.Controls.Add(this.comboBox_SysDir);
  206. this.groupBox5.Controls.Add(this.comboBox_SysRunMode);
  207. this.groupBox5.Controls.Add(this.label25);
  208. this.groupBox5.Controls.Add(this.textBox_SysPowerLimit);
  209. this.groupBox5.Controls.Add(this.label28);
  210. this.groupBox5.Controls.Add(this.label29);
  211. this.groupBox5.Location = new System.Drawing.Point(6, 334);
  212. this.groupBox5.Name = "groupBox5";
  213. this.groupBox5.Size = new System.Drawing.Size(472, 71);
  214. this.groupBox5.TabIndex = 3;
  215. this.groupBox5.TabStop = false;
  216. this.groupBox5.Text = "调试参数";
  217. //
  218. // comboBox_SysDir
  219. //
  220. this.comboBox_SysDir.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
  221. this.comboBox_SysDir.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  222. this.comboBox_SysDir.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  223. this.comboBox_SysDir.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  224. this.comboBox_SysDir.FormattingEnabled = true;
  225. this.comboBox_SysDir.Items.AddRange(new object[] {
  226. "0",
  227. "1"});
  228. this.comboBox_SysDir.Location = new System.Drawing.Point(240, 30);
  229. this.comboBox_SysDir.Name = "comboBox_SysDir";
  230. this.comboBox_SysDir.Size = new System.Drawing.Size(65, 29);
  231. this.comboBox_SysDir.TabIndex = 8;
  232. //
  233. // comboBox_SysRunMode
  234. //
  235. this.comboBox_SysRunMode.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
  236. this.comboBox_SysRunMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  237. this.comboBox_SysRunMode.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  238. this.comboBox_SysRunMode.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  239. this.comboBox_SysRunMode.FormattingEnabled = true;
  240. this.comboBox_SysRunMode.Items.AddRange(new object[] {
  241. "4",
  242. "5"});
  243. this.comboBox_SysRunMode.Location = new System.Drawing.Point(86, 30);
  244. this.comboBox_SysRunMode.Name = "comboBox_SysRunMode";
  245. this.comboBox_SysRunMode.Size = new System.Drawing.Size(65, 29);
  246. this.comboBox_SysRunMode.TabIndex = 8;
  247. this.comboBox_SysRunMode.Click += new System.EventHandler(this.comboBox_SysRunMode_Click);
  248. //
  249. // label25
  250. //
  251. this.label25.AutoSize = true;
  252. this.label25.Location = new System.Drawing.Point(314, 34);
  253. this.label25.Name = "label25";
  254. this.label25.Size = new System.Drawing.Size(74, 21);
  255. this.label25.TabIndex = 0;
  256. this.label25.Text = "功率限幅";
  257. //
  258. // textBox_SysPowerLimit
  259. //
  260. this.textBox_SysPowerLimit.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  261. this.textBox_SysPowerLimit.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  262. this.textBox_SysPowerLimit.Location = new System.Drawing.Point(394, 30);
  263. this.textBox_SysPowerLimit.Name = "textBox_SysPowerLimit";
  264. this.textBox_SysPowerLimit.Size = new System.Drawing.Size(65, 29);
  265. this.textBox_SysPowerLimit.TabIndex = 1;
  266. //
  267. // label28
  268. //
  269. this.label28.AutoSize = true;
  270. this.label28.Location = new System.Drawing.Point(160, 34);
  271. this.label28.Name = "label28";
  272. this.label28.Size = new System.Drawing.Size(74, 21);
  273. this.label28.TabIndex = 0;
  274. this.label28.Text = "旋转方向";
  275. //
  276. // label29
  277. //
  278. this.label29.AutoSize = true;
  279. this.label29.Location = new System.Drawing.Point(6, 34);
  280. this.label29.Name = "label29";
  281. this.label29.Size = new System.Drawing.Size(74, 21);
  282. this.label29.TabIndex = 0;
  283. this.label29.Text = "运行模式";
  284. //
  285. // groupBox4
  286. //
  287. this.groupBox4.Controls.Add(this.label26);
  288. this.groupBox4.Controls.Add(this.textBox_AssistSpeedEnd);
  289. this.groupBox4.Controls.Add(this.label27);
  290. this.groupBox4.Controls.Add(this.textBox_AssistSpeedBegin);
  291. this.groupBox4.Location = new System.Drawing.Point(6, 257);
  292. this.groupBox4.Name = "groupBox4";
  293. this.groupBox4.Size = new System.Drawing.Size(472, 71);
  294. this.groupBox4.TabIndex = 3;
  295. this.groupBox4.TabStop = false;
  296. this.groupBox4.Text = "助力参数";
  297. //
  298. // label26
  299. //
  300. this.label26.AutoSize = true;
  301. this.label26.Location = new System.Drawing.Point(160, 34);
  302. this.label26.Name = "label26";
  303. this.label26.Size = new System.Drawing.Size(74, 21);
  304. this.label26.TabIndex = 0;
  305. this.label26.Text = "限速停止";
  306. //
  307. // textBox_AssistSpeedEnd
  308. //
  309. this.textBox_AssistSpeedEnd.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  310. this.textBox_AssistSpeedEnd.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  311. this.textBox_AssistSpeedEnd.Location = new System.Drawing.Point(240, 30);
  312. this.textBox_AssistSpeedEnd.Name = "textBox_AssistSpeedEnd";
  313. this.textBox_AssistSpeedEnd.Size = new System.Drawing.Size(65, 29);
  314. this.textBox_AssistSpeedEnd.TabIndex = 1;
  315. //
  316. // label27
  317. //
  318. this.label27.AutoSize = true;
  319. this.label27.Location = new System.Drawing.Point(6, 34);
  320. this.label27.Name = "label27";
  321. this.label27.Size = new System.Drawing.Size(74, 21);
  322. this.label27.TabIndex = 0;
  323. this.label27.Text = "限速起始";
  324. //
  325. // textBox_AssistSpeedBegin
  326. //
  327. this.textBox_AssistSpeedBegin.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  328. this.textBox_AssistSpeedBegin.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  329. this.textBox_AssistSpeedBegin.Location = new System.Drawing.Point(86, 30);
  330. this.textBox_AssistSpeedBegin.Name = "textBox_AssistSpeedBegin";
  331. this.textBox_AssistSpeedBegin.Size = new System.Drawing.Size(65, 29);
  332. this.textBox_AssistSpeedBegin.TabIndex = 1;
  333. //
  334. // groupBox3
  335. //
  336. this.groupBox3.Controls.Add(this.label34);
  337. this.groupBox3.Controls.Add(this.textBox_MotorUV);
  338. this.groupBox3.Controls.Add(this.label35);
  339. this.groupBox3.Controls.Add(this.textBox_MotorOV);
  340. this.groupBox3.Controls.Add(this.label36);
  341. this.groupBox3.Controls.Add(this.textBox_MotorMaxCurr);
  342. this.groupBox3.Location = new System.Drawing.Point(6, 180);
  343. this.groupBox3.Name = "groupBox3";
  344. this.groupBox3.Size = new System.Drawing.Size(472, 71);
  345. this.groupBox3.TabIndex = 2;
  346. this.groupBox3.TabStop = false;
  347. this.groupBox3.Text = "控制参数";
  348. //
  349. // label34
  350. //
  351. this.label34.AutoSize = true;
  352. this.label34.Location = new System.Drawing.Point(314, 34);
  353. this.label34.Name = "label34";
  354. this.label34.Size = new System.Drawing.Size(74, 21);
  355. this.label34.TabIndex = 0;
  356. this.label34.Text = "欠压保护";
  357. //
  358. // textBox_MotorUV
  359. //
  360. this.textBox_MotorUV.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  361. this.textBox_MotorUV.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  362. this.textBox_MotorUV.Location = new System.Drawing.Point(394, 30);
  363. this.textBox_MotorUV.Name = "textBox_MotorUV";
  364. this.textBox_MotorUV.Size = new System.Drawing.Size(65, 29);
  365. this.textBox_MotorUV.TabIndex = 1;
  366. //
  367. // label35
  368. //
  369. this.label35.AutoSize = true;
  370. this.label35.Location = new System.Drawing.Point(160, 34);
  371. this.label35.Name = "label35";
  372. this.label35.Size = new System.Drawing.Size(74, 21);
  373. this.label35.TabIndex = 0;
  374. this.label35.Text = "过压保护";
  375. //
  376. // textBox_MotorOV
  377. //
  378. this.textBox_MotorOV.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  379. this.textBox_MotorOV.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  380. this.textBox_MotorOV.Location = new System.Drawing.Point(240, 30);
  381. this.textBox_MotorOV.Name = "textBox_MotorOV";
  382. this.textBox_MotorOV.Size = new System.Drawing.Size(65, 29);
  383. this.textBox_MotorOV.TabIndex = 1;
  384. //
  385. // label36
  386. //
  387. this.label36.AutoSize = true;
  388. this.label36.Location = new System.Drawing.Point(6, 34);
  389. this.label36.Name = "label36";
  390. this.label36.Size = new System.Drawing.Size(74, 21);
  391. this.label36.TabIndex = 0;
  392. this.label36.Text = "峰值电流";
  393. //
  394. // textBox_MotorMaxCurr
  395. //
  396. this.textBox_MotorMaxCurr.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  397. this.textBox_MotorMaxCurr.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  398. this.textBox_MotorMaxCurr.Location = new System.Drawing.Point(86, 30);
  399. this.textBox_MotorMaxCurr.Name = "textBox_MotorMaxCurr";
  400. this.textBox_MotorMaxCurr.Size = new System.Drawing.Size(65, 29);
  401. this.textBox_MotorMaxCurr.TabIndex = 1;
  402. //
  403. // groupBox2
  404. //
  405. this.groupBox2.Controls.Add(this.comboBox_BikeStartMode);
  406. this.groupBox2.Controls.Add(this.comboBox_BikeModeB);
  407. this.groupBox2.Controls.Add(this.comboBox_BikeVolB);
  408. this.groupBox2.Controls.Add(this.comboBox_BikeVolF);
  409. this.groupBox2.Controls.Add(this.label24);
  410. this.groupBox2.Controls.Add(this.textBox_BikeAutoOffTime);
  411. this.groupBox2.Controls.Add(this.label23);
  412. this.groupBox2.Controls.Add(this.textBox_BikePowerOffTime);
  413. this.groupBox2.Controls.Add(this.label22);
  414. this.groupBox2.Controls.Add(this.textBox_BikePowerOnTime);
  415. this.groupBox2.Controls.Add(this.label21);
  416. this.groupBox2.Controls.Add(this.label20);
  417. this.groupBox2.Controls.Add(this.label19);
  418. this.groupBox2.Controls.Add(this.label18);
  419. this.groupBox2.Controls.Add(this.label17);
  420. this.groupBox2.Controls.Add(this.textBox_BikeRealB);
  421. this.groupBox2.Controls.Add(this.label16);
  422. this.groupBox2.Controls.Add(this.textBox_BikeFrontT);
  423. this.groupBox2.Controls.Add(this.label15);
  424. this.groupBox2.Controls.Add(this.textBox_BikeWalkSpeed);
  425. this.groupBox2.Controls.Add(this.label14);
  426. this.groupBox2.Controls.Add(this.textBox_BikeThroSpeed);
  427. this.groupBox2.Controls.Add(this.label13);
  428. this.groupBox2.Controls.Add(this.textBox_BikeWheel);
  429. this.groupBox2.Location = new System.Drawing.Point(6, 6);
  430. this.groupBox2.Name = "groupBox2";
  431. this.groupBox2.Size = new System.Drawing.Size(472, 168);
  432. this.groupBox2.TabIndex = 0;
  433. this.groupBox2.TabStop = false;
  434. this.groupBox2.Text = "整车参数";
  435. //
  436. // comboBox_BikeStartMode
  437. //
  438. this.comboBox_BikeStartMode.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
  439. this.comboBox_BikeStartMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  440. this.comboBox_BikeStartMode.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  441. this.comboBox_BikeStartMode.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  442. this.comboBox_BikeStartMode.FormattingEnabled = true;
  443. this.comboBox_BikeStartMode.Items.AddRange(new object[] {
  444. "柔和",
  445. "正常",
  446. "强劲"});
  447. this.comboBox_BikeStartMode.Location = new System.Drawing.Point(394, 96);
  448. this.comboBox_BikeStartMode.Name = "comboBox_BikeStartMode";
  449. this.comboBox_BikeStartMode.Size = new System.Drawing.Size(65, 29);
  450. this.comboBox_BikeStartMode.TabIndex = 7;
  451. //
  452. // comboBox_BikeModeB
  453. //
  454. this.comboBox_BikeModeB.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
  455. this.comboBox_BikeModeB.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  456. this.comboBox_BikeModeB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  457. this.comboBox_BikeModeB.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  458. this.comboBox_BikeModeB.FormattingEnabled = true;
  459. this.comboBox_BikeModeB.Items.AddRange(new object[] {
  460. "1",
  461. "2",
  462. "3",
  463. "4",
  464. "5",
  465. "6",
  466. "7",
  467. "8"});
  468. this.comboBox_BikeModeB.Location = new System.Drawing.Point(240, 96);
  469. this.comboBox_BikeModeB.Name = "comboBox_BikeModeB";
  470. this.comboBox_BikeModeB.Size = new System.Drawing.Size(65, 29);
  471. this.comboBox_BikeModeB.TabIndex = 6;
  472. //
  473. // comboBox_BikeVolB
  474. //
  475. this.comboBox_BikeVolB.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
  476. this.comboBox_BikeVolB.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  477. this.comboBox_BikeVolB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  478. this.comboBox_BikeVolB.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  479. this.comboBox_BikeVolB.FormattingEnabled = true;
  480. this.comboBox_BikeVolB.Items.AddRange(new object[] {
  481. "6V",
  482. "12V"});
  483. this.comboBox_BikeVolB.Location = new System.Drawing.Point(86, 96);
  484. this.comboBox_BikeVolB.Name = "comboBox_BikeVolB";
  485. this.comboBox_BikeVolB.Size = new System.Drawing.Size(65, 29);
  486. this.comboBox_BikeVolB.TabIndex = 5;
  487. //
  488. // comboBox_BikeVolF
  489. //
  490. this.comboBox_BikeVolF.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
  491. this.comboBox_BikeVolF.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  492. this.comboBox_BikeVolF.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  493. this.comboBox_BikeVolF.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  494. this.comboBox_BikeVolF.FormattingEnabled = true;
  495. this.comboBox_BikeVolF.Items.AddRange(new object[] {
  496. "6V",
  497. "12V"});
  498. this.comboBox_BikeVolF.Location = new System.Drawing.Point(394, 63);
  499. this.comboBox_BikeVolF.Name = "comboBox_BikeVolF";
  500. this.comboBox_BikeVolF.Size = new System.Drawing.Size(65, 29);
  501. this.comboBox_BikeVolF.TabIndex = 4;
  502. //
  503. // label24
  504. //
  505. this.label24.AutoSize = true;
  506. this.label24.Location = new System.Drawing.Point(314, 133);
  507. this.label24.Name = "label24";
  508. this.label24.Size = new System.Drawing.Size(74, 21);
  509. this.label24.TabIndex = 0;
  510. this.label24.Text = "自动关机";
  511. //
  512. // textBox_BikeAutoOffTime
  513. //
  514. this.textBox_BikeAutoOffTime.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  515. this.textBox_BikeAutoOffTime.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  516. this.textBox_BikeAutoOffTime.Location = new System.Drawing.Point(394, 129);
  517. this.textBox_BikeAutoOffTime.Name = "textBox_BikeAutoOffTime";
  518. this.textBox_BikeAutoOffTime.Size = new System.Drawing.Size(65, 29);
  519. this.textBox_BikeAutoOffTime.TabIndex = 1;
  520. //
  521. // label23
  522. //
  523. this.label23.AutoSize = true;
  524. this.label23.Location = new System.Drawing.Point(160, 133);
  525. this.label23.Name = "label23";
  526. this.label23.Size = new System.Drawing.Size(74, 21);
  527. this.label23.TabIndex = 0;
  528. this.label23.Text = "关机延迟";
  529. //
  530. // textBox_BikePowerOffTime
  531. //
  532. this.textBox_BikePowerOffTime.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  533. this.textBox_BikePowerOffTime.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  534. this.textBox_BikePowerOffTime.Location = new System.Drawing.Point(240, 129);
  535. this.textBox_BikePowerOffTime.Name = "textBox_BikePowerOffTime";
  536. this.textBox_BikePowerOffTime.Size = new System.Drawing.Size(65, 29);
  537. this.textBox_BikePowerOffTime.TabIndex = 1;
  538. //
  539. // label22
  540. //
  541. this.label22.AutoSize = true;
  542. this.label22.Location = new System.Drawing.Point(6, 133);
  543. this.label22.Name = "label22";
  544. this.label22.Size = new System.Drawing.Size(74, 21);
  545. this.label22.TabIndex = 0;
  546. this.label22.Text = "开机延迟";
  547. //
  548. // textBox_BikePowerOnTime
  549. //
  550. this.textBox_BikePowerOnTime.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  551. this.textBox_BikePowerOnTime.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  552. this.textBox_BikePowerOnTime.Location = new System.Drawing.Point(86, 129);
  553. this.textBox_BikePowerOnTime.Name = "textBox_BikePowerOnTime";
  554. this.textBox_BikePowerOnTime.Size = new System.Drawing.Size(65, 29);
  555. this.textBox_BikePowerOnTime.TabIndex = 1;
  556. //
  557. // label21
  558. //
  559. this.label21.AutoSize = true;
  560. this.label21.Location = new System.Drawing.Point(314, 100);
  561. this.label21.Name = "label21";
  562. this.label21.Size = new System.Drawing.Size(74, 21);
  563. this.label21.TabIndex = 0;
  564. this.label21.Text = "启动模式";
  565. //
  566. // label20
  567. //
  568. this.label20.AutoSize = true;
  569. this.label20.Location = new System.Drawing.Point(160, 100);
  570. this.label20.Name = "label20";
  571. this.label20.Size = new System.Drawing.Size(74, 21);
  572. this.label20.TabIndex = 0;
  573. this.label20.Text = "后灯模式";
  574. //
  575. // label19
  576. //
  577. this.label19.AutoSize = true;
  578. this.label19.Location = new System.Drawing.Point(6, 100);
  579. this.label19.Name = "label19";
  580. this.label19.Size = new System.Drawing.Size(74, 21);
  581. this.label19.TabIndex = 0;
  582. this.label19.Text = "后灯电压";
  583. //
  584. // label18
  585. //
  586. this.label18.AutoSize = true;
  587. this.label18.Location = new System.Drawing.Point(314, 67);
  588. this.label18.Name = "label18";
  589. this.label18.Size = new System.Drawing.Size(74, 21);
  590. this.label18.TabIndex = 0;
  591. this.label18.Text = "前灯电压";
  592. //
  593. // label17
  594. //
  595. this.label17.AutoSize = true;
  596. this.label17.Location = new System.Drawing.Point(160, 67);
  597. this.label17.Name = "label17";
  598. this.label17.Size = new System.Drawing.Size(58, 21);
  599. this.label17.TabIndex = 0;
  600. this.label17.Text = "后牙盘";
  601. //
  602. // textBox_BikeRealB
  603. //
  604. this.textBox_BikeRealB.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  605. this.textBox_BikeRealB.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  606. this.textBox_BikeRealB.Location = new System.Drawing.Point(240, 63);
  607. this.textBox_BikeRealB.Name = "textBox_BikeRealB";
  608. this.textBox_BikeRealB.Size = new System.Drawing.Size(65, 29);
  609. this.textBox_BikeRealB.TabIndex = 1;
  610. //
  611. // label16
  612. //
  613. this.label16.AutoSize = true;
  614. this.label16.Location = new System.Drawing.Point(6, 67);
  615. this.label16.Name = "label16";
  616. this.label16.Size = new System.Drawing.Size(58, 21);
  617. this.label16.TabIndex = 0;
  618. this.label16.Text = "前牙盘";
  619. //
  620. // textBox_BikeFrontT
  621. //
  622. this.textBox_BikeFrontT.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  623. this.textBox_BikeFrontT.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  624. this.textBox_BikeFrontT.Location = new System.Drawing.Point(86, 63);
  625. this.textBox_BikeFrontT.Name = "textBox_BikeFrontT";
  626. this.textBox_BikeFrontT.Size = new System.Drawing.Size(65, 29);
  627. this.textBox_BikeFrontT.TabIndex = 1;
  628. //
  629. // label15
  630. //
  631. this.label15.AutoSize = true;
  632. this.label15.Location = new System.Drawing.Point(314, 34);
  633. this.label15.Name = "label15";
  634. this.label15.Size = new System.Drawing.Size(74, 21);
  635. this.label15.TabIndex = 0;
  636. this.label15.Text = "推行限速";
  637. //
  638. // textBox_BikeWalkSpeed
  639. //
  640. this.textBox_BikeWalkSpeed.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  641. this.textBox_BikeWalkSpeed.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  642. this.textBox_BikeWalkSpeed.Location = new System.Drawing.Point(394, 30);
  643. this.textBox_BikeWalkSpeed.Name = "textBox_BikeWalkSpeed";
  644. this.textBox_BikeWalkSpeed.Size = new System.Drawing.Size(65, 29);
  645. this.textBox_BikeWalkSpeed.TabIndex = 1;
  646. //
  647. // label14
  648. //
  649. this.label14.AutoSize = true;
  650. this.label14.Location = new System.Drawing.Point(160, 34);
  651. this.label14.Name = "label14";
  652. this.label14.Size = new System.Drawing.Size(74, 21);
  653. this.label14.TabIndex = 0;
  654. this.label14.Text = "转把限速";
  655. //
  656. // textBox_BikeThroSpeed
  657. //
  658. this.textBox_BikeThroSpeed.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  659. this.textBox_BikeThroSpeed.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  660. this.textBox_BikeThroSpeed.Location = new System.Drawing.Point(240, 30);
  661. this.textBox_BikeThroSpeed.Name = "textBox_BikeThroSpeed";
  662. this.textBox_BikeThroSpeed.Size = new System.Drawing.Size(65, 29);
  663. this.textBox_BikeThroSpeed.TabIndex = 1;
  664. //
  665. // label13
  666. //
  667. this.label13.AutoSize = true;
  668. this.label13.Location = new System.Drawing.Point(6, 34);
  669. this.label13.Name = "label13";
  670. this.label13.Size = new System.Drawing.Size(74, 21);
  671. this.label13.TabIndex = 0;
  672. this.label13.Text = "轮胎周长";
  673. //
  674. // textBox_BikeWheel
  675. //
  676. this.textBox_BikeWheel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  677. this.textBox_BikeWheel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  678. this.textBox_BikeWheel.Location = new System.Drawing.Point(86, 30);
  679. this.textBox_BikeWheel.Name = "textBox_BikeWheel";
  680. this.textBox_BikeWheel.Size = new System.Drawing.Size(65, 29);
  681. this.textBox_BikeWheel.TabIndex = 1;
  682. //
  683. // label39
  684. //
  685. this.label39.AutoSize = true;
  686. this.label39.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  687. this.label39.ForeColor = System.Drawing.Color.Red;
  688. this.label39.Location = new System.Drawing.Point(11, 569);
  689. this.label39.Name = "label39";
  690. this.label39.Size = new System.Drawing.Size(449, 25);
  691. this.label39.TabIndex = 0;
  692. this.label39.Text = "注意:简易参数界面内容在高级参数界面修改无效!\r\n";
  693. //
  694. // tabPage_Advance
  695. //
  696. this.tabPage_Advance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  697. this.tabPage_Advance.Controls.Add(this.pictureBox1);
  698. this.tabPage_Advance.Controls.Add(this.richTextBox_AdvanceParams);
  699. this.tabPage_Advance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  700. this.tabPage_Advance.Location = new System.Drawing.Point(4, 30);
  701. this.tabPage_Advance.Name = "tabPage_Advance";
  702. this.tabPage_Advance.Padding = new System.Windows.Forms.Padding(3);
  703. this.tabPage_Advance.Size = new System.Drawing.Size(484, 612);
  704. this.tabPage_Advance.TabIndex = 1;
  705. this.tabPage_Advance.Text = "高级参数";
  706. //
  707. // pictureBox1
  708. //
  709. this.pictureBox1.Image = global::Welling_Motor_Debug_Tool.Properties.Resources.Lock;
  710. this.pictureBox1.Location = new System.Drawing.Point(433, 6);
  711. this.pictureBox1.Name = "pictureBox1";
  712. this.pictureBox1.Size = new System.Drawing.Size(45, 45);
  713. this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  714. this.pictureBox1.TabIndex = 9;
  715. this.pictureBox1.TabStop = false;
  716. this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click);
  717. //
  718. // richTextBox_AdvanceParams
  719. //
  720. this.richTextBox_AdvanceParams.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  721. this.richTextBox_AdvanceParams.Location = new System.Drawing.Point(6, 6);
  722. this.richTextBox_AdvanceParams.Name = "richTextBox_AdvanceParams";
  723. this.richTextBox_AdvanceParams.ReadOnly = true;
  724. this.richTextBox_AdvanceParams.Size = new System.Drawing.Size(421, 600);
  725. this.richTextBox_AdvanceParams.TabIndex = 0;
  726. this.richTextBox_AdvanceParams.Text = "";
  727. //
  728. // tabPage_Note
  729. //
  730. this.tabPage_Note.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  731. this.tabPage_Note.Controls.Add(this.button_NoteRead);
  732. this.tabPage_Note.Controls.Add(this.button_NoteWrite);
  733. this.tabPage_Note.Controls.Add(this.richTextBox_Note);
  734. this.tabPage_Note.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  735. this.tabPage_Note.Location = new System.Drawing.Point(4, 30);
  736. this.tabPage_Note.Name = "tabPage_Note";
  737. this.tabPage_Note.Size = new System.Drawing.Size(484, 612);
  738. this.tabPage_Note.TabIndex = 2;
  739. this.tabPage_Note.Text = "备忘录";
  740. //
  741. // button_NoteRead
  742. //
  743. this.button_NoteRead.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
  744. this.button_NoteRead.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  745. this.button_NoteRead.ForeColor = System.Drawing.Color.White;
  746. this.button_NoteRead.Location = new System.Drawing.Point(292, 564);
  747. this.button_NoteRead.Name = "button_NoteRead";
  748. this.button_NoteRead.Size = new System.Drawing.Size(90, 45);
  749. this.button_NoteRead.TabIndex = 2;
  750. this.button_NoteRead.Text = "读取";
  751. this.button_NoteRead.UseVisualStyleBackColor = false;
  752. this.button_NoteRead.Click += new System.EventHandler(this.button_NoteRead_Click);
  753. //
  754. // button_NoteWrite
  755. //
  756. this.button_NoteWrite.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
  757. this.button_NoteWrite.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  758. this.button_NoteWrite.ForeColor = System.Drawing.Color.White;
  759. this.button_NoteWrite.Location = new System.Drawing.Point(388, 564);
  760. this.button_NoteWrite.Name = "button_NoteWrite";
  761. this.button_NoteWrite.Size = new System.Drawing.Size(90, 45);
  762. this.button_NoteWrite.TabIndex = 2;
  763. this.button_NoteWrite.Text = "保存";
  764. this.button_NoteWrite.UseVisualStyleBackColor = false;
  765. this.button_NoteWrite.Click += new System.EventHandler(this.button_NoteWrite_Click);
  766. //
  767. // richTextBox_Note
  768. //
  769. this.richTextBox_Note.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  770. this.richTextBox_Note.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  771. this.richTextBox_Note.Location = new System.Drawing.Point(6, 6);
  772. this.richTextBox_Note.Name = "richTextBox_Note";
  773. this.richTextBox_Note.Size = new System.Drawing.Size(472, 556);
  774. this.richTextBox_Note.TabIndex = 1;
  775. this.richTextBox_Note.Text = "";
  776. //
  777. // groupBox1
  778. //
  779. this.groupBox1.Controls.Add(this.textBox_OtherInfo);
  780. this.groupBox1.Controls.Add(this.textBox_SoftwareVer);
  781. this.groupBox1.Controls.Add(this.textBox_PCBA);
  782. this.groupBox1.Controls.Add(this.textBox_ProductTag);
  783. this.groupBox1.Controls.Add(this.textBox_ProductDate);
  784. this.groupBox1.Controls.Add(this.textBox_ProductAddr);
  785. this.groupBox1.Controls.Add(this.textBox_ProductMac);
  786. this.groupBox1.Controls.Add(this.textBox_MarkNum);
  787. this.groupBox1.Controls.Add(this.textBox_ProductName);
  788. this.groupBox1.Controls.Add(this.textBox_CustomerName);
  789. this.groupBox1.Controls.Add(this.textBox_MarkCode);
  790. this.groupBox1.Controls.Add(this.label12);
  791. this.groupBox1.Controls.Add(this.label11);
  792. this.groupBox1.Controls.Add(this.label10);
  793. this.groupBox1.Controls.Add(this.label9);
  794. this.groupBox1.Controls.Add(this.label8);
  795. this.groupBox1.Controls.Add(this.label7);
  796. this.groupBox1.Controls.Add(this.label6);
  797. this.groupBox1.Controls.Add(this.label5);
  798. this.groupBox1.Controls.Add(this.label4);
  799. this.groupBox1.Controls.Add(this.label3);
  800. this.groupBox1.Controls.Add(this.label38);
  801. this.groupBox1.Controls.Add(this.label37);
  802. this.groupBox1.Controls.Add(this.label33);
  803. this.groupBox1.Controls.Add(this.label32);
  804. this.groupBox1.Controls.Add(this.label31);
  805. this.groupBox1.Controls.Add(this.label30);
  806. this.groupBox1.Controls.Add(this.label2);
  807. this.groupBox1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  808. this.groupBox1.Location = new System.Drawing.Point(524, 73);
  809. this.groupBox1.Name = "groupBox1";
  810. this.groupBox1.Size = new System.Drawing.Size(316, 646);
  811. this.groupBox1.TabIndex = 4;
  812. this.groupBox1.TabStop = false;
  813. this.groupBox1.Text = "订单信息";
  814. //
  815. // textBox_OtherInfo
  816. //
  817. this.textBox_OtherInfo.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  818. this.textBox_OtherInfo.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  819. this.textBox_OtherInfo.Location = new System.Drawing.Point(123, 567);
  820. this.textBox_OtherInfo.Name = "textBox_OtherInfo";
  821. this.textBox_OtherInfo.Size = new System.Drawing.Size(184, 29);
  822. this.textBox_OtherInfo.TabIndex = 1;
  823. //
  824. // textBox_SoftwareVer
  825. //
  826. this.textBox_SoftwareVer.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  827. this.textBox_SoftwareVer.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  828. this.textBox_SoftwareVer.Location = new System.Drawing.Point(123, 515);
  829. this.textBox_SoftwareVer.Name = "textBox_SoftwareVer";
  830. this.textBox_SoftwareVer.Size = new System.Drawing.Size(184, 29);
  831. this.textBox_SoftwareVer.TabIndex = 1;
  832. //
  833. // textBox_PCBA
  834. //
  835. this.textBox_PCBA.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  836. this.textBox_PCBA.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  837. this.textBox_PCBA.Location = new System.Drawing.Point(123, 463);
  838. this.textBox_PCBA.Name = "textBox_PCBA";
  839. this.textBox_PCBA.Size = new System.Drawing.Size(184, 29);
  840. this.textBox_PCBA.TabIndex = 1;
  841. //
  842. // textBox_ProductTag
  843. //
  844. this.textBox_ProductTag.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  845. this.textBox_ProductTag.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  846. this.textBox_ProductTag.Location = new System.Drawing.Point(123, 411);
  847. this.textBox_ProductTag.Name = "textBox_ProductTag";
  848. this.textBox_ProductTag.Size = new System.Drawing.Size(184, 29);
  849. this.textBox_ProductTag.TabIndex = 1;
  850. //
  851. // textBox_ProductDate
  852. //
  853. this.textBox_ProductDate.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  854. this.textBox_ProductDate.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  855. this.textBox_ProductDate.Location = new System.Drawing.Point(123, 359);
  856. this.textBox_ProductDate.Name = "textBox_ProductDate";
  857. this.textBox_ProductDate.Size = new System.Drawing.Size(184, 29);
  858. this.textBox_ProductDate.TabIndex = 1;
  859. //
  860. // textBox_ProductAddr
  861. //
  862. this.textBox_ProductAddr.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  863. this.textBox_ProductAddr.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  864. this.textBox_ProductAddr.Location = new System.Drawing.Point(123, 307);
  865. this.textBox_ProductAddr.Name = "textBox_ProductAddr";
  866. this.textBox_ProductAddr.Size = new System.Drawing.Size(184, 29);
  867. this.textBox_ProductAddr.TabIndex = 1;
  868. //
  869. // textBox_ProductMac
  870. //
  871. this.textBox_ProductMac.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  872. this.textBox_ProductMac.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  873. this.textBox_ProductMac.Location = new System.Drawing.Point(123, 255);
  874. this.textBox_ProductMac.Name = "textBox_ProductMac";
  875. this.textBox_ProductMac.Size = new System.Drawing.Size(184, 29);
  876. this.textBox_ProductMac.TabIndex = 1;
  877. //
  878. // textBox_MarkNum
  879. //
  880. this.textBox_MarkNum.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  881. this.textBox_MarkNum.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  882. this.textBox_MarkNum.Location = new System.Drawing.Point(123, 203);
  883. this.textBox_MarkNum.Name = "textBox_MarkNum";
  884. this.textBox_MarkNum.Size = new System.Drawing.Size(184, 29);
  885. this.textBox_MarkNum.TabIndex = 1;
  886. //
  887. // textBox_ProductName
  888. //
  889. this.textBox_ProductName.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  890. this.textBox_ProductName.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  891. this.textBox_ProductName.Location = new System.Drawing.Point(123, 151);
  892. this.textBox_ProductName.Name = "textBox_ProductName";
  893. this.textBox_ProductName.Size = new System.Drawing.Size(184, 29);
  894. this.textBox_ProductName.TabIndex = 1;
  895. //
  896. // textBox_CustomerName
  897. //
  898. this.textBox_CustomerName.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  899. this.textBox_CustomerName.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  900. this.textBox_CustomerName.Location = new System.Drawing.Point(123, 99);
  901. this.textBox_CustomerName.Name = "textBox_CustomerName";
  902. this.textBox_CustomerName.Size = new System.Drawing.Size(184, 29);
  903. this.textBox_CustomerName.TabIndex = 1;
  904. //
  905. // textBox_MarkCode
  906. //
  907. this.textBox_MarkCode.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  908. this.textBox_MarkCode.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  909. this.textBox_MarkCode.Location = new System.Drawing.Point(123, 47);
  910. this.textBox_MarkCode.Name = "textBox_MarkCode";
  911. this.textBox_MarkCode.Size = new System.Drawing.Size(184, 29);
  912. this.textBox_MarkCode.TabIndex = 1;
  913. //
  914. // label12
  915. //
  916. this.label12.AutoSize = true;
  917. this.label12.Location = new System.Drawing.Point(6, 571);
  918. this.label12.Name = "label12";
  919. this.label12.Size = new System.Drawing.Size(74, 21);
  920. this.label12.TabIndex = 0;
  921. this.label12.Text = "备注信息";
  922. //
  923. // label11
  924. //
  925. this.label11.AutoSize = true;
  926. this.label11.Location = new System.Drawing.Point(6, 519);
  927. this.label11.Name = "label11";
  928. this.label11.Size = new System.Drawing.Size(74, 21);
  929. this.label11.TabIndex = 0;
  930. this.label11.Text = "软件版本";
  931. //
  932. // label10
  933. //
  934. this.label10.AutoSize = true;
  935. this.label10.Location = new System.Drawing.Point(6, 467);
  936. this.label10.Name = "label10";
  937. this.label10.Size = new System.Drawing.Size(84, 21);
  938. this.label10.TabIndex = 0;
  939. this.label10.Text = "PCBA版本";
  940. //
  941. // label9
  942. //
  943. this.label9.AutoSize = true;
  944. this.label9.Location = new System.Drawing.Point(6, 415);
  945. this.label9.Name = "label9";
  946. this.label9.Size = new System.Drawing.Size(74, 21);
  947. this.label9.TabIndex = 0;
  948. this.label9.Text = "产品标识";
  949. //
  950. // label8
  951. //
  952. this.label8.AutoSize = true;
  953. this.label8.Location = new System.Drawing.Point(6, 363);
  954. this.label8.Name = "label8";
  955. this.label8.Size = new System.Drawing.Size(74, 21);
  956. this.label8.TabIndex = 0;
  957. this.label8.Text = "生产日期";
  958. //
  959. // label7
  960. //
  961. this.label7.AutoSize = true;
  962. this.label7.Location = new System.Drawing.Point(6, 311);
  963. this.label7.Name = "label7";
  964. this.label7.Size = new System.Drawing.Size(58, 21);
  965. this.label7.TabIndex = 0;
  966. this.label7.Text = "生产地";
  967. //
  968. // label6
  969. //
  970. this.label6.AutoSize = true;
  971. this.label6.Location = new System.Drawing.Point(6, 259);
  972. this.label6.Name = "label6";
  973. this.label6.Size = new System.Drawing.Size(58, 21);
  974. this.label6.TabIndex = 0;
  975. this.label6.Text = "生产商";
  976. //
  977. // label5
  978. //
  979. this.label5.AutoSize = true;
  980. this.label5.Location = new System.Drawing.Point(6, 207);
  981. this.label5.Name = "label5";
  982. this.label5.Size = new System.Drawing.Size(74, 21);
  983. this.label5.TabIndex = 0;
  984. this.label5.Text = "订单数量";
  985. //
  986. // label4
  987. //
  988. this.label4.AutoSize = true;
  989. this.label4.Location = new System.Drawing.Point(6, 155);
  990. this.label4.Name = "label4";
  991. this.label4.Size = new System.Drawing.Size(74, 21);
  992. this.label4.TabIndex = 0;
  993. this.label4.Text = "产品型号";
  994. //
  995. // label3
  996. //
  997. this.label3.AutoSize = true;
  998. this.label3.Location = new System.Drawing.Point(6, 103);
  999. this.label3.Name = "label3";
  1000. this.label3.Size = new System.Drawing.Size(113, 21);
  1001. this.label3.TabIndex = 0;
  1002. this.label3.Text = "客户名称/编号";
  1003. //
  1004. // label38
  1005. //
  1006. this.label38.AutoSize = true;
  1007. this.label38.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1008. this.label38.ForeColor = System.Drawing.Color.Silver;
  1009. this.label38.Location = new System.Drawing.Point(123, 495);
  1010. this.label38.Name = "label38";
  1011. this.label38.Size = new System.Drawing.Size(73, 16);
  1012. this.label38.TabIndex = 0;
  1013. this.label38.Text = "填写PCBA板号";
  1014. //
  1015. // label37
  1016. //
  1017. this.label37.AutoSize = true;
  1018. this.label37.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1019. this.label37.ForeColor = System.Drawing.Color.Silver;
  1020. this.label37.Location = new System.Drawing.Point(123, 444);
  1021. this.label37.Name = "label37";
  1022. this.label37.Size = new System.Drawing.Size(184, 16);
  1023. this.label37.TabIndex = 0;
  1024. this.label37.Text = "参考:大牙盘:MM_MC1;轮毂:GF_250_1";
  1025. //
  1026. // label33
  1027. //
  1028. this.label33.AutoSize = true;
  1029. this.label33.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1030. this.label33.ForeColor = System.Drawing.Color.Silver;
  1031. this.label33.Location = new System.Drawing.Point(123, 392);
  1032. this.label33.Name = "label33";
  1033. this.label33.Size = new System.Drawing.Size(73, 16);
  1034. this.label33.TabIndex = 0;
  1035. this.label33.Text = "不超过8个字符";
  1036. //
  1037. // label32
  1038. //
  1039. this.label32.AutoSize = true;
  1040. this.label32.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1041. this.label32.ForeColor = System.Drawing.Color.Silver;
  1042. this.label32.Location = new System.Drawing.Point(123, 339);
  1043. this.label32.Name = "label32";
  1044. this.label32.Size = new System.Drawing.Size(73, 16);
  1045. this.label32.TabIndex = 0;
  1046. this.label32.Text = "不超过8个字符";
  1047. //
  1048. // label31
  1049. //
  1050. this.label31.AutoSize = true;
  1051. this.label31.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1052. this.label31.ForeColor = System.Drawing.Color.Silver;
  1053. this.label31.Location = new System.Drawing.Point(123, 288);
  1054. this.label31.Name = "label31";
  1055. this.label31.Size = new System.Drawing.Size(73, 16);
  1056. this.label31.TabIndex = 0;
  1057. this.label31.Text = "不超过8个字符";
  1058. //
  1059. // label30
  1060. //
  1061. this.label30.AutoSize = true;
  1062. this.label30.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1063. this.label30.ForeColor = System.Drawing.Color.Silver;
  1064. this.label30.Location = new System.Drawing.Point(123, 548);
  1065. this.label30.Name = "label30";
  1066. this.label30.Size = new System.Drawing.Size(154, 16);
  1067. this.label30.TabIndex = 0;
  1068. this.label30.Text = "参考格式:V1.0.0.0.0_20240101";
  1069. //
  1070. // label2
  1071. //
  1072. this.label2.AutoSize = true;
  1073. this.label2.Location = new System.Drawing.Point(6, 51);
  1074. this.label2.Name = "label2";
  1075. this.label2.Size = new System.Drawing.Size(74, 21);
  1076. this.label2.TabIndex = 0;
  1077. this.label2.Text = "订单编号";
  1078. //
  1079. // label_ServerStatus
  1080. //
  1081. this.label_ServerStatus.BackColor = System.Drawing.Color.Red;
  1082. this.label_ServerStatus.Location = new System.Drawing.Point(982, 740);
  1083. this.label_ServerStatus.Name = "label_ServerStatus";
  1084. this.label_ServerStatus.Size = new System.Drawing.Size(35, 20);
  1085. this.label_ServerStatus.TabIndex = 21;
  1086. //
  1087. // label_Server_ComStatus
  1088. //
  1089. this.label_Server_ComStatus.AutoSize = true;
  1090. this.label_Server_ComStatus.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  1091. this.label_Server_ComStatus.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1092. this.label_Server_ComStatus.ForeColor = System.Drawing.Color.White;
  1093. this.label_Server_ComStatus.Location = new System.Drawing.Point(734, 738);
  1094. this.label_Server_ComStatus.Name = "label_Server_ComStatus";
  1095. this.label_Server_ComStatus.Size = new System.Drawing.Size(106, 21);
  1096. this.label_Server_ComStatus.TabIndex = 20;
  1097. this.label_Server_ComStatus.Text = "网络:未连接";
  1098. //
  1099. // pictureBox2
  1100. //
  1101. this.pictureBox2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1102. this.pictureBox2.Image = global::Welling_Motor_Debug_Tool.Properties.Resources.about;
  1103. this.pictureBox2.Location = new System.Drawing.Point(855, 706);
  1104. this.pictureBox2.Name = "pictureBox2";
  1105. this.pictureBox2.Size = new System.Drawing.Size(167, 23);
  1106. this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  1107. this.pictureBox2.TabIndex = 17;
  1108. this.pictureBox2.TabStop = false;
  1109. //
  1110. // comboBox_ModelFile
  1111. //
  1112. this.comboBox_ModelFile.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
  1113. this.comboBox_ModelFile.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  1114. this.comboBox_ModelFile.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1115. this.comboBox_ModelFile.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  1116. this.comboBox_ModelFile.FormattingEnabled = true;
  1117. this.comboBox_ModelFile.Location = new System.Drawing.Point(106, 21);
  1118. this.comboBox_ModelFile.Name = "comboBox_ModelFile";
  1119. this.comboBox_ModelFile.Size = new System.Drawing.Size(628, 29);
  1120. this.comboBox_ModelFile.TabIndex = 23;
  1121. this.comboBox_ModelFile.SelectedIndexChanged += new System.EventHandler(this.comboBox_ModelFile_SelectedIndexChanged);
  1122. //
  1123. // button_GenerateModelFile
  1124. //
  1125. this.button_GenerateModelFile.BackColor = System.Drawing.Color.Teal;
  1126. this.button_GenerateModelFile.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1127. this.button_GenerateModelFile.ForeColor = System.Drawing.Color.White;
  1128. this.button_GenerateModelFile.Location = new System.Drawing.Point(868, 13);
  1129. this.button_GenerateModelFile.Name = "button_GenerateModelFile";
  1130. this.button_GenerateModelFile.Size = new System.Drawing.Size(149, 45);
  1131. this.button_GenerateModelFile.TabIndex = 0;
  1132. this.button_GenerateModelFile.Text = "生成模板";
  1133. this.button_GenerateModelFile.UseVisualStyleBackColor = false;
  1134. this.button_GenerateModelFile.Click += new System.EventHandler(this.button_GenerateModelFile_Click);
  1135. //
  1136. // button_ModeRefresh
  1137. //
  1138. this.button_ModeRefresh.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
  1139. this.button_ModeRefresh.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1140. this.button_ModeRefresh.ForeColor = System.Drawing.Color.White;
  1141. this.button_ModeRefresh.Location = new System.Drawing.Point(750, 13);
  1142. this.button_ModeRefresh.Name = "button_ModeRefresh";
  1143. this.button_ModeRefresh.Size = new System.Drawing.Size(90, 45);
  1144. this.button_ModeRefresh.TabIndex = 0;
  1145. this.button_ModeRefresh.Text = "刷新";
  1146. this.button_ModeRefresh.UseVisualStyleBackColor = false;
  1147. this.button_ModeRefresh.Click += new System.EventHandler(this.button_ModeRefresh_Click);
  1148. //
  1149. // radioButton_MIGIC
  1150. //
  1151. this.radioButton_MIGIC.AutoSize = true;
  1152. this.radioButton_MIGIC.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  1153. this.radioButton_MIGIC.Location = new System.Drawing.Point(16, 30);
  1154. this.radioButton_MIGIC.Name = "radioButton_MIGIC";
  1155. this.radioButton_MIGIC.Size = new System.Drawing.Size(77, 25);
  1156. this.radioButton_MIGIC.TabIndex = 24;
  1157. this.radioButton_MIGIC.Text = "MIGIC";
  1158. this.radioButton_MIGIC.UseVisualStyleBackColor = true;
  1159. this.radioButton_MIGIC.Click += new System.EventHandler(this.radioButton_MIGIC_Click);
  1160. //
  1161. // radioButton_HUB
  1162. //
  1163. this.radioButton_HUB.AutoSize = true;
  1164. this.radioButton_HUB.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  1165. this.radioButton_HUB.Location = new System.Drawing.Point(16, 94);
  1166. this.radioButton_HUB.Name = "radioButton_HUB";
  1167. this.radioButton_HUB.Size = new System.Drawing.Size(62, 25);
  1168. this.radioButton_HUB.TabIndex = 24;
  1169. this.radioButton_HUB.Text = "HUB";
  1170. this.radioButton_HUB.UseVisualStyleBackColor = true;
  1171. this.radioButton_HUB.Click += new System.EventHandler(this.radioButton_HUB_Click);
  1172. //
  1173. // label_BT
  1174. //
  1175. this.label_BT.AutoSize = true;
  1176. this.label_BT.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  1177. this.label_BT.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1178. this.label_BT.ForeColor = System.Drawing.Color.White;
  1179. this.label_BT.Location = new System.Drawing.Point(431, 738);
  1180. this.label_BT.Name = "label_BT";
  1181. this.label_BT.Size = new System.Drawing.Size(207, 21);
  1182. this.label_BT.TabIndex = 20;
  1183. this.label_BT.Text = "编译时间:20220202 14:00";
  1184. //
  1185. // label_Ver
  1186. //
  1187. this.label_Ver.AutoSize = true;
  1188. this.label_Ver.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  1189. this.label_Ver.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1190. this.label_Ver.ForeColor = System.Drawing.Color.White;
  1191. this.label_Ver.Location = new System.Drawing.Point(298, 738);
  1192. this.label_Ver.Name = "label_Ver";
  1193. this.label_Ver.Size = new System.Drawing.Size(104, 21);
  1194. this.label_Ver.TabIndex = 20;
  1195. this.label_Ver.Text = "版本:V0.0.0";
  1196. //
  1197. // statusStrip1
  1198. //
  1199. this.statusStrip1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  1200. this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  1201. this.toolStripStatusLabel1});
  1202. this.statusStrip1.Location = new System.Drawing.Point(0, 735);
  1203. this.statusStrip1.Name = "statusStrip1";
  1204. this.statusStrip1.Size = new System.Drawing.Size(1034, 26);
  1205. this.statusStrip1.TabIndex = 25;
  1206. this.statusStrip1.Text = "statusStrip1";
  1207. //
  1208. // toolStripStatusLabel1
  1209. //
  1210. this.toolStripStatusLabel1.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1211. this.toolStripStatusLabel1.ForeColor = System.Drawing.Color.White;
  1212. this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
  1213. this.toolStripStatusLabel1.Size = new System.Drawing.Size(282, 21);
  1214. this.toolStripStatusLabel1.Text = "版权所有:武汉天腾动力科技有限公司";
  1215. //
  1216. // label45
  1217. //
  1218. this.label45.BackColor = System.Drawing.Color.Silver;
  1219. this.label45.ForeColor = System.Drawing.Color.White;
  1220. this.label45.Location = new System.Drawing.Point(288, 739);
  1221. this.label45.Name = "label45";
  1222. this.label45.Size = new System.Drawing.Size(1, 18);
  1223. this.label45.TabIndex = 26;
  1224. //
  1225. // label40
  1226. //
  1227. this.label40.BackColor = System.Drawing.Color.Silver;
  1228. this.label40.ForeColor = System.Drawing.Color.White;
  1229. this.label40.Location = new System.Drawing.Point(415, 739);
  1230. this.label40.Name = "label40";
  1231. this.label40.Size = new System.Drawing.Size(1, 18);
  1232. this.label40.TabIndex = 26;
  1233. //
  1234. // label41
  1235. //
  1236. this.label41.BackColor = System.Drawing.Color.Silver;
  1237. this.label41.ForeColor = System.Drawing.Color.White;
  1238. this.label41.Location = new System.Drawing.Point(695, 739);
  1239. this.label41.Name = "label41";
  1240. this.label41.Size = new System.Drawing.Size(1, 18);
  1241. this.label41.TabIndex = 26;
  1242. //
  1243. // button_ChangeModelFile
  1244. //
  1245. this.button_ChangeModelFile.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
  1246. this.button_ChangeModelFile.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1247. this.button_ChangeModelFile.ForeColor = System.Drawing.Color.White;
  1248. this.button_ChangeModelFile.Location = new System.Drawing.Point(868, 82);
  1249. this.button_ChangeModelFile.Name = "button_ChangeModelFile";
  1250. this.button_ChangeModelFile.Size = new System.Drawing.Size(149, 45);
  1251. this.button_ChangeModelFile.TabIndex = 0;
  1252. this.button_ChangeModelFile.Text = "修改模板";
  1253. this.button_ChangeModelFile.UseVisualStyleBackColor = false;
  1254. this.button_ChangeModelFile.Click += new System.EventHandler(this.button_ChangeModelFile_Click);
  1255. //
  1256. // button_DeletModelFile
  1257. //
  1258. this.button_DeletModelFile.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
  1259. this.button_DeletModelFile.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1260. this.button_DeletModelFile.ForeColor = System.Drawing.Color.White;
  1261. this.button_DeletModelFile.Location = new System.Drawing.Point(868, 151);
  1262. this.button_DeletModelFile.Name = "button_DeletModelFile";
  1263. this.button_DeletModelFile.Size = new System.Drawing.Size(149, 45);
  1264. this.button_DeletModelFile.TabIndex = 27;
  1265. this.button_DeletModelFile.Text = "删除模板";
  1266. this.button_DeletModelFile.UseVisualStyleBackColor = false;
  1267. this.button_DeletModelFile.Click += new System.EventHandler(this.button_DeletModelFile_Click);
  1268. //
  1269. // button_LoadFile
  1270. //
  1271. this.button_LoadFile.BackColor = System.Drawing.Color.Olive;
  1272. this.button_LoadFile.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1273. this.button_LoadFile.ForeColor = System.Drawing.Color.White;
  1274. this.button_LoadFile.Location = new System.Drawing.Point(868, 220);
  1275. this.button_LoadFile.Name = "button_LoadFile";
  1276. this.button_LoadFile.Size = new System.Drawing.Size(149, 45);
  1277. this.button_LoadFile.TabIndex = 27;
  1278. this.button_LoadFile.Text = "导入样机记录";
  1279. this.button_LoadFile.UseVisualStyleBackColor = false;
  1280. this.button_LoadFile.Click += new System.EventHandler(this.button_LoadFile_Click);
  1281. //
  1282. // radioButton_HUB_FCT
  1283. //
  1284. this.radioButton_HUB_FCT.AutoSize = true;
  1285. this.radioButton_HUB_FCT.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  1286. this.radioButton_HUB_FCT.Location = new System.Drawing.Point(16, 126);
  1287. this.radioButton_HUB_FCT.Name = "radioButton_HUB_FCT";
  1288. this.radioButton_HUB_FCT.Size = new System.Drawing.Size(98, 25);
  1289. this.radioButton_HUB_FCT.TabIndex = 24;
  1290. this.radioButton_HUB_FCT.Text = "HUB_FCT";
  1291. this.radioButton_HUB_FCT.UseVisualStyleBackColor = true;
  1292. this.radioButton_HUB_FCT.Click += new System.EventHandler(this.radioButton_HUB_FCT_Click);
  1293. //
  1294. // checkBox_SyncFac
  1295. //
  1296. this.checkBox_SyncFac.AutoSize = true;
  1297. this.checkBox_SyncFac.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  1298. this.checkBox_SyncFac.Location = new System.Drawing.Point(868, 675);
  1299. this.checkBox_SyncFac.Name = "checkBox_SyncFac";
  1300. this.checkBox_SyncFac.Size = new System.Drawing.Size(125, 25);
  1301. this.checkBox_SyncFac.TabIndex = 28;
  1302. this.checkBox_SyncFac.Text = "仅导出到本地";
  1303. this.checkBox_SyncFac.UseVisualStyleBackColor = true;
  1304. //
  1305. // groupBox6
  1306. //
  1307. this.groupBox6.Controls.Add(this.radioButton_VP);
  1308. this.groupBox6.Controls.Add(this.radioButton_MIGIC);
  1309. this.groupBox6.Controls.Add(this.radioButton_HUB);
  1310. this.groupBox6.Controls.Add(this.radioButton_HUB_FCT);
  1311. this.groupBox6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  1312. this.groupBox6.Location = new System.Drawing.Point(868, 432);
  1313. this.groupBox6.Name = "groupBox6";
  1314. this.groupBox6.Size = new System.Drawing.Size(149, 158);
  1315. this.groupBox6.TabIndex = 29;
  1316. this.groupBox6.TabStop = false;
  1317. this.groupBox6.Text = "配置类型";
  1318. //
  1319. // radioButton_VP
  1320. //
  1321. this.radioButton_VP.AutoSize = true;
  1322. this.radioButton_VP.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
  1323. this.radioButton_VP.Location = new System.Drawing.Point(16, 62);
  1324. this.radioButton_VP.Name = "radioButton_VP";
  1325. this.radioButton_VP.Size = new System.Drawing.Size(49, 25);
  1326. this.radioButton_VP.TabIndex = 25;
  1327. this.radioButton_VP.Text = "VP";
  1328. this.radioButton_VP.UseVisualStyleBackColor = true;
  1329. this.radioButton_VP.Click += new System.EventHandler(this.radioButton_VP_Click);
  1330. //
  1331. // GenerateParams
  1332. //
  1333. this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F);
  1334. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  1335. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1336. this.ClientSize = new System.Drawing.Size(1034, 761);
  1337. this.Controls.Add(this.groupBox6);
  1338. this.Controls.Add(this.checkBox_SyncFac);
  1339. this.Controls.Add(this.button_LoadFile);
  1340. this.Controls.Add(this.button_DeletModelFile);
  1341. this.Controls.Add(this.label41);
  1342. this.Controls.Add(this.label40);
  1343. this.Controls.Add(this.label45);
  1344. this.Controls.Add(this.label_ServerStatus);
  1345. this.Controls.Add(this.label_Server_ComStatus);
  1346. this.Controls.Add(this.label_BT);
  1347. this.Controls.Add(this.label_Ver);
  1348. this.Controls.Add(this.statusStrip1);
  1349. this.Controls.Add(this.comboBox_ModelFile);
  1350. this.Controls.Add(this.pictureBox2);
  1351. this.Controls.Add(this.groupBox1);
  1352. this.Controls.Add(this.tabControl1);
  1353. this.Controls.Add(this.label1);
  1354. this.Controls.Add(this.button_ModeRefresh);
  1355. this.Controls.Add(this.button_ChangeModelFile);
  1356. this.Controls.Add(this.button_GenerateModelFile);
  1357. this.Controls.Add(this.button_ExportParams);
  1358. this.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1359. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  1360. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  1361. this.Margin = new System.Windows.Forms.Padding(5);
  1362. this.MaximizeBox = false;
  1363. this.MinimizeBox = false;
  1364. this.Name = "GenerateParams";
  1365. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  1366. this.Text = "GenerateParams";
  1367. this.Load += new System.EventHandler(this.GenerateParams_Load);
  1368. this.tabControl1.ResumeLayout(false);
  1369. this.tabPage_Simple.ResumeLayout(false);
  1370. this.tabPage_Simple.PerformLayout();
  1371. this.groupBox5.ResumeLayout(false);
  1372. this.groupBox5.PerformLayout();
  1373. this.groupBox4.ResumeLayout(false);
  1374. this.groupBox4.PerformLayout();
  1375. this.groupBox3.ResumeLayout(false);
  1376. this.groupBox3.PerformLayout();
  1377. this.groupBox2.ResumeLayout(false);
  1378. this.groupBox2.PerformLayout();
  1379. this.tabPage_Advance.ResumeLayout(false);
  1380. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  1381. this.tabPage_Note.ResumeLayout(false);
  1382. this.groupBox1.ResumeLayout(false);
  1383. this.groupBox1.PerformLayout();
  1384. ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
  1385. this.statusStrip1.ResumeLayout(false);
  1386. this.statusStrip1.PerformLayout();
  1387. this.groupBox6.ResumeLayout(false);
  1388. this.groupBox6.PerformLayout();
  1389. this.ResumeLayout(false);
  1390. this.PerformLayout();
  1391. }
  1392. #endregion
  1393. private System.Windows.Forms.Button button_ExportParams;
  1394. private System.Windows.Forms.Label label1;
  1395. private System.Windows.Forms.TabControl tabControl1;
  1396. private System.Windows.Forms.TabPage tabPage_Simple;
  1397. private System.Windows.Forms.TabPage tabPage_Advance;
  1398. private System.Windows.Forms.GroupBox groupBox1;
  1399. private System.Windows.Forms.TextBox textBox_ProductTag;
  1400. private System.Windows.Forms.TextBox textBox_ProductDate;
  1401. private System.Windows.Forms.TextBox textBox_ProductAddr;
  1402. private System.Windows.Forms.TextBox textBox_ProductMac;
  1403. private System.Windows.Forms.TextBox textBox_MarkNum;
  1404. private System.Windows.Forms.TextBox textBox_ProductName;
  1405. private System.Windows.Forms.TextBox textBox_CustomerName;
  1406. private System.Windows.Forms.TextBox textBox_MarkCode;
  1407. private System.Windows.Forms.Label label9;
  1408. private System.Windows.Forms.Label label8;
  1409. private System.Windows.Forms.Label label7;
  1410. private System.Windows.Forms.Label label6;
  1411. private System.Windows.Forms.Label label5;
  1412. private System.Windows.Forms.Label label4;
  1413. private System.Windows.Forms.Label label3;
  1414. private System.Windows.Forms.Label label2;
  1415. private System.Windows.Forms.TextBox textBox_SoftwareVer;
  1416. private System.Windows.Forms.TextBox textBox_PCBA;
  1417. private System.Windows.Forms.Label label11;
  1418. private System.Windows.Forms.Label label10;
  1419. private System.Windows.Forms.TextBox textBox_OtherInfo;
  1420. private System.Windows.Forms.Label label12;
  1421. private System.Windows.Forms.RichTextBox richTextBox_AdvanceParams;
  1422. private System.Windows.Forms.PictureBox pictureBox2;
  1423. private System.Windows.Forms.GroupBox groupBox2;
  1424. private System.Windows.Forms.Label label19;
  1425. private System.Windows.Forms.Label label18;
  1426. private System.Windows.Forms.Label label17;
  1427. private System.Windows.Forms.TextBox textBox_BikeRealB;
  1428. private System.Windows.Forms.Label label16;
  1429. private System.Windows.Forms.TextBox textBox_BikeFrontT;
  1430. private System.Windows.Forms.Label label15;
  1431. private System.Windows.Forms.TextBox textBox_BikeWalkSpeed;
  1432. private System.Windows.Forms.Label label14;
  1433. private System.Windows.Forms.TextBox textBox_BikeThroSpeed;
  1434. private System.Windows.Forms.Label label13;
  1435. private System.Windows.Forms.TextBox textBox_BikeWheel;
  1436. private System.Windows.Forms.Label label24;
  1437. private System.Windows.Forms.TextBox textBox_BikeAutoOffTime;
  1438. private System.Windows.Forms.Label label23;
  1439. private System.Windows.Forms.TextBox textBox_BikePowerOffTime;
  1440. private System.Windows.Forms.Label label22;
  1441. private System.Windows.Forms.TextBox textBox_BikePowerOnTime;
  1442. private System.Windows.Forms.Label label21;
  1443. private System.Windows.Forms.Label label20;
  1444. private System.Windows.Forms.ComboBox comboBox_ModelFile;
  1445. private System.Windows.Forms.GroupBox groupBox5;
  1446. private System.Windows.Forms.Label label25;
  1447. private System.Windows.Forms.TextBox textBox_SysPowerLimit;
  1448. private System.Windows.Forms.Label label28;
  1449. private System.Windows.Forms.Label label29;
  1450. private System.Windows.Forms.GroupBox groupBox4;
  1451. private System.Windows.Forms.Label label26;
  1452. private System.Windows.Forms.TextBox textBox_AssistSpeedEnd;
  1453. private System.Windows.Forms.Label label27;
  1454. private System.Windows.Forms.TextBox textBox_AssistSpeedBegin;
  1455. private System.Windows.Forms.GroupBox groupBox3;
  1456. private System.Windows.Forms.Label label34;
  1457. private System.Windows.Forms.TextBox textBox_MotorUV;
  1458. private System.Windows.Forms.Label label35;
  1459. private System.Windows.Forms.TextBox textBox_MotorOV;
  1460. private System.Windows.Forms.Label label36;
  1461. private System.Windows.Forms.TextBox textBox_MotorMaxCurr;
  1462. private System.Windows.Forms.ComboBox comboBox_BikeStartMode;
  1463. private System.Windows.Forms.ComboBox comboBox_BikeModeB;
  1464. private System.Windows.Forms.ComboBox comboBox_BikeVolB;
  1465. private System.Windows.Forms.ComboBox comboBox_BikeVolF;
  1466. private System.Windows.Forms.ComboBox comboBox_SysDir;
  1467. private System.Windows.Forms.ComboBox comboBox_SysRunMode;
  1468. private System.Windows.Forms.Button button_GenerateModelFile;
  1469. private System.Windows.Forms.Label label_ServerStatus;
  1470. private System.Windows.Forms.Label label_Server_ComStatus;
  1471. private System.Windows.Forms.Button button_ModeRefresh;
  1472. private System.Windows.Forms.Label label38;
  1473. private System.Windows.Forms.Label label37;
  1474. private System.Windows.Forms.Label label33;
  1475. private System.Windows.Forms.Label label32;
  1476. private System.Windows.Forms.Label label31;
  1477. private System.Windows.Forms.Label label30;
  1478. private System.Windows.Forms.RadioButton radioButton_MIGIC;
  1479. private System.Windows.Forms.RadioButton radioButton_HUB;
  1480. private System.Windows.Forms.TabPage tabPage_Note;
  1481. private System.Windows.Forms.Button button_NoteWrite;
  1482. private System.Windows.Forms.RichTextBox richTextBox_Note;
  1483. private System.Windows.Forms.Button button_NoteRead;
  1484. private System.Windows.Forms.Label label_BT;
  1485. private System.Windows.Forms.Label label_Ver;
  1486. private System.Windows.Forms.StatusStrip statusStrip1;
  1487. private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel1;
  1488. private System.Windows.Forms.Label label45;
  1489. private System.Windows.Forms.Label label40;
  1490. private System.Windows.Forms.Label label41;
  1491. private System.Windows.Forms.Button button_ChangeModelFile;
  1492. private System.Windows.Forms.Button button_DeletModelFile;
  1493. private System.Windows.Forms.Button button_LoadFile;
  1494. private System.Windows.Forms.Label label39;
  1495. private System.Windows.Forms.PictureBox pictureBox1;
  1496. private System.Windows.Forms.RadioButton radioButton_HUB_FCT;
  1497. private System.Windows.Forms.CheckBox checkBox_SyncFac;
  1498. private System.Windows.Forms.GroupBox groupBox6;
  1499. private System.Windows.Forms.RadioButton radioButton_VP;
  1500. }
  1501. }