corelibraries-devexpress-dot-mvvm-dot-dxsplashscreenviewmodel-a65a015f.md
Specifies the title text.
Namespace : DevExpress.Mvvm
Assembly : DevExpress.Mvvm.v25.2.dll
NuGet Packages : DevExpress.Mvvm, DevExpress.Win.Navigation
public string Title { get; set; }
Public Property Title As String
| Type | Description |
|---|---|
| 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.
<StackPanel VerticalAlignment="Center" Margin="16">
<TextBlock Text="{Binding Title}"
FontSize="16"
void InitSplashScreenViewModel(DXSplashScreenViewModel vm) {
vm.Title = "SOME BACKGROUND WORK";
vm.Subtitle = "This can take some time";
Private Sub InitSplashScreenViewModel(ByVal vm As DXSplashScreenViewModel)
vm.Title = "SOME BACKGROUND WORK"
vm.Subtitle = "This can take some time"
See Also