检测单击按钮的时间
本文关键字:时间 按钮 单击 检测 | 更新日期: 2023-09-27 17:59:55
我有一个表格,需要显示单击按钮的确切时间。如何"捕捉"我按下它时的确切时间(hh:mm:ss)?
(如果问题重复,请通知我,以便我可以删除此问题)
使用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");
}
在点击按钮的处理程序中使用DateTime.Now
:
protected void btn_Clicked(object sender, EventArgs e)
{
DateTime whenClicked = DateTime.Now;
}