serverform.designer.cs

来自「gps」· CS 代码 · 共 337 行 · 第 1/2 页

CS
337
字号
namespace GPSServer
{
    partial class ServerForm
    {
        /// <summary>
        /// 必需的设计器变量。
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        /// <summary>
        /// 清理所有正在使用的资源。
        /// </summary>
        /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #region Windows 窗体设计器生成的代码

        /// <summary>
        /// 设计器支持所需的方法 - 不要
        /// 使用代码编辑器修改此方法的内容。
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            this.ReceiveTimer = new System.Windows.Forms.Timer(this.components);
            this.comboSelectCar = new System.Windows.Forms.ComboBox();
            this.label1 = new System.Windows.Forms.Label();
            this.grpPosition = new System.Windows.Forms.GroupBox();
            this.lblHeight = new System.Windows.Forms.Label();
            this.lblLongitude = new System.Windows.Forms.Label();
            this.lblState = new System.Windows.Forms.Label();
            this.lblLatitude = new System.Windows.Forms.Label();
            this.grpCommand = new System.Windows.Forms.GroupBox();
            this.btnLock = new System.Windows.Forms.Button();
            this.btnCloseEngine = new System.Windows.Forms.Button();
            this.btnCloseOil = new System.Windows.Forms.Button();
            this.btnQuestState = new System.Windows.Forms.Button();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.lblHeaviness = new System.Windows.Forms.Label();
            this.lblOilSurplus = new System.Windows.Forms.Label();
            this.lblAlarm = new System.Windows.Forms.Label();
            this.lblEngineTemperature = new System.Windows.Forms.Label();
            this.btnCancel = new System.Windows.Forms.Button();
            this.btnOpenEngine = new System.Windows.Forms.Button();
            this.btnStartOiling = new System.Windows.Forms.Button();
            this.btnUnlock = new System.Windows.Forms.Button();
            this.grpPosition.SuspendLayout();
            this.grpCommand.SuspendLayout();
            this.groupBox1.SuspendLayout();
            this.SuspendLayout();
            // 
            // ReceiveTimer
            // 
            this.ReceiveTimer.Interval = 900;
            this.ReceiveTimer.Tick += new System.EventHandler(this.ReceiveTimer_Tick);
            // 
            // comboSelectCar
            // 
            this.comboSelectCar.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.comboSelectCar.FormattingEnabled = true;
            this.comboSelectCar.Items.AddRange(new object[] {
            "车I",
            "车II",
            "车III",
            "车IV",
            "车V",
            "车VI",
            "车VII"});
            this.comboSelectCar.Location = new System.Drawing.Point(64, 9);
            this.comboSelectCar.Name = "comboSelectCar";
            this.comboSelectCar.Size = new System.Drawing.Size(102, 20);
            this.comboSelectCar.TabIndex = 0;
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(12, 12);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(47, 12);
            this.label1.TabIndex = 1;
            this.label1.Text = "选择车:";
            // 
            // grpPosition
            // 
            this.grpPosition.Controls.Add(this.lblHeight);
            this.grpPosition.Controls.Add(this.lblLongitude);
            this.grpPosition.Controls.Add(this.lblState);
            this.grpPosition.Controls.Add(this.lblLatitude);
            this.grpPosition.Location = new System.Drawing.Point(14, 39);
            this.grpPosition.Name = "grpPosition";
            this.grpPosition.Size = new System.Drawing.Size(152, 113);
            this.grpPosition.TabIndex = 2;
            this.grpPosition.TabStop = false;
            this.grpPosition.Text = "定位信息:";
            // 
            // lblHeight
            // 
            this.lblHeight.AutoSize = true;
            this.lblHeight.Location = new System.Drawing.Point(19, 90);
            this.lblHeight.Name = "lblHeight";
            this.lblHeight.Size = new System.Drawing.Size(47, 12);
            this.lblHeight.TabIndex = 6;
            this.lblHeight.Text = "海拔:--";
            // 
            // lblLongitude
            // 
            this.lblLongitude.AutoSize = true;
            this.lblLongitude.Location = new System.Drawing.Point(19, 66);
            this.lblLongitude.Name = "lblLongitude";
            this.lblLongitude.Size = new System.Drawing.Size(47, 12);
            this.lblLongitude.TabIndex = 5;
            this.lblLongitude.Text = "经度:--";
            // 
            // lblState
            // 
            this.lblState.AutoSize = true;
            this.lblState.Location = new System.Drawing.Point(19, 18);
            this.lblState.Name = "lblState";
            this.lblState.Size = new System.Drawing.Size(47, 12);
            this.lblState.TabIndex = 4;
            this.lblState.Text = "状态:--";
            // 
            // lblLatitude
            // 
            this.lblLatitude.AutoSize = true;
            this.lblLatitude.Location = new System.Drawing.Point(19, 42);
            this.lblLatitude.Name = "lblLatitude";
            this.lblLatitude.Size = new System.Drawing.Size(47, 12);
            this.lblLatitude.TabIndex = 4;
            this.lblLatitude.Text = "纬度:--";
            // 
            // grpCommand
            // 
            this.grpCommand.Controls.Add(this.btnLock);
            this.grpCommand.Controls.Add(this.btnUnlock);
            this.grpCommand.Controls.Add(this.btnStartOiling);
            this.grpCommand.Controls.Add(this.btnOpenEngine);
            this.grpCommand.Controls.Add(this.btnCloseEngine);
            this.grpCommand.Controls.Add(this.btnCloseOil);
            this.grpCommand.Controls.Add(this.btnQuestState);
            this.grpCommand.Location = new System.Drawing.Point(14, 158);
            this.grpCommand.Name = "grpCommand";
            this.grpCommand.Size = new System.Drawing.Size(292, 145);
            this.grpCommand.TabIndex = 3;
            this.grpCommand.TabStop = false;
            this.grpCommand.Text = "命令";
            // 
            // btnLock
            // 
            this.btnLock.Location = new System.Drawing.Point(27, 108);
            this.btnLock.Name = "btnLock";
            this.btnLock.Size = new System.Drawing.Size(113, 23);
            this.btnLock.TabIndex = 1;
            this.btnLock.Text = "锁车匙(&L)";
            this.btnLock.UseVisualStyleBackColor = true;
            this.btnLock.Click += new System.EventHandler(this.btnSendCommand_Click);
            // 
            // btnCloseEngine
            // 
            this.btnCloseEngine.Location = new System.Drawing.Point(27, 50);
            this.btnCloseEngine.Name = "btnCloseEngine";
            this.btnCloseEngine.Size = new System.Drawing.Size(113, 23);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?