Back to Devexpress

DXSplashScreenViewModel.Title Property

corelibraries-devexpress-dot-mvvm-dot-dxsplashscreenviewmodel-a65a015f.md

latest3.0 KB
Original Source

DXSplashScreenViewModel.Title Property

Specifies the title text.

Namespace : DevExpress.Mvvm

Assembly : DevExpress.Mvvm.v25.2.dll

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

Declaration

csharp
public string Title { get; set; }
vb
Public Property Title As String

Property Value

TypeDescription
String

The title text.

|

The following code snippets (auto-collected from DevExpress Examples) contain references to the Title property.

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.

wpf-spreadsheet-create-custom-progress-indicator/CS/WpfSpreadsheetProgressSample/CustomSplashScreen.xaml#L15

xml
<StackPanel VerticalAlignment="Center" Margin="16">
    <TextBlock Text="{Binding Title}"
               FontSize="16"

wpf-splash-screen-show-cancelable-wait-indicator/CS/SplashScreenManagerExample/ViewModels/MainViewModel.cs#L69

csharp
void InitSplashScreenViewModel(DXSplashScreenViewModel vm) {
    vm.Title = "SOME BACKGROUND WORK";
    vm.Subtitle = "This can take some time";

wpf-splash-screen-show-cancelable-wait-indicator/VB/SplashScreenManagerExample/ViewModels/MainViewModel.vb#L76

vb
Private Sub InitSplashScreenViewModel(ByVal vm As DXSplashScreenViewModel)
    vm.Title = "SOME BACKGROUND WORK"
    vm.Subtitle = "This can take some time"

See Also

DXSplashScreenViewModel Class

DXSplashScreenViewModel Members

DevExpress.Mvvm Namespace