我有一个DataGrid,其中单元格被分配到下面定义的自定义类:
public class DataGridVariableWrapper : DependencyObject
{
public Variable TheVariable { get; set; }
public Brush BackgroundColor
{
get { return (Brush)GetValue( BackgroundColorProperty ); }
set { SetValue( BackgroundColorProperty, value ); }
}
public static readonly DependencyProperty BackgroundColorProperty = DependencyProperty.Register( "BackgroundColor", typeof( Brush ), typeof( DataGridVariableWrapper ), new UIPropertyMetadata( null ) );
public DataGridVariableWrapper( Brush backgroundBrush, Variable theVariable )
{
this.BackgroundColor = backgroundBrush;
this.TheVariable = theVariable;
}
public override string ToString()
{
return TheVariable.Value.ToString();
}
}
我正在尝试将DataGridCell背景绑定到此数据包装类的BackgroundColor属性。我试过了:
<DataGrid.CellStyle>
<Style TargetType="DataGridCell">
<Setter Property="Background" Value="{Binding DataGridVariableWrapper.BackgroundColor}" />
</Style>
</DataGrid.CellStyle>
但背景颜色保持不变。我在这里做错了吗?
答案 0 :(得分:2)
如果将数据对象分配给DataGridCell
,您将在DataContext
中找到它。这就是为什么你需要在绑定中做的就是指定所需的属性。
<Style TargetType="DataGridCell">
<Setter Property="Background" Value="{Binding BackgroundColor}" />
</Style>