vote up 1 vote down star

I have a checkbox column bound to a dependency property. When editing the checked property is it possible to update the bound property immediately rather than waiting for the cell to lose focus?

Thanks, Mark

flag

2 Answers

vote up 3 vote down check

Hello,

you can look here, there is a solution (go to: Creating an AutoCommitCheckBoxColumn)

summary:

derive from DataGridCheckBoxColumn & handle checkBox_Checked & checkBox_Unchecked events.

public class AutoCommitCheckBoxColumn : DataGridCheckBoxColumn
{
    private void checkBox_Unchecked(object sender, RoutedEventArgs e)
    {
        CommitCellEdit((FrameworkElement)sender);
    }

    private void checkBox_Checked(object sender, RoutedEventArgs e)
    {
        CommitCellEdit((FrameworkElement)sender);
    }

    protected override FrameworkElement GenerateEditingElement(
        DataGridCell cell, object dataItem)
    {
        var checkBox = (CheckBox)base.GenerateEditingElement(cell, dataItem);

        checkBox.Checked += checkBox_Checked;
        checkBox.Unchecked += checkBox_Unchecked;

        return checkBox;
    }
}
link|flag
vote up 0 vote down

You can try to handle OnKeyDown and OnKeyUp events but you'll have to update the bound property yourself.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.