2011-09-07 68 views

回答

32

您可以綁定在RowStyleBackgroundDataGrid

<DataGrid ...> 
    <DataGrid.RowStyle> 
     <Style TargetType="DataGridRow"> 
      <Setter Property="Background" Value="{Binding MyBackground}"/> 
     </Style> 
    </DataGrid.RowStyle> 
    <!-- ... --> 
</DataGrid> 

如果MyBackgroundBrush這將工作。你在你的問題中提到你有一個Color,如果是這種情況,你可以用這個代替

<Setter Property="Background"> 
    <Setter.Value> 
     <SolidColorBrush Color="{Binding MyColor}"/> 
    </Setter.Value> 
</Setter> 
+0

謝謝我會檢查它 – david

相關問題