大家帮个忙啊 我做了一个程序 winform的 我想用里面的一个时间控件
我是说具体怎么用啊
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void timer1_Tick(object sender, EventArgs e)
{
lblTime.Text = DateTime.Now.ToString();
}
private void button1_Click(object sender, EventArgs e)
{
int time;
try
{
time = int.Parse(txtNo.Text);
}
catch
{
MessageBox.Show("请输入有效整数!");
return;
}
this.timer1.Interval = time;
}
}