Reputation: 219
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
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