Skip to main content

NavigationFrame.Navigate(Object, Object) Method

Navigates to a specific application screen (View) and passes the required navigation parameter.

Namespace: DevExpress.Xpf.WindowsUI

Assembly: DevExpress.Xpf.Controls.v23.2.dll

NuGet Package: DevExpress.Wpf.Controls

Declaration

public void Navigate(
    object source,
    object param
)

Parameters

Name Type Description
source Object

An Object that is the View to which this NavigationFrame should navigate.

param Object

An Object that is the navigation parameter for the current navigation.

Remarks

After the Navigate method is called, the NavigationFrame.Navigating event occurs. You can handle this event and use the NavigationBaseEventArgs.Parameter property to obtain and use the navigation parameter passed in the Navigate method. See the Navigation topic for details.

See Also