Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 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

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.v24.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