I have a WPF application with some binding errors, which I am trying to cleanup so that the output window is not spammed with a lot of binding information output. The strange thing I am running into is that I am not able to suppress this information from getting written to the output window in Visual Studio.
I tried adding FallbackValues, which I would expect to hide the errors from the output window, but even though I can tell the FallbackValue is being applied I still see the binding warning written to the output window.
Has anyone run into this? I thought adding proper FallbackValues to the Bindings that fail in certain scenarios would prevent the error being written to the output window.
Even stranger, I tried changing the trace level in Visual Studio's options to Off for the WPF DataBinding trace level (Tools->Options) and I still see data binding errors being written to the output window.