原理很简单 代码也就50多行 每行代码我都写了注释 别的我就不一一解释了哈! 设计页面和软件运行界面如下
控件的话用到的就是进度条和定时器 其他控件大家都熟悉[C#] 纯文本查看 复制代码 using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace 定时器
{
public partial class Form1 : Form
{
int count;
int time;
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
int i;
for(i =1; i<100; i++)
{
comboBox1.Items.Add(i.ToString()+" 秒");// 设置下拉框的初始值
}
}
private void button1_Click(object sender, EventArgs e)
{
string str = comboBox1.Text;
time = Convert.ToUInt16(str.Substring(0, 2));//设定选择的时间(0- 两位数)
progressBar1.Maximum = time;//进度条与时间状态同步
timer1.Start();
}
private void timer1_Tick(object sender, EventArgs e)
{
count++;// 记录当前时间是多少秒
label4.Text = (time - count).ToString() + "秒";// 总时间减去当前时间等于剩余的时间
progressBar1.Value = count; //设置进度条的状态与count同步
if (count == time)//判断剩余时间和总时间相同 说明计时完成
{
timer1.Stop();//停止计时
System.Media.SystemSounds.Asterisk.Play();//系统提示音
MessageBox.Show("时间到了!");
}
}
}
}
|