取按纽点击时间,程序怎么写
------解决方案--------------------------------------------------------
在你的button click事件里面 直接取
DateTime.Now就可以了
------解决方案--------------------------------------------------------
private void Button1_Click(object sender, System.EventArgs e)
{
string sTime=DateTime.Now.ToString();
}