C# Class Dev2.Studio.Core.ViewModels.Base.SimpleBaseViewModel

Inheritance: Caliburn.Micro.Screen, IDisposable
Mostrar archivo Open project: Warewolf-ESB/Warewolf Class Usage Examples

Public Methods

Method Description
Dispose ( ) : void
RequestClose ( ) : void

Requests tha the view bound to this view model closes

RequestClose ( ViewModelDialogResults dialogResult ) : void

Requests tha the view bound to this view model closes

Protected Methods

Method Description
OnDispose ( ) : void

Child classes can override this method to perform clean-up logic, such as removing event handlers.

OnPropertyChanged ( string propertyName ) : void

Private Methods

Method Description
Dispose ( bool disposing ) : void

Method Details

Dispose() public method

public Dispose ( ) : void
return void

OnDispose() protected method

Child classes can override this method to perform clean-up logic, such as removing event handlers.
protected OnDispose ( ) : void
return void

OnPropertyChanged() protected method

protected OnPropertyChanged ( string propertyName ) : void
propertyName string
return void

RequestClose() public method

Requests tha the view bound to this view model closes
public RequestClose ( ) : void
return void

RequestClose() public method

Requests tha the view bound to this view model closes
public RequestClose ( ViewModelDialogResults dialogResult ) : void
dialogResult ViewModelDialogResults
return void