Class DialogViewModel
A base class for the various pivot field list editing dialogs view models.
Inherited Members
Namespace: Telerik.Windows.Controls.FieldList.Editing
Assembly: Telerik.Windows.Controls.PivotFieldList.dll
Syntax
public abstract class DialogViewModel : ViewModelBase, INotifyPropertyChanged, IDisposable, IDialogViewModel
Properties
Cancel
Gets the Cancel System.
Declaration
public ICommand Cancel { get; }
Property Value
System.
|
Implements
IsAvailable
Gets a value that indicates if the editing is possible.
Declaration
public bool IsAvailable { get; }
Property Value
System.
|
IsWorking
Gets a value that indicates if the dialog is waiting on results.
Declaration
public bool IsWorking { get; protected set; }
Property Value
System.
|
Ok
Gets the Ok System.
Declaration
public ICommand Ok { get; }
Property Value
System.
|
Implements
Refresh
Gets the Refresh System.
Declaration
public ICommand Refresh { get; }
Property Value
System.
|
RequiresRefresh
Gets a value that indicates if the editing requires recent IPivot
Declaration
public bool RequiresRefresh { get; protected set; }
Property Value
System.
|
Methods
AttachToServices()
Attach to the new services.
Declaration
protected virtual void AttachToServices()
CanExecuteOk(Object)
Checks if the Ok System.
Declaration
protected virtual bool CanExecuteOk(object parameter)
Parameters
System. The parameters. |
Returns
System. True if System. |
DetachFromServices()
Detach the previous services.
Declaration
protected virtual void DetachFromServices()
Dispose(Boolean)
Releases unmanaged and - optionally - managed resources.
Declaration
protected override void Dispose(bool disposing)
Parameters
System.
|
Overrides
ExecuteOk(Object)
Handles the Ok execution.
Declaration
protected virtual void ExecuteOk(object parameter)
Parameters
System.
|
ExecuteRefresh(Object)
Handles the Refresh execution.
Declaration
protected virtual void ExecuteRefresh(object parameter)
Parameters
System.
|
RetrieveServices(IServiceProvider)
Retrieve the services from the serviceProvider
. You could use the Telerik.
Declaration
protected virtual void RetrieveServices(IServiceProvider serviceProvider)
Parameters
System. The System. |
Events
Canceled
Invoked when the user canceled any changes done through this dialog.
Declaration
public event EventHandler Canceled
Event Type
System.
|
Implements
Completed
Invoked when the user completed and confirmed the changes on this dialog.
Declaration
public event EventHandler Completed
Event Type
System.
|