using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.Timers;namespace 时间
{
/// <summary>
/// Form1 的摘要说明。
/// </summary>
public class Form1 : System.Windows.Forms.Form
{
private System.Windows.Forms.Timer timer1;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
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.timer1 = new System.Windows.Forms.Timer(this.components);
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.SuspendLayout();
// 
// timer1
// 
this.timer1.Enabled = true;
this.timer1.Interval = 60000;
//this.timer1.Start();
// 
// label1
// 
this.label1.Location = new System.Drawing.Point(176, 72);
this.label1.Name = "label1";
this.label1.TabIndex = 0;
this.label1.Text = "label1";
this.label1.Click += new System.EventHandler(this.label1_Click);
// 
// label2
// 
this.label2.Location = new System.Drawing.Point(176, 136);
this.label2.Name = "label2";
this.label2.TabIndex = 1;
this.label2.Text = "label2";
// 
// Form1
// 
this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
this.ClientSize = new System.Drawing.Size(384, 278);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
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());
} private void Form1_Load(object sender, System.EventArgs e)
{

}


private void timer1_Tick(object sender, System.EventArgs e)
{
string cesuotime=System.DateTime.Now.ToShortTimeString();//得到现在的时间
if(cesuotime.Equals("21:58"))
{

MessageBox.Show("该去上课咯");

}

} private void label1_Click(object sender, System.EventArgs e)
{
MessageBox.Show("fdfdfdfd");

}

}
}

解决方案 »

  1.   

    你忘了加事件了,不然怎么触发啊
    在你的代码中加上这样一句:就ok了
              this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
    ---------------------------------------
    就是这样的:
      this.components = new System.ComponentModel.Container();
                this.label1 = new System.Windows.Forms.Label();
                this.label2 = new System.Windows.Forms.Label();
                this.timer1 = new System.Windows.Forms.Timer(this.components);            this.timer1.Tick += new System.EventHandler(this.timer1_Tick);            this.SuspendLayout();