C# Класс Caliburn.Micro.ReactiveUI.ReactiveViewAware

A base implementation of IViewAware which is capable of caching views by context.
Наследование: Caliburn.Micro.ReactiveUI.ReactivePropertyChangedBase, IViewAware
Показать файл Открыть проект

Открытые свойства

Свойство Тип Описание
DefaultContext object

Защищенные свойства (Protected)

Свойство Тип Описание
Views object>.IDictionary

Открытые методы

Метод Описание
GetView ( object context = null ) : object

Gets a view previously attached to this instance.

ReactiveViewAware ( ) : System

Creates an instance of ReactiveViewAware.

Защищенные методы

Метод Описание
OnViewAttached ( object view, object context ) : void

Called when a view is attached.

OnViewLoaded ( object view ) : void

Called when an attached view's Loaded event fires.

OnViewReady ( object view ) : void

Called the first time the page's LayoutUpdated event fires after it is navigated to.

Приватные методы

Метод Описание
AttachViewReadyOnActivated ( IActivate activatable, object nonGeneratedView ) : void
IViewAware ( object view, object context ) : void

Описание методов

GetView() публичный Метод

Gets a view previously attached to this instance.
public GetView ( object context = null ) : object
context object The context denoting which view to retrieve.
Результат object

OnViewAttached() защищенный Метод

Called when a view is attached.
protected OnViewAttached ( object view, object context ) : void
view object The view.
context object The context in which the view appears.
Результат void

OnViewLoaded() защищенный Метод

Called when an attached view's Loaded event fires.
protected OnViewLoaded ( object view ) : void
view object
Результат void

OnViewReady() защищенный Метод

Called the first time the page's LayoutUpdated event fires after it is navigated to.
protected OnViewReady ( object view ) : void
view object
Результат void

ReactiveViewAware() публичный Метод

Creates an instance of ReactiveViewAware.
public ReactiveViewAware ( ) : System
Результат System

Описание свойств

DefaultContext публичное статическое свойство

The default view context.
public static object DefaultContext
Результат object

Views защищенное свойство

The view cache for this instance.
protected IDictionary Views
Результат object>.IDictionary