我希望在我的系统中实现以下箭头设计,其中箭头位于所选项目上。
目前我已将菜单实现为ListBox,并且行为正确,减去箭头。 实现这种行为的最佳方法是什么?
目前,我已经编辑了ItemsControl并添加了一个箭头,但它位于边框内部,而不是边框之外,如下所示:
<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>
答案 0 :(得分:0)
覆盖它的ItemTemplate以包含一个箭头并在触发器上设置其可见性,该触发器可以检查IsSelected的条件。