回 帖 发 新 帖 刷新版面

主题:[讨论]这个时间控件未生效的原因是什么?

using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.Timers;


namespace WindowsApplication3
{
    /// <summary>
    /// Form1 的摘要说明。
    /// </summary>
    public class Form1 : System.Windows.Forms.Form
    {
        private System.Windows.Forms.TextBox textBox1;
        private System.Windows.Forms.Timer timer1;
        private System.ComponentModel.IContainer components;

        public Form1()
        {
            //
            // Windows 窗体设计器支持所必需的
            //
            InitializeComponent();

            //
            // TODO: 在 InitializeComponent 调用后添加任何构造函数代码
            //
        }

        /// <summary>
        /// 清理所有正在使用的资源。
        /// </summary>
        protected override void Dispose( bool disposing )
        {
            if( disposing )
            {
                if (components != null) 
                {
                    components.Dispose();
                }
            }
            base.Dispose( disposing );
        }

        #region Windows 窗体设计器生成的代码
        /// <summary>
        /// 设计器支持所需的方法 - 不要使用代码编辑器修改
        /// 此方法的内容。
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            this.textBox1 = new System.Windows.Forms.TextBox();
            this.timer1 = new System.Windows.Forms.Timer(this.components);
            this.SuspendLayout();
            // 
            // textBox1
            // 
            this.textBox1.Location = new System.Drawing.Point(48, 56);
            this.textBox1.Name = "textBox1";
            this.textBox1.Size = new System.Drawing.Size(176, 25);
            this.textBox1.TabIndex = 0;
            this.textBox1.Text = "textBox1";
            // 
            // timer1
            // 
            this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
            // 
            // Form1
            // 
            this.AutoScaleBaseSize = new System.Drawing.Size(8, 18);
            this.ClientSize = new System.Drawing.Size(292, 268);
            this.Controls.Add(this.textBox1);
            this.Name = "Form1";
            this.Text = "Form1";
            this.Load += new System.EventHandler(this.Form1_Load);
            this.ResumeLayout(false);

        }
        #endregion

        /// <summary>
        /// 应用程序的主入口点。
        /// </summary>
        [STAThread]
            
        static void Main() 
        {
            Application.Run(new Form1());
            
        }
        
        int tm01=0;

        private void timer1_Tick(object sender, System.EventArgs e)
        {
        
            this.timer1.Enabled = true;
            this.timer1.Interval = 1000;
            


        }

        private void timer1_Elapsed(object sender, System.Timers.ElapsedEventArgs e)
        {
            
            tm01 = tm01 + 1;
            if (tm01 == 10)
            {
                tm01 = 0;
                textBox1.Text="时钟控件启动了";
                
            }    
            
        }

        private void Form1_Load(object sender, System.EventArgs e)
        {
        
        }

    }
}

回复列表 (共2个回复)

沙发

if (tm01 == 10)
            {
                this.timer1.Enabled = true;//放这
                tm01 = 0;
                textBox1.Text="时钟控件启动了";
                
            }    

板凳

this.timer1.Enabled = true;

我来回复

您尚未登录,请登录后再回复。点此登录或注册