I'm using the following code (taken from WPF demos and slightly adjusted for Prism, as suggested in the documentation). However, requesting a change to the region's content doesn't show anything.
I have also tried having a ContentControl inside RadTransitionControl.Content to no avail. It is unclear to me at this point whether this is an issue with NavigationView or RadTransitionControl
<telerik:RadNavigationView x:Name="navigationView" Grid.Row="1" ItemsSource="{Binding Items}" SelectedIndex="0"> <telerik:RadNavigationView.Content> <telerik:RadTransitionControl prism:RegionManager.RegionName="ContentRegion" Duration="0:0:0.4"> <telerik:RadTransitionControl.Transition> <telerik:FadeTransition /> </telerik:RadTransitionControl.Transition> </telerik:RadTransitionControl> </telerik:RadNavigationView.Content> <telerik:RadNavigationView.PaneFooter> <telerik:RadNavigationViewItem Content="Settings" Command="{x:Static common:NavigationViewSettingsCommands.OpenSettingsDialogCommand}" CommandParameter="{Binding ElementName=navigationView}" IconTemplate="{x:Null}"> <telerik:RadNavigationViewItem.Icon> <telerik:RadGlyph Glyph="" FontSize="20" /> </telerik:RadNavigationViewItem.Icon> </telerik:RadNavigationViewItem> </telerik:RadNavigationView.PaneFooter></telerik:RadNavigationView>