我想知道是否有办法让我在白天的某个时间显示一个消息框。 E.g
if (DateTime >= 11:59)
{
messagebox.show("Good Morning");
}
else if (DateTime == 12:00 to 16:59)
{
messagebox.show("Good Afternoon");
}
else if (DateTime <= 17:00)
{
messagebox.show("Good Evening");
}
如果有办法,请帮助我。感谢。
答案 0 :(得分:0)
您可以使用DateTime
TimeSpan
与var dt = DateTime.Now;
if (dt.TimeOfDay <= new TimeSpan(11, 59, 0))
{
MessageBox.Show("Good Morning");
}
else if (dt.TimeOfDay >= new TimeSpan(12, 0, 0) && dt.TimeOfDay < new TimeSpan(16, 59, 0))
{
MessageBox.Show("Good Afternoon");
}
else if (dt.TimeOfDay >= new TimeSpan(17, 0, 0))
{
MessageBox.Show("Good Evening");
}
值进行比较,例如;
data=