Method | Description | |
---|---|---|
Close ( ) : void | ||
OnApplyTemplate ( ) : void |
Method | Description | |
---|---|---|
AddCustomButton ( |
Adds a custom button to the list of buttons.
|
|
ApplyChangesAsync ( ) : Task |
Applies all changes made by this window.
|
|
DiscardChangesAsync ( ) : Task |
Discards all changes made by this window.
|
|
ExecuteApply ( ) : void |
Executes the Apply command.
|
|
ExecuteCancelAsync ( ) : System.Threading.Tasks.Task |
Executes the Cancel command.
|
|
ExecuteClose ( ) : void |
Executes the Close command.
|
|
ExecuteOkAsync ( ) : System.Threading.Tasks.Task |
Executes the Ok command.
|
|
OnApplyCanExecute ( ) : bool |
Determines whether the user can execute the Apply command.
|
|
OnApplyExecute ( ) : void |
Handled when the user invokes the Apply command.
|
|
OnCancelCanExecute ( ) : bool |
Determines whether the user can execute the Cancel command.
|
|
OnCancelExecuteAsync ( ) : System.Threading.Tasks.Task |
Handled when the user invokes the Cancel command.
|
|
OnCloseExecute ( ) : void |
Handled when the user invokes the Close command.
|
|
OnOkCanExecute ( ) : bool |
Determines whether the user can execute the Ok command.
|
|
OnOkExecuteAsync ( ) : System.Threading.Tasks.Task |
Handled when the user invokes the Ok command.
|
|
SimpleDataWindow ( ) : System |
Initializes a new instance of the SimpleDataWindow class.
|
|
SimpleDataWindow ( DataWindowMode dataWindowMode ) : System |
Initializes a new instance of the SimpleDataWindow class.
|
|
SimpleDataWindow ( IViewModel viewModel, DataWindowMode mode = DataWindowMode.OkCancel, IEnumerable |
Initializes a new instance of the SimpleDataWindow class.
|
|
ValidateData ( ) : bool |
Validates the data.
|
Method | Description | |
---|---|---|
OnViewModelChanged ( ) : void | ||
ViewModelClosedAsync ( object sender, Catel.MVVM.ViewModelClosedEventArgs e ) : System.Threading.Tasks.Task |
protected AddCustomButton ( |
||
dataWindowButton | The data window button. | |
return | void |
protected ExecuteCancelAsync ( ) : System.Threading.Tasks.Task | ||
return | System.Threading.Tasks.Task |
protected ExecuteOkAsync ( ) : System.Threading.Tasks.Task | ||
return | System.Threading.Tasks.Task |
protected OnCancelExecuteAsync ( ) : System.Threading.Tasks.Task | ||
return | System.Threading.Tasks.Task |
protected OnOkExecuteAsync ( ) : System.Threading.Tasks.Task | ||
return | System.Threading.Tasks.Task |
protected SimpleDataWindow ( DataWindowMode dataWindowMode ) : System | ||
dataWindowMode | DataWindowMode | |
return | System |
protected SimpleDataWindow ( IViewModel viewModel, DataWindowMode mode = DataWindowMode.OkCancel, IEnumerable |
||
viewModel | IViewModel | The view model. |
mode | DataWindowMode | The data window mode. |
additionalButtons | IEnumerable |
The additional buttons. |
return | System |