Back to Devexpress

ISplashScreenService.ShowSplashScreen(String) Method

corelibraries-devexpress-dot-mvvm-dot-isplashscreenservice-dot-showsplashscreen-x28-system-dot-string-x29.md

latest2.5 KB
Original Source

ISplashScreenService.ShowSplashScreen(String) Method

Shows the splash screen.

Namespace : DevExpress.Mvvm

Assembly : DevExpress.Mvvm.v25.2.dll

NuGet Packages : DevExpress.Mvvm, DevExpress.Win.Navigation

Declaration

csharp
void ShowSplashScreen(
    string documentType
)
vb
Sub ShowSplashScreen(
    documentType As String
)

Parameters

NameTypeDescription
documentTypeString

A String value that specifies the name of a document type to be shown in the splash screen.

|

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the ShowSplashScreen(String) 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.

winforms-memo-editor-advanced-mode/CS/MemoEditSample/ViewModels/DemoViewModel.cs#L101

csharp
try {
    overlay.ShowSplashScreen("#Overlay#");
    Text = GetText(LinesCount, LineLength);

winforms-memo-editor-advanced-mode/VB/MemoEditSample/ViewModels/DemoViewModel.vb#L108

vb
Try
    overlay.ShowSplashScreen("#Overlay#")
    Text = GetText(LinesCount, LineLength)

See Also

ISplashScreenService Interface

ISplashScreenService Members

DevExpress.Mvvm Namespace