我正在创建我的第一个 c# 项目,一个个人时间跟踪应用程序。到目前为止非常基本,但是在我进一步了解之前,我想让计时器正常工作。
到目前为止,计时器将启动/停止并重置。然而,我想做的一件奇怪的事情是让用户设置一个时间并让计数器从那里开始。
因此,如果他们想从 20 分钟开始并计数,那么它会
例如: 00:20:00 将从 20 开始计数并添加到其中。
然而到目前为止,我还没有弄清楚。
这是代码:
namespace TimeTracker
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
TimerBox.Text = string.Format("00:00:00");
}
int ss = 0;
public void StartButton_click(object sender, EventArgs e)
{
timer1.Start();
timer1.Enabled = true;
timer1.Interval = 1000;
}
public void StopButton_click(object sender, EventArgs e)
{
timer1.Stop();
TimerBox.Text = TimeSpan.FromSeconds(ss).ToString();
}
public void ResetButton_click(object sender, EventArgs e)
{
ss = 0;
TimerBox.Text = TimeSpan.FromSeconds(ss).ToString();
}
private void timer1_Tick(object sender, EventArgs e)
{
ss++;
TimerBox.Text = TimeSpan.FromSeconds(ss).ToString();
}
}
}
这是应用程序:
任何帮助将不胜感激,如果您愿意,我可以提供更多详细信息!
编辑:由于不清楚,我的问题是:
什么过程会更好地编码这个,添加到整数,或者如果有更好的方法来实现这个?