C# 클래스 Catel.MVVM.Navigation.NavigationAdapter

파일 보기 프로젝트 열기: Catel/Catel

Private Properties

프로퍼티 타입 설명
DetermineNavigationContext void
Initialize void
OnBackPressed void
Uninitialize void

공개 메소드들

메소드 설명
OnNavigatedEvent ( object sender, System.Windows.Navigation.NavigationEventArgs e ) : void

Called when the Navigating event is invoked.

This method is public due to the fact that weak events are used. Otherwise, the navigation completed events could not be handled (because we unsubscribed from the RootFrame) when navigating away to prevent memory leaks. Please, do not call this method yourself, otherwise you can seriously ruin your apps.

OnNavigatingEvent ( object sender, System.Windows.Navigation.NavigatingCancelEventArgs e ) : void

Called when the Navigated event is invoked.

This method is public due to the fact that weak events are used. Otherwise, the navigation completed events could not be handled (because we unsubscribed from the RootFrame) when navigating away to prevent memory leaks. Please, do not call this method yourself, otherwise you can seriously ruin your apps.

보호된 메소드들

메소드 설명
CanHandleNavigation ( ) : bool

Determines whether the navigation can be handled by this adapter.

GetNavigationUri ( object target ) : string

Gets the navigation URI for the target page.

비공개 메소드들

메소드 설명
DetermineNavigationContext ( ) : void
Initialize ( ) : void
OnBackPressed ( object sender, BackPressedEventArgs e ) : void
Uninitialize ( ) : void

메소드 상세

CanHandleNavigation() 보호된 메소드

Determines whether the navigation can be handled by this adapter.
protected CanHandleNavigation ( ) : bool
리턴 bool

GetNavigationUri() 보호된 메소드

Gets the navigation URI for the target page.
protected GetNavigationUri ( object target ) : string
target object The target.
리턴 string

OnNavigatedEvent() 공개 메소드

Called when the Navigating event is invoked.
This method is public due to the fact that weak events are used. Otherwise, the navigation completed events could not be handled (because we unsubscribed from the RootFrame) when navigating away to prevent memory leaks. Please, do not call this method yourself, otherwise you can seriously ruin your apps.
public OnNavigatedEvent ( object sender, System.Windows.Navigation.NavigationEventArgs e ) : void
sender object The sender.
e System.Windows.Navigation.NavigationEventArgs The instance containing the event data.
리턴 void

OnNavigatingEvent() 공개 메소드

Called when the Navigated event is invoked.
This method is public due to the fact that weak events are used. Otherwise, the navigation completed events could not be handled (because we unsubscribed from the RootFrame) when navigating away to prevent memory leaks. Please, do not call this method yourself, otherwise you can seriously ruin your apps.
public OnNavigatingEvent ( object sender, System.Windows.Navigation.NavigatingCancelEventArgs e ) : void
sender object The sender.
e System.Windows.Navigation.NavigatingCancelEventArgs The instance containing the event data.
리턴 void