I have a Binding expression object:
//e come from Validation.Error event
BindingExpression _bindingExpression = e.Error.BindingInError as BindingExpression;
I want to get the Dependecy Property.
For example, if the bindingExpression
is a text of TextBox I want to get TextBox.TextProperty
, etc..
Is this possible?