ComponentOne Binding Expressions for WPF and Silverlight
C1.Silverlight.Binding Namespace / PropertyChangedEventManager Class / AddListener Method
The object with the event.
The object to add as a listener.
The name of the property that exists on source upon which to listen for changes.

In This Topic
    AddListener Method
    In This Topic
    Adds the specified listener to the list of listeners on the specified source.
    Syntax
    'Declaration
     
    
    Public Shared Sub AddListener( _
       ByVal source As System.ComponentModel.INotifyPropertyChanged, _
       ByVal listener As IWeakEventListener, _
       ByVal propertyName As System.String _
    ) 
    public static void AddListener( 
       System.ComponentModel.INotifyPropertyChanged source,
       IWeakEventListener listener,
       System.string propertyName
    )

    Parameters

    source
    The object with the event.
    listener
    The object to add as a listener.
    propertyName
    The name of the property that exists on source upon which to listen for changes.
    See Also