1
我想在登錄屏幕出現如何顯示啓動畫面
Public Class Splash_Screen
Private Sub Splash_Screen_Load(sender As Object, e As EventArgs) Handles MyBase.Load
Splash_Screen.OnClick.LogIn.Show()
Me.Close()
End Sub
Private Shared Function OnClick() As Object
Throw New NotImplementedException
End Function
End Class
VB應用程序框架包括一個無代碼啓動畫面。只需通過Project-> Properties Application選項卡分配它 – Plutonix