为什么下面的代码(.NET-4,扩展方法)不会让我使用Application.DoEvents();
?
/// <summary>
/// Invokes in the Dispatcher an empty action.
/// An thread safe equivalent of the ancient Application.DoEvents.
/// </summary>
public static void DoEvents(this Application a)
{
Application.Current.Dispatcher.Invoke(
System.Windows.Threading.DispatcherPriority.Background,
new Action(delegate { }));
}
在SLaks评论后更新版本
public static void DoEvents(this Application a)
{
if (a != null)
{
a.Dispatcher.Invoke(
System.Windows.Threading.DispatcherPriority.Background,
new Action(delegate { }));
}
}
答案 0 :(得分:3)
您只能将扩展方法称为实例。
因此,您可以编写Application.Current.DoEvents()
,因为那是Application
个实例。
但是,您无法在类型本身上调用它。