ClassNotifyPropertyChangedBase
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:
public abstract class NotifyPropertyChangedBase : INotifyPropertyChanged
Inheritance: objectNotifyPropertyChangedBase
Derived Classes:
Implements:
Constructors
NotifyPropertyChangedBase()
Initializes a new instance of the NotifyPropertyChangedBase class, providing a foundation for implementing property change notifications.
Declaration
protected NotifyPropertyChangedBase()
Methods
OnPropertyChanged(PropertyChangedEventArgs)
Raises the event.
Declaration
protected virtual void OnPropertyChanged(PropertyChangedEventArgs args)
Parameters
args
The PropertyChangedEventArgs instance containing the event data.
OnPropertyChanged(string)
Raises the PropertyChanged event for the specified property name.
Declaration
protected void OnPropertyChanged(string propertyName)
Parameters
propertyName
Name of the property.
Events
PropertyChanged
Occurs when a property value changes.
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Value
Implements