Skip to main content

DevExpress v24.1 Update — Your Feedback Matters

Our What's New in v24.1 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

NavigationPage Class

A navigation container that implements the INavigationAware interface.

Namespace: DevExpress.Xpf.WindowsUI

Assembly: DevExpress.Xpf.Controls.v24.1.dll

NuGet Package: DevExpress.Wpf.Controls

#Declaration

public class NavigationPage :
    ContentControl,
    INavigationAware

#Remarks

Normally, when you navigate through screens within a WindowsUI application and want to pass data from one container to another, you should implement the INavigationAware interface for your UserControl representing a screen, and use the INavigationAware.NavigatedFrom and INavigationAware.NavigatedTo methods to specify the NavigationBaseEventArgs.Parameter property. If you do not want to manually implement the INavigationAware interface, you can use the NavigationPage object instead of a UserControl to host your screen. See the Navigation topic for an example.

#Implements

See Also