我正在开发一个Windows窗体应用程序,创建一个按钮来显示另一个窗体,我试图让用户在单击按钮后等待一段时间,经过一段时间后,表单将会打开。
Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
Timer1.Start()
End Sub
Private Sub Timer1_Tick(sender As Object, e As EventArgs) Handles Timer1.Tick
Timer1.Stop()
Form3.Show()
Me.Hide()
End Sub
当我使用上面的代码时,在我点击按钮之前会显示Form3
。
答案 0 :(得分:2)
您需要确保在表单设计器中将Enabled
组件的Timer1
属性设置为False
。