0

他大家!
我想要做的是打开一个带有项目列表的浮出控件(绑定到 ViewModel 的集合),然后,当用户选择列表中的任何项目时,浮出控件应该被隐藏。为了实现这一点,我使用了一种隐藏浮出控件的行为。问题是当我点击已选择的项目(在当前选定的项目上)时,该行为不起作用。

我有以下代码。

        <Button.Flyout>
            <Flyout Placement="Full">
                <interactivity:Interaction.Behaviors>
                    <core:DataTriggerBehavior Binding="{Binding SelectedCategory}"
                                              ComparisonCondition="NotEqual">
                        <controls:CloseFlyoutAction />
                    </core:DataTriggerBehavior>
                </interactivity:Interaction.Behaviors>
                <ListView ItemsSource="{Binding Source={StaticResource GroupedCategories}}"
                          SelectedItem="{Binding SelectedCategory, Mode=TwoWay}">
                    <ListView.GroupStyle>
                        <GroupStyle>
                           //... skiped for brevity
                        </GroupStyle>
                    </ListView.GroupStyle>
                    <ListView.ItemTemplate>
                        <DataTemplate>
                            <ContentControl Foreground="{Binding IsSelected, Converter={StaticResource ForegroundConverter}}"
                                            Content="{Binding Name}" />
                        </DataTemplate>
                    </ListView.ItemTemplate>
                </ListView>
            </Flyout>
        </Button.Flyout>
4

0 回答 0