This question is locked. New answers and comments are not allowed.
<ControlTemplate TargetType="navigation:Frame" x:Name="MainFramtransition"> <telerik:RadTransitionControl Content="{TemplateBinding Content}" ContentTemplate="{TemplateBinding Content}" > <telerik:RadTransitionControl.Transition > <effects:RollTransition /> </telerik:RadTransitionControl.Transition> </telerik:RadTransitionControl> </ControlTemplate> </navigation:Frame.Template>I am trying to do the following senario.
I have a main frame which has a radtraisitioncontrol with rolltransition effect.
Inside this frame, i have another frame also. (attaching the structure for referance)
When i adding the radtransition control to subframe as below
<navigation:Frame x:Name="SubContents" Margin="5,0,5,5" MaxWidth="1000" Grid.Column="0" Grid.Row="3" ScrollViewer.VerticalScrollBarVisibility="Visible" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Source="/page2"> <navigation:Frame.Template> <ControlTemplate x:Name="SubFramtransition" TargetType="navigation:Frame"> <telerik:RadTransitionControl Content="{TemplateBinding Content}" > <telerik:RadTransitionControl.Transition > <effects:RollTransition /> </telerik:RadTransitionControl.Transition> </telerik:RadTransitionControl> </ControlTemplate> </navigation:Frame.Template>The mianfram contians below code for radtranstioncontrol
But when i run the application and the mainframe is loaded, it throws un_expected_error in client side and there is no detials avialable.
could you please help?