Property | Type | Description | |
---|---|---|---|
CoreDispatcher_AcceleratorKeyActivated | void | ||
CoreWindow_PointerPressed | void | ||
HardwareButtons_BackPressed | void |
Method | Description | |
---|---|---|
CanGoBack ( ) : bool |
Virtual method used by the GoBackCommand property to determine if the Frame can go back.
|
|
CanGoForward ( ) : bool |
Virtual method used by the GoForwardCommand property to determine if the Frame can go forward.
|
|
GoBack ( ) : void |
Virtual method used by the GoBackCommand property to invoke the Windows.UI.Xaml.Controls.Frame.GoBack method.
|
|
GoForward ( ) : void |
Virtual method used by the GoForwardCommand property to invoke the Windows.UI.Xaml.Controls.Frame.GoForward method.
|
|
NavigationHelper ( |
Initializes a new instance of the NavigationHelper class.
|
|
OnNavigatedFrom ( |
Invoked when this page will no longer be displayed in a Frame. This method calls SaveState, where all page specific navigation and process lifetime management logic should be placed.
|
|
OnNavigatedTo ( |
Invoked when this page is about to be displayed in a Frame. This method calls LoadState, where all page specific navigation and process lifetime management logic should be placed.
|
Method | Description | |
---|---|---|
CoreDispatcher_AcceleratorKeyActivated ( |
Invoked on every keystroke, including system keys such as Alt key combinations, when this page is active and occupies the entire window. Used to detect keyboard navigation between pages even when the page itself doesn't have focus.
|
|
CoreWindow_PointerPressed ( |
Invoked on every mouse click, touch screen tap, or equivalent interaction when this page is active and occupies the entire window. Used to detect browser-style next and previous mouse button clicks to navigate between pages.
|
|
HardwareButtons_BackPressed ( object sender, Windows e ) : void |
Invoked when the hardware back button is pressed. For Windows Phone only.
|
public NavigationHelper ( |
||
page | A reference to the current page used for navigation. /// This reference allows for frame manipulation and to ensure that keyboard /// navigation requests only occur when the page is occupying the entire window. | |
return | System |
public OnNavigatedFrom ( |
||
e | Event data that describes how this page was reached. The Parameter /// property provides the group to be displayed. | |
return | void |
public OnNavigatedTo ( |
||
e | Event data that describes how this page was reached. The Parameter /// property provides the group to be displayed. | |
return | void |