WPF The calling thread cannot access this object because a different thread owns it

WPF The calling thread cannot access this object because a different thread owns it

Resolution:
this.Dispatcher.BeginInvoke((Action)(() =>
    {
        ...// your code here.
    }));

Leave a Reply