⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 form1.designer.cs

📁 带有GPS功能的Mobile上
💻 CS
字号:
namespace GPSTest
{
    partial class Form1
    {
        /// <summary>
        /// 必需的设计器变量。
        /// </summary>
        private System.ComponentModel.IContainer components = null;
        private System.Windows.Forms.MainMenu mainMenu1;

        /// <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.mainMenu1 = new System.Windows.Forms.MainMenu();
            this.btStopGPS = new System.Windows.Forms.Button();
            this.btStarGPS = new System.Windows.Forms.Button();
            this.timer1 = new System.Windows.Forms.Timer();
            this.status = new System.Windows.Forms.Label();
            this.SuspendLayout();
            // 
            // btStopGPS
            // 
            this.btStopGPS.Location = new System.Drawing.Point(139, 215);
            this.btStopGPS.Name = "btStopGPS";
            this.btStopGPS.Size = new System.Drawing.Size(72, 29);
            this.btStopGPS.TabIndex = 10;
            this.btStopGPS.Text = "停止";
            this.btStopGPS.Click += new System.EventHandler(this.stopGpsMenuItem_Click);
            // 
            // btStarGPS
            // 
            this.btStarGPS.Location = new System.Drawing.Point(29, 215);
            this.btStarGPS.Name = "btStarGPS";
            this.btStarGPS.Size = new System.Drawing.Size(72, 29);
            this.btStarGPS.TabIndex = 11;
            this.btStarGPS.Text = "开始";
            this.btStarGPS.Click += new System.EventHandler(this.startGpsMenuItem_Click);
            // 
            // timer1
            // 
            this.timer1.Enabled = true;
            this.timer1.Interval = 1000;
            // 
            // status
            // 
            this.status.Location = new System.Drawing.Point(3, 13);
            this.status.Name = "status";
            this.status.Size = new System.Drawing.Size(234, 188);
            this.status.Text = "label5";
            // 
            // Form1
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
            this.AutoScroll = true;
            this.ClientSize = new System.Drawing.Size(240, 268);
            this.Controls.Add(this.status);
            this.Controls.Add(this.btStarGPS);
            this.Controls.Add(this.btStopGPS);
            this.Menu = this.mainMenu1;
            this.MinimizeBox = false;
            this.Name = "Form1";
            this.Text = "Form1";
            this.Closed += new System.EventHandler(this.Form1_Closed);
            this.Load += new System.EventHandler(this.Form1_Load);
            this.ResumeLayout(false);

        }

        #endregion

        private System.Windows.Forms.Button btStopGPS;
        private System.Windows.Forms.Button btStarGPS;
        private System.Windows.Forms.Timer timer1;
        private System.Windows.Forms.Label status;
    }
}

⌨️ 快捷键说明

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