C# 클래스 ReactiveCaliburn.ReactiveViewAware

상속: ReactivePropertyChangedBase, IViewAware
파일 보기 프로젝트 열기: TheAngryByrd/MetroPass

공개 프로퍼티들

프로퍼티 타입 설명
CacheViewsByDefault bool

보호된 프로퍼티들

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