tags:

views:

60

answers:

1

We can all see Runtime BindingExpression errors in the Visual Studio Output Window. But can we capture these events in the running app itself? I'm hearing about WPF tracing... does this have something to do with this facility? Also, the System.Windows.Data namespace contains no documented events (like a BindingExpression error event), why?

+1  A: 

The answer to your first question is "not really."

Here is a blog that goes into debugging the data-binding situation you're in: http://beacosta.com/blog/?p=52

GreenReign