20

In WPF, is it possible for a DataTrigger to bind to an attached property?

I essentially want to use a converter on an attached property to provide a style when a particular validation rule has been broken. I am using markup like the following:

<DataTrigger Binding="{Binding Path=Validation.Errors, 
                       RelativeSource={RelativeSource Self}, 
                       Converter={StaticResource RequiredToBoolConverter}}" 
                       Value="True">
  <Setter Property="Background" Value="LightGreen" />
</DataTrigger>

However, when this runs, I get the following:

System.Windows.Data Error: 39 : BindingExpression path error: 'Validation' property not found on 'object' ''TextBox' (Name='')'. BindingExpression:Path=Validation.Errors; DataItem='TextBox' (Name=''); target element is 'TextBox' (Name=''); target property is 'NoTarget' (type 'Object')

If I change my DataTrigger binding path to "Text", I do not get the databinding error (but of course it does not provide the behaviour I am seeking).

Dave Clemmer
  • 3,741
  • 12
  • 49
  • 72
Brad Leach
  • 16,857
  • 17
  • 72
  • 88

1 Answers1

31

You need to wrap the property in parentheses:

<DataTrigger Binding="{Binding Path=(Validation.Errors).YourAttachedProperty,...
Jean-François Fabre
  • 137,073
  • 23
  • 153
  • 219
Kent Boogaart
  • 175,602
  • 35
  • 392
  • 393