C# 클래스 YALV.Core.Domain.BindableObject

상속: DisposableObject, INotifyPropertyChanged
파일 보기 프로젝트 열기: LukePet/YALV

공개 메소드들

메소드 설명
BindableObject ( ) : System
GetPropertyChangedEventArgs ( string propertyName ) : PropertyChangedEventArgs

Returns an instance of PropertyChangedEventArgs for the specified property name.

RaisePropertyChanged ( string propertyName ) : void

Attempts to raise the PropertyChanged event, and invokes the virtual AfterPropertyChanged method, regardless of whether the event was raised or not.

보호된 메소드들

메소드 설명
OnAfterPropertyChanged ( string propertyName ) : void

Derived classes can override this method to execute logic after a property is set. The base implementation does nothing.

비공개 메소드들

메소드 설명
VerifyProperty ( string propertyName ) : void

메소드 상세

BindableObject() 공개 메소드

public BindableObject ( ) : System
리턴 System

GetPropertyChangedEventArgs() 공개 정적인 메소드

Returns an instance of PropertyChangedEventArgs for the specified property name.
public static GetPropertyChangedEventArgs ( string propertyName ) : PropertyChangedEventArgs
propertyName string /// The name of the property to create event args for. ///
리턴 System.ComponentModel.PropertyChangedEventArgs

OnAfterPropertyChanged() 보호된 메소드

Derived classes can override this method to execute logic after a property is set. The base implementation does nothing.
protected OnAfterPropertyChanged ( string propertyName ) : void
propertyName string /// The property which was changed. ///
리턴 void

RaisePropertyChanged() 공개 메소드

Attempts to raise the PropertyChanged event, and invokes the virtual AfterPropertyChanged method, regardless of whether the event was raised or not.
public RaisePropertyChanged ( string propertyName ) : void
propertyName string /// The property which was changed. ///
리턴 void