public interface IView : IViewMethods, IViewEvents,
INotifyPropertyChanged
Public Interface IView
Inherits IViewMethods, IViewEvents, INotifyPropertyChanged
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.
IsActive | Indicates if the view is active. |
IsBusy | Indicates if the view is busy. |
Key | View key. |
Style | View style. |
Type | View type. |