corelibraries-devexpress-dot-mvvm-dot-dxsplashscreenviewmodel-cf4f5d6e.md
Specifies the current position of the progress bar displayed by the splash screen.
Namespace : DevExpress.Mvvm
Assembly : DevExpress.Mvvm.v25.2.dll
NuGet Packages : DevExpress.Mvvm, DevExpress.Win.Navigation
public double Progress { get; set; }
Public Property Progress As Double
| Type | Description |
|---|---|
| Double |
A System.Double value from 0d to 100d.
|
Set the IsIndeterminate property to true to apply the marquee style to the progress bar.
The following code snippets (auto-collected from DevExpress Examples) contain references to the Progress 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.
Width="240"
Value="{Binding Progress}"/>
<TextBlock Text="Cancel"
.Invoke(() => {
this.SplashScreenManagerService.ViewModel.Progress = progressValue;
this.SplashScreenManagerService.ViewModel.Status = $"({progressValue} %) - {state}";
// Display the progress of the running operation in the splash screen.
splashScreenManager.ViewModel.Progress = currentProgress;
}
DispatcherService.Invoke(Sub()
SplashScreenManagerService.ViewModel.Progress = progressValue
SplashScreenManagerService.ViewModel.Status = $"({progressValue} %) - {state}"
' Display the progress of the running operation in the splash screen.
splashScreenManager.ViewModel.Progress = currentProgress
End Sub
See Also