2

SilverLight 中是否有与Control.InvokeRequiredWinforms 相同的东西?

我已经发现 Winforms Invoke 相当于Control.Dispatcher.BeginInvoke但我找不到类似的东西InvokeRequired

4

1 回答 1

3

以下扩展方法非常有用

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();
}
于 2012-12-06T11:51:16.360 回答