123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893 |
- namespace MOTINOVA_Motor_Factory_Set
- {
- partial class ExportForm
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ExportForm));
- this.label2 = new System.Windows.Forms.Label();
- this.groupBox2 = new System.Windows.Forms.GroupBox();
- this.label1 = new System.Windows.Forms.Label();
- this.textBox_WalkSpeed = new System.Windows.Forms.TextBox();
- this.textBox_WheelSizeAdj = new System.Windows.Forms.TextBox();
- this.label6 = new System.Windows.Forms.Label();
- this.textBox_CadenceStart = new System.Windows.Forms.TextBox();
- this.label9 = new System.Windows.Forms.Label();
- this.textBox_SMART_Gain = new System.Windows.Forms.TextBox();
- this.label12 = new System.Windows.Forms.Label();
- this.textBox_SPORT_Acc = new System.Windows.Forms.TextBox();
- this.label15 = new System.Windows.Forms.Label();
- this.textBox_NORM_Gain = new System.Windows.Forms.TextBox();
- this.label18 = new System.Windows.Forms.Label();
- this.textBox_Serial = new System.Windows.Forms.TextBox();
- this.label21 = new System.Windows.Forms.Label();
- this.textBox_NTC_Ptotect = new System.Windows.Forms.TextBox();
- this.label24 = new System.Windows.Forms.Label();
- this.textBox_T_Tail = new System.Windows.Forms.TextBox();
- this.label49 = new System.Windows.Forms.Label();
- this.label27 = new System.Windows.Forms.Label();
- this.textBox_SpeedLimit = new System.Windows.Forms.TextBox();
- this.textBox_Walk_SpeedLimit = new System.Windows.Forms.TextBox();
- this.label4 = new System.Windows.Forms.Label();
- this.label7 = new System.Windows.Forms.Label();
- this.textBox_SMART_Acc = new System.Windows.Forms.TextBox();
- this.textBox_UV_Protect = new System.Windows.Forms.TextBox();
- this.textBox_SpeedSensor = new System.Windows.Forms.TextBox();
- this.label10 = new System.Windows.Forms.Label();
- this.textBox_TURBO_Gain = new System.Windows.Forms.TextBox();
- this.textBox_TURBO_Acc = new System.Windows.Forms.TextBox();
- this.label13 = new System.Windows.Forms.Label();
- this.textBox_NORM_Acc = new System.Windows.Forms.TextBox();
- this.textBox_SPORT_Gain = new System.Windows.Forms.TextBox();
- this.label16 = new System.Windows.Forms.Label();
- this.textBox_ECO_Gain = new System.Windows.Forms.TextBox();
- this.textBox_ECO_Acc = new System.Windows.Forms.TextBox();
- this.label19 = new System.Windows.Forms.Label();
- this.textBox_WheelSize = new System.Windows.Forms.TextBox();
- this.label22 = new System.Windows.Forms.Label();
- this.textBox_NTC_Alarm = new System.Windows.Forms.TextBox();
- this.label25 = new System.Windows.Forms.Label();
- this.label48 = new System.Windows.Forms.Label();
- this.textBox_MaxCurrent = new System.Windows.Forms.TextBox();
- this.textBox_Dec = new System.Windows.Forms.TextBox();
- this.textBox_T_Front = new System.Windows.Forms.TextBox();
- this.label28 = new System.Windows.Forms.Label();
- this.textBox_StopTime = new System.Windows.Forms.TextBox();
- this.label5 = new System.Windows.Forms.Label();
- this.comboBox_SpeedSensor = new System.Windows.Forms.ComboBox();
- this.comboBox_GasMode = new System.Windows.Forms.ComboBox();
- this.label8 = new System.Windows.Forms.Label();
- this.label11 = new System.Windows.Forms.Label();
- this.label14 = new System.Windows.Forms.Label();
- this.label17 = new System.Windows.Forms.Label();
- this.label20 = new System.Windows.Forms.Label();
- this.comboBox_NoPBU = new System.Windows.Forms.ComboBox();
- this.label23 = new System.Windows.Forms.Label();
- this.label26 = new System.Windows.Forms.Label();
- this.label47 = new System.Windows.Forms.Label();
- this.label29 = new System.Windows.Forms.Label();
- this.comboBox_StartMode = new System.Windows.Forms.ComboBox();
- this.groupBox3 = new System.Windows.Forms.GroupBox();
- this.label59 = new System.Windows.Forms.Label();
- this.label58 = new System.Windows.Forms.Label();
- this.label3 = new System.Windows.Forms.Label();
- this.comboBox_TailLightVol = new System.Windows.Forms.ComboBox();
- this.label46 = new System.Windows.Forms.Label();
- this.comboBox_HeadLightVol = new System.Windows.Forms.ComboBox();
- this.textBox_Angle_R = new System.Windows.Forms.TextBox();
- this.comboBox_LightMode = new System.Windows.Forms.ComboBox();
- this.label44 = new System.Windows.Forms.Label();
- this.comboBox_AstSensor = new System.Windows.Forms.ComboBox();
- this.label45 = new System.Windows.Forms.Label();
- this.textBox_Angle_P = new System.Windows.Forms.TextBox();
- this.groupBox7 = new System.Windows.Forms.GroupBox();
- this.label43 = new System.Windows.Forms.Label();
- this.label42 = new System.Windows.Forms.Label();
- this.textBox_Info2 = new System.Windows.Forms.TextBox();
- this.label41 = new System.Windows.Forms.Label();
- this.textBox_Info1 = new System.Windows.Forms.TextBox();
- this.textBox_Info3 = new System.Windows.Forms.TextBox();
- this.groupBox4 = new System.Windows.Forms.GroupBox();
- this.label35 = new System.Windows.Forms.Label();
- this.label30 = new System.Windows.Forms.Label();
- this.label31 = new System.Windows.Forms.Label();
- this.label32 = new System.Windows.Forms.Label();
- this.textBox_RatePower = new System.Windows.Forms.TextBox();
- this.textBox_RotorR = new System.Windows.Forms.TextBox();
- this.textBox_Rate_Vol = new System.Windows.Forms.TextBox();
- this.textBox_Rotor_Ld = new System.Windows.Forms.TextBox();
- this.label36 = new System.Windows.Forms.Label();
- this.label33 = new System.Windows.Forms.Label();
- this.label34 = new System.Windows.Forms.Label();
- this.textBox_RateSpeed = new System.Windows.Forms.TextBox();
- this.textBox_Rotor_Lq = new System.Windows.Forms.TextBox();
- this.textBox_E = new System.Windows.Forms.TextBox();
- this.groupBox5 = new System.Windows.Forms.GroupBox();
- this.label37 = new System.Windows.Forms.Label();
- this.textBox_Secrect = new System.Windows.Forms.TextBox();
- this.groupBox6 = new System.Windows.Forms.GroupBox();
- this.label40 = new System.Windows.Forms.Label();
- this.label38 = new System.Windows.Forms.Label();
- this.label39 = new System.Windows.Forms.Label();
- this.textBox_Mac_Date = new System.Windows.Forms.TextBox();
- this.textBox_Mac = new System.Windows.Forms.TextBox();
- this.textBox_Mac_Addr = new System.Windows.Forms.TextBox();
- this.button_Generate = new System.Windows.Forms.Button();
- this.button_Default = new System.Windows.Forms.Button();
- this.groupBox1 = new System.Windows.Forms.GroupBox();
- this.label53 = new System.Windows.Forms.Label();
- this.label57 = new System.Windows.Forms.Label();
- this.label52 = new System.Windows.Forms.Label();
- this.label51 = new System.Windows.Forms.Label();
- this.textBox_Remark = new System.Windows.Forms.TextBox();
- this.textBox_TE_FW_Version = new System.Windows.Forms.TextBox();
- this.label50 = new System.Windows.Forms.Label();
- this.textBox_FW_Version = new System.Windows.Forms.TextBox();
- this.textBox_Client = new System.Windows.Forms.TextBox();
- this.textBox_Model = new System.Windows.Forms.TextBox();
- this.groupBox8 = new System.Windows.Forms.GroupBox();
- this.label54 = new System.Windows.Forms.Label();
- this.label62 = new System.Windows.Forms.Label();
- this.textBox_Start_Max = new System.Windows.Forms.TextBox();
- this.label61 = new System.Windows.Forms.Label();
- this.textBox_K_Max = new System.Windows.Forms.TextBox();
- this.textBox_Start_Min = new System.Windows.Forms.TextBox();
- this.label60 = new System.Windows.Forms.Label();
- this.textBox_K_Min = new System.Windows.Forms.TextBox();
- this.textBox_Zero_Max = new System.Windows.Forms.TextBox();
- this.textBox_Zero_Min = new System.Windows.Forms.TextBox();
- this.label56 = new System.Windows.Forms.Label();
- this.textBox_GasSpeedTh = new System.Windows.Forms.TextBox();
- this.label55 = new System.Windows.Forms.Label();
- this.textBox_SpeedTh = new System.Windows.Forms.TextBox();
- this.textBox_NC_Current = new System.Windows.Forms.TextBox();
- this.pictureBox2 = new System.Windows.Forms.PictureBox();
- this.pictureBox1 = new System.Windows.Forms.PictureBox();
- this.button_keyboard = new System.Windows.Forms.Button();
- this.groupBox2.SuspendLayout();
- this.groupBox3.SuspendLayout();
- this.groupBox7.SuspendLayout();
- this.groupBox4.SuspendLayout();
- this.groupBox5.SuspendLayout();
- this.groupBox6.SuspendLayout();
- this.groupBox1.SuspendLayout();
- this.groupBox8.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
- this.SuspendLayout();
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
- this.label2.Location = new System.Drawing.Point(8, 578);
- this.label2.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(423, 21);
- this.label2.TabIndex = 5;
- this.label2.Text = "Copyright © 2022 MOTINOVA Inc. All Rights Reserved";
- //
- // groupBox2
- //
- this.groupBox2.Controls.Add(this.label1);
- this.groupBox2.Controls.Add(this.textBox_WalkSpeed);
- this.groupBox2.Controls.Add(this.textBox_WheelSizeAdj);
- this.groupBox2.Controls.Add(this.label6);
- this.groupBox2.Controls.Add(this.textBox_CadenceStart);
- this.groupBox2.Controls.Add(this.label9);
- this.groupBox2.Controls.Add(this.textBox_SMART_Gain);
- this.groupBox2.Controls.Add(this.label12);
- this.groupBox2.Controls.Add(this.textBox_SPORT_Acc);
- this.groupBox2.Controls.Add(this.label15);
- this.groupBox2.Controls.Add(this.textBox_NORM_Gain);
- this.groupBox2.Controls.Add(this.label18);
- this.groupBox2.Controls.Add(this.textBox_Serial);
- this.groupBox2.Controls.Add(this.label21);
- this.groupBox2.Controls.Add(this.textBox_NTC_Ptotect);
- this.groupBox2.Controls.Add(this.label24);
- this.groupBox2.Controls.Add(this.textBox_T_Tail);
- this.groupBox2.Controls.Add(this.label49);
- this.groupBox2.Controls.Add(this.label27);
- this.groupBox2.Controls.Add(this.textBox_SpeedLimit);
- this.groupBox2.Controls.Add(this.textBox_Walk_SpeedLimit);
- this.groupBox2.Controls.Add(this.label4);
- this.groupBox2.Controls.Add(this.label7);
- this.groupBox2.Controls.Add(this.textBox_SMART_Acc);
- this.groupBox2.Controls.Add(this.textBox_UV_Protect);
- this.groupBox2.Controls.Add(this.textBox_SpeedSensor);
- this.groupBox2.Controls.Add(this.label10);
- this.groupBox2.Controls.Add(this.textBox_TURBO_Gain);
- this.groupBox2.Controls.Add(this.textBox_TURBO_Acc);
- this.groupBox2.Controls.Add(this.label13);
- this.groupBox2.Controls.Add(this.textBox_NORM_Acc);
- this.groupBox2.Controls.Add(this.textBox_SPORT_Gain);
- this.groupBox2.Controls.Add(this.label16);
- this.groupBox2.Controls.Add(this.textBox_ECO_Gain);
- this.groupBox2.Controls.Add(this.textBox_ECO_Acc);
- this.groupBox2.Controls.Add(this.label19);
- this.groupBox2.Controls.Add(this.textBox_WheelSize);
- this.groupBox2.Controls.Add(this.label22);
- this.groupBox2.Controls.Add(this.textBox_NTC_Alarm);
- this.groupBox2.Controls.Add(this.label25);
- this.groupBox2.Controls.Add(this.label48);
- this.groupBox2.Controls.Add(this.textBox_MaxCurrent);
- this.groupBox2.Controls.Add(this.textBox_Dec);
- this.groupBox2.Controls.Add(this.textBox_T_Front);
- this.groupBox2.Controls.Add(this.label28);
- this.groupBox2.Controls.Add(this.textBox_StopTime);
- this.groupBox2.Controls.Add(this.label5);
- this.groupBox2.Controls.Add(this.comboBox_SpeedSensor);
- this.groupBox2.Controls.Add(this.comboBox_GasMode);
- this.groupBox2.Controls.Add(this.label8);
- this.groupBox2.Controls.Add(this.label11);
- this.groupBox2.Controls.Add(this.label14);
- this.groupBox2.Controls.Add(this.label17);
- this.groupBox2.Controls.Add(this.label20);
- this.groupBox2.Controls.Add(this.comboBox_NoPBU);
- this.groupBox2.Controls.Add(this.label23);
- this.groupBox2.Controls.Add(this.label26);
- this.groupBox2.Controls.Add(this.label47);
- this.groupBox2.Controls.Add(this.label29);
- this.groupBox2.Controls.Add(this.comboBox_StartMode);
- this.groupBox2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
- this.groupBox2.Location = new System.Drawing.Point(12, 12);
- this.groupBox2.Name = "groupBox2";
- this.groupBox2.Size = new System.Drawing.Size(547, 396);
- this.groupBox2.TabIndex = 3;
- this.groupBox2.TabStop = false;
- this.groupBox2.Text = "用户参数1";
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Location = new System.Drawing.Point(6, 33);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(74, 21);
- this.label1.TabIndex = 0;
- this.label1.Text = "启动模式";
- //
- // textBox_WalkSpeed
- //
- this.textBox_WalkSpeed.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
- this.textBox_WalkSpeed.ForeColor = System.Drawing.Color.Black;
- this.textBox_WalkSpeed.ImeMode = System.Windows.Forms.ImeMode.Disable;
- this.textBox_WalkSpeed.Location = new System.Drawing.Point(463, 353);
- this.textBox_WalkSpeed.Name = "textBox_WalkSpeed";
- this.textBox_WalkSpeed.Size = new System.Drawing.Size(70, 29);
- this.textBox_WalkSpeed.TabIndex = 2;
- //
- // textBox_WheelSizeAdj
- //
- this.textBox_WheelSizeAdj.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
- this.textBox_WheelSizeAdj.ForeColor = System.Drawing.Color.Black;
- this.textBox_WheelSizeAdj.ImeMode = System.Windows.Forms.ImeMode.Disable;
- this.textBox_WheelSizeAdj.Location = new System.Drawing.Point(463, 317);
- this.textBox_WheelSizeAdj.Name = "textBox_WheelSizeAdj";
- this.textBox_WheelSizeAdj.Size = new System.Drawing.Size(70, 29);
- this.textBox_WheelSizeAdj.TabIndex = 2;
- //
- // label6
- //
- this.label6.AutoSize = true;
- this.label6.Location = new System.Drawing.Point(6, 69);
- this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(74, 21);
- this.label6.TabIndex = 0;
- this.label6.Text = "下降速度";
- //
- // textBox_CadenceStart
- //
- this.textBox_CadenceStart.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
- this.textBox_CadenceStart.ForeColor = System.Drawing.Color.Black;
- this.textBox_CadenceStart.ImeMode = System.Windows.Forms.ImeMode.Disable;
- this.textBox_CadenceStart.Location = new System.Drawing.Point(463, 281);
- this.textBox_CadenceStart.Name = "textBox_CadenceStart";
- this.textBox_CadenceStart.Size = new System.Drawing.Size(70, 29);
- this.textBox_CadenceStart.TabIndex = 2;
- //
- // label9
- //
- this.label9.AutoSize = true;
- this.label9.Location = new System.Drawing.Point(6, 105);
- this.label9.Name = "label9";
- this.label9.Size = new System.Drawing.Size(58, 21);
- this.label9.TabIndex = 0;
- this.label9.Text = "限流值";
- //
- // textBox_SMART_Gain
- //
- this.textBox_SMART_Gain.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
- this.textBox_SMART_Gain.ForeColor = System.Drawing.Color.Black;
- this.textBox_SMART_Gain.ImeMode = System.Windows.Forms.ImeMode.Disable;
- this.textBox_SMART_Gain.Location = new System.Drawing.Point(463, 245);
- this.textBox_SMART_Gain.Name = "textBox_SMART_Gain";
- this.textBox_SMART_Gain.Size = new System.Drawing.Size(70, 29);
- this.textBox_SMART_Gain.TabIndex = 2;
- //
- // label12
- //
- this.label12.AutoSize = true;
- this.label12.Location = new System.Drawing.Point(6, 141);
- this.label12.Name = "label12";
- this.label12.Size = new System.Drawing.Size(42, 21);
- this.label12.TabIndex = 0;
- this.label12.Text = "码表";
- //
- // textBox_SPORT_Acc
- //
- this.textBox_SPORT_Acc.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
- this.textBox_SPORT_Acc.ForeColor = System.Drawing.Color.Black;
- this.textBox_SPORT_Acc.ImeMode = System.Windows.Forms.ImeMode.Disable;
- this.textBox_SPORT_Acc.Location = new System.Drawing.Point(463, 209);
- this.textBox_SPORT_Acc.Name = "textBox_SPORT_Acc";
- this.textBox_SPORT_Acc.Size = new System.Drawing.Size(70, 29);
- this.textBox_SPORT_Acc.TabIndex = 2;
- //
- // label15
- //
- this.label15.AutoSize = true;
- this.label15.Location = new System.Drawing.Point(6, 177);
- this.label15.Name = "label15";
- this.label15.Size = new System.Drawing.Size(75, 21);
- this.label15.TabIndex = 0;
- this.label15.Text = "ECO增益";
- //
- // textBox_NORM_Gain
- //
- this.textBox_NORM_Gain.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
- this.textBox_NORM_Gain.ForeColor = System.Drawing.Color.Black;
- this.textBox_NORM_Gain.ImeMode = System.Windows.Forms.ImeMode.Disable;
- this.textBox_NORM_Gain.Location = new System.Drawing.Point(463, 173);
- this.textBox_NORM_Gain.Name = "textBox_NORM_Gain";
- this.textBox_NORM_Gain.Size = new System.Drawing.Size(70, 29);
- this.textBox_NORM_Gain.TabIndex = 2;
- //
- // label18
- //
- this.label18.AutoSize = true;
- this.label18.Location = new System.Drawing.Point(6, 213);
- this.label18.Name = "label18";
- this.label18.Size = new System.Drawing.Size(94, 21);
- this.label18.TabIndex = 0;
- this.label18.Text = "NORM加速";
- //
- // textBox_Serial
- //
- this.textBox_Serial.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
- this.textBox_Serial.ForeColor = System.Drawing.Color.Black;
- this.textBox_Serial.ImeMode = System.Windows.Forms.ImeMode.Disable;
- this.textBox_Serial.Location = new System.Drawing.Point(463, 137);
- this.textBox_Serial.Name = "textBox_Serial";
- this.textBox_Serial.Size = new System.Drawing.Size(70, 29);
- this.textBox_Serial.TabIndex = 2;
- //
- // label21
- //
- this.label21.AutoSize = true;
- this.label21.Location = new System.Drawing.Point(6, 249);
- this.label21.Name = "label21";
- this.label21.Size = new System.Drawing.Size(96, 21);
- this.label21.TabIndex = 0;
- this.label21.Text = "TURBO增益";
- //
- // textBox_NTC_Ptotect
- //
- this.textBox_NTC_Ptotect.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
- this.textBox_NTC_Ptotect.ForeColor = System.Drawing.Color.Black;
- this.textBox_NTC_Ptotect.ImeMode = System.Windows.Forms.ImeMode.Disable;
- this.textBox_NTC_Ptotect.Location = new System.Drawing.Point(463, 101);
- this.textBox_NTC_Ptotect.Name = "textBox_NTC_Ptotect";
- this.textBox_NTC_Ptotect.Size = new System.Drawing.Size(70, 29);
- this.textBox_NTC_Ptotect.TabIndex = 2;
- //
- // label24
- //
- this.label24.AutoSize = true;
- this.label24.Location = new System.Drawing.Point(6, 285);
- this.label24.Name = "label24";
- this.label24.Size = new System.Drawing.Size(97, 21);
- this.label24.TabIndex = 0;
- this.label24.Text = "SMART加速";
- //
- // textBox_T_Tail
- //
- this.textBox_T_Tail.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_T_Tail.ForeColor = System.Drawing.Color.Black;
- this.textBox_T_Tail.ImeMode = System.Windows.Forms.ImeMode.Disable;
- this.textBox_T_Tail.Location = new System.Drawing.Point(463, 65);
- this.textBox_T_Tail.Name = "textBox_T_Tail";
- this.textBox_T_Tail.Size = new System.Drawing.Size(70, 29);
- this.textBox_T_Tail.TabIndex = 2;
- //
- // label49
- //
- this.label49.AutoSize = true;
- this.label49.Location = new System.Drawing.Point(7, 357);
- this.label49.Name = "label49";
- this.label49.Size = new System.Drawing.Size(74, 21);
- this.label49.TabIndex = 0;
- this.label49.Text = "低压保护";
- //
- // label27
- //
- this.label27.AutoSize = true;
- this.label27.Location = new System.Drawing.Point(6, 321);
- this.label27.Name = "label27";
- this.label27.Size = new System.Drawing.Size(74, 21);
- this.label27.TabIndex = 0;
- this.label27.Text = "指拨模式";
- //
- // textBox_SpeedLimit
- //
- this.textBox_SpeedLimit.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
- this.textBox_SpeedLimit.ForeColor = System.Drawing.Color.Black;
- this.textBox_SpeedLimit.ImeMode = System.Windows.Forms.ImeMode.Disable;
- this.textBox_SpeedLimit.Location = new System.Drawing.Point(463, 29);
- this.textBox_SpeedLimit.Name = "textBox_SpeedLimit";
- this.textBox_SpeedLimit.Size = new System.Drawing.Size(70, 29);
- this.textBox_SpeedLimit.TabIndex = 2;
- //
- // textBox_Walk_SpeedLimit
- //
- this.textBox_Walk_SpeedLimit.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
- this.textBox_Walk_SpeedLimit.ForeColor = System.Drawing.Color.Black;
- this.textBox_Walk_SpeedLimit.ImeMode = System.Windows.Forms.ImeMode.Disable;
- this.textBox_Walk_SpeedLimit.Location = new System.Drawing.Point(288, 353);
- this.textBox_Walk_SpeedLimit.Name = "textBox_Walk_SpeedLimit";
- this.textBox_Walk_SpeedLimit.Size = new System.Drawing.Size(70, 29);
- this.textBox_Walk_SpeedLimit.TabIndex = 2;
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.Location = new System.Drawing.Point(180, 33);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(74, 21);
- this.label4.TabIndex = 0;
- this.label4.Text = "停机时间";
- //
- // label7
- //
- this.label7.AutoSize = true;
- this.label7.Location = new System.Drawing.Point(180, 69);
- this.label7.Name = "label7";
- this.label7.Size = new System.Drawing.Size(42, 21);
- this.label7.TabIndex = 0;
- this.label7.Text = "前飞";
- //
- // textBox_SMART_Acc
- //
- this.textBox_SMART_Acc.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
- this.textBox_SMART_Acc.ForeColor = System.Drawing.Color.Black;
- this.textBox_SMART_Acc.ImeMode = System.Windows.Forms.ImeMode.Disable;
- this.textBox_SMART_Acc.Location = new System.Drawing.Point(105, 281);
- this.textBox_SMART_Acc.Name = "textBox_SMART_Acc";
- this.textBox_SMART_Acc.Size = new System.Drawing.Size(70, 29);
- this.textBox_SMART_Acc.TabIndex = 2;
- //
- // textBox_UV_Protect
- //
- this.textBox_UV_Protect.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_UV_Protect.ForeColor = System.Drawing.Color.Black;
- this.textBox_UV_Protect.ImeMode = System.Windows.Forms.ImeMode.Disable;
- this.textBox_UV_Protect.Location = new System.Drawing.Point(105, 353);
- this.textBox_UV_Protect.Name = "textBox_UV_Protect";
- this.textBox_UV_Protect.Size = new System.Drawing.Size(70, 29);
- this.textBox_UV_Protect.TabIndex = 2;
- //
- // textBox_SpeedSensor
- //
- this.textBox_SpeedSensor.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
- this.textBox_SpeedSensor.ForeColor = System.Drawing.Color.Black;
- this.textBox_SpeedSensor.ImeMode = System.Windows.Forms.ImeMode.Disable;
- this.textBox_SpeedSensor.Location = new System.Drawing.Point(288, 281);
- this.textBox_SpeedSensor.Name = "textBox_SpeedSensor";
- this.textBox_SpeedSensor.Size = new System.Drawing.Size(70, 29);
- this.textBox_SpeedSensor.TabIndex = 2;
- //
- // label10
- //
- this.label10.AutoSize = true;
- this.label10.Location = new System.Drawing.Point(180, 105);
- this.label10.Name = "label10";
- this.label10.Size = new System.Drawing.Size(74, 21);
- this.label10.TabIndex = 0;
- this.label10.Text = "温度预警";
- //
- // textBox_TURBO_Gain
- //
- this.textBox_TURBO_Gain.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
- this.textBox_TURBO_Gain.ForeColor = System.Drawing.Color.Black;
- this.textBox_TURBO_Gain.ImeMode = System.Windows.Forms.ImeMode.Disable;
- this.textBox_TURBO_Gain.Location = new System.Drawing.Point(105, 245);
- this.textBox_TURBO_Gain.Name = "textBox_TURBO_Gain";
- this.textBox_TURBO_Gain.Size = new System.Drawing.Size(70, 29);
- this.textBox_TURBO_Gain.TabIndex = 2;
- //
- // textBox_TURBO_Acc
- //
- this.textBox_TURBO_Acc.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
- this.textBox_TURBO_Acc.ForeColor = System.Drawing.Color.Black;
- this.textBox_TURBO_Acc.ImeMode = System.Windows.Forms.ImeMode.Disable;
- this.textBox_TURBO_Acc.Location = new System.Drawing.Point(288, 245);
- this.textBox_TURBO_Acc.Name = "textBox_TURBO_Acc";
- this.textBox_TURBO_Acc.Size = new System.Drawing.Size(70, 29);
- this.textBox_TURBO_Acc.TabIndex = 2;
- //
- // label13
- //
- this.label13.AutoSize = true;
- this.label13.Location = new System.Drawing.Point(180, 141);
- this.label13.Name = "label13";
- this.label13.Size = new System.Drawing.Size(74, 21);
- this.label13.TabIndex = 0;
- this.label13.Text = "轮胎周长";
- //
- // textBox_NORM_Acc
- //
- this.textBox_NORM_Acc.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
- this.textBox_NORM_Acc.ForeColor = System.Drawing.Color.Black;
- this.textBox_NORM_Acc.ImeMode = System.Windows.Forms.ImeMode.Disable;
- this.textBox_NORM_Acc.Location = new System.Drawing.Point(105, 209);
- this.textBox_NORM_Acc.Name = "textBox_NORM_Acc";
- this.textBox_NORM_Acc.Size = new System.Drawing.Size(70, 29);
- this.textBox_NORM_Acc.TabIndex = 2;
- //
- // textBox_SPORT_Gain
- //
- this.textBox_SPORT_Gain.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
- this.textBox_SPORT_Gain.ForeColor = System.Drawing.Color.Black;
- this.textBox_SPORT_Gain.ImeMode = System.Windows.Forms.ImeMode.Disable;
- this.textBox_SPORT_Gain.Location = new System.Drawing.Point(288, 209);
- this.textBox_SPORT_Gain.Name = "textBox_SPORT_Gain";
- this.textBox_SPORT_Gain.Size = new System.Drawing.Size(70, 29);
- this.textBox_SPORT_Gain.TabIndex = 2;
- //
- // label16
- //
- this.label16.AutoSize = true;
- this.label16.Location = new System.Drawing.Point(180, 177);
- this.label16.Name = "label16";
- this.label16.Size = new System.Drawing.Size(75, 21);
- this.label16.TabIndex = 0;
- this.label16.Text = "ECO加速";
- //
- // textBox_ECO_Gain
- //
- this.textBox_ECO_Gain.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
- this.textBox_ECO_Gain.ForeColor = System.Drawing.Color.Black;
- this.textBox_ECO_Gain.ImeMode = System.Windows.Forms.ImeMode.Disable;
- this.textBox_ECO_Gain.Location = new System.Drawing.Point(105, 173);
- this.textBox_ECO_Gain.Name = "textBox_ECO_Gain";
- this.textBox_ECO_Gain.Size = new System.Drawing.Size(70, 29);
- this.textBox_ECO_Gain.TabIndex = 2;
- //
- // textBox_ECO_Acc
- //
- this.textBox_ECO_Acc.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
- this.textBox_ECO_Acc.ForeColor = System.Drawing.Color.Black;
- this.textBox_ECO_Acc.ImeMode = System.Windows.Forms.ImeMode.Disable;
- this.textBox_ECO_Acc.Location = new System.Drawing.Point(288, 173);
- this.textBox_ECO_Acc.Name = "textBox_ECO_Acc";
- this.textBox_ECO_Acc.Size = new System.Drawing.Size(70, 29);
- this.textBox_ECO_Acc.TabIndex = 2;
- //
- // label19
- //
- this.label19.AutoSize = true;
- this.label19.Location = new System.Drawing.Point(180, 213);
- this.label19.Name = "label19";
- this.label19.Size = new System.Drawing.Size(93, 21);
- this.label19.TabIndex = 0;
- this.label19.Text = "SPORT增益";
- //
- // textBox_WheelSize
- //
- this.textBox_WheelSize.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
- this.textBox_WheelSize.ForeColor = System.Drawing.Color.Black;
- this.textBox_WheelSize.ImeMode = System.Windows.Forms.ImeMode.Disable;
- this.textBox_WheelSize.Location = new System.Drawing.Point(288, 137);
- this.textBox_WheelSize.Name = "textBox_WheelSize";
- this.textBox_WheelSize.Size = new System.Drawing.Size(70, 29);
- this.textBox_WheelSize.TabIndex = 2;
- //
- // label22
- //
- this.label22.AutoSize = true;
- this.label22.Location = new System.Drawing.Point(180, 249);
- this.label22.Name = "label22";
- this.label22.Size = new System.Drawing.Size(96, 21);
- this.label22.TabIndex = 0;
- this.label22.Text = "TURBO加速";
- //
- // textBox_NTC_Alarm
- //
- this.textBox_NTC_Alarm.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
- this.textBox_NTC_Alarm.ForeColor = System.Drawing.Color.Black;
- this.textBox_NTC_Alarm.ImeMode = System.Windows.Forms.ImeMode.Disable;
- this.textBox_NTC_Alarm.Location = new System.Drawing.Point(288, 101);
- this.textBox_NTC_Alarm.Name = "textBox_NTC_Alarm";
- this.textBox_NTC_Alarm.Size = new System.Drawing.Size(70, 29);
- this.textBox_NTC_Alarm.TabIndex = 2;
- //
- // label25
- //
- this.label25.AutoSize = true;
- this.label25.Location = new System.Drawing.Point(180, 285);
- this.label25.Name = "label25";
- this.label25.Size = new System.Drawing.Size(74, 21);
- this.label25.TabIndex = 0;
- this.label25.Text = "车速级数";
- //
- // label48
- //
- this.label48.AutoSize = true;
- this.label48.Location = new System.Drawing.Point(180, 357);
- this.label48.Name = "label48";
- this.label48.Size = new System.Drawing.Size(74, 21);
- this.label48.TabIndex = 0;
- this.label48.Text = "推行限速";
- //
- // textBox_MaxCurrent
- //
- this.textBox_MaxCurrent.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
- this.textBox_MaxCurrent.ForeColor = System.Drawing.Color.Black;
- this.textBox_MaxCurrent.ImeMode = System.Windows.Forms.ImeMode.Disable;
- this.textBox_MaxCurrent.Location = new System.Drawing.Point(105, 101);
- this.textBox_MaxCurrent.Name = "textBox_MaxCurrent";
- this.textBox_MaxCurrent.Size = new System.Drawing.Size(70, 29);
- this.textBox_MaxCurrent.TabIndex = 2;
- //
- // textBox_Dec
- //
- this.textBox_Dec.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
- this.textBox_Dec.ForeColor = System.Drawing.Color.Black;
- this.textBox_Dec.ImeMode = System.Windows.Forms.ImeMode.Disable;
- this.textBox_Dec.Location = new System.Drawing.Point(105, 65);
- this.textBox_Dec.Name = "textBox_Dec";
- this.textBox_Dec.Size = new System.Drawing.Size(70, 29);
- this.textBox_Dec.TabIndex = 2;
- //
- // textBox_T_Front
- //
- this.textBox_T_Front.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_T_Front.ForeColor = System.Drawing.Color.Black;
- this.textBox_T_Front.ImeMode = System.Windows.Forms.ImeMode.Disable;
- this.textBox_T_Front.Location = new System.Drawing.Point(288, 65);
- this.textBox_T_Front.Name = "textBox_T_Front";
- this.textBox_T_Front.Size = new System.Drawing.Size(70, 29);
- this.textBox_T_Front.TabIndex = 2;
- //
- // label28
- //
- this.label28.AutoSize = true;
- this.label28.Location = new System.Drawing.Point(180, 321);
- this.label28.Name = "label28";
- this.label28.Size = new System.Drawing.Size(106, 21);
- this.label28.TabIndex = 0;
- this.label28.Text = "速度信号来源";
- //
- // textBox_StopTime
- //
- this.textBox_StopTime.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
- this.textBox_StopTime.ForeColor = System.Drawing.Color.Black;
- this.textBox_StopTime.ImeMode = System.Windows.Forms.ImeMode.Disable;
- this.textBox_StopTime.Location = new System.Drawing.Point(288, 29);
- this.textBox_StopTime.Name = "textBox_StopTime";
- this.textBox_StopTime.Size = new System.Drawing.Size(70, 29);
- this.textBox_StopTime.TabIndex = 2;
- //
- // label5
- //
- this.label5.AutoSize = true;
- this.label5.Location = new System.Drawing.Point(363, 33);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(58, 21);
- this.label5.TabIndex = 0;
- this.label5.Text = "限速值";
- //
- // comboBox_SpeedSensor
- //
- this.comboBox_SpeedSensor.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
- this.comboBox_SpeedSensor.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.comboBox_SpeedSensor.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.comboBox_SpeedSensor.ForeColor = System.Drawing.Color.Black;
- this.comboBox_SpeedSensor.FormattingEnabled = true;
- this.comboBox_SpeedSensor.ImeMode = System.Windows.Forms.ImeMode.NoControl;
- this.comboBox_SpeedSensor.Items.AddRange(new object[] {
- "传感器",
- "踏频",
- "通信"});
- this.comboBox_SpeedSensor.Location = new System.Drawing.Point(288, 317);
- this.comboBox_SpeedSensor.Name = "comboBox_SpeedSensor";
- this.comboBox_SpeedSensor.Size = new System.Drawing.Size(70, 29);
- this.comboBox_SpeedSensor.TabIndex = 1;
- //
- // comboBox_GasMode
- //
- this.comboBox_GasMode.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
- this.comboBox_GasMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.comboBox_GasMode.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.comboBox_GasMode.ForeColor = System.Drawing.Color.Black;
- this.comboBox_GasMode.FormattingEnabled = true;
- this.comboBox_GasMode.ImeMode = System.Windows.Forms.ImeMode.NoControl;
- this.comboBox_GasMode.Items.AddRange(new object[] {
- "不支持",
- "支持"});
- this.comboBox_GasMode.Location = new System.Drawing.Point(105, 317);
- this.comboBox_GasMode.Name = "comboBox_GasMode";
- this.comboBox_GasMode.Size = new System.Drawing.Size(70, 29);
- this.comboBox_GasMode.TabIndex = 1;
- //
- // label8
- //
- this.label8.AutoSize = true;
- this.label8.Location = new System.Drawing.Point(363, 69);
- this.label8.Name = "label8";
- this.label8.Size = new System.Drawing.Size(42, 21);
- this.label8.TabIndex = 0;
- this.label8.Text = "后飞";
- //
- // label11
- //
- this.label11.AutoSize = true;
- this.label11.Location = new System.Drawing.Point(363, 105);
- this.label11.Name = "label11";
- this.label11.Size = new System.Drawing.Size(74, 21);
- this.label11.TabIndex = 0;
- this.label11.Text = "温度保护";
- //
- // label14
- //
- this.label14.AutoSize = true;
- this.label14.Location = new System.Drawing.Point(363, 141);
- this.label14.Name = "label14";
- this.label14.Size = new System.Drawing.Size(58, 21);
- this.label14.TabIndex = 0;
- this.label14.Text = "系列号";
- //
- // label17
- //
- this.label17.AutoSize = true;
- this.label17.Location = new System.Drawing.Point(363, 177);
- this.label17.Name = "label17";
- this.label17.Size = new System.Drawing.Size(94, 21);
- this.label17.TabIndex = 0;
- this.label17.Text = "NORM增益";
- //
- // label20
- //
- this.label20.AutoSize = true;
- this.label20.Location = new System.Drawing.Point(363, 213);
- this.label20.Name = "label20";
- this.label20.Size = new System.Drawing.Size(93, 21);
- this.label20.TabIndex = 0;
- this.label20.Text = "SPORT加速";
- //
- // comboBox_NoPBU
- //
- this.comboBox_NoPBU.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
- this.comboBox_NoPBU.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.comboBox_NoPBU.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.comboBox_NoPBU.ForeColor = System.Drawing.Color.Black;
- this.comboBox_NoPBU.FormattingEnabled = true;
- this.comboBox_NoPBU.ImeMode = System.Windows.Forms.ImeMode.NoControl;
- this.comboBox_NoPBU.Items.AddRange(new object[] {
- "无",
- "有"});
- this.comboBox_NoPBU.Location = new System.Drawing.Point(105, 137);
- this.comboBox_NoPBU.Name = "comboBox_NoPBU";
- this.comboBox_NoPBU.Size = new System.Drawing.Size(70, 29);
- this.comboBox_NoPBU.TabIndex = 1;
- //
- // label23
- //
- this.label23.AutoSize = true;
- this.label23.Location = new System.Drawing.Point(363, 249);
- this.label23.Name = "label23";
- this.label23.Size = new System.Drawing.Size(97, 21);
- this.label23.TabIndex = 0;
- this.label23.Text = "SMART增益";
- //
- // label26
- //
- this.label26.AutoSize = true;
- this.label26.Location = new System.Drawing.Point(363, 285);
- this.label26.Name = "label26";
- this.label26.Size = new System.Drawing.Size(74, 21);
- this.label26.TabIndex = 0;
- this.label26.Text = "踏频启动";
- //
- // label47
- //
- this.label47.AutoSize = true;
- this.label47.Location = new System.Drawing.Point(363, 357);
- this.label47.Name = "label47";
- this.label47.Size = new System.Drawing.Size(74, 21);
- this.label47.TabIndex = 0;
- this.label47.Text = "推行转速";
- //
- // label29
- //
- this.label29.AutoSize = true;
- this.label29.Location = new System.Drawing.Point(363, 321);
- this.label29.Name = "label29";
- this.label29.Size = new System.Drawing.Size(74, 21);
- this.label29.TabIndex = 0;
- this.label29.Text = "周长微调";
- //
- // comboBox_StartMode
- //
- this.comboBox_StartMode.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.comboBox_StartMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.comboBox_StartMode.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.comboBox_StartMode.ForeColor = System.Drawing.Color.Black;
- this.comboBox_StartMode.FormattingEnabled = true;
- this.comboBox_StartMode.ImeMode = System.Windows.Forms.ImeMode.NoControl;
- this.comboBox_StartMode.Items.AddRange(new object[] {
- "柔和",
- "正常",
- "强劲"});
- this.comboBox_StartMode.Location = new System.Drawing.Point(105, 29);
- this.comboBox_StartMode.Name = "comboBox_StartMode";
- this.comboBox_StartMode.Size = new System.Drawing.Size(70, 29);
- this.comboBox_StartMode.TabIndex = 1;
- //
- // groupBox3
- //
- this.groupBox3.Controls.Add(this.label59);
- this.groupBox3.Controls.Add(this.label58);
- this.groupBox3.Controls.Add(this.label3);
- this.groupBox3.Controls.Add(this.comboBox_TailLightVol);
- this.groupBox3.Controls.Add(this.label46);
- this.groupBox3.Controls.Add(this.comboBox_HeadLightVol);
- this.groupBox3.Controls.Add(this.textBox_Angle_R);
- this.groupBox3.Controls.Add(this.comboBox_LightMode);
- this.groupBox3.Controls.Add(this.label44);
- this.groupBox3.Controls.Add(this.comboBox_AstSensor);
- this.groupBox3.Controls.Add(this.label45);
- this.groupBox3.Controls.Add(this.textBox_Angle_P);
- this.groupBox3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
- this.groupBox3.Location = new System.Drawing.Point(12, 413);
- this.groupBox3.Name = "groupBox3";
- this.groupBox3.Size = new System.Drawing.Size(547, 139);
- this.groupBox3.TabIndex = 4;
- this.groupBox3.TabStop = false;
- this.groupBox3.Text = "用户参数2";
- //
- // label59
- //
- this.label59.AutoSize = true;
- this.label59.Location = new System.Drawing.Point(363, 71);
- this.label59.Name = "label59";
- this.label59.Size = new System.Drawing.Size(74, 21);
- this.label59.TabIndex = 0;
- this.label59.Text = "尾灯电压";
- //
- // label58
- //
- this.label58.AutoSize = true;
- this.label58.Location = new System.Drawing.Point(181, 71);
- this.label58.Name = "label58";
- this.label58.Size = new System.Drawing.Size(74, 21);
- this.label58.TabIndex = 0;
- this.label58.Text = "前灯电压";
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.Location = new System.Drawing.Point(6, 71);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(74, 21);
- this.label3.TabIndex = 0;
- this.label3.Text = "尾灯模式";
- //
- // comboBox_TailLightVol
- //
- this.comboBox_TailLightVol.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
- this.comboBox_TailLightVol.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.comboBox_TailLightVol.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.comboBox_TailLightVol.ForeColor = System.Drawing.Color.Black;
- this.comboBox_TailLightVol.FormattingEnabled = true;
- this.comboBox_TailLightVol.ImeMode = System.Windows.Forms.ImeMode.NoControl;
- this.comboBox_TailLightVol.Items.AddRange(new object[] {
- "6V",
- "12V",
- "随电池",
- "硬件配置"});
- this.comboBox_TailLightVol.Location = new System.Drawing.Point(463, 67);
- this.comboBox_TailLightVol.Name = "comboBox_TailLightVol";
- this.comboBox_TailLightVol.Size = new System.Drawing.Size(70, 29);
- this.comboBox_TailLightVol.TabIndex = 1;
- //
- // label46
- //
- this.label46.AutoSize = true;
- this.label46.Location = new System.Drawing.Point(6, 34);
- this.label46.Name = "label46";
- this.label46.Size = new System.Drawing.Size(90, 21);
- this.label46.TabIndex = 0;
- this.label46.Text = "姿态传感器";
- //
- // comboBox_HeadLightVol
- //
- this.comboBox_HeadLightVol.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
- this.comboBox_HeadLightVol.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.comboBox_HeadLightVol.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.comboBox_HeadLightVol.ForeColor = System.Drawing.Color.Black;
- this.comboBox_HeadLightVol.FormattingEnabled = true;
- this.comboBox_HeadLightVol.ImeMode = System.Windows.Forms.ImeMode.NoControl;
- this.comboBox_HeadLightVol.Items.AddRange(new object[] {
- "6V",
- "12V",
- "随电池",
- "硬件配置"});
- this.comboBox_HeadLightVol.Location = new System.Drawing.Point(288, 67);
- this.comboBox_HeadLightVol.Name = "comboBox_HeadLightVol";
- this.comboBox_HeadLightVol.Size = new System.Drawing.Size(70, 29);
- this.comboBox_HeadLightVol.TabIndex = 1;
- //
- // textBox_Angle_R
- //
- this.textBox_Angle_R.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
- this.textBox_Angle_R.ForeColor = System.Drawing.Color.Black;
- this.textBox_Angle_R.ImeMode = System.Windows.Forms.ImeMode.Disable;
- this.textBox_Angle_R.Location = new System.Drawing.Point(463, 30);
- this.textBox_Angle_R.Name = "textBox_Angle_R";
- this.textBox_Angle_R.Size = new System.Drawing.Size(70, 29);
- this.textBox_Angle_R.TabIndex = 2;
- //
- // comboBox_LightMode
- //
- this.comboBox_LightMode.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.comboBox_LightMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.comboBox_LightMode.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.comboBox_LightMode.ForeColor = System.Drawing.Color.Black;
- this.comboBox_LightMode.FormattingEnabled = true;
- this.comboBox_LightMode.ImeMode = System.Windows.Forms.ImeMode.NoControl;
- this.comboBox_LightMode.Items.AddRange(new object[] {
- "模式 1",
- "模式 2",
- "模式 3",
- "模式 4"});
- this.comboBox_LightMode.Location = new System.Drawing.Point(105, 67);
- this.comboBox_LightMode.Name = "comboBox_LightMode";
- this.comboBox_LightMode.Size = new System.Drawing.Size(70, 29);
- this.comboBox_LightMode.TabIndex = 1;
- //
- // label44
- //
- this.label44.AutoSize = true;
- this.label44.Location = new System.Drawing.Point(363, 34);
- this.label44.Name = "label44";
- this.label44.Size = new System.Drawing.Size(90, 21);
- this.label44.TabIndex = 0;
- this.label44.Text = "横滚角零偏";
- //
- // comboBox_AstSensor
- //
- this.comboBox_AstSensor.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
- this.comboBox_AstSensor.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.comboBox_AstSensor.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.comboBox_AstSensor.ForeColor = System.Drawing.Color.Black;
- this.comboBox_AstSensor.FormattingEnabled = true;
- this.comboBox_AstSensor.ImeMode = System.Windows.Forms.ImeMode.NoControl;
- this.comboBox_AstSensor.Items.AddRange(new object[] {
- "不支持",
- "支持"});
- this.comboBox_AstSensor.Location = new System.Drawing.Point(105, 30);
- this.comboBox_AstSensor.Name = "comboBox_AstSensor";
- this.comboBox_AstSensor.Size = new System.Drawing.Size(70, 29);
- this.comboBox_AstSensor.TabIndex = 1;
- //
- // label45
- //
- this.label45.AutoSize = true;
- this.label45.Location = new System.Drawing.Point(180, 34);
- this.label45.Name = "label45";
- this.label45.Size = new System.Drawing.Size(90, 21);
- this.label45.TabIndex = 0;
- this.label45.Text = "俯仰角零偏";
- //
- // textBox_Angle_P
- //
- this.textBox_Angle_P.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
- this.textBox_Angle_P.ForeColor = System.Drawing.Color.Black;
- this.textBox_Angle_P.ImeMode = System.Windows.Forms.ImeMode.Disable;
- this.textBox_Angle_P.Location = new System.Drawing.Point(288, 30);
- this.textBox_Angle_P.Name = "textBox_Angle_P";
- this.textBox_Angle_P.Size = new System.Drawing.Size(70, 29);
- this.textBox_Angle_P.TabIndex = 2;
- //
- // groupBox7
- //
- this.groupBox7.Controls.Add(this.label43);
- this.groupBox7.Controls.Add(this.label42);
- this.groupBox7.Controls.Add(this.textBox_Info2);
- this.groupBox7.Controls.Add(this.label41);
- this.groupBox7.Controls.Add(this.textBox_Info1);
- this.groupBox7.Controls.Add(this.textBox_Info3);
- this.groupBox7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
- this.groupBox7.Location = new System.Drawing.Point(565, 413);
- this.groupBox7.Name = "groupBox7";
- this.groupBox7.Size = new System.Drawing.Size(334, 139);
- this.groupBox7.TabIndex = 4;
- this.groupBox7.TabStop = false;
- this.groupBox7.Text = "自定义信息";
- //
- // label43
- //
- this.label43.AutoSize = true;
- this.label43.Location = new System.Drawing.Point(6, 34);
- this.label43.Name = "label43";
- this.label43.Size = new System.Drawing.Size(51, 21);
- this.label43.TabIndex = 0;
- this.label43.Text = "信息1";
- //
- // label42
- //
- this.label42.AutoSize = true;
- this.label42.Location = new System.Drawing.Point(6, 67);
- this.label42.Name = "label42";
- this.label42.Size = new System.Drawing.Size(51, 21);
- this.label42.TabIndex = 0;
- this.label42.Text = "信息2";
- //
- // textBox_Info2
- //
- this.textBox_Info2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
- this.textBox_Info2.ForeColor = System.Drawing.Color.Black;
- this.textBox_Info2.Location = new System.Drawing.Point(82, 63);
- this.textBox_Info2.Name = "textBox_Info2";
- this.textBox_Info2.Size = new System.Drawing.Size(246, 29);
- this.textBox_Info2.TabIndex = 2;
- //
- // label41
- //
- this.label41.AutoSize = true;
- this.label41.Location = new System.Drawing.Point(6, 100);
- this.label41.Name = "label41";
- this.label41.Size = new System.Drawing.Size(51, 21);
- this.label41.TabIndex = 0;
- this.label41.Text = "信息3";
- //
- // textBox_Info1
- //
- this.textBox_Info1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
- this.textBox_Info1.ForeColor = System.Drawing.Color.Black;
- this.textBox_Info1.Location = new System.Drawing.Point(82, 30);
- this.textBox_Info1.Name = "textBox_Info1";
- this.textBox_Info1.Size = new System.Drawing.Size(246, 29);
- this.textBox_Info1.TabIndex = 2;
- //
- // textBox_Info3
- //
- this.textBox_Info3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
- this.textBox_Info3.ForeColor = System.Drawing.Color.Black;
- this.textBox_Info3.Location = new System.Drawing.Point(82, 96);
- this.textBox_Info3.Name = "textBox_Info3";
- this.textBox_Info3.Size = new System.Drawing.Size(246, 29);
- this.textBox_Info3.TabIndex = 2;
- //
- // groupBox4
- //
- this.groupBox4.BackColor = System.Drawing.SystemColors.Window;
- this.groupBox4.Controls.Add(this.label35);
- this.groupBox4.Controls.Add(this.label30);
- this.groupBox4.Controls.Add(this.label31);
- this.groupBox4.Controls.Add(this.label32);
- this.groupBox4.Controls.Add(this.textBox_RatePower);
- this.groupBox4.Controls.Add(this.textBox_RotorR);
- this.groupBox4.Controls.Add(this.textBox_Rate_Vol);
- this.groupBox4.Controls.Add(this.textBox_Rotor_Ld);
- this.groupBox4.Controls.Add(this.label36);
- this.groupBox4.Controls.Add(this.label33);
- this.groupBox4.Controls.Add(this.label34);
- this.groupBox4.Controls.Add(this.textBox_RateSpeed);
- this.groupBox4.Controls.Add(this.textBox_Rotor_Lq);
- this.groupBox4.Controls.Add(this.textBox_E);
- this.groupBox4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
- this.groupBox4.Location = new System.Drawing.Point(565, 12);
- this.groupBox4.Name = "groupBox4";
- this.groupBox4.Size = new System.Drawing.Size(334, 181);
- this.groupBox4.TabIndex = 4;
- this.groupBox4.TabStop = false;
- this.groupBox4.Text = "马达参数";
- //
- // label35
- //
- this.label35.AutoSize = true;
- this.label35.Location = new System.Drawing.Point(6, 33);
- this.label35.Name = "label35";
- this.label35.Size = new System.Drawing.Size(74, 21);
- this.label35.TabIndex = 0;
- this.label35.Text = "额定功率";
- //
- // label30
- //
- this.label30.AutoSize = true;
- this.label30.Location = new System.Drawing.Point(168, 105);
- this.label30.Name = "label30";
- this.label30.Size = new System.Drawing.Size(74, 21);
- this.label30.TabIndex = 0;
- this.label30.Text = "反电动势";
- //
- // label31
- //
- this.label31.AutoSize = true;
- this.label31.Location = new System.Drawing.Point(168, 69);
- this.label31.Name = "label31";
- this.label31.Size = new System.Drawing.Size(60, 21);
- this.label31.TabIndex = 0;
- this.label31.Text = "定子Lq";
- //
- // label32
- //
- this.label32.AutoSize = true;
- this.label32.Location = new System.Drawing.Point(168, 33);
- this.label32.Name = "label32";
- this.label32.Size = new System.Drawing.Size(74, 21);
- this.label32.TabIndex = 0;
- this.label32.Text = "额定转速";
- //
- // textBox_RatePower
- //
- this.textBox_RatePower.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
- this.textBox_RatePower.ForeColor = System.Drawing.Color.Black;
- this.textBox_RatePower.ImeMode = System.Windows.Forms.ImeMode.Disable;
- this.textBox_RatePower.Location = new System.Drawing.Point(82, 29);
- this.textBox_RatePower.Name = "textBox_RatePower";
- this.textBox_RatePower.Size = new System.Drawing.Size(80, 29);
- this.textBox_RatePower.TabIndex = 2;
- //
- // textBox_RotorR
- //
- this.textBox_RotorR.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
- this.textBox_RotorR.ForeColor = System.Drawing.Color.Black;
- this.textBox_RotorR.ImeMode = System.Windows.Forms.ImeMode.Disable;
- this.textBox_RotorR.Location = new System.Drawing.Point(82, 65);
- this.textBox_RotorR.Name = "textBox_RotorR";
- this.textBox_RotorR.Size = new System.Drawing.Size(80, 29);
- this.textBox_RotorR.TabIndex = 2;
- //
- // textBox_Rate_Vol
- //
- this.textBox_Rate_Vol.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
- this.textBox_Rate_Vol.ForeColor = System.Drawing.Color.Black;
- this.textBox_Rate_Vol.ImeMode = System.Windows.Forms.ImeMode.Disable;
- this.textBox_Rate_Vol.Location = new System.Drawing.Point(82, 137);
- this.textBox_Rate_Vol.Name = "textBox_Rate_Vol";
- this.textBox_Rate_Vol.Size = new System.Drawing.Size(80, 29);
- this.textBox_Rate_Vol.TabIndex = 2;
- //
- // textBox_Rotor_Ld
- //
- this.textBox_Rotor_Ld.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
- this.textBox_Rotor_Ld.ForeColor = System.Drawing.Color.Black;
- this.textBox_Rotor_Ld.ImeMode = System.Windows.Forms.ImeMode.Disable;
- this.textBox_Rotor_Ld.Location = new System.Drawing.Point(82, 101);
- this.textBox_Rotor_Ld.Name = "textBox_Rotor_Ld";
- this.textBox_Rotor_Ld.Size = new System.Drawing.Size(80, 29);
- this.textBox_Rotor_Ld.TabIndex = 2;
- //
- // label36
- //
- this.label36.AutoSize = true;
- this.label36.Location = new System.Drawing.Point(6, 141);
- this.label36.Name = "label36";
- this.label36.Size = new System.Drawing.Size(74, 21);
- this.label36.TabIndex = 0;
- this.label36.Text = "额定电压";
- //
- // label33
- //
- this.label33.AutoSize = true;
- this.label33.Location = new System.Drawing.Point(6, 105);
- this.label33.Name = "label33";
- this.label33.Size = new System.Drawing.Size(60, 21);
- this.label33.TabIndex = 0;
- this.label33.Text = "定子Ld";
- //
- // label34
- //
- this.label34.AutoSize = true;
- this.label34.Location = new System.Drawing.Point(6, 69);
- this.label34.Name = "label34";
- this.label34.Size = new System.Drawing.Size(74, 21);
- this.label34.TabIndex = 0;
- this.label34.Text = "定子电阻";
- //
- // textBox_RateSpeed
- //
- this.textBox_RateSpeed.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
- this.textBox_RateSpeed.ForeColor = System.Drawing.Color.Black;
- this.textBox_RateSpeed.ImeMode = System.Windows.Forms.ImeMode.Disable;
- this.textBox_RateSpeed.Location = new System.Drawing.Point(248, 29);
- this.textBox_RateSpeed.Name = "textBox_RateSpeed";
- this.textBox_RateSpeed.Size = new System.Drawing.Size(80, 29);
- this.textBox_RateSpeed.TabIndex = 2;
- //
- // textBox_Rotor_Lq
- //
- this.textBox_Rotor_Lq.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
- this.textBox_Rotor_Lq.ForeColor = System.Drawing.Color.Black;
- this.textBox_Rotor_Lq.ImeMode = System.Windows.Forms.ImeMode.Disable;
- this.textBox_Rotor_Lq.Location = new System.Drawing.Point(248, 65);
- this.textBox_Rotor_Lq.Name = "textBox_Rotor_Lq";
- this.textBox_Rotor_Lq.Size = new System.Drawing.Size(80, 29);
- this.textBox_Rotor_Lq.TabIndex = 2;
- //
- // textBox_E
- //
- this.textBox_E.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
- this.textBox_E.ForeColor = System.Drawing.Color.Black;
- this.textBox_E.ImeMode = System.Windows.Forms.ImeMode.Disable;
- this.textBox_E.Location = new System.Drawing.Point(248, 101);
- this.textBox_E.Name = "textBox_E";
- this.textBox_E.Size = new System.Drawing.Size(80, 29);
- this.textBox_E.TabIndex = 2;
- //
- // groupBox5
- //
- this.groupBox5.Controls.Add(this.label37);
- this.groupBox5.Controls.Add(this.textBox_Secrect);
- this.groupBox5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
- this.groupBox5.Location = new System.Drawing.Point(565, 340);
- this.groupBox5.Name = "groupBox5";
- this.groupBox5.Size = new System.Drawing.Size(334, 68);
- this.groupBox5.TabIndex = 4;
- this.groupBox5.TabStop = false;
- this.groupBox5.Text = "校验密钥";
- //
- // label37
- //
- this.label37.AutoSize = true;
- this.label37.Location = new System.Drawing.Point(6, 26);
- this.label37.Name = "label37";
- this.label37.Size = new System.Drawing.Size(74, 21);
- this.label37.TabIndex = 0;
- this.label37.Text = "校验密钥";
- //
- // textBox_Secrect
- //
- this.textBox_Secrect.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
- this.textBox_Secrect.ForeColor = System.Drawing.Color.Black;
- this.textBox_Secrect.ImeMode = System.Windows.Forms.ImeMode.Disable;
- this.textBox_Secrect.Location = new System.Drawing.Point(82, 22);
- this.textBox_Secrect.Name = "textBox_Secrect";
- this.textBox_Secrect.Size = new System.Drawing.Size(246, 29);
- this.textBox_Secrect.TabIndex = 2;
- //
- // groupBox6
- //
- this.groupBox6.Controls.Add(this.label40);
- this.groupBox6.Controls.Add(this.label38);
- this.groupBox6.Controls.Add(this.label39);
- this.groupBox6.Controls.Add(this.textBox_Mac_Date);
- this.groupBox6.Controls.Add(this.textBox_Mac);
- this.groupBox6.Controls.Add(this.textBox_Mac_Addr);
- this.groupBox6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
- this.groupBox6.Location = new System.Drawing.Point(565, 199);
- this.groupBox6.Name = "groupBox6";
- this.groupBox6.Size = new System.Drawing.Size(334, 135);
- this.groupBox6.TabIndex = 4;
- this.groupBox6.TabStop = false;
- this.groupBox6.Text = "生产信息";
- //
- // label40
- //
- this.label40.AutoSize = true;
- this.label40.Location = new System.Drawing.Point(6, 26);
- this.label40.Name = "label40";
- this.label40.Size = new System.Drawing.Size(58, 21);
- this.label40.TabIndex = 0;
- this.label40.Text = "生产商";
- //
- // label38
- //
- this.label38.AutoSize = true;
- this.label38.Location = new System.Drawing.Point(6, 96);
- this.label38.Name = "label38";
- this.label38.Size = new System.Drawing.Size(74, 21);
- this.label38.TabIndex = 0;
- this.label38.Text = "生产时间";
- //
- // label39
- //
- this.label39.AutoSize = true;
- this.label39.Location = new System.Drawing.Point(6, 61);
- this.label39.Name = "label39";
- this.label39.Size = new System.Drawing.Size(58, 21);
- this.label39.TabIndex = 0;
- this.label39.Text = "生产地";
- //
- // textBox_Mac_Date
- //
- this.textBox_Mac_Date.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
- this.textBox_Mac_Date.ForeColor = System.Drawing.Color.Black;
- this.textBox_Mac_Date.ImeMode = System.Windows.Forms.ImeMode.Disable;
- this.textBox_Mac_Date.Location = new System.Drawing.Point(82, 92);
- this.textBox_Mac_Date.Name = "textBox_Mac_Date";
- this.textBox_Mac_Date.Size = new System.Drawing.Size(246, 29);
- this.textBox_Mac_Date.TabIndex = 2;
- //
- // textBox_Mac
- //
- this.textBox_Mac.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
- this.textBox_Mac.ForeColor = System.Drawing.Color.Black;
- this.textBox_Mac.ImeMode = System.Windows.Forms.ImeMode.Disable;
- this.textBox_Mac.Location = new System.Drawing.Point(82, 22);
- this.textBox_Mac.Name = "textBox_Mac";
- this.textBox_Mac.Size = new System.Drawing.Size(246, 29);
- this.textBox_Mac.TabIndex = 2;
- //
- // textBox_Mac_Addr
- //
- this.textBox_Mac_Addr.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
- this.textBox_Mac_Addr.ForeColor = System.Drawing.Color.Black;
- this.textBox_Mac_Addr.ImeMode = System.Windows.Forms.ImeMode.Disable;
- this.textBox_Mac_Addr.Location = new System.Drawing.Point(82, 57);
- this.textBox_Mac_Addr.Name = "textBox_Mac_Addr";
- this.textBox_Mac_Addr.Size = new System.Drawing.Size(246, 29);
- this.textBox_Mac_Addr.TabIndex = 2;
- //
- // button_Generate
- //
- this.button_Generate.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
- this.button_Generate.ForeColor = System.Drawing.Color.White;
- this.button_Generate.Location = new System.Drawing.Point(1025, 560);
- this.button_Generate.Name = "button_Generate";
- this.button_Generate.Size = new System.Drawing.Size(80, 41);
- this.button_Generate.TabIndex = 6;
- this.button_Generate.Text = "生成";
- this.button_Generate.UseVisualStyleBackColor = false;
- this.button_Generate.Click += new System.EventHandler(this.button_Generate_Click);
- //
- // button_Default
- //
- this.button_Default.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
- this.button_Default.ForeColor = System.Drawing.Color.White;
- this.button_Default.Location = new System.Drawing.Point(905, 560);
- this.button_Default.Name = "button_Default";
- this.button_Default.Size = new System.Drawing.Size(80, 41);
- this.button_Default.TabIndex = 6;
- this.button_Default.Text = "默认";
- this.button_Default.UseVisualStyleBackColor = false;
- this.button_Default.Click += new System.EventHandler(this.button_Default_Click);
- //
- // groupBox1
- //
- this.groupBox1.Controls.Add(this.label53);
- this.groupBox1.Controls.Add(this.label57);
- this.groupBox1.Controls.Add(this.label52);
- this.groupBox1.Controls.Add(this.label51);
- this.groupBox1.Controls.Add(this.textBox_Remark);
- this.groupBox1.Controls.Add(this.textBox_TE_FW_Version);
- this.groupBox1.Controls.Add(this.label50);
- this.groupBox1.Controls.Add(this.textBox_FW_Version);
- this.groupBox1.Controls.Add(this.textBox_Client);
- this.groupBox1.Controls.Add(this.textBox_Model);
- this.groupBox1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
- this.groupBox1.Location = new System.Drawing.Point(905, 12);
- this.groupBox1.Name = "groupBox1";
- this.groupBox1.Size = new System.Drawing.Size(200, 322);
- this.groupBox1.TabIndex = 4;
- this.groupBox1.TabStop = false;
- this.groupBox1.Text = "文件信息";
- //
- // label53
- //
- this.label53.AutoSize = true;
- this.label53.Location = new System.Drawing.Point(61, 249);
- this.label53.Name = "label53";
- this.label53.Size = new System.Drawing.Size(74, 21);
- this.label53.TabIndex = 0;
- this.label53.Text = "备注信息";
- //
- // label57
- //
- this.label57.AutoSize = true;
- this.label57.Location = new System.Drawing.Point(52, 195);
- this.label57.Name = "label57";
- this.label57.Size = new System.Drawing.Size(92, 21);
- this.label57.TabIndex = 0;
- this.label57.Text = "TE软件版本";
- //
- // label52
- //
- this.label52.AutoSize = true;
- this.label52.Location = new System.Drawing.Point(45, 141);
- this.label52.Name = "label52";
- this.label52.Size = new System.Drawing.Size(106, 21);
- this.label52.TabIndex = 0;
- this.label52.Text = "主控软件版本";
- //
- // label51
- //
- this.label51.AutoSize = true;
- this.label51.Location = new System.Drawing.Point(69, 87);
- this.label51.Name = "label51";
- this.label51.Size = new System.Drawing.Size(58, 21);
- this.label51.TabIndex = 0;
- this.label51.Text = "订单号";
- //
- // textBox_Remark
- //
- this.textBox_Remark.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.textBox_Remark.ForeColor = System.Drawing.Color.Black;
- this.textBox_Remark.Location = new System.Drawing.Point(7, 272);
- this.textBox_Remark.Name = "textBox_Remark";
- this.textBox_Remark.Size = new System.Drawing.Size(183, 29);
- this.textBox_Remark.TabIndex = 2;
- //
- // textBox_TE_FW_Version
- //
- this.textBox_TE_FW_Version.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
- this.textBox_TE_FW_Version.ForeColor = System.Drawing.Color.Black;
- this.textBox_TE_FW_Version.ImeMode = System.Windows.Forms.ImeMode.Disable;
- this.textBox_TE_FW_Version.Location = new System.Drawing.Point(7, 218);
- this.textBox_TE_FW_Version.Name = "textBox_TE_FW_Version";
- this.textBox_TE_FW_Version.Size = new System.Drawing.Size(183, 29);
- this.textBox_TE_FW_Version.TabIndex = 2;
- //
- // label50
- //
- this.label50.AutoSize = true;
- this.label50.Location = new System.Drawing.Point(61, 33);
- this.label50.Name = "label50";
- this.label50.Size = new System.Drawing.Size(74, 21);
- this.label50.TabIndex = 0;
- this.label50.Text = "电机型号";
- //
- // textBox_FW_Version
- //
- this.textBox_FW_Version.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
- this.textBox_FW_Version.ForeColor = System.Drawing.Color.Black;
- this.textBox_FW_Version.ImeMode = System.Windows.Forms.ImeMode.Disable;
- this.textBox_FW_Version.Location = new System.Drawing.Point(7, 164);
- this.textBox_FW_Version.Name = "textBox_FW_Version";
- this.textBox_FW_Version.Size = new System.Drawing.Size(183, 29);
- this.textBox_FW_Version.TabIndex = 2;
- //
- // textBox_Client
- //
- this.textBox_Client.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
- this.textBox_Client.ForeColor = System.Drawing.Color.Black;
- this.textBox_Client.ImeMode = System.Windows.Forms.ImeMode.Disable;
- this.textBox_Client.Location = new System.Drawing.Point(7, 110);
- this.textBox_Client.Name = "textBox_Client";
- this.textBox_Client.Size = new System.Drawing.Size(183, 29);
- this.textBox_Client.TabIndex = 2;
- //
- // textBox_Model
- //
- this.textBox_Model.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
- this.textBox_Model.ForeColor = System.Drawing.Color.Black;
- this.textBox_Model.ImeMode = System.Windows.Forms.ImeMode.Disable;
- this.textBox_Model.Location = new System.Drawing.Point(7, 56);
- this.textBox_Model.Name = "textBox_Model";
- this.textBox_Model.Size = new System.Drawing.Size(183, 29);
- this.textBox_Model.TabIndex = 2;
- this.textBox_Model.TextChanged += new System.EventHandler(this.textBox_Model_TextChanged);
- //
- // groupBox8
- //
- this.groupBox8.Controls.Add(this.label54);
- this.groupBox8.Controls.Add(this.label62);
- this.groupBox8.Controls.Add(this.textBox_Start_Max);
- this.groupBox8.Controls.Add(this.label61);
- this.groupBox8.Controls.Add(this.textBox_K_Max);
- this.groupBox8.Controls.Add(this.textBox_Start_Min);
- this.groupBox8.Controls.Add(this.label60);
- this.groupBox8.Controls.Add(this.textBox_K_Min);
- this.groupBox8.Controls.Add(this.textBox_Zero_Max);
- this.groupBox8.Controls.Add(this.textBox_Zero_Min);
- this.groupBox8.Controls.Add(this.label56);
- this.groupBox8.Controls.Add(this.textBox_GasSpeedTh);
- this.groupBox8.Controls.Add(this.label55);
- this.groupBox8.Controls.Add(this.textBox_SpeedTh);
- this.groupBox8.Controls.Add(this.textBox_NC_Current);
- this.groupBox8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
- this.groupBox8.Location = new System.Drawing.Point(905, 340);
- this.groupBox8.Name = "groupBox8";
- this.groupBox8.Size = new System.Drawing.Size(200, 212);
- this.groupBox8.TabIndex = 5;
- this.groupBox8.TabStop = false;
- this.groupBox8.Text = "测试阈值";
- //
- // label54
- //
- this.label54.AutoSize = true;
- this.label54.Location = new System.Drawing.Point(6, 26);
- this.label54.Name = "label54";
- this.label54.Size = new System.Drawing.Size(74, 21);
- this.label54.TabIndex = 0;
- this.label54.Text = "空载电流";
- //
- // label62
- //
- this.label62.AutoSize = true;
- this.label62.Location = new System.Drawing.Point(6, 180);
- this.label62.Name = "label62";
- this.label62.Size = new System.Drawing.Size(58, 21);
- this.label62.TabIndex = 0;
- this.label62.Text = "启动值";
- //
- // textBox_Start_Max
- //
- this.textBox_Start_Max.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
- this.textBox_Start_Max.ForeColor = System.Drawing.Color.Black;
- this.textBox_Start_Max.ImeMode = System.Windows.Forms.ImeMode.Disable;
- this.textBox_Start_Max.Location = new System.Drawing.Point(140, 176);
- this.textBox_Start_Max.Name = "textBox_Start_Max";
- this.textBox_Start_Max.Size = new System.Drawing.Size(50, 29);
- this.textBox_Start_Max.TabIndex = 2;
- //
- // label61
- //
- this.label61.AutoSize = true;
- this.label61.Location = new System.Drawing.Point(6, 149);
- this.label61.Name = "label61";
- this.label61.Size = new System.Drawing.Size(74, 21);
- this.label61.TabIndex = 0;
- this.label61.Text = "标定系数";
- //
- // textBox_K_Max
- //
- this.textBox_K_Max.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
- this.textBox_K_Max.ForeColor = System.Drawing.Color.Black;
- this.textBox_K_Max.ImeMode = System.Windows.Forms.ImeMode.Disable;
- this.textBox_K_Max.Location = new System.Drawing.Point(140, 145);
- this.textBox_K_Max.Name = "textBox_K_Max";
- this.textBox_K_Max.Size = new System.Drawing.Size(50, 29);
- this.textBox_K_Max.TabIndex = 2;
- //
- // textBox_Start_Min
- //
- this.textBox_Start_Min.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
- this.textBox_Start_Min.ForeColor = System.Drawing.Color.Black;
- this.textBox_Start_Min.ImeMode = System.Windows.Forms.ImeMode.Disable;
- this.textBox_Start_Min.Location = new System.Drawing.Point(82, 176);
- this.textBox_Start_Min.Name = "textBox_Start_Min";
- this.textBox_Start_Min.Size = new System.Drawing.Size(50, 29);
- this.textBox_Start_Min.TabIndex = 2;
- //
- // label60
- //
- this.label60.AutoSize = true;
- this.label60.Location = new System.Drawing.Point(6, 118);
- this.label60.Name = "label60";
- this.label60.Size = new System.Drawing.Size(42, 21);
- this.label60.TabIndex = 0;
- this.label60.Text = "零偏";
- //
- // textBox_K_Min
- //
- this.textBox_K_Min.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
- this.textBox_K_Min.ForeColor = System.Drawing.Color.Black;
- this.textBox_K_Min.ImeMode = System.Windows.Forms.ImeMode.Disable;
- this.textBox_K_Min.Location = new System.Drawing.Point(82, 145);
- this.textBox_K_Min.Name = "textBox_K_Min";
- this.textBox_K_Min.Size = new System.Drawing.Size(50, 29);
- this.textBox_K_Min.TabIndex = 2;
- //
- // textBox_Zero_Max
- //
- this.textBox_Zero_Max.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
- this.textBox_Zero_Max.ForeColor = System.Drawing.Color.Black;
- this.textBox_Zero_Max.ImeMode = System.Windows.Forms.ImeMode.Disable;
- this.textBox_Zero_Max.Location = new System.Drawing.Point(140, 114);
- this.textBox_Zero_Max.Name = "textBox_Zero_Max";
- this.textBox_Zero_Max.Size = new System.Drawing.Size(50, 29);
- this.textBox_Zero_Max.TabIndex = 2;
- //
- // textBox_Zero_Min
- //
- this.textBox_Zero_Min.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
- this.textBox_Zero_Min.ForeColor = System.Drawing.Color.Black;
- this.textBox_Zero_Min.ImeMode = System.Windows.Forms.ImeMode.Disable;
- this.textBox_Zero_Min.Location = new System.Drawing.Point(82, 114);
- this.textBox_Zero_Min.Name = "textBox_Zero_Min";
- this.textBox_Zero_Min.Size = new System.Drawing.Size(50, 29);
- this.textBox_Zero_Min.TabIndex = 2;
- //
- // label56
- //
- this.label56.AutoSize = true;
- this.label56.Location = new System.Drawing.Point(6, 87);
- this.label56.Name = "label56";
- this.label56.Size = new System.Drawing.Size(74, 21);
- this.label56.TabIndex = 0;
- this.label56.Text = "指拨转速";
- //
- // textBox_GasSpeedTh
- //
- this.textBox_GasSpeedTh.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
- this.textBox_GasSpeedTh.ForeColor = System.Drawing.Color.Black;
- this.textBox_GasSpeedTh.ImeMode = System.Windows.Forms.ImeMode.Disable;
- this.textBox_GasSpeedTh.Location = new System.Drawing.Point(82, 83);
- this.textBox_GasSpeedTh.Name = "textBox_GasSpeedTh";
- this.textBox_GasSpeedTh.Size = new System.Drawing.Size(108, 29);
- this.textBox_GasSpeedTh.TabIndex = 2;
- //
- // label55
- //
- this.label55.AutoSize = true;
- this.label55.Location = new System.Drawing.Point(6, 56);
- this.label55.Name = "label55";
- this.label55.Size = new System.Drawing.Size(42, 21);
- this.label55.TabIndex = 0;
- this.label55.Text = "车速";
- //
- // textBox_SpeedTh
- //
- this.textBox_SpeedTh.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
- this.textBox_SpeedTh.ForeColor = System.Drawing.Color.Black;
- this.textBox_SpeedTh.ImeMode = System.Windows.Forms.ImeMode.Disable;
- this.textBox_SpeedTh.Location = new System.Drawing.Point(82, 52);
- this.textBox_SpeedTh.Name = "textBox_SpeedTh";
- this.textBox_SpeedTh.Size = new System.Drawing.Size(108, 29);
- this.textBox_SpeedTh.TabIndex = 2;
- //
- // textBox_NC_Current
- //
- this.textBox_NC_Current.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
- this.textBox_NC_Current.ForeColor = System.Drawing.Color.Black;
- this.textBox_NC_Current.ImeMode = System.Windows.Forms.ImeMode.Disable;
- this.textBox_NC_Current.Location = new System.Drawing.Point(82, 22);
- this.textBox_NC_Current.Name = "textBox_NC_Current";
- this.textBox_NC_Current.Size = new System.Drawing.Size(108, 29);
- this.textBox_NC_Current.TabIndex = 2;
- //
- // pictureBox2
- //
- this.pictureBox2.Image = global::MOTINOVA_Motor_Factory_Set.Properties.Resources._836618239619717251;
- this.pictureBox2.Location = new System.Drawing.Point(565, 558);
- this.pictureBox2.Name = "pictureBox2";
- this.pictureBox2.Size = new System.Drawing.Size(83, 43);
- this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
- this.pictureBox2.TabIndex = 29;
- this.pictureBox2.TabStop = false;
- //
- // pictureBox1
- //
- this.pictureBox1.Image = global::MOTINOVA_Motor_Factory_Set.Properties.Resources.title1;
- this.pictureBox1.Location = new System.Drawing.Point(657, 568);
- this.pictureBox1.Name = "pictureBox1";
- this.pictureBox1.Size = new System.Drawing.Size(136, 33);
- this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
- this.pictureBox1.TabIndex = 28;
- this.pictureBox1.TabStop = false;
- //
- // button_keyboard
- //
- this.button_keyboard.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
- this.button_keyboard.ForeColor = System.Drawing.Color.White;
- this.button_keyboard.Location = new System.Drawing.Point(465, 560);
- this.button_keyboard.Name = "button_keyboard";
- this.button_keyboard.Size = new System.Drawing.Size(94, 41);
- this.button_keyboard.TabIndex = 35;
- this.button_keyboard.Text = "屏幕键盘";
- this.button_keyboard.UseVisualStyleBackColor = false;
- this.button_keyboard.Click += new System.EventHandler(this.button_keyboard_Click);
- //
- // ExportForm
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.BackColor = System.Drawing.Color.White;
- this.ClientSize = new System.Drawing.Size(1115, 608);
- this.Controls.Add(this.button_keyboard);
- this.Controls.Add(this.pictureBox2);
- this.Controls.Add(this.pictureBox1);
- this.Controls.Add(this.groupBox8);
- this.Controls.Add(this.button_Default);
- this.Controls.Add(this.button_Generate);
- this.Controls.Add(this.groupBox1);
- this.Controls.Add(this.groupBox5);
- this.Controls.Add(this.groupBox7);
- this.Controls.Add(this.groupBox6);
- this.Controls.Add(this.groupBox3);
- this.Controls.Add(this.groupBox4);
- this.Controls.Add(this.groupBox2);
- this.Controls.Add(this.label2);
- this.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(113)))), ((int)(((byte)(185)))));
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.Margin = new System.Windows.Forms.Padding(5);
- this.MaximizeBox = false;
- this.Name = "ExportForm";
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
- this.Text = "生成参数";
- this.Load += new System.EventHandler(this.ExportForm_Load);
- this.groupBox2.ResumeLayout(false);
- this.groupBox2.PerformLayout();
- this.groupBox3.ResumeLayout(false);
- this.groupBox3.PerformLayout();
- this.groupBox7.ResumeLayout(false);
- this.groupBox7.PerformLayout();
- this.groupBox4.ResumeLayout(false);
- this.groupBox4.PerformLayout();
- this.groupBox5.ResumeLayout(false);
- this.groupBox5.PerformLayout();
- this.groupBox6.ResumeLayout(false);
- this.groupBox6.PerformLayout();
- this.groupBox1.ResumeLayout(false);
- this.groupBox1.PerformLayout();
- this.groupBox8.ResumeLayout(false);
- this.groupBox8.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.GroupBox groupBox2;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.TextBox textBox_WheelSizeAdj;
- private System.Windows.Forms.Label label6;
- private System.Windows.Forms.TextBox textBox_CadenceStart;
- private System.Windows.Forms.Label label9;
- private System.Windows.Forms.TextBox textBox_SMART_Gain;
- private System.Windows.Forms.Label label12;
- private System.Windows.Forms.TextBox textBox_SPORT_Acc;
- private System.Windows.Forms.Label label15;
- private System.Windows.Forms.TextBox textBox_NORM_Gain;
- private System.Windows.Forms.Label label18;
- private System.Windows.Forms.TextBox textBox_Serial;
- private System.Windows.Forms.Label label21;
- private System.Windows.Forms.TextBox textBox_NTC_Ptotect;
- private System.Windows.Forms.Label label24;
- private System.Windows.Forms.TextBox textBox_T_Tail;
- private System.Windows.Forms.Label label27;
- private System.Windows.Forms.TextBox textBox_SpeedLimit;
- private System.Windows.Forms.Label label4;
- private System.Windows.Forms.Label label7;
- private System.Windows.Forms.TextBox textBox_SpeedSensor;
- private System.Windows.Forms.Label label10;
- private System.Windows.Forms.TextBox textBox_TURBO_Acc;
- private System.Windows.Forms.Label label13;
- private System.Windows.Forms.TextBox textBox_SPORT_Gain;
- private System.Windows.Forms.Label label16;
- private System.Windows.Forms.TextBox textBox_ECO_Acc;
- private System.Windows.Forms.Label label19;
- private System.Windows.Forms.TextBox textBox_WheelSize;
- private System.Windows.Forms.Label label22;
- private System.Windows.Forms.TextBox textBox_NTC_Alarm;
- private System.Windows.Forms.Label label25;
- private System.Windows.Forms.TextBox textBox_T_Front;
- private System.Windows.Forms.Label label28;
- private System.Windows.Forms.TextBox textBox_StopTime;
- private System.Windows.Forms.Label label5;
- private System.Windows.Forms.ComboBox comboBox_GasMode;
- private System.Windows.Forms.Label label8;
- private System.Windows.Forms.Label label11;
- private System.Windows.Forms.Label label14;
- private System.Windows.Forms.Label label17;
- private System.Windows.Forms.Label label20;
- private System.Windows.Forms.ComboBox comboBox_NoPBU;
- private System.Windows.Forms.Label label23;
- private System.Windows.Forms.Label label26;
- private System.Windows.Forms.Label label29;
- private System.Windows.Forms.ComboBox comboBox_StartMode;
- private System.Windows.Forms.GroupBox groupBox3;
- private System.Windows.Forms.Label label46;
- private System.Windows.Forms.TextBox textBox_Angle_R;
- private System.Windows.Forms.Label label44;
- private System.Windows.Forms.ComboBox comboBox_AstSensor;
- private System.Windows.Forms.Label label45;
- private System.Windows.Forms.TextBox textBox_Angle_P;
- private System.Windows.Forms.GroupBox groupBox7;
- private System.Windows.Forms.Label label43;
- private System.Windows.Forms.Label label42;
- private System.Windows.Forms.TextBox textBox_Info2;
- private System.Windows.Forms.Label label41;
- private System.Windows.Forms.TextBox textBox_Info1;
- private System.Windows.Forms.TextBox textBox_Info3;
- private System.Windows.Forms.GroupBox groupBox4;
- private System.Windows.Forms.Label label35;
- private System.Windows.Forms.Label label30;
- private System.Windows.Forms.Label label31;
- private System.Windows.Forms.Label label32;
- private System.Windows.Forms.TextBox textBox_RatePower;
- private System.Windows.Forms.TextBox textBox_RotorR;
- private System.Windows.Forms.TextBox textBox_Rate_Vol;
- private System.Windows.Forms.TextBox textBox_Rotor_Ld;
- private System.Windows.Forms.Label label36;
- private System.Windows.Forms.Label label33;
- private System.Windows.Forms.Label label34;
- private System.Windows.Forms.TextBox textBox_RateSpeed;
- private System.Windows.Forms.TextBox textBox_Rotor_Lq;
- private System.Windows.Forms.TextBox textBox_E;
- private System.Windows.Forms.GroupBox groupBox5;
- private System.Windows.Forms.Label label37;
- private System.Windows.Forms.TextBox textBox_Secrect;
- private System.Windows.Forms.GroupBox groupBox6;
- private System.Windows.Forms.Label label40;
- private System.Windows.Forms.Label label38;
- private System.Windows.Forms.Label label39;
- private System.Windows.Forms.TextBox textBox_Mac_Date;
- private System.Windows.Forms.TextBox textBox_Mac;
- private System.Windows.Forms.TextBox textBox_Mac_Addr;
- private System.Windows.Forms.TextBox textBox_WalkSpeed;
- private System.Windows.Forms.Label label49;
- private System.Windows.Forms.TextBox textBox_Walk_SpeedLimit;
- private System.Windows.Forms.Label label48;
- private System.Windows.Forms.Label label47;
- private System.Windows.Forms.TextBox textBox_SMART_Acc;
- private System.Windows.Forms.TextBox textBox_UV_Protect;
- private System.Windows.Forms.TextBox textBox_TURBO_Gain;
- private System.Windows.Forms.TextBox textBox_NORM_Acc;
- private System.Windows.Forms.TextBox textBox_ECO_Gain;
- private System.Windows.Forms.TextBox textBox_MaxCurrent;
- private System.Windows.Forms.TextBox textBox_Dec;
- private System.Windows.Forms.ComboBox comboBox_SpeedSensor;
- private System.Windows.Forms.Button button_Generate;
- private System.Windows.Forms.Button button_Default;
- private System.Windows.Forms.GroupBox groupBox1;
- private System.Windows.Forms.Label label50;
- private System.Windows.Forms.TextBox textBox_Model;
- private System.Windows.Forms.Label label51;
- private System.Windows.Forms.TextBox textBox_Client;
- private System.Windows.Forms.Label label52;
- private System.Windows.Forms.TextBox textBox_FW_Version;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.ComboBox comboBox_LightMode;
- private System.Windows.Forms.Label label53;
- private System.Windows.Forms.TextBox textBox_Remark;
- private System.Windows.Forms.GroupBox groupBox8;
- private System.Windows.Forms.Label label54;
- private System.Windows.Forms.Label label55;
- private System.Windows.Forms.TextBox textBox_SpeedTh;
- private System.Windows.Forms.TextBox textBox_NC_Current;
- private System.Windows.Forms.Label label56;
- private System.Windows.Forms.TextBox textBox_GasSpeedTh;
- private System.Windows.Forms.Label label57;
- private System.Windows.Forms.TextBox textBox_TE_FW_Version;
- private System.Windows.Forms.Label label59;
- private System.Windows.Forms.Label label58;
- private System.Windows.Forms.ComboBox comboBox_TailLightVol;
- private System.Windows.Forms.ComboBox comboBox_HeadLightVol;
- private System.Windows.Forms.Label label62;
- private System.Windows.Forms.TextBox textBox_Start_Max;
- private System.Windows.Forms.Label label61;
- private System.Windows.Forms.TextBox textBox_K_Max;
- private System.Windows.Forms.TextBox textBox_Start_Min;
- private System.Windows.Forms.Label label60;
- private System.Windows.Forms.TextBox textBox_K_Min;
- private System.Windows.Forms.TextBox textBox_Zero_Max;
- private System.Windows.Forms.TextBox textBox_Zero_Min;
- private System.Windows.Forms.PictureBox pictureBox2;
- private System.Windows.Forms.PictureBox pictureBox1;
- private System.Windows.Forms.Button button_keyboard;
- }
- }
|