这是事件定义
Public MustInherit Class CBaseLetterParser
Public Event onKeywordUnhandled(ByVal sKeyword As String)
...
End Class
Public Class CCreditCardLetterParser
Inherits CBaseLetterParser
...
End Class
订阅onKeywordUnhandled事件的正确方法是什么?
我正在使用VS 2015。
答案 0 :(得分:0)
AddHandler方法需要您创建的实际事件,而不是
AddHandler onKeyworkUnhandledEventHandler, AddressOf f
使用
AddHandler onKeyworkUnhandled, AddressOf f