|
Vereinsmeisterschaften
22aa7800eae54b428d40e835886cefe1fdefdfdf
This is a software that can be used to manage the internal competition of the swimming club Illertissen called "Vereinsmeisterschaften".
|
Interface for a service for handling navigation within the application. More...
Public Member Functions | |
| void | Initialize (Frame shellFrame) |
| Initializes the navigation service with the provided frame. | |
| bool | NavigateTo (string pageKey, object parameter=null, bool clearNavigation=false) |
| Navigates to the specified page using its key. | |
| bool | NavigateTo< T_VM > (object parameter=null, bool clearNavigation=false) |
| Navigates to the specified page using its view model type. | |
| bool | ReloadCurrent () |
| Navigate to the current page again. | |
| void | GoBack () |
| Goes back to the previous page in the navigation stack if possible. | |
| void | UnsubscribeNavigation () |
| Unsubscribes from navigation events and clears the frame reference. | |
| void | CleanNavigation () |
| Cleans the navigation stack of the frame. | |
Properties | |
| bool | CanGoBack [get] |
| True if the frame can navigate back, false otherwise. | |
| FrameworkElement | CurrentFrameContent [get] |
| Current FrameworkElement that is displayed in the Frame. | |
| object | CurrentFrameViewModel [get] |
| View model used by the CurrentFrameContent | |
Events | |
| EventHandler< string > | Navigated |
| Event that is raised when navigation occured. | |
Interface for a service for handling navigation within the application.
Definition at line 10 of file INavigationService.cs.
| void Vereinsmeisterschaften.Contracts.Services.INavigationService.CleanNavigation | ( | ) |
Cleans the navigation stack of the frame.
Implemented in Vereinsmeisterschaften.Services.NavigationService.
| void Vereinsmeisterschaften.Contracts.Services.INavigationService.GoBack | ( | ) |
Goes back to the previous page in the navigation stack if possible.
Implemented in Vereinsmeisterschaften.Services.NavigationService.
| void Vereinsmeisterschaften.Contracts.Services.INavigationService.Initialize | ( | Frame | shellFrame | ) |
Initializes the navigation service with the provided frame.
| shellFrame | Use this Frame for navigation |
Implemented in Vereinsmeisterschaften.Services.NavigationService.
| bool Vereinsmeisterschaften.Contracts.Services.INavigationService.NavigateTo | ( | string | pageKey, |
| object | parameter = null, | ||
| bool | clearNavigation = false ) |
Navigates to the specified page using its key.
| pageKey | Page key |
| parameter | Optional parameter |
| clearNavigation | True to clear the navigation |
Implemented in Vereinsmeisterschaften.Services.NavigationService.
| bool Vereinsmeisterschaften.Contracts.Services.INavigationService.NavigateTo< T_VM > | ( | object | parameter = null, |
| bool | clearNavigation = false ) |
Navigates to the specified page using its view model type.
| parameter | Optional parameter |
| clearNavigation | True to clear the navigation |
Implemented in Vereinsmeisterschaften.Services.NavigationService.
| bool Vereinsmeisterschaften.Contracts.Services.INavigationService.ReloadCurrent | ( | ) |
Navigate to the current page again.
This can be used to trigger the INavigationAware.OnNavigatedTo(object) again.
Implemented in Vereinsmeisterschaften.Services.NavigationService.
| void Vereinsmeisterschaften.Contracts.Services.INavigationService.UnsubscribeNavigation | ( | ) |
Unsubscribes from navigation events and clears the frame reference.
Implemented in Vereinsmeisterschaften.Services.NavigationService.
|
get |
True if the frame can navigate back, false otherwise.
Implemented in Vereinsmeisterschaften.Services.NavigationService.
Definition at line 20 of file INavigationService.cs.
|
get |
Current FrameworkElement that is displayed in the Frame.
Most times this is a page.
Implemented in Vereinsmeisterschaften.Services.NavigationService.
Definition at line 25 of file INavigationService.cs.
|
get |
View model used by the CurrentFrameContent
Implemented in Vereinsmeisterschaften.Services.NavigationService.
Definition at line 30 of file INavigationService.cs.
| EventHandler<string> Vereinsmeisterschaften.Contracts.Services.INavigationService.Navigated |
Event that is raised when navigation occured.
Definition at line 15 of file INavigationService.cs.