Wally_the_Walrus
Wally_the_Walrus

Reputation: 219

invokeRequired in silverlight?

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

Upvotes: 2

Views: 609

Answers (1)

ahmedsafan86
ahmedsafan86

Reputation: 1794

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();
}

Upvotes: 3

Related Questions