bupa 发表于 2014-11-17 21:55:20

......

freeyy1314 发表于 2014-11-18 16:51:01

顶一个

mo丶小杰 发表于 2014-11-19 15:58:34

不做伸手党

MMXX123 发表于 2014-11-19 16:01:52

wfsafsfsadfsadfasd

44378 发表于 2014-11-19 19:34:42

学习学习

44378 发表于 2014-11-19 20:03:57

public partial class MainForm : Form
    {
      public MainForm()
      {
            InitializeComponent();
      }
      //定义时分
      int h = 0;
      int m = 0;
      int s = 0;
      //保存事件
      private void button1_Click(object sender, EventArgs e)
      {
            h = dateTimePicker1.Value.Hour;//时
            m = dateTimePicker1.Value.Minute;//分
            s = dateTimePicker1.Value.Second;//秒
            timer1.Enabled = true;
            timer1.Start();
      }
      //定时扫描
      private void timer1_Tick(object sender, EventArgs e)
      {

            if (DateTime.Now.Hour == h && DateTime.Now.Minute == m && DateTime.Now.Second == s)
            {
                MessageBox.Show("当前时间:" + DateTime.Now + "   时间已到!");
                timer1.Stop();
                timer1.Enabled = false;
                return;
            }
      }
    }



这样子具体到秒,报警也就不用报60次了

ibcadmin 发表于 2014-11-19 22:53:49

44378 发表于 2014-11-19 12:03
public partial class MainForm : Form
    {
      public MainForm()


哈哈哈 当时做的仓促 上传后才发现这个问题

rufo 发表于 2014-11-20 14:08:45

好东西.我那走了哈,哈哈哈

ningjiyan 发表于 2014-11-20 17:10:41

谢谢

三十未有二十余 发表于 2014-11-20 22:43:07

看看
页: 16 17 18 19 20 21 22 23 24 25 [26] 27 28 29 30 31 32 33 34 35
查看完整版本: C#闹钟源码下载简易版