Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Capture WPF binding errors programmatically [duplicate]

Just as there is "treat warning as errors" set in our projects to catch early possible problems, I would love to have a runtime exception to catch them early.

I have recently been bit by this problem and I would have been glad to have this.

Can it be done? And if yes, how?

like image 415
Andrei Rînea Avatar asked Nov 20 '22 20:11

Andrei Rînea


1 Answers

You could hook into the PresentationTraceSources collection with your own listener:

public class BindingErrorListener : TraceListener
{
    private Action<string> logAction;
    public static void Listen(Action<string> logAction)
    {
        PresentationTraceSources.DataBindingSource.Listeners
            .Add(new BindingErrorListener() { logAction = logAction });
    }
    public override void Write(string message) { }
    public override void WriteLine(string message)
    {
        logAction(message);
    }
}

and then hook it up in code-behind

public partial class MainWindow : Window
{
    public MainWindow()
    {
        BindingErrorListener.Listen(m => MessageBox.Show(m));
        InitializeComponent();
        DataContext = new string[] { "hello" };
    }
}

Here is the XAML with a binding error

    <Grid>
    <TextBlock Text="{Binding BadBinding}" />
</Grid>
like image 200
Dean Chalk Avatar answered Jun 08 '23 19:06

Dean Chalk