Hi,
I have placed XamWebTree and i would like to open new page by clicking on the node in xamwebtree. Can you suggest.
Thank you
Currently the XamWebTree doesn't have properties to support the MS Navigation framework however, our XamWebMenu control does.
-SteveZ
Thank you for your answer. It is working.
I would like to display in another frame, I have written below code, but i m getting error. Could you please let me know please.
<igTree:XamWebTreeItem Header="Alberta" TargetUri="/Chart.xaml" TargetFrame="{Binding ElementName=Frame}"/>
<Grid> <Border Background="White" Width="1000" Height="1000"> <ScrollViewer HorizontalScrollBarVisibility="Auto" VerticalScrollBarVisibility="Auto"> <navigation:Frame x:Name="Frame" Padding="15,10,15,10" HorizontalAlignment="Left" Canvas.Left="0" Canvas.Top="0" BorderBrush="Azure" /> </ScrollViewer> </Border> </Grid>
The XamWebTreeItem has a TargetUri proprety for setting the page to be set, and a TargetFrame property, which when set to _blank will open in a new window.
Hope this helps.