现在的位置: 首页 > 综合 > 正文

VB.Net 中 WithEvents、AddHandler

2013年03月12日 ⁄ 综合 ⁄ 共 921字 ⁄ 字号 评论关闭
 
Public Class Form1

    
Dim WithEvents cls1 As New ClassTest()  'WithEvents方式
    Dim cls2 As New ClassTest()             'AddHandler方式

    
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        cls1.Test()                         
'WithEvents方式

        
AddHandler cls2.GetValue, AddressOf cls2GetValue    'AddHandler方式
        cls2.Test()

        
Me.Close()
    
End Sub


    
Private Sub cls1_GetVale(ByVal str As StringHandles cls1.GetValue     'WithEvents方式
        MsgBox("cls1  " & str)
    
End Sub


    
Private Sub cls2GetValue(ByVal str As String)    'AddHandler方式
        MsgBox("cls2  " & str)
    
End Sub



End Class


Public Class ClassTest

    
Public Event GetValue(ByVal str As String)

    
Public Sub Test()
        
RaiseEvent GetValue("事件例子")
    
End Sub


End Class

Result:
cls1  事件例子
cls2  事件例子
 

抱歉!评论已关闭.