NavigationWindow.NavigationService Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the NavigationService that is used by this NavigationWindow to provide navigation services to its content.
public:
property System::Windows::Navigation::NavigationService ^ NavigationService { System::Windows::Navigation::NavigationService ^ get(); };
public System.Windows.Navigation.NavigationService NavigationService { get; }
member this.NavigationService : System.Windows.Navigation.NavigationService
Public ReadOnly Property NavigationService As NavigationService
Property Value
The navigation service used by this NavigationWindow.
Remarks
NavigationWindow uses a NavigationService to provide navigation services to content that is hosted by NavigationWindow. The NavigationService property is useful for code in a custom NavigationWindow to get a reference to the NavigationService, to handle navigation events, for example.
Content that is hosted by a NavigationWindow, such as Page, should use the NavigationService.GetNavigationService method or Page.NavigationService property to get a reference to the NavigationService.