Passing AddressOf to a function in VB.NET to use AddHandler

蹲街弑〆低调 提交于 2019-12-08 16:05:30

问题


I need to pass a reference of a function to another function in VB.NET. How can this be done?

My function needs to use AddHandler internally, for which I need to pass it a handling function. My code below obviously does not work, but it conveys the idea of what I need.

Public Function CreateMenuItem(ByVal Name As String, ByRef Func As AddressOf ) As MenuItem
   Dim item As New MenuItem

   item.Name = Name
   'item.  other options

   AddHandler item.Click, AddressOf Func

   Return item
End Function

Is there another way to do this? The AddHandler needs to be set to a passed parameter in a function somehow...


回答1:


A function delegate is just what you need to do this. First you need to define the delegate somewhere in the class. Change the signature to fit your event of course.

Public Delegate Sub MyDelegate(sender As System.Object, e As System.EventArgs)

Your function will take the delegate as an argument.

Public Function CreateMenuItem(ByVal Name As String, del As MyDelegate) As MenuItem
  ''''
  AddHandler item.Click, del
  ''''
End Function

Public Sub MyEventHandler(sender As System.Object, e As System.EventArgs)
  ''''
End Sub

And here's how you call the function:

CreateMenuItem(myString, AddressOf MyEventHandler)



回答2:


Your second argument in the function should be of type EventHandler, and your function would then look like:

Public Function CreateMenuItem(ByVal Name As String, ByRef Func As EventHandler) As MenuItem
    Dim item As New MenuItem

    item.Name = Name
    'item.  Other options

    AddHandler item.Click, Func

    Return item
End Function

Now you need a method to handle those clicks:

Private Sub ItemClick(sender As Object, e As EventArgs)
    'Do something with that click here
End Sub

And you can consume those two methods now with something like:

    Dim handler = New EventHandler(AddressOf ItemClick)
    Dim i = CreateMenuItem("My item", handler)

    i.PerformClick()



回答3:


First off, event handlers have to have Subs. Secondly, AddressOf can't be used as a type. If the sub is in the same class, just use the sub name. If it's in another class/file, you might have to make the sub public and/or qualify it as being a member of the other class. Subs for the AddHandler clause must basically follow the pattern:

Public/Private Sub MyHandler(sender As Object, e As EventArgs)

If you need different routines based on the name of the menu item, you could use one handler and call the appropriate routine based on the name of the item triggering the event.



来源:https://stackoverflow.com/questions/16740205/passing-addressof-to-a-function-in-vb-net-to-use-addhandler

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!