C# 클래스 WpfApp7.ViewModelBase

상속: INotifyPropertyChanged, IDisposable
파일 보기 프로젝트 열기: shendongnian/code

공개 메소드들

메소드 설명
Dispose ( ) : void

Invoked when this object is being removed from the application and will be subject to garbage collection.

보호된 메소드들

메소드 설명
OnDispose ( ) : void

Child classes can override this method to perform clean-up logic, such as removing event handlers.

RaisePropertyChanged ( string propertyName ) : void

Raises this object's PropertyChanged event.

비공개 메소드들

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

메소드 상세

Dispose() 공개 메소드

Invoked when this object is being removed from the application and will be subject to garbage collection.
public Dispose ( ) : void
리턴 void

OnDispose() 보호된 메소드

Child classes can override this method to perform clean-up logic, such as removing event handlers.
protected OnDispose ( ) : void
리턴 void

RaisePropertyChanged() 보호된 메소드

Raises this object's PropertyChanged event.
protected RaisePropertyChanged ( string propertyName ) : void
propertyName string The property that has a new value.
리턴 void