C# 클래스 Caliburn.Micro.FrameAdapter

A basic implementation of INavigationService designed to adapt the Frame control.
상속: INavigationService
파일 보기 프로젝트 열기: dbuksbaum/Learning-Caliburn.Micro 1 사용 예제들

공개 메소드들

메소드 설명
FrameAdapter ( Frame frame ) : System

Creates an instance of FrameAdapter

GoBack ( ) : void

Navigates back.

GoForward ( ) : void

Navigates forward.

Navigate ( Uri source ) : bool

Navigates to the specified Uri.

StopLoading ( ) : void

Stops the loading process.

보호된 메소드들

메소드 설명
OnNavigated ( object sender, NavigationEventArgs e ) : void

Occurs after navigation

OnNavigating ( object sender, NavigatingCancelEventArgs e ) : void

Occurs before navigation

TryInjectQueryString ( object viewModel, object view ) : void

Attempts to inject query string parameters from the view into the view model.

메소드 상세

FrameAdapter() 공개 메소드

Creates an instance of FrameAdapter
public FrameAdapter ( Frame frame ) : System
frame Windows.UI.Xaml.Controls.Frame The frame to represent as a .
리턴 System

GoBack() 공개 메소드

Navigates back.
public GoBack ( ) : void
리턴 void

GoForward() 공개 메소드

Navigates forward.
public GoForward ( ) : void
리턴 void

Navigate() 공개 메소드

Navigates to the specified Uri.
public Navigate ( Uri source ) : bool
source Uri The to navigate to.
리턴 bool

OnNavigated() 보호된 메소드

Occurs after navigation
protected OnNavigated ( object sender, NavigationEventArgs e ) : void
sender object The event sender.
e Windows.UI.Xaml.Navigation.NavigationEventArgs The event args.
리턴 void

OnNavigating() 보호된 메소드

Occurs before navigation
protected OnNavigating ( object sender, NavigatingCancelEventArgs e ) : void
sender object The event sender.
e Windows.UI.Xaml.Navigation.NavigatingCancelEventArgs The event args.
리턴 void

StopLoading() 공개 메소드

Stops the loading process.
public StopLoading ( ) : void
리턴 void

TryInjectQueryString() 보호된 메소드

Attempts to inject query string parameters from the view into the view model.
protected TryInjectQueryString ( object viewModel, object view ) : void
viewModel object The view model.
view object The view.
리턴 void