Hi lin,
The current Telerik Navigation framework is supported due to backward compatiblity with our previous releases when there was no Navigation framework in the Silverlight runtime.
If you are building a new project - it will be better to use the Silverlight framework from Microsoft.
However if you prefer to use RadNavigation I could suggest you to check the following things:
1. Make sure that
Default is of RadPage type.
2.Try to use something like:
3. In Default page if you still have any problems withe navigation you can reset the Target of the NavigationService:
void Default_Loaded(object sender, RoutedEventArgs e)
{
service = NavigationService.GetNavigationService();
service.Target = this.frame;
}
All the best,
Bobi
the Telerik team
Do you want to have your say when we set our development plans?
Do you want to know when a feature you care about is added or when a bug fixed?
Explore the
Telerik Public Issue Tracking
system and vote to affect the priority of the items.