ns12345
ns12345

Reputation: 3105

How does the binding work in WPF/XAML?

How does the binding work in xaml when we mention a property name even if the property doesn't exist, the code doesn't break, how and why is that?

Upvotes: -1

Views: 829

Answers (1)

Tim Lloyd
Tim Lloyd

Reputation: 38434

WPF swallows binding exceptions. If you run with the debugger attached and look at your output window, you will see error messages being traced for binding failures.

Upvotes: 4

Related Questions