This question is locked. New answers and comments are not allowed.
Hi,
I have a problem trying to use the Transition Property on a navigation service.
If I click on a RadMenuItem, I execute the following code:
Problem is that the Transition effect is not shown. I think this is because the service object only gets filled after I click on the menuitem. Until then the transition effect is Default. Setting the transition effect on menuitem_click is probably too late ?
The Telerik demo site "First Look" on PageNavigation also sets the transition after something is changed in the transition effect combobox.
So my question is: how can you initially set a transition effect that is different than the Default one.
Thanks,
Nicolas
I have a problem trying to use the Transition Property on a navigation service.
If I click on a RadMenuItem, I execute the following code:
| service = NavigationService.GetNavigationService(ContentPanel); |
| service.Transition = new FadeTransition(ContentPanel, new TimeSpan(0, 0, 2)); |
| service.Dispose(); |
| service.FrameHistory.Clear(); |
| service.Navigate(new ADSearch()); |
Problem is that the Transition effect is not shown. I think this is because the service object only gets filled after I click on the menuitem. Until then the transition effect is Default. Setting the transition effect on menuitem_click is probably too late ?
The Telerik demo site "First Look" on PageNavigation also sets the transition after something is changed in the transition effect combobox.
So my question is: how can you initially set a transition effect that is different than the Default one.
Thanks,
Nicolas