serverform.designer.cs
来自「gps」· CS 代码 · 共 337 行 · 第 1/2 页
CS
337 行
this.btnCloseEngine.TabIndex = 1;
this.btnCloseEngine.Text = "关引擎(&E)";
this.btnCloseEngine.UseVisualStyleBackColor = true;
this.btnCloseEngine.Click += new System.EventHandler(this.btnSendCommand_Click);
//
// btnCloseOil
//
this.btnCloseOil.Location = new System.Drawing.Point(27, 79);
this.btnCloseOil.Name = "btnCloseOil";
this.btnCloseOil.Size = new System.Drawing.Size(113, 23);
this.btnCloseOil.TabIndex = 1;
this.btnCloseOil.Text = "停止供油(&O)";
this.btnCloseOil.UseVisualStyleBackColor = true;
this.btnCloseOil.Click += new System.EventHandler(this.btnSendCommand_Click);
//
// btnQuestState
//
this.btnQuestState.Location = new System.Drawing.Point(27, 21);
this.btnQuestState.Name = "btnQuestState";
this.btnQuestState.Size = new System.Drawing.Size(113, 23);
this.btnQuestState.TabIndex = 0;
this.btnQuestState.Text = "请求状态信息(&Q)";
this.btnQuestState.UseVisualStyleBackColor = true;
this.btnQuestState.Click += new System.EventHandler(this.btnQuestState_Click);
//
// groupBox1
//
this.groupBox1.Controls.Add(this.lblHeaviness);
this.groupBox1.Controls.Add(this.lblOilSurplus);
this.groupBox1.Controls.Add(this.lblAlarm);
this.groupBox1.Controls.Add(this.lblEngineTemperature);
this.groupBox1.Location = new System.Drawing.Point(172, 39);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(137, 113);
this.groupBox1.TabIndex = 4;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "状态信息";
//
// lblHeaviness
//
this.lblHeaviness.AutoSize = true;
this.lblHeaviness.Location = new System.Drawing.Point(17, 90);
this.lblHeaviness.Name = "lblHeaviness";
this.lblHeaviness.Size = new System.Drawing.Size(59, 12);
this.lblHeaviness.TabIndex = 10;
this.lblHeaviness.Text = "负载量:--";
//
// lblOilSurplus
//
this.lblOilSurplus.AutoSize = true;
this.lblOilSurplus.Location = new System.Drawing.Point(17, 66);
this.lblOilSurplus.Name = "lblOilSurplus";
this.lblOilSurplus.Size = new System.Drawing.Size(71, 12);
this.lblOilSurplus.TabIndex = 9;
this.lblOilSurplus.Text = "剩余油量:--";
//
// lblAlarm
//
this.lblAlarm.AutoSize = true;
this.lblAlarm.Location = new System.Drawing.Point(17, 18);
this.lblAlarm.Name = "lblAlarm";
this.lblAlarm.Size = new System.Drawing.Size(71, 12);
this.lblAlarm.TabIndex = 7;
this.lblAlarm.Text = "报警状态:--";
//
// lblEngineTemperature
//
this.lblEngineTemperature.AutoSize = true;
this.lblEngineTemperature.Location = new System.Drawing.Point(17, 42);
this.lblEngineTemperature.Name = "lblEngineTemperature";
this.lblEngineTemperature.Size = new System.Drawing.Size(71, 12);
this.lblEngineTemperature.TabIndex = 8;
this.lblEngineTemperature.Text = "引擎温度:--";
//
// btnCancel
//
this.btnCancel.Location = new System.Drawing.Point(231, 309);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(75, 40);
this.btnCancel.TabIndex = 5;
this.btnCancel.Text = "退出(&X)";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// btnOpenEngine
//
this.btnOpenEngine.Location = new System.Drawing.Point(158, 50);
this.btnOpenEngine.Name = "btnOpenEngine";
this.btnOpenEngine.Size = new System.Drawing.Size(113, 23);
this.btnOpenEngine.TabIndex = 1;
this.btnOpenEngine.Text = "开引擎(&A)";
this.btnOpenEngine.UseVisualStyleBackColor = true;
this.btnOpenEngine.Click += new System.EventHandler(this.btnSendCommand_Click);
//
// btnStartOiling
//
this.btnStartOiling.Location = new System.Drawing.Point(158, 79);
this.btnStartOiling.Name = "btnStartOiling";
this.btnStartOiling.Size = new System.Drawing.Size(113, 23);
this.btnStartOiling.TabIndex = 1;
this.btnStartOiling.Text = "继续供油(&S)";
this.btnStartOiling.UseVisualStyleBackColor = true;
this.btnStartOiling.Click += new System.EventHandler(this.btnSendCommand_Click);
//
// btnUnlock
//
this.btnUnlock.Location = new System.Drawing.Point(158, 108);
this.btnUnlock.Name = "btnUnlock";
this.btnUnlock.Size = new System.Drawing.Size(113, 23);
this.btnUnlock.TabIndex = 1;
this.btnUnlock.Text = "开车锁(&U)";
this.btnUnlock.UseVisualStyleBackColor = true;
this.btnUnlock.Click += new System.EventHandler(this.btnSendCommand_Click);
//
// ServerForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(318, 356);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.grpCommand);
this.Controls.Add(this.grpPosition);
this.Controls.Add(this.label1);
this.Controls.Add(this.comboSelectCar);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Name = "ServerForm";
this.Text = "GPSServer";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ServerForm_FormClosing);
this.Load += new System.EventHandler(this.ServerForm_Load);
this.grpPosition.ResumeLayout(false);
this.grpPosition.PerformLayout();
this.grpCommand.ResumeLayout(false);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Timer ReceiveTimer;
private System.Windows.Forms.ComboBox comboSelectCar;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.GroupBox grpPosition;
private System.Windows.Forms.Label lblHeight;
private System.Windows.Forms.Label lblLongitude;
private System.Windows.Forms.Label lblState;
private System.Windows.Forms.Label lblLatitude;
private System.Windows.Forms.GroupBox grpCommand;
private System.Windows.Forms.Button btnQuestState;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.Button btnLock;
private System.Windows.Forms.Button btnCloseEngine;
private System.Windows.Forms.Button btnCloseOil;
private System.Windows.Forms.Label lblHeaviness;
private System.Windows.Forms.Label lblOilSurplus;
private System.Windows.Forms.Label lblAlarm;
private System.Windows.Forms.Label lblEngineTemperature;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.Button btnUnlock;
private System.Windows.Forms.Button btnStartOiling;
private System.Windows.Forms.Button btnOpenEngine;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?