Completed
Last Updated: 17 Oct 2016 14:56 by ADMIN
ADMIN
Telerik Admin
Created on: 18 Jun 2013 13:33
Category: AutoCompleteBox
Type: Bug Report
18
A Binding error is printed in the Output on start-up for ElementName=WatermarkTextBox.
On start up a Binding error is thrown in the Output for ElementName=WatermarkTextBox.

Available in LIB version 2016.3.1017, it will be also available in the 2016 R3 SP1 release. 
3 comments
ADMIN
Vladi
Posted on: 11 Mar 2014 12:34
After further investigation this issue is related to a know timing issue in the WPF platform which is why the issues status is being set as "Declined". More information can be found in the official social MSDN forums here: http://social.msdn.microsoft.com/Forums/vstudio/en-US/564e7160-df70-4e95-945d-60954dd7a2ae/wpf-binding-errors-systemwindowsdata-error-4?forum=wpf

Such issues should be ignored as they are timing issues in the WPF platform itself and are not critical for runtime. If you would like not to see them in the output after building your project you could use the following workaround:
- In your project's code behind set the DataBindingSource.Switch.Level to Critical. The next code snippet shows the described workaround:
System.Diagnostics.PresentationTraceSources.DataBindingSource.Switch.Level = System.Diagnostics.SourceLevels.Critical;
Andrew
Posted on: 10 Feb 2014 10:15
Is this really still not addressed? It might not be a problem at runtime, as you say, but while debugging, it is an absolute pain as it fills up my immediate window with dozens of these. When I want to compare previous output, its a real hassle to have to scroll 6 or 7 pages up (I have a lot of Watermark textboxes in some WPF apps)
Yin
Posted on: 17 Jul 2013 08:38
Same thing for WPF RadAutoCompleteBox:

ItemTemplate and ItemTemplateSelector are ignored for items already of the ItemsControl's container type; Type='RadWatermarkTextBox'

I am switching to combobox for now.