我正在尝试在正在开发的应用中显示当前时间。 我有一个标签和一个计时器控件和以下代码:
Private Sub Timer1_Tick_1(sender As Object, e As EventArgs) Handles Timer1.Tick
Label16.Text = TimeOfDay
End Sub
不应该这样吗?我一直在寻找它应该有用,有没有办法显示日期呢?
感谢您的帮助, 布鲁诺
答案 0 :(得分:0)
这很简单
Label16.Text = DateTime.Now.ToString()
其他变体
Label16.Text = DateTime.Today.ToShortDateString() ' just the today date in short format'
Label16.Text = DateTime.Now.ToShortTimeString() ' just the current time in short format'