corelibraries-devexpress-dot-mvvm-dot-isplashscreenmanagerservice.md
Hides the splash screen.
Namespace : DevExpress.Mvvm
Assembly : DevExpress.Mvvm.v25.2.dll
NuGet Packages : DevExpress.Mvvm, DevExpress.Win.Navigation
void Close()
Sub Close
The following code snippets (auto-collected from DevExpress Examples) contain references to the Close() method.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
this.DispatcherService.Invoke(() => {
this.SplashScreenManagerService.Close();
worker.DoWork -= Worker_DoWork;
splashscreenmanagerservice/CS/ViewModel/MainViewModel.cs#L24
Thread.Sleep(TimeSpan.FromSeconds(Delay));
SplashScreenManagerService.Close();
}
DispatcherService.Invoke(Sub()
SplashScreenManagerService.Close()
RemoveHandler worker.DoWork, AddressOf Worker_DoWork
splashscreenmanagerservice/VB/ViewModel/MainViewModel.vb#L30
Thread.Sleep(TimeSpan.FromSeconds(Delay))
SplashScreenManagerService.Close()
End Sub
See Also
ISplashScreenManagerService Interface