在 VB .NET 中启动窗体时显示加载动画
我知道之前可能会问这个问题:
但任何人都可以为我提供类似的东西:
' Show Loading Screen
--> Do anything like initializing or updating UI
' Close Loading Screen
在这种情况下,我可以以我想要的形式在任何地方触发(显示加载屏幕),
喜欢
Dim LoadingScreen as New LoadingScreen
LoadingScreen.ShowLoading()
' Do things
'
'
LoadingScreen.StopLoading()
I understand this might be asked before :
Show a loading screen in vb.net
But anyone 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,
Like
Dim LoadingScreen as New LoadingScreen
LoadingScreen.ShowLoading()
' Do things
'
'
LoadingScreen.StopLoading()
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我似乎找到了答案。
http://www.codeproject.com/KB/dotnet/Yet_Another_Splash_Screen.aspx
I seem to have found the answer.
http://www.codeproject.com/KB/dotnet/Yet_Another_Splash_Screen.aspx