I've noticed that a datagrid cell with a checkbox being edited exhibited a blue background; See screenshot and wonder why it is so...
I noticed this piece of code in DataGridCheckBox's OnApplyTemplate override:
```
public override void OnApplyTemplate()
{
base.OnApplyTemplate();
ChildCheckBox.Background = new System.Windows.Media.SolidColorBrush( System.Windows.Media.Colors.Blue );
}
```
This really seems like test code to me... Would you mind removing it?
Comments: ** Comment from web user: SplinterBaryon **
I noticed this piece of code in DataGridCheckBox's OnApplyTemplate override:
```
public override void OnApplyTemplate()
{
base.OnApplyTemplate();
ChildCheckBox.Background = new System.Windows.Media.SolidColorBrush( System.Windows.Media.Colors.Blue );
}
```
This really seems like test code to me... Would you mind removing it?
Comments: ** Comment from web user: SplinterBaryon **
This issue is broken again. In the latest source code for version 2.9, it still has this line of code:
```
public override void OnApplyTemplate()
{
base.OnApplyTemplate();
ChildCheckBox.Background = new System.Windows.Media.SolidColorBrush( System.Windows.Media.Colors.Blue );
}
```
It looks like version 2.4.0 broke this again.
Please fix this again, Please?
Thanks.