IView Interface

View interface.

Definition

Namespace: Aliquo.Windows
Assembly: Aliquo.Windows (in Aliquo.Windows.dll) Version: 5.0.9179.22654
C#
public interface IView : IViewMethods, IViewEvents, 
	INotifyPropertyChanged
Implements
IViewEvents, IViewMethods, INotifyPropertyChanged

Remarks

The interface must be implemented in the class in charge of managing this type of views (IView implemented in Aliquo's View).

The interface must meet the following specifications:

- Must inherit from the method and event interfaces corresponding to the view type.

- Can contain specific properties of the view.

- Can contain view-specific methods that do not need to be implemented in the ViewModels using the IViewMethods.

All view interfaces must inherit from the IView interface.

Properties

IsActive Indicates if the view is active.
IsBusy Indicates if the view is busy.
Key View key.
Style View style.
Type View type.

Methods

GetHost Get the host.
Raise Method for propagating the events indicated in the parameters.

See Also