WPF MVVM:EventTrigger 在 CheckBox 中不起作用
WPF MVVM: EventTrigger is not working inside CheckBox
我正在使用 MVVM 风格的 WPF 构建应用程序。当我选中或取消选中多个用于过滤的复选框时,我正在尝试对我的 DataGrid
进行过滤。
我找到了 Interaction.Triggers
的解决方案,但在这种情况下它对我不起作用。
这是我的代码:
<ListBox
ItemsSource="{Binding PortsFilterSource}"
Background="LightGray"
BorderThickness="0"
Grid.Column="1">
<ListBox.ItemTemplate>
<DataTemplate>
<CheckBox
Content="{Binding Name}"
IsChecked="{Binding IsChecked}">
<i:Interaction.Triggers>
<i:EventTrigger EventName="Unchecked">
<i:InvokeCommandAction Command="{Binding FilterCommand}"/>
</i:EventTrigger>
<i:EventTrigger EventName="Checked">
<i:InvokeCommandAction Command="{Binding FilterCommand}"/>
</i:EventTrigger>
</i:Interaction.Triggers>
</CheckBox>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
除 FilterCommand
外一切正常。我的 C# 代码中有这个:
public DelegateCommand<object> FilterCommand { get; set; }
...
FilterCommand = new DelegateCommand<object>(Filter);
Filter(object obj)
是一个函数,但是当我选中或取消选中我的任何 CheckBoxes 时都没有输入它。
如有任何帮助,我们将不胜感激。
问题是,列表项的数据上下文是 FilterModel
类型,但 FilterCommand
在父视图模型中。
尝试对命令进行以下绑定:
{Binding DataContext.FilterCommand, RelativeSource={RelativeSource AncestorType={x:Type ListBox}}}
我正在使用 MVVM 风格的 WPF 构建应用程序。当我选中或取消选中多个用于过滤的复选框时,我正在尝试对我的 DataGrid
进行过滤。
我找到了 Interaction.Triggers
的解决方案,但在这种情况下它对我不起作用。
这是我的代码:
<ListBox
ItemsSource="{Binding PortsFilterSource}"
Background="LightGray"
BorderThickness="0"
Grid.Column="1">
<ListBox.ItemTemplate>
<DataTemplate>
<CheckBox
Content="{Binding Name}"
IsChecked="{Binding IsChecked}">
<i:Interaction.Triggers>
<i:EventTrigger EventName="Unchecked">
<i:InvokeCommandAction Command="{Binding FilterCommand}"/>
</i:EventTrigger>
<i:EventTrigger EventName="Checked">
<i:InvokeCommandAction Command="{Binding FilterCommand}"/>
</i:EventTrigger>
</i:Interaction.Triggers>
</CheckBox>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
除 FilterCommand
外一切正常。我的 C# 代码中有这个:
public DelegateCommand<object> FilterCommand { get; set; }
...
FilterCommand = new DelegateCommand<object>(Filter);
Filter(object obj)
是一个函数,但是当我选中或取消选中我的任何 CheckBoxes 时都没有输入它。
如有任何帮助,我们将不胜感激。
问题是,列表项的数据上下文是 FilterModel
类型,但 FilterCommand
在父视图模型中。
尝试对命令进行以下绑定:
{Binding DataContext.FilterCommand, RelativeSource={RelativeSource AncestorType={x:Type ListBox}}}