发布网友 发布时间:2022-04-23 22:45
共5个回答
热心网友 时间:2023-08-26 01:34
用户输入倒记的时间
然后定义一个整型d=int.Parse(用户输入时间的TextBox.Text)
在Timer里面
把Timer的Interval设为1000,
d--;
最后注意d不能小于0
所以要在后面写 d<=0?0:d;
并且可以用一个if判断 当d=0时,消息框跳出。、
这样的话 因为d最后会一直等于0,所以要在第一次=0时,停止Timer。
没有用到类也可以做的
热心网友 时间:2023-08-26 01:34
int i = 10000;
private void timer1_Tick(object sender, EventArgs e)
{
this.label1.Text = (i --).ToString();
}
label1 为标签;timer控件enlable属性设置为true
热心网友 时间:2023-08-26 01:34
要是只是做个倒计时的效果不与服务器交换数据的话可以直接用javascript实现,没必要用服务器端来做
热心网友 时间:2023-08-26 01:35
弄个Timer,一秒钟变一次就可以了
热心网友 时间:2023-08-26 01:36
Timer