Could someone help me with implementing a Wizard with the RadTransition control and several UserControls.
Basically we have 5 UserControls that represent the pages of a complex wizard. At the moment we have a hand coded slide animation that animates the pages in and out, but we have a requirement to support a user choice of animation in the future and the RadTransition control fits perfectly for this.
I have tried following the code in the samples putting our UserControls in a Listbox and binding to the SelectedItem but cannot get this to work.
Our current implementation has all 5 pages added to a Grid column and all but the first one are moved off to the right out of view by setting the X of their TranslateTransform element. Then as the user clicks on Next or Back code is executed to slide the current page out and the new page in. I was hoping to be able to replace the content of the grid column with a RadTransition control and have it take responsibility for animating the pages in and out.
We aren't using the Silverlight or Telerik navigation features because we don't want users to be able to navigate to wizard pages using a url and we also had trouble with pages being cached that meant we had to do more state management than was reasonable.
Basically we have 5 UserControls that represent the pages of a complex wizard. At the moment we have a hand coded slide animation that animates the pages in and out, but we have a requirement to support a user choice of animation in the future and the RadTransition control fits perfectly for this.
I have tried following the code in the samples putting our UserControls in a Listbox and binding to the SelectedItem but cannot get this to work.
Our current implementation has all 5 pages added to a Grid column and all but the first one are moved off to the right out of view by setting the X of their TranslateTransform element. Then as the user clicks on Next or Back code is executed to slide the current page out and the new page in. I was hoping to be able to replace the content of the grid column with a RadTransition control and have it take responsibility for animating the pages in and out.
We aren't using the Silverlight or Telerik navigation features because we don't want users to be able to navigate to wizard pages using a url and we also had trouble with pages being cached that meant we had to do more state management than was reasonable.