考虑以下方法:
public static void ExecuteAsync( this EventHandler eH, object sender, EventArgs eA ) {
eH.GetInvocationList( ).Cast<EventHandler>( ).ToList( ).ForEach( e => {
e.BeginInvoke( sender, eA, IAR =>
( ( IAR as AsyncResult ).AsyncDelegate as EventHandler ).EndInvoke( IAR ), null );
} );
}
我注意到e
有一个属性Target。
当我进一步研究它时,我发现我可以检查e.Target is System.Windows.Controls.Control
或e.Target is System.Windows.Forms.Control
。
这很棒,因为在使用这个扩展的情况下,为了方便(我是懒惰的),我希望能够判断委托目标是否需要调用委托(在这种情况下) WinForms:Control.Invoke( foo )
;对于WPF:Control.Dispatcher.Invoke( foo )
)。
我不需要知道如何将对象强制转换为它的实际类型(我可以不用它):我只需要知道如何构建对象以便我可以访问{{1属性和InvokeRequired
方法(在WinForms控件的情况下)或Invoke
属性(用于访问Dispatcher
函数和Dispatcher.CheckAccess( )
方法)。
这可能吗?我该怎么做呢? (我已尝试将e.Target投射到Dispatcher.Invoke( )
,但结果没有System.Windows.Control.Control
属性。
根据对转换代码(和导入/引用)的请求:
确定它是否是WPF控件:
Dispatcher
确定它是否是WinForms控件:
( if e.Target is System.Windows.Controls.Control ){ //Fully Qualified
( e.Target as System.Windows.Controls.Control)./*...*/;
}
该项目引用了几个库:
( if e.Target is System.Windows.Forms.Control ){ //Fully Qualified
( e.Target as System.Windows.Forms.Control )./*...*/;
}
答案 0 :(得分:1)
不适合你。它不是最优雅的方式,但可以检查目标是WPF还是WinForms控件:
if (e.Target is System.Windows.Controls.Control)
{
var wpfTarget = ((System.Windows.Controls.Control)e.Target);
if (wpfTarget.Dispatcher.CheckAccess()) // check if on dispatcher thread
{
wpfTarget.Dispatcher.Invoke(/*...*/);
}
}
else if (e.Target is System.Windows.Forms.Control)
{
var formsTarget = (System.Windows.Forms.Control)e.Target;
if (formsTarget.InvokeRequired)
{
formsTarget.Invoke(/*...*/);
}
}
在VisualStudio中,我对Dispatcher
上的wpfTarget
提供了Intelisense支持:
修改
在我提及的参考文献
之下using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Remoting.Messaging;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
其中只有四个正在使用中:
using System;
using System.Linq;
using System.Runtime.Remoting.Messaging;
using System.Windows;