Interface IProgressBarViewModel
Interface for a view model that has performs long-running actions that displays progress information using a progress bar.
Inherited Members
Namespace: Benday.Presentation
Assembly: Benday.Presentation.dll
Syntax
public interface IProgressBarViewModel : INotifyPropertyChanged
Properties
| Edit this page View SourceCancelOperationCommand
Gets or sets the cancel operation command.
Declaration
ICommand CancelOperationCommand { get; }
Property Value
| Type | Description |
|---|---|
| ICommand |
IsCancelable
Gets or sets value indicating if the operation is cancelable.
Declaration
bool IsCancelable { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
IsProgressBarVisible
Gets or sets a value indicating whether the progress bar is visible.
Declaration
bool IsProgressBarVisible { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
ProgressBarMessage
Gets or sets the progress bar message.
Declaration
string ProgressBarMessage { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Events
| Edit this page View SourceOnCancelRequested
Event raised when the cancel operation is requested.
Declaration
event EventHandler OnCancelRequested
Event Type
| Type | Description |
|---|---|
| EventHandler |