Skip to main content
A newer version of this page is available. .

NavigationPage Class

A navigation container that implements the INavigationAware interface.

Namespace: DevExpress.Xpf.WindowsUI

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

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.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the NavigationPage class.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

Implements

See Also