www.pudn.com > GPSTest.rar > Form1.Designer.cs


namespace GPSTest 
{ 
    partial class Form1 
    { 
        ///  
        /// 必需的设计器变量。 
        ///  
        private System.ComponentModel.IContainer components = null; 
        private System.Windows.Forms.MainMenu mainMenu1; 
 
        ///  
        /// 清理所有正在使用的资源。 
        ///  
        /// 如果应释放托管资源,为 true;否则为 false。 
        protected override void Dispose(bool disposing) 
        { 
            if (disposing && (components != null)) 
            { 
                components.Dispose(); 
            } 
            base.Dispose(disposing); 
        } 
 
        #region Windows 窗体设计器生成的代码 
 
        ///  
        /// 设计器支持所需的方法 - 不要 
        /// 使用代码编辑器修改此方法的内容。 
        ///  
        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; 
    } 
}