Hey Guys
Have a data grid with Auto Generate Columns="True"
Have a IValue Convertor
Public Function Convert(value As Object, targetType As Type, parameter As Object, culture As Globalization.CultureInfo) As Object Implements IValueConverter.ConvertIf Not value Is Nothing Then
If value > gameOrderMin Then
Return New SolidColorBrush(Colors.Red)
End If
End If
Return New SolidColorBrush(Colors.Black)
End Function
won't to wire up the converter to check the cell value pass in from the itemsource to change foreground color depending of a condition
I assume I need a data template style forecolor={Foreground="{Binding Converter={StaticResource DatagridForgroundColor}}"}
thingy??