日期:2014-05-17 浏览次数:21252 次
private void Form1_Load(object sender, EventArgs e)
{
Thread thread = new Thread(remind);
thread.IsBackground = true;
thread.Start();
}
private void remind()
{
while (true)
{
string h = "0";
string m = "23";
if (h == DateTime.Now.Hour.ToString() && m == DateTime.Now.Minute.ToString() && DateTime.Now.Second.ToString() == "0")
{
Form2 form2 = new Form2();
form2.ShowDialog();
Thread.Sleep(1000);
}
}
}