I saw your sample project on the other post of using the this control.. My question is how can I incorporate that properly into my existing Navigation:Frame?
My existing code:
<navigation:Frame x:Name="ContentFrame" |
Style="{StaticResource ContentFrameStyle}" |
Source="/Start" |
Navigated="ContentFrame_Navigated" |
NavigationFailed="ContentFrame_NavigationFailed" Padding="0" |
ScrollViewer.HorizontalScrollBarVisibility="Visible" |
ScrollViewer.VerticalScrollBarVisibility="Visible" |
BorderThickness="0" Margin="0,-1,0,1"> |
<navigation:Frame.UriMapper> |
<uriMapper:UriMapper> |
<uriMapper:UriMapping Uri="" MappedUri="/Views/Start.xaml"/> |
<uriMapper:UriMapping Uri="/{pageName}" MappedUri="/Views/{pageName}.xaml"/> |
</uriMapper:UriMapper> |
</navigation:Frame.UriMapper> |
</navigation:Frame> |
And here is your version from project sample:
<navigation:Frame Grid.Row="1"> |
<navigation:Frame.Template> |
<ControlTemplate> |
<telerik:RadTransitionControl Content="{TemplateBinding Content}" |
ContentTemplate="{TemplateBinding Content}" /> |
</ControlTemplate> |
</navigation:Frame.Template> |
</navigation:Frame> |
How can I marry the two?