C# Класс ReactiveCaliburn.ReactiveViewAware

Наследование: ReactivePropertyChangedBase, IViewAware
Показать файл Открыть проект

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

Свойство Тип Описание
CacheViewsByDefault bool

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

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

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

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

Gets a view previously attached to this instance.

ReactiveViewAware ( ) : System

Creates an instance of ReactiveViewAware.

ReactiveViewAware ( bool cacheViews ) : System

Creates an instance of ReactiveViewAware.

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

Метод Описание
OnViewAttached ( object view, object context ) : System.Threading.Tasks.Task

Called when a view is attached.

OnViewLoaded ( object view ) : System.Threading.Tasks.Task

Called when an attached view's Loaded event fires.

OnViewReady ( object view ) : System.Threading.Tasks.Task

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

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

Метод Описание
IViewAware ( object view ) : 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 ) : System.Threading.Tasks.Task
view object The view.
context object The context in which the view appears.
Результат System.Threading.Tasks.Task

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

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

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

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

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

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

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

Creates an instance of ReactiveViewAware.
public ReactiveViewAware ( bool cacheViews ) : System
cacheViews bool Indicates whether or not this instance maintains a view cache.
Результат System

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

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

Indicates whether or not implementors of IViewAware should cache their views by default.
public static bool CacheViewsByDefault
Результат bool

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

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