Debugging WPF DataBinding

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 VS breakpoint and step into the code….

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 how 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 achived by using markup extentions. Markup extentions are basically a way how 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 extention 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 Extention for our converter would look something like this…

/// <summary>
/// Converter to debug the binding values
/// </summary>
public class DebugConvertor : IValueConverter
{
#region IValueConverter Members
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
Debugger.Break();
return Binding.DoNothing;
}
…..#endregion}/// <summary>
/// Markup extension to debug databinding
/// </summary>
public class DebugBindingExtension : MarkupExtension
{/// <summary>
/// Creates a new instance of the Convertor for debugging
/// </summary>
/// <param name=”serviceProvider”></param>
/// <returns>Return a convertor that can be debugged to see the values for the binding</returns>
public override object ProvideValue(IServiceProvider serviceProvider)
{
return new DebugConvertor();
}
}

Basically the most important part is the ProvideValue method of the Markup extention. 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 Extention to debug data binding….

P.S I created a Demo application that includes all source code for any one interested
Download Here

15 thoughts on “Debugging WPF DataBinding

  1. Pingback: Debugging in WPF - WPF Disciples tips and tricks « C# Disciples

  2. Pingback: Debugging in WPF - WPF Disciples tips and tricks « WPF Disciples

  3. And what do you do if the Debugger doesn’t break?! 🙂

    I’m trying to debug a rather unusual, swiss-army knife use for an IValueConverter that passes in the Converter resource and a ConverterParameter. My use case is to use the ConverterParameter as a “primary/foreign key” filter on a bound Collection object, and to return a display of the only object in the collection that can possibly match the key.

  4. Pingback: DataBinding Tips & Tricks « Elad’s WPF Blog

  5. Pingback: Setting the Culture in WPF Applications « The Qmino Technical Blog

  6. Pingback: Built-in WPF IValueConverters | ASK AND ANSWER

  7. Pingback: [wpf] 기본 제공 WPF IValueConverters - 리뷰나라

  8. Pingback: Built-in WPF IValueConverters - PhotoLens

  9. Pingback: Built-in WPF IValueConverters – Row Coding

Leave a comment