Hey all,
I have a SL3 navigation app. In the MainPage.xml I wanted to put the navigation links into RadMenu. On their own, the work fine but when wrapped in a RadMenuItem they try and get the browser to load the page as real URL and obviously fail.
So this works...
But this fails...
It seems that the RadMenu somehow bloks the Silverlight navigation behavior from working. Ideas?
Thanks!
I have a SL3 navigation app. In the MainPage.xml I wanted to put the navigation links into RadMenu. On their own, the work fine but when wrapped in a RadMenuItem they try and get the browser to load the page as real URL and obviously fail.
So this works...
<StackPanel x:Name="LinksStackPanel" Style="{StaticResource LinksStackPanelStyle}"> |
<HyperlinkButton Style="{StaticResource MenuLinkStyle}" |
NavigateUri="/PageManager" TargetName="ContentFrame" Content="pages" /> |
</StackPanel> |
But this fails...
<StackPanel x:Name="LinksStackPanel" Style="{StaticResource LinksStackPanelStyle}"> |
<telerikNavigation:RadMenu telerikControls:StyleManager.Theme="Windows7"> |
<telerikNavigation:RadMenuItem Header="CMS" > |
<HyperlinkButton Style="{StaticResource MenuLinkStyle}" |
NavigateUri="/PageManager" TargetName="ContentFrame" Content="pages" /> |
</telerikNavigation:RadMenuItem> |
</telerikNavigation:RadMenu> |
</StackPanel> |
It seems that the RadMenu somehow bloks the Silverlight navigation behavior from working. Ideas?
Thanks!