Debugging WPF binding.
Adding tracing for bound properties:
You will get in the output window much details about the binding:
PropertyChanged event from SomeObject (hash=1)
SetValue at level 0 from SomeObject (hash= 1) using RuntimePropertyInfo(Field):
'False'
TransferValue - got raw value 'False'
TransferValue - using final value 'False'
//EDIT
More Info here.
Ariel