public

Subversion Repositories:
[/] [StopWatch/] [StopWatch/] [StopWatch.Designer.cs] - Rev 6

Compare with Previous - Blame


namespace StopWatch
{
    partial class StopWatch
    {
        /// <summary>
        /// Required designer variable.
        /// </summary>
        private System.ComponentModel.IContainer components = null;
        private System.Windows.Forms.MainMenu mainMenu1;

        /// <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()
        {
            this.mainMenu1 = new System.Windows.Forms.MainMenu();
            this.lblTime = new System.Windows.Forms.Label();
            this.btnStartStop = new System.Windows.Forms.Button();
            this.btnLap = new System.Windows.Forms.Button();
            this.timer1 = new System.Windows.Forms.Timer();
            this.txtBxLaps = new System.Windows.Forms.TextBox();
            this.timer2 = new System.Windows.Forms.Timer();
            this.SuspendLayout();
            // 
            // lblTime
            // 
            this.lblTime.Font = new System.Drawing.Font("Tahoma", 24F, System.Drawing.FontStyle.Regular);
            this.lblTime.Location = new System.Drawing.Point(0, 0);
            this.lblTime.Name = "lblTime";
            this.lblTime.Size = new System.Drawing.Size(221, 45);
            this.lblTime.Text = "00:00:00.000";
            this.lblTime.TextAlign = System.Drawing.ContentAlignment.TopRight;
            // 
            // btnStartStop
            // 
            this.btnStartStop.Font = new System.Drawing.Font("Tahoma", 20F, System.Drawing.FontStyle.Regular);
            this.btnStartStop.Location = new System.Drawing.Point(3, 48);
            this.btnStartStop.Name = "btnStartStop";
            this.btnStartStop.Size = new System.Drawing.Size(100, 44);
            this.btnStartStop.TabIndex = 1;
            this.btnStartStop.Text = "Start";
            this.btnStartStop.Click += new System.EventHandler(this.btnStartStop_Click);
            // 
            // btnLap
            // 
            this.btnLap.Enabled = false;
            this.btnLap.Font = new System.Drawing.Font("Tahoma", 20F, System.Drawing.FontStyle.Regular);
            this.btnLap.Location = new System.Drawing.Point(123, 48);
            this.btnLap.Name = "btnLap";
            this.btnLap.Size = new System.Drawing.Size(101, 44);
            this.btnLap.TabIndex = 2;
            this.btnLap.Text = "Lap";
            this.btnLap.Click += new System.EventHandler(this.btnLap_Click);
            // 
            // timer1
            // 
            this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
            // 
            // txtBxLaps
            // 
            this.txtBxLaps.BackColor = System.Drawing.SystemColors.Info;
            this.txtBxLaps.Location = new System.Drawing.Point(3, 98);
            this.txtBxLaps.Multiline = true;
            this.txtBxLaps.Name = "txtBxLaps";
            this.txtBxLaps.ReadOnly = true;
            this.txtBxLaps.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
            this.txtBxLaps.Size = new System.Drawing.Size(221, 154);
            this.txtBxLaps.TabIndex = 3;
            // 
            // timer2
            // 
            this.timer2.Interval = 25000;
            this.timer2.Tick += new System.EventHandler(this.timer2_Tick);
            // 
            // StopWatch
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
            this.AutoScroll = true;
            this.ClientSize = new System.Drawing.Size(311, 313);
            this.Controls.Add(this.txtBxLaps);
            this.Controls.Add(this.btnLap);
            this.Controls.Add(this.btnStartStop);
            this.Controls.Add(this.lblTime);
            this.Menu = this.mainMenu1;
            this.Name = "StopWatch";
            this.Text = "Stop Watch      v1.0";
            this.ResumeLayout(false);

        }

        #endregion

        private System.Windows.Forms.Label lblTime;
        private System.Windows.Forms.Button btnStartStop;
        private System.Windows.Forms.Button btnLap;
        private System.Windows.Forms.Timer timer1;
        private System.Windows.Forms.TextBox txtBxLaps;
        private System.Windows.Forms.Timer timer2;
    }
}