Tell me why ConverterParameter falls out with the error "A 'Binding' can only be set on a DependencyProperty of a DependencyObject"?

<TextBlock Tag="{Binding First}"> <TextBlock.IsEnabled> <Binding Path="Second" Converter="{StaticResource FirstAndSecondToBoolConverter}" ConverterParameter="{Binding RelativeSource={RelativeSource Self}, Path=Tag}"/> </TextBlock.IsEnabled> </TextBlock> 
  • one
    "Binding.ConverterParameter is not a DependencyProperty, so it cannot be assigned a Binding" - vitidev
  • But if you are wondering what to do with it, then go here habrahabr.ru/post/275223 - vitidev

0