复选框命令在最初未选中时不会触发

Kur*_*bol 5 c# wpf checkbox datagrid command

我在数据网格中有一列复选框。

<DataGridTemplateColumn CanUserResize="False" Header="" Width="auto">
    <DataGridTemplateColumn.CellTemplate>
        <DataTemplate>
            <CheckBox Style="{StaticResource CheckBoxSelectTypeStyle}" IsChecked="{Binding Path=Selected}" />
        </DataTemplate>
    </DataGridTemplateColumn.CellTemplate>
</DataGridTemplateColumn>
Run Code Online (Sandbox Code Playgroud)

我有一个命令必须取消选中和检查。

<Style x:Key="CheckBoxSelectTypeStyle" TargetType="{x:Type CheckBox}">
    <Setter Property="HorizontalAlignment" Value="Center" />
    <Setter Property="VerticalAlignment" Value="Center" />
    <Style.Triggers>
        <Trigger Property="IsChecked" Value="True">
            <Setter Property="Command" Value="{Binding DataContext.CheckedCommand, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}}" />
            <Setter Property="CommandParameter" Value="{Binding Path=SelectedItems, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type DataGrid}}}" />
        </Trigger>
        <Trigger Property="IsChecked" Value="False">
            <Setter Property="Command" Value="{Binding DataContext.UncheckedCommand, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}}" />
            <Setter Property="CommandParameter" Value="{Binding Path=SelectedItems, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type DataGrid}}}" />
        </Trigger>
    </Style.Triggers>
</Style>
Run Code Online (Sandbox Code Playgroud)

我的问题是,如果复选框开始时未选中,而您选中一个,则不会触发任何命令(这就是问题所在)。如果您随后取消选中相同的复选框,则取消选中命令将触发(如预期的那样)。如果您再次选中相同的复选框,将触发检查命令(如预期)。那时该复选框的一切都会正常工作,但其他人仍然有同样的问题。

如果复选框以选中状态开始,它将正常工作。我的问题是当复选框以未选中状态启动时如何触发命令。我找不到任何不工作的理由。

对建议的回应:

我试图为,添加一个触发器Null,但它有完全相同的问题,没有任何改变。

<Style.Triggers>
    <Trigger Property="IsChecked" Value="True">
        <Setter Property="Command" Value="{Binding DataContext.CheckedCommand, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}}" />
        <Setter Property="CommandParameter" Value="{Binding Path=SelectedItems, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type DataGrid}}}" />
    </Trigger>
    <Trigger Property="IsChecked" Value="False">
        <Setter Property="Command" Value="{Binding DataContext.UncheckedCommand, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}}" />
        <Setter Property="CommandParameter" Value="{Binding Path=SelectedItems, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type DataGrid}}}" />
    </Trigger>
    <Trigger Property="IsChecked" Value="{x:Null}">
        <Setter Property="Command" Value="{Binding DataContext.UncheckedCommand, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}}" />
        <Setter Property="CommandParameter" Value="{Binding Path=SelectedItems, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type DataGrid}}}" />
    </Trigger>
</Style.Triggers>
Run Code Online (Sandbox Code Playgroud)

视图模型代码

public ICommand CheckedCommand { get; set; }
public ICommand UncheckedCommand { get; set; }
Run Code Online (Sandbox Code Playgroud)
CheckedCommand = new RelayCommand<IList>(Checked);
UncheckedCommand = new RelayCommand<IList>(Unchecked);
Run Code Online (Sandbox Code Playgroud)
private void Checked(IList selectedItems)
{
    ChangedChecked(selectedItems, true);
}

private void Unchecked(IList selectedItems)
{
    ChangedChecked(selectedItems, false);
}

private void ChangedChecked(IList selectedItems, bool selected)
{
    if (selectedItems.HasValue())
        foreach (var item in selectedItems)
            if(item is SelectedTypeModel) (item as SelectedTypeModel).Selected = selected;
}
Run Code Online (Sandbox Code Playgroud)

RelayCommand 实现 ICommand。正如我前面提到的,Checked是不是当复选框开始为未选中调用的方法,但它如果它开始检查,并没有被选中时,它被选中,未选中调用,并再次检查或。

我想做什么

我有一个带有一列复选框的 DataGrid。我希望能够突出显示多行,然后选中/取消选中选定行之一中的 CheckBox,并使所有其他行更新为相同。我还有一个用于数据网格的关键字过滤器,因此 DataGrid 绑定到 ListCollectionView。

输出信息

我启用了数据绑定的调试信息并收到以下消息:

System.Windows.Data 信息:10:无法使用绑定检索值并且不存在有效的回退值;改为使用默认值。BindingExpression:Path=Selected; 数据项=空;目标元素是 'CheckBox' (Name=''); 目标属性是“IsChecked”(类型“Nullable`1”)

我仍然不确定如何使用这些信息来纠正问题。

解决方案

我没有解决我原来的问题,我仍然不知道为什么它不能正常工作,但我使用了另一种方法来获得相同的预期结果。这是更改后的代码:

<Style x:Key="CheckBoxSelectTypeStyle" TargetType="{x:Type CheckBox}">
    <Setter Property="Command" Value="{Binding DataContext.CheckedChangedCommand, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}}" />
    <Setter Property="CommandParameter">
        <Setter.Value>
            <MultiBinding Converter="{StaticResource SelectedItemsCheckedMultiValueConverter}">
                <Binding RelativeSource="{RelativeSource FindAncestor, AncestorType={x:Type DataGrid}}" Path="SelectedItems"/>
                <Binding RelativeSource="{RelativeSource Self}" Path="IsChecked"/>
            </MultiBinding>
        </Setter.Value>
    </Setter>
</Style>
Run Code Online (Sandbox Code Playgroud)
public ICommand CheckedChangedCommand { get; set; }
Run Code Online (Sandbox Code Playgroud)
CheckedChangedCommand = new RelayCommand<Tuple<IList, bool>>(CheckedChanged);
Run Code Online (Sandbox Code Playgroud)

Woo*_*man 2

解决方案 我认为你可以实现你的目标,而不需要任何触发器(我已经在小示例应用程序中测试了这个解决方案):所以你的风格将如下所示:

<Style x:Key="CheckBoxSelectTypeStyle" TargetType="{x:Type CheckBox}">
    <Setter Property="Command" Value="{Binding DataContext.CheckedCommand, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}}" />
    <Setter Property="CommandParameter" Value="{Binding Path=SelectedItems, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type DataGrid}}}" />
  ...
Run Code Online (Sandbox Code Playgroud)

您的视图模型中将只有一个命令。作为参数,该命令将接收所选项目的列表。所以只缺少一件事 - 用户是否要选中或取消选中复选框。目前,我可以想到一种将此信息与 SelectedItems 一起传递的可能方法 - 使用自定义转换器编写 MultiBinding ,这会将 selectedItems 和 IsChecked 的当前值放入类似 Tuple<..., bool> 的内容中

        <Setter Property="CommandParameter">
            <Setter.Value>
                <MultiBinding Converter="{x:Static PackTupleConverter.Instance}">
                    <Binding RelativeSource="{RelativeSource AncestorType=DataGrid}" Path="SelectedItems"/>
                    <Binding RelativeSource="{x:Static RelativeSource.Self}" Path="IsChecked"/>
                </MultiBinding>
            </Setter.Value>
        </Setter>
Run Code Online (Sandbox Code Playgroud)

结尾

我只需将相同的复选框放入 ListBox 即可重现您的问题。第一次完成后,我单击复选框 - 命令不会被调用

这是示例窗口 xaml:

<Window.Resources>
    <Style x:Key="CheckBoxSelectTypeStyle" TargetType="{x:Type CheckBox}">
        <Setter Property="HorizontalAlignment" Value="Center" />
        <Setter Property="VerticalAlignment" Value="Center" />
        <Style.Triggers>
            <Trigger Property="IsChecked" Value="True">
                <Setter Property="Command" Value="{Binding DataContext.Test, RelativeSource={RelativeSource AncestorType=Window}}" />
            </Trigger>
            <Trigger Property="IsChecked" Value="False">
                <Setter Property="Command" Value="{Binding DataContext.Test, RelativeSource={RelativeSource AncestorType=Window}}" />
            </Trigger>
        </Style.Triggers>
    </Style>
</Window.Resources>
<Grid>
    <ListBox>
        <ListBox.Items>
            <CheckBox Style="{StaticResource CheckBoxSelectTypeStyle}" />
        </ListBox.Items>
    </ListBox>

</Grid>
Run Code Online (Sandbox Code Playgroud)

和后面的sode:

public partial class MainWindow : Window
{
    public MainWindow()
    {
        InitializeComponent();
        DataContext = this;
        Test = new DelegateCommand(TestCommand);
    }

    public ICommand Test { get; set; }

    private void TestCommand()
    {
    }
}
Run Code Online (Sandbox Code Playgroud)

以下是我在输出中发现的有关绑定的内容:

System.Windows.Data 信息:10:无法使用绑定检索值,并且不存在有效的后备值;使用默认值代替。BindingExpression:Path=DataContext.Test; 数据项=空;目标元素是“CheckBox”(名称=“”);目标属性是“Command”(类型“ICommand”)