检测单击按钮的时间

时间:2016-08-03 15:06:15

标签: c# winforms datetime button

我有一个表单,我需要显示单击按钮的确切时间。当我按下它时,我怎么能“捕捉”确切的时间(hh:mm:ss)?

(请问,如果问题重复,请通知我,以便删除此内容)

2 个答案:

答案 0 :(得分:1)

使用DateTime.Now

void myButton_Click(object sender, RoutedEventArgs e)
{
    // Captures the current time in a DateTime object.
    DateTime currentTime = DateTime.Now;

    // If you need a string, you can use the ToString method.
    string timeString = currentTime.ToString("hh:mm:ss");
}

答案 1 :(得分:1)

在按下按钮的处理程序中使用DateTime.Now

protected void btn_Clicked(object sender, EventArgs e)
{
    DateTime whenClicked = DateTime.Now;
}