Click here to Skip to main content
Licence CPOL
First Posted 19 Dec 2007
Views 15,540
Downloads 90
Bookmarked 21 times

Debugging WPF Databinding

By marlongrech | 3 Jan 2008
How to debug WPF Databinding

1

2
1 vote, 16.7%
3
3 votes, 50.0%
4
2 votes, 33.3%
5
4.00/5 - 6 votes
μ 4.00, σa 1.32 [?]

Introduction

How much do we use DataBinding in WPF? I would say a lot… I guess DataBinding is one of the biggest features of this platform. Sometimes we need to debug the values that are passed in the Binding, yet since the data binding is created by the XAML parser we do not have any way to create a Visual Studio breakpoint and step into the code…

Implementing the Solution

One way for debugging data binding is to use a converter and set a breakpoint in the Convert method. This can be cumbersome to work with since you have to create a dummy Converter and set breakpoints inside it. It would be nice if there is a way in which one can just enter a flag in the Binding and the debugger would break to let you check out the Binding values. This can be achieved by using markup extensions. Markup extensions are basically a way in which one can create instances of specific objects from XAML. For example {Binding PropertyX} is a markup extension to create a Binding object. So what we can do is basically create a markup extension that returns a Converter that we can use to debug the Binding. The converter calls the Break method of the Debugger class to force a breakpoint in the Convert method.

The markup extension for our converter would look something like this…

debugbinding.jpg

Basically the most important part is the ProvideValue method of the markup extension. Here we create an instance of the converter and return it. Now what we need to do is to make the Binding use this markup extension in order to use the DebugConverter (that will automatically break the debugger so that you can debug your Binding). The following XAML shows how easy it is to use the extension:

<Window x:Class="DebuggingDataBinding.Window1"
    xmlns=http://schemas.microsoft.com/winfx/2006/xaml/presentation
    xmlns:x=http://schemas.microsoft.com/winfx/2006/xaml 
    xmlns:local="clr-namespace:DebuggingDataBinding"
    Title="Window1" Height="300" Width ="300">
  <Grid Height="{Binding RelativeSource =
      {RelativeSource AncestorType={ x:Type Window}}, Path =Height,
      Converter={local:DebugBinding }}">
      ...
  </Grid>
</Window>

Basically the Converter={local:DebugBinding} does the whole thing. It will create an instance of the Converter and return it to the binding Converter property. So there you have it - a simple, yet handy markup extension to debug data binding.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

marlongrech

Other
Uniblue Systems (www.uniblue.com)
Malta Malta

Member
Check out my Blog
http://marlongrech.wordpress.com/
 
Currently building a WPF Controls library aka AvalonControlsLibrary
http://marlongrech.wordpress.com/avalon-controls-library/


Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Layout  Per page   
  Refresh
QuestionGreat idea Pinmembert0mcat784:18 14 Jul '11  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120209.1 | Last Updated 3 Jan 2008
Article Copyright 2007 by marlongrech
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid