Hi,
I'm trying to replace the ContentPresenter in a Frame with the TransitionControl as described here:
If I follow this example, no content is displayed.
I also tried using TransitionPresenter, which is better in that the content does show up, but there are no transition animations?
I have successfully used a TransitionControl stand-alone, but I'm hoping to use the navigation features of Frame along with transition animations.
What am I doing wrong?
<Frame x:Name="NavFrame" NavigationUIVisibility="Visible" Margin="0,50,0,0"> <Frame.Template> <ControlTemplate TargetType="{x:Type Frame}"> <Border BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" Background="{TemplateBinding Background}" Padding="{TemplateBinding Padding}"> <teleriktp:TransitionPresenter CurrentContent="{TemplateBinding Content}" Duration="0:0:3"> <teleriktp:TransitionPresenter.Transition> <telerikTransitions:WaveTransition /> </teleriktp:TransitionPresenter.Transition> </teleriktp:TransitionPresenter> </Border> </ControlTemplate> </Frame.Template></Frame>