In WPF, is it possible to pass the name/path of the binding as a parameter? For example, say I have this:
<TextBox Width="300" Text="{Binding Path=Age, UpdateSourceTrigger=PropertyChanged, ValidatesOnNotifyDataErrors=True, NotifyOnValidationError=True, Converter={x:Static local:AgeConverter.Instance}, ConverterParameter={Binding ???}}" />
Is there anything I can put instead of the ???
so that the parameter value is "Age"?