Display loading animation while starting up a form in VB .NET
I understand this might be asked before :
Show a loading screen in vb.net
But any开发者_运维知识库one can provide me something like :
' Show Loading Screen
--> Do anything like initializing or updating UI
' Close Loading Screen
In this case I can fire (Show Loading Screen) anywhere in the form I want,
LikeDim LoadingScreen as New LoadingScreen
LoadingScreen.ShowLoading()
' Do things
'
'
LoadingScreen.StopLoading()
I seem to have found the answer.
http://www.codeproject.com/KB/dotnet/Yet_Another_Splash_Screen.aspx
精彩评论