Thursday, August 12, 2010
by
XAML Team
|
Go comment!
The RadTransitionControl can be very useful when you want to switch between controls. In this blog post I will explain two common scenarios:
1) Switching between 2 UserControls, which is applicable for both WPF and Silverlight and
2) Creating attractive navigation between pages very easy, applicable for Silverlight.
Now, point-by-point:
1) For this approach you will need to create 2 UserControls. In the root page define a RadTransitionControl and give it a x:Name. Then, on a button click change the Content property of the TransitionControl with the chosen UserControl.
Here you can find attached you will find a simple WPF example of the above-mentioned technique.
2) For the second scenario we need to create...