Base class for types that implement INotifyPropertyChanged, providing helper methods for raising property change notifications.
Definition
Namespace:Telerik.Windows.Documents.Spreadsheet.Core
Assembly:Telerik.Windows.Documents.Spreadsheet.dll
Syntax:
C#
public abstract class NotifyPropertyChangedBase : INotifyPropertyChanged
Inheritance: objectNotifyPropertyChangedBase
Derived Classes:
Implements:
Constructors
Initializes a new instance of the NotifyPropertyChangedBase class, providing a foundation for implementing property change notifications.
C#
protected NotifyPropertyChangedBase()
Events
Occurs when a property value changes.
C#
public event PropertyChangedEventHandler PropertyChanged
Implements:
Methods
Raises the event.
C#
protected virtual void OnPropertyChanged(PropertyChangedEventArgs args)
The PropertyChangedEventArgs instance containing the event data.
Raises the PropertyChanged event for the specified property name.
C#
protected void OnPropertyChanged(string propertyName)
Name of the property.