메소드 | 설명 | |
---|---|---|
BindableObject ( ) : System | ||
GetPropertyChangedEventArgs ( string propertyName ) : |
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 |
public static GetPropertyChangedEventArgs ( string propertyName ) : |
||
propertyName | string | /// The name of the property to create event args for. /// |
리턴 |
protected OnAfterPropertyChanged ( string propertyName ) : void | ||
propertyName | string | /// The property which was changed. /// |
리턴 | void |
public RaisePropertyChanged ( string propertyName ) : void | ||
propertyName | string | /// The property which was changed. /// |
리턴 | void |