IViewMethods Interface

View methods interface.

Definition

Namespace: Aliquo.Windows
Assembly: Aliquo.Windows (in Aliquo.Windows.dll) Version: 5.0.9179.22654
C#
public interface IViewMethods

Remarks

La interface se debe implementar en las ViewModels de las vistas.

Ejemplo de implementación en TableViewModel.vb de Aliquo.Windows.Views.Tables:

Public Sub Refresh() Implements IViewMethods.Refresh

...

End Sub

Todas las interface de métodos de vistas deben heredar de la interface IViewMethods.

Methods

GetCurrentId Gets the identifier of the currently selected element, and sets it as the only selected element.
GetSelectedIds Gets the identifiers of the selected elements, the currently selected element will be in the first position.
Refresh Refresh the view.

See Also