我要textbox1.Text
倒计时30分钟。到目前为止,我有这个:
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
Timer timeX = new Timer();
timeX.Interval = 1800000;
timeX.Tick += new EventHandler(timeX_Tick);
}
void timeX_Tick(object sender, EventArgs e)
{
// what do i put here?
}
}
但是我现在很难过。我检查了谷歌的答案,但找不到与我的问题相匹配的答案。