使用ListBox作为导航栏,实现视图跳转
在顶部导航栏的布局设计中,需要一个容器装着一系列视图的标签,如果这个标签是用Button来实现的,需要更改Button的控件模板,会稍微有点麻烦,然后我是使用ListBox,内部就是简单的TextBlock,然后在ListBox的内部添加交互行为,因为TextBlock是没有类似Button的点击效果的,所以需要借助微软的behaviors来实现
<ListBox ItemsSource="{Binding MenuList}" BorderThickness="0">
<behavior:Interaction.Triggers>
<behavior:EventTrigger EventName="SelectionChanged">
<behavior:InvokeCommandAction
Command="{Binding NavigateCommand}"
CommandParameter="{Binding RelativeSource={RelativeSource Mode=FindAncestor,AncestorType=ListBox},Path=SelectedItem}" />
</behavior:EventTrigger>
</behavior:Interaction.Triggers>
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<WrapPanel />
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
<ListBox.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding Name}" Margin="10 0" />
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
<ContentControl Grid.Row="1" prism:RegionManager.RegionName="{x:Static common:RegionNameHelper.MainWindowRegionName}" />
这样我们在选择不同的ListBox子项的时候,就会触发命令,然后执行视图的跳转,也就是 ContentControl 的内容绑定到我们自定义的属性中,然后我们修改属性,然后引起 ContentControl 内容发生改变,以达到切换视图的效果
标签:--,Button,知识,视图,TextBlock,然后,跳转,WPF,ListBox From: https://www.cnblogs.com/huangwenhao1024/p/16727478.html