SilverLight 中是否有与Control.InvokeRequired
Winforms 相同的东西?
我已经发现 Winforms Invoke 相当于Control.Dispatcher.BeginInvoke
但我找不到类似的东西InvokeRequired
SilverLight 中是否有与Control.InvokeRequired
Winforms 相同的东西?
我已经发现 Winforms Invoke 相当于Control.Dispatcher.BeginInvoke
但我找不到类似的东西InvokeRequired
以下扩展方法非常有用
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();
}