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.1.dll
NuGet Package: DevExpress.Wpf.Controls
Declaration
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