Hi,
I want to Bind Data to a navigationBar it's navigationPane
What's the way to do this? Thanks.
I want to Bind Data to a navigationBar it's navigationPane
What's the way to do this? Thanks.
<Window x:Class="MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:ac="http://schemas.actiprosoftware.com/winfx/xaml/navigation"
Title="MainWindow" Height="350" Width="525">
<Window.Resources>
<DataTemplate x:Name="Test" DataType="ac:NavigationPane" >
<ac:NavigationPane>
<StackPanel>
<TextBlock>aaaaaaaaaaaaaaaaaaaaaaaa</TextBlock>
</StackPanel>
</ac:NavigationPane>
</DataTemplate>
</Window.Resources>
<Grid>
<ac:NavigationBar>
<ac:NavigationPane ContentTemplate="Test"></ac:NavigationPane>
</ac:NavigationBar>
</Grid>
</Window>