将导航箭头添加到菜单

时间:2012-10-09 08:11:50

标签: c# wpf xaml user-interface navigation

我希望在我的系统中实现以下箭头设计,其中箭头位于所选项目上。 enter image description here

目前我已将菜单实现为ListBox,并且行为正确,减去箭头。 实现这种行为的最佳方法是什么?

目前,我已经编辑了ItemsControl并添加了一个箭头,但它位于边框内部,而不是边框​​之外,如下所示:

enter image description here

<ControlTemplate TargetType="{x:Type ListBoxItem}">
                    <Grid>
                        <Border Name="Border">
                            <ContentPresenter Content="{TemplateBinding Content}" />
                        </Border>
                        <Path Name="SelectedArrow" Data="{StaticResource RightArrow}" Width="10" Height="20" Stretch="Fill" Fill="White" HorizontalAlignment="Right" Visibility="Collapsed" />
                    </Grid>
                    <ControlTemplate.Triggers>
                        <Trigger Property="IsSelected" Value="true">
                            <Setter TargetName="SelectedArrow" Property="Visibility" Value="Visible" />
                        </Trigger>
                    </ControlTemplate.Triggers>

1 个答案:

答案 0 :(得分:0)

覆盖它的ItemTemplate以包含一个箭头并在触发器上设置其可见性,该触发器可以检查IsSelected的条件。