Question

Is there in SilverLight something equivalent to Control.InvokeRequired in Winforms?

I already found that Winforms Invoke is equivalent to Control.Dispatcher.BeginInvoke but I cant find nothing like InvokeRequired

Was it helpful?

Solution

The following extension methods are very useful

public static bool InvokeRequired(this FrameworkElement element)
{
    return !element.Dispatcher.CheckAccess();
}
public static void Invoke(this FrameworkElement element, Action action)
{
    if (element.InvokeRequired())
    {
        using (AutoResetEvent are = new AutoResetEvent(false))
        {
            Deployment.Current.Dispatcher.BeginInvoke(() =>
            {
                action.Invoke();
                are.Set();
            });
            are.WaitOne();
        }
    }
    else
        action.Invoke();
}
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top