Hello!
I have a radPage control, ex: Order.xaml. I want to pass to this page some parameter by using Navigate() method like this:
Telerik.Windows.Controls.NavigationService navService = Telerik.Windows.Controls.NavigationService.GetNavigationService;
Uri navUri = new Uri( string.Format( "/Orders/{0}", orderID ), UriKind.Relative);
navService.Navigate(navUri );
and in Order.xaml page i need an event like OnNavigate() like:
public override void OnNavigate( NavigationContext context )
{
if ( context.Parameters.Contains( "CustomerID" ) )
{
MessageBox.Show(context.Parameters.Contains( "CustomerID" ) );
}
}
I hope you can help me solve this issue
thanks you!
