C# 클래스 GalaSoft.MvvmLight.Messaging.PropertyChangedMessageBase

Basis class for the PropertyChangedMessage{T} class. This class allows a recipient to register for all PropertyChangedMessages without having to specify the type T.
상속: MessageBase
파일 보기 프로젝트 열기: keutmann/SPM

보호된 메소드들

메소드 설명
PropertyChangedMessageBase ( object sender, object target, string propertyName )

Initializes a new instance of the PropertyChangedMessageBase class.

PropertyChangedMessageBase ( object sender, string propertyName )

Initializes a new instance of the PropertyChangedMessageBase class.

PropertyChangedMessageBase ( string propertyName )

Initializes a new instance of the PropertyChangedMessageBase class.

메소드 상세

PropertyChangedMessageBase() 보호된 메소드

Initializes a new instance of the PropertyChangedMessageBase class.
protected PropertyChangedMessageBase ( object sender, object target, string propertyName )
sender object The message's sender.
target object The message's intended target. This parameter can be used /// to give an indication as to whom the message was intended for. Of course /// this is only an indication, amd may be null.
propertyName string The name of the property that changed.

PropertyChangedMessageBase() 보호된 메소드

Initializes a new instance of the PropertyChangedMessageBase class.
protected PropertyChangedMessageBase ( object sender, string propertyName )
sender object The message's sender.
propertyName string The name of the property that changed.

PropertyChangedMessageBase() 보호된 메소드

Initializes a new instance of the PropertyChangedMessageBase class.
protected PropertyChangedMessageBase ( string propertyName )
propertyName string The name of the property that changed.