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

A base implementation of IScreen.
상속: ReactiveViewAware, IScreen, IChild
파일 보기 프로젝트 열기: dchaib/Caliburn.Micro.ReactiveUI

공개 메소드들

메소드 설명
CanClose ( Action callback ) : void

Called to check whether or not this instance can close.

ReactiveScreen ( ) : ReactiveUI

Creates an instance of ReactiveScreen.

TryClose ( bool dialogResult = null ) : void

Tries to close this instance by asking its Parent to initiate shutdown or by asking its corresponding view to close. Also provides an opportunity to pass a dialog result to it's corresponding view.

보호된 메소드들

메소드 설명
OnActivate ( ) : void

Called when activating.

OnDeactivate ( bool close ) : void

Called when deactivating.

OnInitialize ( ) : void

Called when initializing.

비공개 메소드들

메소드 설명
IActivate ( ) : void
IDeactivate ( bool close ) : void

메소드 상세

CanClose() 공개 메소드

Called to check whether or not this instance can close.
public CanClose ( Action callback ) : void
callback Action The implementor calls this action with the result of the close check.
리턴 void

OnActivate() 보호된 메소드

Called when activating.
protected OnActivate ( ) : void
리턴 void

OnDeactivate() 보호된 메소드

Called when deactivating.
protected OnDeactivate ( bool close ) : void
close bool Inidicates whether this instance will be closed.
리턴 void

OnInitialize() 보호된 메소드

Called when initializing.
protected OnInitialize ( ) : void
리턴 void

ReactiveScreen() 공개 메소드

Creates an instance of ReactiveScreen.
public ReactiveScreen ( ) : ReactiveUI
리턴 ReactiveUI

TryClose() 공개 메소드

Tries to close this instance by asking its Parent to initiate shutdown or by asking its corresponding view to close. Also provides an opportunity to pass a dialog result to it's corresponding view.
public TryClose ( bool dialogResult = null ) : void
dialogResult bool The dialog result.
리턴 void