How to get DataTemplate.DataTrigger to check for greater than or less than?
You could create an IValueConverter
, which converts an integer to a boolean based on the CutOff
. Then use DataTrigger.Value
of True
(or False
, depending on what you are returning).
WPF DataTrigger
s are strictly equality comparers if I remember correctly.
So something similar to:
public class CutoffConverter : IValueConverter {
public object Convert(object value, Type targetType, object parameter, CultureInfo culture) {
return ((int)value) > Cutoff;
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) {
throw new NotImplementedException();
}
public int Cutoff { get; set; }
}
Then use the following XAML.
<Window.Resources>
<myNamespace:CutoffConverter x:Key="AgeConverter" Cutoff="30" />
</Window.Resources>
<DataTemplate.Triggers>
<DataTrigger Binding="{Binding Path=Age,
Converter={StaticResource AgeConverter}}">
<DataTrigger.Value>true</DataTrigger.Value>
<Setter TargetName="Age" Property="Foreground" Value="Red"/>
</DataTrigger>
</DataTemplate.Triggers>
I'd recommend using an IValueConverter
to bind to the Foreground
element of the Age TextBlock
and isolating the coloring logic there.
<TextBlock x:Name="Age"
Text="{Binding Age}"
Foreground="{Binding Path=Age, Converter={StaticResource AgeToColorConverter}}" />
Then in the Code:
[ValueConversion(typeof(int), typeof(Brush))]
public class AgeToColorConverter : IValueConverter
{
public object Convert(object value, Type target)
{
int age;
Int32.TryParse(value.ToString(), age);
return (age >= 30 ? Brushes.Red : Brushes.Black);
}
}
I believe there is a simpler way of acheiving the goal by using the powers of MVVM and INotifyPropertyChanged
.
With the Age
property create another property which will be a boolean called IsAgeValid
. The IsAgeValid
will simply be an on demand check which does not technically need an the OnNotify
call. How?
To get changes pushed to the Xaml, place the OnNotifyPropertyChanged
event to be fired for IsAgeValid
within the Age
setter instead.
Any binding to IsAgeValid
will also have a notify message sent on any Age
change subscriptions; which is what really is being looked at...
Once setup, of course bind the style trigger for false and true accordingly to the IsAgeValid
result.
public bool IsAgeValid{ get { return Age > 30; } }
public int Age
{
get { return _Age; }
set
{
_Age=value;
OnPropertyChanged("Age");
OnPropertyChanged("IsAgeValid"); // When age changes, so does the
// question *is age valid* changes. So
// update the controls dependent on it.
}
}