Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Visual Studio 2010 WPF Trace Settings Default Is Incorrect

0.00/5 (No votes)
24 Jun 2010 1  
Visual Studio 2010 WPF Trace Settings Default Is Incorrect

A few weeks ago, I found that after setting the attached property PresentationTraceSources.TraceLevel=High on a binding, I was not getting the expected verbose output.

You can see an obvious error in the Path property name.

<TextBlock

    Text="{Binding diag:PresentationTraceSources.TraceLevel=High,
            Path=XCustomerID}" />

Using the above in WPF 3.5 SP1 would result in many messages being outputted in the Debugger Output Window.

However, in Visual Studio 2010 WPF 4.0, I was only seeing the below single binding error:

System.Windows.Data Error: 40 : BindingExpression path error: 
‘XCustomerID’ property not found on ‘object’ "ListCollectionView’ 
(HashCode=55179487)’. BindingExpression:Path=XCustomerID; 
DataItem=’ListCollectionView’ (HashCode=55179487); 
target element is ‘TextBlock’ (Name=’CustomerIDTextBlock’); 
target property is ‘Text’ (type ‘String’)

The reason the expected messages are not being outputted is because the installation default setting of the WPF Trace Settings is “Error” and not “Warning.” When set to “Error”, no “Warning” messages will be outputted.

To enable the PresentationTraceSources.TraceLevel messages to be seen, you need to change your Tools, Options, Debugging, Output Window, WPF Trace Settings value to Warning as I’ve done in the below image.

ToolsOptionsDataBinding

Have a great day writing your applications!

Just a grain of sand on the worlds beaches.


Filed under: CodeProject, Data Binding, Tips, Visual Studio 2010, WPF General

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here