C# 클래스 Caliburn.Micro.ReactiveUI.ReactiveViewAware

A base implementation of IViewAware which is capable of caching views by context.
상속: Caliburn.Micro.ReactiveUI.ReactivePropertyChangedBase, IViewAware
파일 보기 프로젝트 열기: dchaib/Caliburn.Micro.ReactiveUI

공개 프로퍼티들

프로퍼티 타입 설명
DefaultContext object

보호된 프로퍼티들

프로퍼티 타입 설명
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