namespace UCT.Forms { partial class CountDownTimer { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.components = new System.ComponentModel.Container(); this.timer = new System.Windows.Forms.Timer(this.components); this.lblTimer = new System.Windows.Forms.Label(); this.SuspendLayout(); // // timer // this.timer.Interval = 1000; this.timer.Tick += new System.EventHandler(this.timer_Tick_1); // // lblTimer // this.lblTimer.AutoSize = true; this.lblTimer.FlatStyle = System.Windows.Forms.FlatStyle.Flat; //this.lblTimer.Font = new System.Drawing.Font(privateFontCollection.Families[0], 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblTimer.Font = new System.Drawing.Font("Berlin Sans FB", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblTimer.ForeColor = System.Drawing.Color.Navy; this.lblTimer.Location = new System.Drawing.Point(1, 3); this.lblTimer.Name = "lblTimer"; this.lblTimer.Size = new System.Drawing.Size(59, 26); this.lblTimer.TabIndex = 1; this.lblTimer.Text = "14:59"; // // CountDownTimer // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Controls.Add(this.lblTimer); this.Name = "CountDownTimer"; this.Size = new System.Drawing.Size(60, 32); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Timer timer; private System.Windows.Forms.Label lblTimer; } }