C# Class YALV.Core.Domain.BindableObject

Inheritance: DisposableObject, INotifyPropertyChanged
Afficher le fichier Open project: LukePet/YALV

Méthodes publiques

Méthode Description
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.

Méthodes protégées

Méthode Description
OnAfterPropertyChanged ( string propertyName ) : void

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

Private Methods

Méthode Description
VerifyProperty ( string propertyName ) : void

Method Details

BindableObject() public méthode

public BindableObject ( ) : System
Résultat System

GetPropertyChangedEventArgs() public static méthode

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. ///
Résultat System.ComponentModel.PropertyChangedEventArgs

OnAfterPropertyChanged() protected méthode

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. ///
Résultat void

RaisePropertyChanged() public méthode

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. ///
Résultat void