gpt4 book ai didi

winforms - 如何公开和引发 vb.net winforms 用户控件的自定义事件

转载 作者:行者123 更新时间:2023-12-02 22:06:29 24 4
gpt4 key购买 nike

请阅读THIS邮政。我遇到了与这篇文章中描述的相同的问题,但我尝试在 VB.net 而不是 c# 中执行。

我很确定要执行此操作,我必须使用自定义事件。 (我使用 code conversion site 来了解自定义事件。)因此,当我在 IDE 中键入以下内容时:

公共(public)自定义事件 AddRemoveAttendees 作为事件处理程序

它扩展为以下代码片段。

Public Custom Event AddRemoveAttendees As EventHandler
AddHandler(ByVal value As EventHandler)

End AddHandler

RemoveHandler(ByVal value As EventHandler)

End RemoveHandler

RaiseEvent(ByVal sender As Object, ByVal e As System.EventArgs)

End RaiseEvent
End Event

但我不知道如何处理它。直到今天我还从未听说过自定义事件。

我想要的底线是让按钮的单击事件冒泡到用户控件的容器。我知道我可以包装自己的事件,但在我进一步走这条路之前,我至少想了解自定义事件。

赛斯

最佳答案

要使用自定义事件来冒泡另一个控件的事件,您可以这样做:

Public Custom Event AddRemoveAttendees As EventHandler
AddHandler(ByVal value As EventHandler)
AddHandler _theButton.Click, value
End AddHandler

RemoveHandler(ByVal value As EventHandler)
RemoveHandler _theButton.Click, value
End RemoveHandler

RaiseEvent(ByVal sender As Object, ByVal e As System.EventArgs)
' no need to do anything in here since you will actually '
' not raise this event; it only acts as a "placeholder" for the '
' buttons click event '
End RaiseEvent
End Event

AddHandlerRemoveHandler 中,您只需传播调用以将给定的事件处理程序附加到控件的 Click 事件或从控件的 Click 事件中删除。

为了扩展自定义事件的使用,这里是自定义事件的另一个示例实现:

Dim _handlers As New List(Of EventHandler)
Public Custom Event AddRemoveAttendees As EventHandler

AddHandler(ByVal value As EventHandler)
_handlers.Add(value)
End AddHandler

RemoveHandler(ByVal value As EventHandler)
If _handlers.Contains(value) Then
_handlers.Remove(value)
End If
End RemoveHandler

RaiseEvent(ByVal sender As Object, ByVal e As System.EventArgs)
For Each handler As EventHandler In _handlers
Try
handler.Invoke(sender, e)
Catch ex As Exception
Debug.WriteLine("Exception while invoking event handler: " & ex.ToString())
End Try
Next
End RaiseEvent
End Event

现在,如上所示,它除了常规事件声明之外几乎没有其他作用:

Public Event AddRemoveAttendees As EventHandler

它提供了类似的机制,允许附加和删除事件处理程序,以及引发事件。自定义事件添加的是额外的控制级别;您可以围绕添加、删除和引发事件编写一些代码,在其中您可以强制执行规则,并稍微调整将要发生的情况。例如,您可能希望限制附加到事件的事件处理程序的数量。为此,您可以更改上面示例中的 AddHandler 部分:

    AddHandler(ByVal value As EventHandler)
If _handlers.Count < 8 Then
_handlers.Add(value)
End If
End AddHandler

如果您不需要那种详细的控制,我认为没有必要声明自定义事件。

关于winforms - 如何公开和引发 vb.net winforms 用户控件的自定义事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1080808/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com