我用Delphi实现了一个activeX控件。现在我想为它添加一个事件。我使用类型库编辑器来添加这样的事件。
procedure OnActionMethod(ActionType: Integer; x1: Integer;
y1: Integer; x2: Integer; y2: Integer; param1: Double); dispid 213;
TezDICOMXOnActionMethod = procedure(ASender: TObject;
ActionType: Integer; x1: Integer; y1: Integer; x2: Integer; y2: Integer;
param1: Double) of object;
一切都很好。
现在我构建一个C#应用程序,使用该ActiveX控件并尝试实现一个事件处理程序。
private AxezDICOMax.AxezDICOMX the_ezdicom; // this is the activeX object
public void onActionHandler(object sender,long actiontype,
long x1, long y1, long x2,long y2, double param1)
{
MessageBox.Show("abcabc" + x1.ToString() + x2.ToString());
}
private void MainForm_Load(object sender, System.EventArgs e)
{
the_ezdicom.OnActionMethod += new
AxezDICOMax.IezDICOMXEvents_OnActionMethodEventHandler(this.onActionHandler);
}
但编译器抱怨此错误
Error 1 No overload for 'onActionHandler' matches delegate
'AxezDICOMax.IezDICOMXEvents_OnActionMethodEventHandler'
OnActionMethodEventHandler
我做错了什么?我在Delphi源代码中找不到OnActionMethodEventHandler()
。
答案 0 :(得分:1)
我使用Visual Studio的自动完成功能来了解真正的方法。
void onActionHandler(object sender, AxezDICOMax.IezDICOMXEvents_OnActionMethodEvent e)
{
MessageBox.Show("abc");
}