有没有一种方法可以以编程方式设置所有 MessageBoxes,并在 msg 字符串的末尾加上时间戳。
private string DataTimeMsgBox()
{
return DateTime.Now.ToString();
}
MessageBox.Show("Cannot Pass An Empty Textbox" + " " + DataTimeMsgBox());
以上不是我要找的,但这是
MessageBox.Show("Message with timestamp")
结果:
"Message with timestamp 00/0000/00 12:00"