WPF。通过MultiBinding更改CheckBox IsCheck并不会使CheckBox命令失效

时间:2016-09-07 11:13:56

标签: wpf checkbox datagrid command ischecked

我的WPF应用视图中有Datagrid,我在行标题中使用复选框。

<DataGrid.RowHeaderTemplate>
<DataTemplate>
    <Grid >
        <CheckBox BorderThickness="0"  
                  Command="{Binding DataContext.AssignPartsToGroupCommand, RelativeSource={RelativeSource FindAncestor,
                                                                               AncestorType={x:Type UserControl}}}"                                          
                                    >
            <CheckBox.CommandParameter>
                <MultiBinding Converter="{StaticResource PartsGroupAssignConverter}">
                    <Binding Path="IsChecked" RelativeSource="{RelativeSource Self}" Mode="OneWay"/>
                    <Binding RelativeSource="{RelativeSource Mode=FindAncestor, 
                                                             AncestorType={x:Type DataGridRow}}" 
                             Path="DataContext" Mode="OneWay"/>
                </MultiBinding>
            </CheckBox.CommandParameter>
            <CheckBox.IsChecked>
                <MultiBinding  Converter="{StaticResource PartsGroupAssignedConverter}"  Mode="OneWay">
                    <Binding ElementName="partsGroupGrid" Path="SelectedItem.id"></Binding>
                    <Binding RelativeSource="{RelativeSource Mode=FindAncestor, 
                                                             AncestorType={x:Type DataGridRow}}" 
                             Path="DataContext" Mode="OneWay"/>
                    <Binding Path="IsSelected" Mode="OneWay"
                             RelativeSource="{RelativeSource FindAncestor,
                              AncestorType={x:Type DataGridRow}}"
                             />
                </MultiBinding>
            </CheckBox.IsChecked>
        </CheckBox>
    </Grid>
</DataTemplate>

正如你所看到的,我绑定了CheckBox属性&#34; IsSelected&#34;到多个值,其中之一是DataGrid行选择:

   <Binding Path="IsSelected" 
            Mode="OneWay"
            RelativeSource="{RelativeSource FindAncestor,
                                  AncestorType={x:Type DataGridRow}}"
                                 />

我的问题是 - 当我通过选择行检查CheckBox时,不会触发链接到CheckBox的命令。但是当我手动(使用鼠标)时会触发它。我该如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

根据CheckBox源代码,不支持所需的方法 - 只有在点击命令后才会调用该命令。

但是,您可以创建一个小的CheckBox后代来实现您需要的行为。该后代将跟踪CheckBox.IsChecked属性的更改并执行命令。

你可以这样做:

    public class MyCheckBox : CheckBox {
    static MyCheckBox() {
        IsCheckedProperty.OverrideMetadata(typeof(MyCheckBox), new FrameworkPropertyMetadata((o, e) => ((MyCheckBox)o).OnIsCheckedChanged()));
    }

    readonly Locker toggleLocker = new Locker();
    readonly Locker clickLocker = new Locker();

    void OnIsCheckedChanged() {
        if (clickLocker.IsLocked)
            return;
        using (toggleLocker.Lock()) {
            OnClick();
        }
    }

    protected override void OnToggle() {
        if (toggleLocker.IsLocked)
            return;
        base.OnToggle();
    }

    protected override void OnClick() {
        using (clickLocker.Lock()) {
            base.OnClick();
        }
    }
}

洛克尔课程:

    class Locker : IDisposable {
    int count = 0;
    public bool IsLocked { get { return count != 0; } }
    public IDisposable Lock() {
        count++;
        return this;
    }
    public void Dispose() { count--; }
}